diff --git a/src/Accounts/Accounts/AzureRmAlias/Mappings.json b/src/Accounts/Accounts/AzureRmAlias/Mappings.json index 81a564096520..8044883ae50c 100644 --- a/src/Accounts/Accounts/AzureRmAlias/Mappings.json +++ b/src/Accounts/Accounts/AzureRmAlias/Mappings.json @@ -356,6 +356,7 @@ "Test-AzBatchAutoScale": "Test-AzureBatchAutoScale", "Get-AzBatchLocationQuotas": "Get-AzureRmBatchLocationQuotas", "Get-AzBatchSubtask": "Get-AzureBatchSubtask", + "Get-AzGetSupportedVirtualMachineSkus": "Get-AzureBatchSupportedVirtualMachineSkus", "Get-AzBatchTask": "Get-AzureBatchTask", "New-AzBatchTask": "New-AzureBatchTask", "Remove-AzBatchTask": "Remove-AzureBatchTask", diff --git a/src/Batch/Batch.Test/Batch.Test.csproj b/src/Batch/Batch.Test/Batch.Test.csproj index 396b4acf0084..286051dd004a 100644 --- a/src/Batch/Batch.Test/Batch.Test.csproj +++ b/src/Batch/Batch.Test/Batch.Test.csproj @@ -14,8 +14,8 @@ - - + + diff --git a/src/Batch/Batch.Test/BatchAccounts/GetBatchAccountCommandTests.cs b/src/Batch/Batch.Test/BatchAccounts/GetBatchAccountCommandTests.cs index f6d05d9c8305..3f67df2eb207 100644 --- a/src/Batch/Batch.Test/BatchAccounts/GetBatchAccountCommandTests.cs +++ b/src/Batch/Batch.Test/BatchAccounts/GetBatchAccountCommandTests.cs @@ -92,7 +92,7 @@ public void GetBatchAccount_IdentityTest() { string accountName = "account01"; string resourceGroup = "resourceGroup"; - BatchAccount accountResource = BatchTestHelpers.CreateAccountResource(accountName, resourceGroup, identity: new BatchAccountIdentity(ResourceIdentityType.None, string.Empty, string.Empty)); + BatchAccount accountResource = BatchTestHelpers.CreateAccountResource(accountName, resourceGroup, identity: new BatchAccountIdentity(ResourceIdentityType.None, string.Empty, string.Empty, null as IDictionary)); BatchAccountContext expected = BatchAccountContext.ConvertAccountResourceToNewAccountContext(accountResource, null); batchClientMock.Setup(b => b.GetAccount(resourceGroup, accountName)).Returns(expected); diff --git a/src/Batch/Batch.Test/BatchTestHelpers.cs b/src/Batch/Batch.Test/BatchTestHelpers.cs index a13f19761c11..5d58d7a5773f 100644 --- a/src/Batch/Batch.Test/BatchTestHelpers.cs +++ b/src/Batch/Batch.Test/BatchTestHelpers.cs @@ -81,7 +81,7 @@ public static BatchAccount CreateAccountResource( tags: tags == null ? null : TagsConversionHelper.CreateTagDictionary(tags, true), dedicatedCoreQuotaPerVMFamilyEnforced: dedicatedCoreQuotaPerVMFamilyEnforced, dedicatedCoreQuotaPerVMFamily: machineFamilyQuotas, - identity: identity ?? new BatchAccountIdentity(ResourceIdentityType.None)); + identity: identity ?? new BatchAccountIdentity(ResourceIdentityType.None, null, null, null as IDictionary)); return resource; } @@ -376,18 +376,23 @@ public static RequestInterceptor ExamineRequestInterceptor(Action assertAc } /// - /// Builds a CloudPoolGetResponse object + /// Builds a CloudPoolGetResponse object using a pool ID /// public static AzureOperationResponse CreateCloudPoolGetResponse(string poolId) { - var response = new AzureOperationResponse(); - response.Response = new HttpResponseMessage(HttpStatusCode.OK); - ProxyModels.CloudPool pool = new ProxyModels.CloudPool(); pool.Id = poolId; + return CreateCloudPoolGetResponse(pool); + } + /// + /// Builds a CloudPoolGetResponse object using a pool model + /// + public static AzureOperationResponse CreateCloudPoolGetResponse(ProxyModels.CloudPool pool) + { + var response = new AzureOperationResponse(); + response.Response = new HttpResponseMessage(HttpStatusCode.OK); response.Body = pool; - return response; } @@ -707,20 +712,33 @@ public static AzureOperationResponse< /// /// Builds a TaskCountsGetResponse object /// - public static AzureOperationResponse CreateTaskCountsGetResponse( - int active, int running, int succeeded, int failed) + public static AzureOperationResponse CreateTaskCountsGetResponse( + int requiredTaskSlots, int activeTasks, int runningTasks, int succeededTasks, int failedTasks) { - var response = new AzureOperationResponse(); + var response = new AzureOperationResponse(); response.Response = new HttpResponseMessage(HttpStatusCode.OK); + var completedTasks = succeededTasks + failedTasks; + ProxyModels.TaskCounts taskCounts = new ProxyModels.TaskCounts(); - taskCounts.Active = active; - taskCounts.Running = running; - taskCounts.Succeeded = succeeded; - taskCounts.Failed = failed; - taskCounts.Completed = succeeded + failed; + taskCounts.Active = activeTasks; + taskCounts.Running = runningTasks; + taskCounts.Succeeded = succeededTasks; + taskCounts.Failed = failedTasks; + taskCounts.Completed = completedTasks; + + ProxyModels.TaskSlotCounts slotCounts = new ProxyModels.TaskSlotCounts(); + slotCounts.Active = requiredTaskSlots * activeTasks; + slotCounts.Running = requiredTaskSlots * runningTasks; + slotCounts.Succeeded = requiredTaskSlots * succeededTasks; + slotCounts.Failed = requiredTaskSlots * failedTasks; + slotCounts.Completed = requiredTaskSlots * completedTasks; + + ProxyModels.TaskCountsResult result = new ProxyModels.TaskCountsResult(); + result.TaskCounts = taskCounts; + result.TaskSlotCounts = slotCounts; - response.Body = taskCounts; + response.Body = result; return response; } diff --git a/src/Batch/Batch.Test/Locations/GetBatchLocationQuotasCommandTests.cs b/src/Batch/Batch.Test/Locations/GetBatchLocationQuotasCommandTests.cs index c6f398cc5efc..26e555de5bb2 100644 --- a/src/Batch/Batch.Test/Locations/GetBatchLocationQuotasCommandTests.cs +++ b/src/Batch/Batch.Test/Locations/GetBatchLocationQuotasCommandTests.cs @@ -14,12 +14,14 @@ using Microsoft.Azure.Commands.Batch.Models; using Microsoft.Azure.Management.Batch.Models; +using Microsoft.Azure.ServiceManagement.Common.Models; using Microsoft.WindowsAzure.Commands.ScenarioTest; using Microsoft.WindowsAzure.Commands.Test.Utilities.Common; using Moq; using System.Collections.Generic; using System.Management.Automation; using Xunit; +using Xunit.Abstractions; using BatchClient = Microsoft.Azure.Commands.Batch.Models.BatchClient; namespace Microsoft.Azure.Commands.Batch.Test.Subscriptions @@ -30,9 +32,9 @@ public class GetBatchLocationQuotasCommandTests : RMTestBase private Mock batchClientMock; private Mock commandRuntimeMock; - public GetBatchLocationQuotasCommandTests(Xunit.Abstractions.ITestOutputHelper output) + public GetBatchLocationQuotasCommandTests(ITestOutputHelper output) { - ServiceManagement.Common.Models.XunitTracingInterceptor.AddToContext(new ServiceManagement.Common.Models.XunitTracingInterceptor(output)); + XunitTracingInterceptor.AddToContext(new XunitTracingInterceptor(output)); batchClientMock = new Mock(); commandRuntimeMock = new Mock(); cmdlet = new GetBatchLocationQuotaCommand() @@ -46,8 +48,6 @@ public GetBatchLocationQuotasCommandTests(Xunit.Abstractions.ITestOutputHelper o [Trait(Category.AcceptanceType, Category.CheckIn)] public void GetBatchLocationQuotasTest() { - List pipelineOutput = new List(); - // Return a pre-built object when the command is issued. string location = "westus"; PSBatchLocationQuotas quotas = new PSBatchLocationQuotas(location, new BatchLocationQuota(accountQuota: 5)); diff --git a/src/Batch/Batch.Test/Locations/GetSupportedVirtualMachineSkusTests.cs b/src/Batch/Batch.Test/Locations/GetSupportedVirtualMachineSkusTests.cs new file mode 100644 index 000000000000..f7cc4a2d34a6 --- /dev/null +++ b/src/Batch/Batch.Test/Locations/GetSupportedVirtualMachineSkusTests.cs @@ -0,0 +1,110 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using Microsoft.Azure.Commands.Batch; +using Microsoft.Azure.Commands.Batch.Models; +using Microsoft.Azure.Management.Batch.Models; +using Microsoft.Azure.ServiceManagement.Common.Models; +using Microsoft.WindowsAzure.Commands.ScenarioTest; +using Microsoft.WindowsAzure.Commands.Test.Utilities.Common; +using Moq; +using System.Collections.Generic; +using System.Linq; +using System.Management.Automation; +using Xunit; +using Xunit.Abstractions; +using BatchClient = Microsoft.Azure.Commands.Batch.Models.BatchClient; + +namespace Microsoft.Azure.Commands.Batch.Test.Subscriptions +{ + public class GetSupportedVirtualMachineSkusTests : RMTestBase + { + private GetSupportedVirtualMachineSkusCommand cmdlet; + private Mock batchClientMock; + private Mock commandRuntimeMock; + + public GetSupportedVirtualMachineSkusTests(ITestOutputHelper output) + { + XunitTracingInterceptor.AddToContext(new XunitTracingInterceptor(output)); + batchClientMock = new Mock(); + commandRuntimeMock = new Mock(); + cmdlet = new GetSupportedVirtualMachineSkusCommand() + { + CommandRuntime = commandRuntimeMock.Object, + BatchClient = batchClientMock.Object + }; + } + + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void TestGetSupportedSkus() + { + string location = "westus"; + + var skus = CreateSkus(); + batchClientMock.Setup(client => client.GetSupportedVirtualMachineSkus(location, default, default)).Returns(skus); + + cmdlet.Location = location; + cmdlet.ExecuteCmdlet(); + + commandRuntimeMock.Verify(r => r.WriteObject(skus, true), Times.Once()); + } + + + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void TestGetSupportedSkusWithODataParameters() + { + string location = "westus"; + + var skus = CreateSkus(); + batchClientMock.Setup(client => client.GetSupportedVirtualMachineSkus(location, 3, "testfilter")).Returns(skus); + + cmdlet.Location = location; + cmdlet.MaxResults = 3; + cmdlet.Filter = "testfilter"; + cmdlet.ExecuteCmdlet(); + + commandRuntimeMock.Verify(r => r.WriteObject(skus, true), Times.Once()); + } + + private List CreateSkus() + { + List skus = new List() + { + new PSSupportedSku("testsku1", "testfamily", new List() + { + new PSSkuCapability("cap1", "val1"), + new PSSkuCapability("cap2", "val2") + }), + new PSSupportedSku("testsku2", "testfamily", new List() + { + new PSSkuCapability("cap1", "val1"), + }), + new PSSupportedSku("testsku3", "testfamily", new List() + { + new PSSkuCapability("cap1", "val1"), + new PSSkuCapability("cap2", "val2"), + new PSSkuCapability("cap2", "val2") + }), + new PSSupportedSku("testsku4", "testfamily", new List() + { + new PSSkuCapability("cap1", "val1"), + }), + }; + + return skus; + } + } +} \ No newline at end of file diff --git a/src/Batch/Batch.Test/Pools/GetBatchPoolCommandTests.cs b/src/Batch/Batch.Test/Pools/GetBatchPoolCommandTests.cs index fade26e2adc7..fd545c5eedc8 100644 --- a/src/Batch/Batch.Test/Pools/GetBatchPoolCommandTests.cs +++ b/src/Batch/Batch.Test/Pools/GetBatchPoolCommandTests.cs @@ -57,8 +57,13 @@ public void GetBatchPoolTest() cmdlet.Id = "testPool"; cmdlet.Filter = null; + // Pool returned in the response + ProxyModels.CloudPool pool = new ProxyModels.CloudPool(); + pool.Id = cmdlet.Id; + pool.TaskSlotsPerNode = 16; + // Build a CloudPool instead of querying the service on a Get CloudPool call - AzureOperationResponse response = BatchTestHelpers.CreateCloudPoolGetResponse(cmdlet.Id); + AzureOperationResponse response = BatchTestHelpers.CreateCloudPoolGetResponse(pool); RequestInterceptor interceptor = BatchTestHelpers.CreateFakeServiceResponseInterceptor< ProxyModels.PoolGetOptions, AzureOperationResponse>(response); @@ -74,6 +79,7 @@ public void GetBatchPoolTest() // Verify that the cmdlet wrote the pool returned from the OM to the pipeline Assert.Single(pipeline); Assert.Equal(cmdlet.Id, pipeline[0].Id); + Assert.Equal(16, pipeline[0].TaskSlotsPerNode); } [Fact] diff --git a/src/Batch/Batch.Test/Pools/NewBatchPoolCommandTests.cs b/src/Batch/Batch.Test/Pools/NewBatchPoolCommandTests.cs index 123af786f40c..e5541c26d6b0 100644 --- a/src/Batch/Batch.Test/Pools/NewBatchPoolCommandTests.cs +++ b/src/Batch/Batch.Test/Pools/NewBatchPoolCommandTests.cs @@ -93,7 +93,7 @@ public void NewBatchPoolParametersGetPassedToRequestTest() cmdlet.CloudServiceConfiguration = new PSCloudServiceConfiguration("4", "*"); cmdlet.DisplayName = "display name"; cmdlet.InterComputeNodeCommunicationEnabled = true; - cmdlet.MaxTasksPerComputeNode = 4; + cmdlet.TaskSlotsPerNode = 4; cmdlet.Metadata = new Dictionary(); cmdlet.Metadata.Add("meta1", "value1"); cmdlet.ResizeTimeout = TimeSpan.FromMinutes(20); @@ -103,7 +103,10 @@ public void NewBatchPoolParametersGetPassedToRequestTest() cmdlet.TaskSchedulingPolicy = new PSTaskSchedulingPolicy(Azure.Batch.Common.ComputeNodeFillType.Spread); cmdlet.VirtualMachineConfiguration = new PSVirtualMachineConfiguration(new PSImageReference("offer", "publisher", "sku"), "node agent"); cmdlet.VirtualMachineSize = "small"; - cmdlet.MountConfiguration = new[] { new PSMountConfiguration(new PSAzureBlobFileSystemConfiguration("foo", "bar", "baz", AzureStorageAuthenticationKey.FromAccountKey("abc"))) }; + cmdlet.MountConfiguration = new[] { + new PSMountConfiguration(new PSAzureBlobFileSystemConfiguration("foo", "bar", "baz", AzureStorageAuthenticationKey.FromAccountKey("abc"))), + new PSMountConfiguration(new PSAzureBlobFileSystemConfiguration("foo2", "bar2", "baz2", new PSComputeNodeIdentityReference(new Azure.Batch.ComputeNodeIdentityReference { ResourceId = "fake-identity"}))) + }; PoolAddParameter requestParameters = null; @@ -130,7 +133,7 @@ public void NewBatchPoolParametersGetPassedToRequestTest() Assert.Equal(cmdlet.CloudServiceConfiguration.OSVersion, requestParameters.CloudServiceConfiguration.OsVersion); Assert.Equal(cmdlet.DisplayName, requestParameters.DisplayName); Assert.Equal(cmdlet.InterComputeNodeCommunicationEnabled, requestParameters.EnableInterNodeCommunication); - Assert.Equal(cmdlet.MaxTasksPerComputeNode, requestParameters.MaxTasksPerNode); + Assert.Equal(cmdlet.TaskSlotsPerNode, requestParameters.TaskSlotsPerNode); Assert.Equal(cmdlet.Metadata.Count, requestParameters.Metadata.Count); Assert.Equal(cmdlet.Metadata["meta1"], requestParameters.Metadata[0].Value); Assert.Equal(cmdlet.ResizeTimeout, requestParameters.ResizeTimeout); @@ -147,6 +150,10 @@ public void NewBatchPoolParametersGetPassedToRequestTest() Assert.Equal(cmdlet.MountConfiguration[0].AzureBlobFileSystemConfiguration.AccountKey, requestParameters.MountConfiguration[0].AzureBlobFileSystemConfiguration.AccountKey); Assert.Equal(cmdlet.MountConfiguration[0].AzureBlobFileSystemConfiguration.ContainerName, requestParameters.MountConfiguration[0].AzureBlobFileSystemConfiguration.ContainerName); Assert.Equal(cmdlet.MountConfiguration[0].AzureBlobFileSystemConfiguration.RelativeMountPath, requestParameters.MountConfiguration[0].AzureBlobFileSystemConfiguration.RelativeMountPath); + Assert.Equal(cmdlet.MountConfiguration[1].AzureBlobFileSystemConfiguration.AccountName, requestParameters.MountConfiguration[1].AzureBlobFileSystemConfiguration.AccountName); + Assert.Equal(cmdlet.MountConfiguration[1].AzureBlobFileSystemConfiguration.IdentityReference.ResourceId, requestParameters.MountConfiguration[1].AzureBlobFileSystemConfiguration.IdentityReference.ResourceId); + Assert.Equal(cmdlet.MountConfiguration[1].AzureBlobFileSystemConfiguration.ContainerName, requestParameters.MountConfiguration[1].AzureBlobFileSystemConfiguration.ContainerName); + Assert.Equal(cmdlet.MountConfiguration[1].AzureBlobFileSystemConfiguration.RelativeMountPath, requestParameters.MountConfiguration[1].AzureBlobFileSystemConfiguration.RelativeMountPath); } [Fact] diff --git a/src/Batch/Batch.Test/ScenarioTests/CertificateTests.ps1 b/src/Batch/Batch.Test/ScenarioTests/CertificateTests.ps1 index d0c236f21c56..953287a52b56 100644 --- a/src/Batch/Batch.Test/ScenarioTests/CertificateTests.ps1 +++ b/src/Batch/Batch.Test/ScenarioTests/CertificateTests.ps1 @@ -62,8 +62,8 @@ function Test-TestCancelCertificateDelete Get-AzBatchCertificate $thumbprintAlgorithm $thumbprint -BatchContext $context | Stop-AzBatchCertificateDeletion -BatchContext $context # Verify the cert went back to the active state - $filter = "state eq 'active'" + $filter = "state eq 'active'"; $cert = Get-AzBatchCertificate -Filter $filter -BatchContext $context - Assert-AreEqual $thumbprint $cert.Thumbprint.ToLowerInvariant() + Assert-True { $cert.Thumbprint.ToLowerInvariant() -Contains $thumbprint } } \ No newline at end of file diff --git a/src/Batch/Batch.Test/ScenarioTests/JobTests.ps1 b/src/Batch/Batch.Test/ScenarioTests/JobTests.ps1 index 45a77ac760a1..0c53d06aa2d7 100644 --- a/src/Batch/Batch.Test/ScenarioTests/JobTests.ps1 +++ b/src/Batch/Batch.Test/ScenarioTests/JobTests.ps1 @@ -114,7 +114,7 @@ function Test-JobWithTaskDependencies $poolSpec = New-Object Microsoft.Azure.Commands.Batch.Models.PSPoolSpecification $poolSpec.TargetDedicated = $targetDedicated = 3 - $poolSpec.VirtualMachineSize = $vmSize = "small" + $poolSpec.VirtualMachineSize = $vmSize = "standard_d1_v2" $poolSpec.CloudServiceConfiguration = $paasConfiguration $autoPoolSpec = New-Object Microsoft.Azure.Commands.Batch.Models.PSAutoPoolSpecification $autoPoolSpec.PoolSpecification = $poolSpec @@ -162,8 +162,8 @@ function IfJobSetsAutoFailure-ItCompletesWhenAnyTaskFails $paasConfiguration = New-Object Microsoft.Azure.Commands.Batch.Models.PSCloudServiceConfiguration -ArgumentList @($osFamily, $targetOSVersion) $poolSpec = New-Object Microsoft.Azure.Commands.Batch.Models.PSPoolSpecification - $poolSpec.TargetDedicatedComputeNodes = $targetDedicated = 3 - $poolSpec.VirtualMachineSize = $vmSize = "small" + $poolSpec.TargetDedicatedComputeNodes = $targetDedicated = 1 + $poolSpec.VirtualMachineSize = $vmSize = "standard_d1_v2" $poolSpec.CloudServiceConfiguration = $paasConfiguration $autoPoolSpec = New-Object Microsoft.Azure.Commands.Batch.Models.PSAutoPoolSpecification $autoPoolSpec.PoolSpecification = $poolSpec diff --git a/src/Batch/Batch.Test/ScenarioTests/ScenarioTestHelpers.cs b/src/Batch/Batch.Test/ScenarioTests/ScenarioTestHelpers.cs index 9b8166bc6acd..982649498d7d 100644 --- a/src/Batch/Batch.Test/ScenarioTests/ScenarioTestHelpers.cs +++ b/src/Batch/Batch.Test/ScenarioTests/ScenarioTestHelpers.cs @@ -209,7 +209,7 @@ public static void CreateTestPool( NewPoolParameters parameters = new NewPoolParameters(context, poolId) { - VirtualMachineSize = "small", + VirtualMachineSize = "standard_d1_v2", CloudServiceConfiguration = paasConfiguration, TargetDedicatedComputeNodes = targetDedicated, TargetLowPriorityComputeNodes = targetLowPriority, @@ -441,7 +441,7 @@ public static PSCloudJob WaitForJobCompletion(BatchController controller, BatchA DateTime timeout = DateTime.Now.AddMinutes(10); - while (job.State != JobState.Completed || DateTime.Now > timeout) + while (job.State != JobState.Completed && DateTime.Now < timeout) { job = client.ListJobs(new ListJobOptions(context)).First(cloudJob => cloudJob.Id == jobId); diff --git a/src/Batch/Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.BatchAccountTests/TestBatchAccountEndToEnd.json b/src/Batch/Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.BatchAccountTests/TestBatchAccountEndToEnd.json index ea2b5a5cadd9..ffe0ebd8ec2d 100644 --- a/src/Batch/Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.BatchAccountTests/TestBatchAccountEndToEnd.json +++ b/src/Batch/Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.BatchAccountTests/TestBatchAccountEndToEnd.json @@ -1,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2g/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/ba2358c2-42f2-4138-88df-7c68cf608bea/providers/Microsoft.Batch?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmEyMzU4YzItNDJmMi00MTM4LTg4ZGYtN2M2OGNmNjA4YmVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2g/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0da6054a-6fa0-49d5-ac5f-a1094ed5124e" + "dee2fe6a-88d5-49be-9240-48f6dea9b3c5" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.43" ] }, "ResponseHeaders": { @@ -30,13 +30,13 @@ "11999" ], "x-ms-request-id": [ - "775f0ab0-6e40-442f-aa61-09c82e02b915" + "3a2ed602-1dbf-46fa-b389-4d0f5deea451" ], "x-ms-correlation-request-id": [ - "775f0ab0-6e40-442f-aa61-09c82e02b915" + "3a2ed602-1dbf-46fa-b389-4d0f5deea451" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T225048Z:775f0ab0-6e40-442f-aa61-09c82e02b915" + "NORTHCENTRALUS:20210827T161624Z:3a2ed602-1dbf-46fa-b389-4d0f5deea451" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -45,7 +45,7 @@ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 22:50:47 GMT" + "Fri, 27 Aug 2021 16:16:23 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -54,29 +54,29 @@ "-1" ], "Content-Length": [ - "4461" + "7565" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch\",\r\n \"namespace\": \"Microsoft.Batch\",\r\n \"authorization\": {\r\n \"applicationId\": \"ddbf3205-c6bd-46ae-8127-60eb93363864\",\r\n \"roleDefinitionId\": \"b7f84953-1d03-4eab-9ea4-45f065258ff8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"batchAccounts\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\",\r\n \"2015-07-01\",\r\n \"2014-05-01-privatepreview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/accountOperationResults\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\",\r\n \"2015-07-01\",\r\n \"2014-05-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/ba2358c2-42f2-4138-88df-7c68cf608bea/providers/Microsoft.Batch\",\r\n \"namespace\": \"Microsoft.Batch\",\r\n \"authorization\": {\r\n \"applicationId\": \"ddbf3205-c6bd-46ae-8127-60eb93363864\",\r\n \"roleDefinitionId\": \"b7f84953-1d03-4eab-9ea4-45f065258ff8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"batchAccounts\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Jio India West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Norway East\",\r\n \"Brazil Southeast\",\r\n \"West US 3\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\",\r\n \"2015-07-01\",\r\n \"2014-05-01-privatepreview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"batchAccounts/pools\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Jio India West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Norway East\",\r\n \"Brazil Southeast\",\r\n \"West US 3\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"batchAccounts/certificates\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Jio India West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Norway East\",\r\n \"Brazil Southeast\",\r\n \"West US 3\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Jio India West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Norway East\",\r\n \"Brazil Southeast\",\r\n \"West US 3\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Jio India West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Norway East\",\r\n \"Brazil Southeast\",\r\n \"West US 3\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Jio India West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Norway East\",\r\n \"Brazil Southeast\",\r\n \"West US 3\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/accountOperationResults\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Jio India West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Norway East\",\r\n \"Brazil Southeast\",\r\n \"West US 3\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\",\r\n \"2015-07-01\",\r\n \"2014-05-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/virtualMachineSkus\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Jio India West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Norway East\",\r\n \"Brazil Southeast\",\r\n \"West US 3\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/cloudServiceSkus\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Jio India West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Norway East\",\r\n \"Brazil Southeast\",\r\n \"West US 3\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourcegroups/ps88?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlZ3JvdXBzL3BzODg/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/ba2358c2-42f2-4138-88df-7c68cf608bea/resourcegroups/ps965?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmEyMzU4YzItNDJmMi00MTM4LTg4ZGYtN2M2OGNmNjA4YmVhL3Jlc291cmNlZ3JvdXBzL3BzOTY1P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "695e8285-5a8f-40d6-8dd4-3ac00f311e58" + "22fb7b1d-9e9d-40e3-916b-44a5c1e7202a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.43" ], "Content-Type": [ "application/json; charset=utf-8" @@ -96,13 +96,13 @@ "1199" ], "x-ms-request-id": [ - "09fece86-8065-4731-ae26-46f44034cd69" + "0c421a3f-75a5-4460-b091-67018616ca3d" ], "x-ms-correlation-request-id": [ - "09fece86-8065-4731-ae26-46f44034cd69" + "0c421a3f-75a5-4460-b091-67018616ca3d" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T225048Z:09fece86-8065-4731-ae26-46f44034cd69" + "NORTHCENTRALUS:20210827T161625Z:0c421a3f-75a5-4460-b091-67018616ca3d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -111,10 +111,10 @@ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 22:50:48 GMT" + "Fri, 27 Aug 2021 16:16:24 GMT" ], "Content-Length": [ - "161" + "163" ], "Content-Type": [ "application/json; charset=utf-8" @@ -123,26 +123,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/ps88\",\r\n \"name\": \"ps88\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/ba2358c2-42f2-4138-88df-7c68cf608bea/resourceGroups/ps965\",\r\n \"name\": \"ps965\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/ps88/providers/Microsoft.Batch/batchAccounts/ps1341?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL3BzODgvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzMTM0MT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/ba2358c2-42f2-4138-88df-7c68cf608bea/resourceGroups/ps965/providers/Microsoft.Batch/batchAccounts/ps1981?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmEyMzU4YzItNDJmMi00MTM4LTg4ZGYtN2M2OGNmNjA4YmVhL3Jlc291cmNlR3JvdXBzL3BzOTY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9wczE5ODE/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"tag1\": \"tagValue1\"\r\n },\r\n \"properties\": {\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "3db73259-1432-4302-8388-d25cce5af13b" + "9fc04f71-5404-4768-bc52-197d2402cb2a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/11.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Batch.BatchManagementClient/14.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -159,13 +159,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/ps88/providers/Microsoft.Batch/batchAccounts/ps1341/operationResults/d9d7fac7-94b6-4343-830a-2569615ad5c9?api-version=2020-05-01" + "https://management.azure.com/subscriptions/ba2358c2-42f2-4138-88df-7c68cf608bea/resourceGroups/ps965/providers/Microsoft.Batch/batchAccounts/ps1981/operationResults/59fb4c6e-7599-40e0-bdf0-abb05adf5db4?api-version=2021-06-01" ], "Retry-After": [ "15" ], "x-ms-request-id": [ - "d9d7fac7-94b6-4343-830a-2569615ad5c9" + "59fb4c6e-7599-40e0-bdf0-abb05adf5db4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -180,13 +180,13 @@ "1199" ], "x-ms-correlation-request-id": [ - "cefdcbcd-d303-40a1-8e02-6014dda93f78" + "3a3bd0cb-75e9-4791-bc96-f658e19a95ba" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T225050Z:cefdcbcd-d303-40a1-8e02-6014dda93f78" + "CENTRALUS:20210827T161627Z:3a3bd0cb-75e9-4791-bc96-f658e19a95ba" ], "Date": [ - "Wed, 10 Jun 2020 22:50:49 GMT" + "Fri, 27 Aug 2021 16:16:26 GMT" ], "Expires": [ "-1" @@ -199,22 +199,22 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/ps88/providers/Microsoft.Batch/batchAccounts/ps1341?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL3BzODgvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzMTM0MT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/ba2358c2-42f2-4138-88df-7c68cf608bea/resourceGroups/ps965/providers/Microsoft.Batch/batchAccounts/ps1981?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmEyMzU4YzItNDJmMi00MTM4LTg4ZGYtN2M2OGNmNjA4YmVhL3Jlc291cmNlR3JvdXBzL3BzOTY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9wczE5ODE/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"tag2\": \"tagValue2\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "af8d4540-e47e-4861-9ab0-e685c97dcb38" + "c26a5670-9d9d-498e-9630-321fb2bcdb4f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/11.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Batch.BatchManagementClient/14.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -231,13 +231,13 @@ "no-cache" ], "ETag": [ - "\"0x8D80D90C2978DEB\"" + "\"0x8D969760F73DF57\"" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1198" ], "x-ms-request-id": [ - "43e5ee99-cad3-4344-a50f-bf7bc4bb0032" + "8cc80374-1bad-472b-be12-c088d0c00b89" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -249,16 +249,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-correlation-request-id": [ - "5fb3bfe9-b44d-4a77-a14b-cedbd922ec35" + "deb77b27-1df8-4cb9-8727-5f892353e494" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T225106Z:5fb3bfe9-b44d-4a77-a14b-cedbd922ec35" + "CENTRALUS:20210827T161644Z:deb77b27-1df8-4cb9-8727-5f892353e494" ], "Date": [ - "Wed, 10 Jun 2020 22:51:05 GMT" + "Fri, 27 Aug 2021 16:16:44 GMT" ], "Content-Length": [ - "2227" + "2998" ], "Content-Type": [ "application/json; charset=utf-8" @@ -267,23 +267,26 @@ "-1" ], "Last-Modified": [ - "Wed, 10 Jun 2020 22:51:06 GMT" + "Fri, 27 Aug 2021 16:16:43 GMT" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/ps88/providers/Microsoft.Batch/batchAccounts/ps1341\",\r\n \"name\": \"ps1341\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"ps1341.westus.batch.azure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"dedicatedCoreQuota\": 700,\r\n \"dedicatedCoreQuotaPerVMFamily\": [\r\n {\r\n \"name\": \"standardAv2Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardDv2Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardDv3Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardEv3Family\",\r\n \"coreQuota\": 50\r\n },\r\n {\r\n \"name\": \"standardDSv2Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardDSv3Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardESv3Family\",\r\n \"coreQuota\": 50\r\n },\r\n {\r\n \"name\": \"standardFFamily\",\r\n \"coreQuota\": 50\r\n },\r\n {\r\n \"name\": \"standardFSFamily\",\r\n \"coreQuota\": 50\r\n },\r\n {\r\n \"name\": \"standardA0_A7Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardA8_A11Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardDFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardGFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"basicAFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNVFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNVPromoFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNCFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNCPromoFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHPromoFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardMSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardDSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardGSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardLSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardLSv2Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNCSv2Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNDSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNCSv3Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardFSv2Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHBSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHCSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNVSv3Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHBrsv2Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardDASv4Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardEAv4Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardEASv4Family\",\r\n \"coreQuota\": 0\r\n }\r\n ],\r\n \"dedicatedCoreQuotaPerVMFamilyEnforced\": false,\r\n \"lowPriorityCoreQuota\": 500,\r\n \"poolQuota\": 100,\r\n \"activeJobAndJobScheduleQuota\": 300,\r\n \"poolAllocationMode\": \"BatchService\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"encryption\": {\r\n \"keySource\": \"Microsoft.Batch\"\r\n }\r\n },\r\n \"tags\": {\r\n \"tag2\": \"tagValue2\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/ba2358c2-42f2-4138-88df-7c68cf608bea/resourceGroups/ps965/providers/Microsoft.Batch/batchAccounts/ps1981\",\r\n \"name\": \"ps1981\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"ps1981.westus.batch.azure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"dedicatedCoreQuota\": 500,\r\n \"dedicatedCoreQuotaPerVMFamily\": [\r\n {\r\n \"name\": \"standardAv2Family\",\r\n \"coreQuota\": 500\r\n },\r\n {\r\n \"name\": \"standardDv2Family\",\r\n \"coreQuota\": 250\r\n },\r\n {\r\n \"name\": \"standardDv3Family\",\r\n \"coreQuota\": 500\r\n },\r\n {\r\n \"name\": \"standardEv3Family\",\r\n \"coreQuota\": 500\r\n },\r\n {\r\n \"name\": \"standardDSv2Family\",\r\n \"coreQuota\": 250\r\n },\r\n {\r\n \"name\": \"standardDSv3Family\",\r\n \"coreQuota\": 500\r\n },\r\n {\r\n \"name\": \"standardESv3Family\",\r\n \"coreQuota\": 500\r\n },\r\n {\r\n \"name\": \"standardFSv2Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardNCFamily\",\r\n \"coreQuota\": 24\r\n },\r\n {\r\n \"name\": \"standardNVFamily\",\r\n \"coreQuota\": 24\r\n },\r\n {\r\n \"name\": \"standardDDv4Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardDDSv4Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardEDv4Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardEDSv4Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardA0_A7Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardA8_A11Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardDFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardGFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"basicAFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardFFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNVPromoFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNCPromoFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHPromoFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardMSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardDSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardFSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardGSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardLSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardLSv2Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNCSv2Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNDSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNCSv3Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHBSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHCSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNVSv3Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHBrsv2Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardDAv4Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardDASv4Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardEAv4Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardEASv4Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardMSv2Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardEIv3Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNVSv4Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"Standard NCASv3_T4 Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardXEIDSv4Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"Standard NDASv4_A100 Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardDCSv2Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHBv3Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNPSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardFXMDVSFamily\",\r\n \"coreQuota\": 0\r\n }\r\n ],\r\n \"dedicatedCoreQuotaPerVMFamilyEnforced\": true,\r\n \"lowPriorityCoreQuota\": 500,\r\n \"poolQuota\": 100,\r\n \"activeJobAndJobScheduleQuota\": 300,\r\n \"poolAllocationMode\": \"BatchService\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"encryption\": {\r\n \"keySource\": \"Microsoft.Batch\"\r\n },\r\n \"allowedAuthenticationModes\": [\r\n \"SharedKey\",\r\n \"AAD\",\r\n \"TaskAuthenticationToken\"\r\n ]\r\n },\r\n \"tags\": {\r\n \"tag2\": \"tagValue2\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/ps88/providers/Microsoft.Batch/batchAccounts/ps1341/operationResults/d9d7fac7-94b6-4343-830a-2569615ad5c9?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL3BzODgvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzMTM0MS9vcGVyYXRpb25SZXN1bHRzL2Q5ZDdmYWM3LTk0YjYtNDM0My04MzBhLTI1Njk2MTVhZDVjOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/ba2358c2-42f2-4138-88df-7c68cf608bea/resourceGroups/ps965/providers/Microsoft.Batch/batchAccounts/ps1981/operationResults/59fb4c6e-7599-40e0-bdf0-abb05adf5db4?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmEyMzU4YzItNDJmMi00MTM4LTg4ZGYtN2M2OGNmNjA4YmVhL3Jlc291cmNlR3JvdXBzL3BzOTY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9wczE5ODEvb3BlcmF0aW9uUmVzdWx0cy81OWZiNGM2ZS03NTk5LTQwZTAtYmRmMC1hYmIwNWFkZjVkYjQ/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "9fc04f71-5404-4768-bc52-197d2402cb2a" + ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/11.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Batch.BatchManagementClient/14.0.0.0" ] }, "ResponseHeaders": { @@ -294,13 +297,13 @@ "no-cache" ], "ETag": [ - "\"0x8D80D90C21CE7B6\"" + "\"0x8D969760EDC75DF\"" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11999" ], "x-ms-request-id": [ - "6edc34c3-ed16-4f05-aea4-b654ad71b585" + "a8e0a6fa-a8b1-49a5-b33c-b544fdf3b355" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -312,16 +315,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-correlation-request-id": [ - "fc12a766-3272-4d2e-a29a-6cbf59bde892" + "206b6b50-cc7a-4865-bb15-78d43cc81a1f" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T225105Z:fc12a766-3272-4d2e-a29a-6cbf59bde892" + "CENTRALUS:20210827T161642Z:206b6b50-cc7a-4865-bb15-78d43cc81a1f" ], "Date": [ - "Wed, 10 Jun 2020 22:51:04 GMT" + "Fri, 27 Aug 2021 16:16:42 GMT" ], "Content-Length": [ - "2227" + "2998" ], "Content-Type": [ "application/json; charset=utf-8" @@ -330,29 +333,29 @@ "-1" ], "Last-Modified": [ - "Wed, 10 Jun 2020 22:51:05 GMT" + "Fri, 27 Aug 2021 16:16:42 GMT" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/ps88/providers/Microsoft.Batch/batchAccounts/ps1341\",\r\n \"name\": \"ps1341\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"ps1341.westus.batch.azure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"dedicatedCoreQuota\": 700,\r\n \"dedicatedCoreQuotaPerVMFamily\": [\r\n {\r\n \"name\": \"standardAv2Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardDv2Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardDv3Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardEv3Family\",\r\n \"coreQuota\": 50\r\n },\r\n {\r\n \"name\": \"standardDSv2Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardDSv3Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardESv3Family\",\r\n \"coreQuota\": 50\r\n },\r\n {\r\n \"name\": \"standardFFamily\",\r\n \"coreQuota\": 50\r\n },\r\n {\r\n \"name\": \"standardFSFamily\",\r\n \"coreQuota\": 50\r\n },\r\n {\r\n \"name\": \"standardA0_A7Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardA8_A11Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardDFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardGFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"basicAFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNVFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNVPromoFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNCFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNCPromoFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHPromoFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardMSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardDSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardGSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardLSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardLSv2Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNCSv2Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNDSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNCSv3Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardFSv2Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHBSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHCSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNVSv3Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHBrsv2Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardDASv4Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardEAv4Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardEASv4Family\",\r\n \"coreQuota\": 0\r\n }\r\n ],\r\n \"dedicatedCoreQuotaPerVMFamilyEnforced\": false,\r\n \"lowPriorityCoreQuota\": 500,\r\n \"poolQuota\": 100,\r\n \"activeJobAndJobScheduleQuota\": 300,\r\n \"poolAllocationMode\": \"BatchService\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"encryption\": {\r\n \"keySource\": \"Microsoft.Batch\"\r\n }\r\n },\r\n \"tags\": {\r\n \"tag1\": \"tagValue1\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/ba2358c2-42f2-4138-88df-7c68cf608bea/resourceGroups/ps965/providers/Microsoft.Batch/batchAccounts/ps1981\",\r\n \"name\": \"ps1981\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"ps1981.westus.batch.azure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"dedicatedCoreQuota\": 500,\r\n \"dedicatedCoreQuotaPerVMFamily\": [\r\n {\r\n \"name\": \"standardAv2Family\",\r\n \"coreQuota\": 500\r\n },\r\n {\r\n \"name\": \"standardDv2Family\",\r\n \"coreQuota\": 250\r\n },\r\n {\r\n \"name\": \"standardDv3Family\",\r\n \"coreQuota\": 500\r\n },\r\n {\r\n \"name\": \"standardEv3Family\",\r\n \"coreQuota\": 500\r\n },\r\n {\r\n \"name\": \"standardDSv2Family\",\r\n \"coreQuota\": 250\r\n },\r\n {\r\n \"name\": \"standardDSv3Family\",\r\n \"coreQuota\": 500\r\n },\r\n {\r\n \"name\": \"standardESv3Family\",\r\n \"coreQuota\": 500\r\n },\r\n {\r\n \"name\": \"standardFSv2Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardNCFamily\",\r\n \"coreQuota\": 24\r\n },\r\n {\r\n \"name\": \"standardNVFamily\",\r\n \"coreQuota\": 24\r\n },\r\n {\r\n \"name\": \"standardDDv4Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardDDSv4Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardEDv4Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardEDSv4Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardA0_A7Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardA8_A11Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardDFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardGFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"basicAFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardFFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNVPromoFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNCPromoFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHPromoFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardMSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardDSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardFSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardGSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardLSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardLSv2Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNCSv2Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNDSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNCSv3Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHBSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHCSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNVSv3Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHBrsv2Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardDAv4Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardDASv4Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardEAv4Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardEASv4Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardMSv2Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardEIv3Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNVSv4Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"Standard NCASv3_T4 Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardXEIDSv4Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"Standard NDASv4_A100 Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardDCSv2Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHBv3Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNPSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardFXMDVSFamily\",\r\n \"coreQuota\": 0\r\n }\r\n ],\r\n \"dedicatedCoreQuotaPerVMFamilyEnforced\": true,\r\n \"lowPriorityCoreQuota\": 500,\r\n \"poolQuota\": 100,\r\n \"activeJobAndJobScheduleQuota\": 300,\r\n \"poolAllocationMode\": \"BatchService\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"encryption\": {\r\n \"keySource\": \"Microsoft.Batch\"\r\n },\r\n \"allowedAuthenticationModes\": [\r\n \"SharedKey\",\r\n \"AAD\",\r\n \"TaskAuthenticationToken\"\r\n ]\r\n },\r\n \"tags\": {\r\n \"tag1\": \"tagValue1\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/ps88/providers/Microsoft.Batch/batchAccounts/ps1341?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL3BzODgvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzMTM0MT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/ba2358c2-42f2-4138-88df-7c68cf608bea/resourceGroups/ps965/providers/Microsoft.Batch/batchAccounts/ps1981?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmEyMzU4YzItNDJmMi00MTM4LTg4ZGYtN2M2OGNmNjA4YmVhL3Jlc291cmNlR3JvdXBzL3BzOTY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9wczE5ODE/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "524f7b38-2b06-41ad-a8d9-8a259d971be0" + "c26a5670-9d9d-498e-9630-321fb2bcdb4f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/11.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Batch.BatchManagementClient/14.0.0.0" ] }, "ResponseHeaders": { @@ -363,13 +366,13 @@ "no-cache" ], "ETag": [ - "\"0x8D80D90BB072410\"" + "\"0x8D9697607B76D25\"" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11998" ], "x-ms-request-id": [ - "89d8c2b1-7640-480f-bcd8-b38e03b9d9b3" + "40f8db8d-b2c6-4e6e-921e-8540aee7da7b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -381,16 +384,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-correlation-request-id": [ - "3e8fd9e2-18ea-433d-8517-7daa9975ddd0" + "48883aee-e96e-4b16-b50d-8158583d3501" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T225105Z:3e8fd9e2-18ea-433d-8517-7daa9975ddd0" + "CENTRALUS:20210827T161642Z:48883aee-e96e-4b16-b50d-8158583d3501" ], "Date": [ - "Wed, 10 Jun 2020 22:51:04 GMT" + "Fri, 27 Aug 2021 16:16:42 GMT" ], "Content-Length": [ - "2227" + "2998" ], "Content-Type": [ "application/json; charset=utf-8" @@ -399,29 +402,29 @@ "-1" ], "Last-Modified": [ - "Wed, 10 Jun 2020 22:50:53 GMT" + "Fri, 27 Aug 2021 16:16:30 GMT" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/ps88/providers/Microsoft.Batch/batchAccounts/ps1341\",\r\n \"name\": \"ps1341\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"ps1341.westus.batch.azure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"dedicatedCoreQuota\": 700,\r\n \"dedicatedCoreQuotaPerVMFamily\": [\r\n {\r\n \"name\": \"standardAv2Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardDv2Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardDv3Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardEv3Family\",\r\n \"coreQuota\": 50\r\n },\r\n {\r\n \"name\": \"standardDSv2Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardDSv3Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardESv3Family\",\r\n \"coreQuota\": 50\r\n },\r\n {\r\n \"name\": \"standardFFamily\",\r\n \"coreQuota\": 50\r\n },\r\n {\r\n \"name\": \"standardFSFamily\",\r\n \"coreQuota\": 50\r\n },\r\n {\r\n \"name\": \"standardA0_A7Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardA8_A11Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardDFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardGFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"basicAFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNVFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNVPromoFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNCFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNCPromoFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHPromoFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardMSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardDSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardGSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardLSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardLSv2Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNCSv2Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNDSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNCSv3Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardFSv2Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHBSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHCSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNVSv3Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHBrsv2Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardDASv4Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardEAv4Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardEASv4Family\",\r\n \"coreQuota\": 0\r\n }\r\n ],\r\n \"dedicatedCoreQuotaPerVMFamilyEnforced\": false,\r\n \"lowPriorityCoreQuota\": 500,\r\n \"poolQuota\": 100,\r\n \"activeJobAndJobScheduleQuota\": 300,\r\n \"poolAllocationMode\": \"BatchService\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"encryption\": {\r\n \"keySource\": \"Microsoft.Batch\"\r\n }\r\n },\r\n \"tags\": {\r\n \"tag1\": \"tagValue1\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/ba2358c2-42f2-4138-88df-7c68cf608bea/resourceGroups/ps965/providers/Microsoft.Batch/batchAccounts/ps1981\",\r\n \"name\": \"ps1981\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"ps1981.westus.batch.azure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"dedicatedCoreQuota\": 500,\r\n \"dedicatedCoreQuotaPerVMFamily\": [\r\n {\r\n \"name\": \"standardAv2Family\",\r\n \"coreQuota\": 500\r\n },\r\n {\r\n \"name\": \"standardDv2Family\",\r\n \"coreQuota\": 250\r\n },\r\n {\r\n \"name\": \"standardDv3Family\",\r\n \"coreQuota\": 500\r\n },\r\n {\r\n \"name\": \"standardEv3Family\",\r\n \"coreQuota\": 500\r\n },\r\n {\r\n \"name\": \"standardDSv2Family\",\r\n \"coreQuota\": 250\r\n },\r\n {\r\n \"name\": \"standardDSv3Family\",\r\n \"coreQuota\": 500\r\n },\r\n {\r\n \"name\": \"standardESv3Family\",\r\n \"coreQuota\": 500\r\n },\r\n {\r\n \"name\": \"standardFSv2Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardNCFamily\",\r\n \"coreQuota\": 24\r\n },\r\n {\r\n \"name\": \"standardNVFamily\",\r\n \"coreQuota\": 24\r\n },\r\n {\r\n \"name\": \"standardDDv4Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardDDSv4Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardEDv4Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardEDSv4Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardA0_A7Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardA8_A11Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardDFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardGFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"basicAFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardFFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNVPromoFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNCPromoFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHPromoFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardMSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardDSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardFSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardGSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardLSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardLSv2Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNCSv2Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNDSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNCSv3Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHBSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHCSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNVSv3Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHBrsv2Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardDAv4Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardDASv4Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardEAv4Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardEASv4Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardMSv2Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardEIv3Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNVSv4Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"Standard NCASv3_T4 Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardXEIDSv4Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"Standard NDASv4_A100 Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardDCSv2Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHBv3Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNPSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardFXMDVSFamily\",\r\n \"coreQuota\": 0\r\n }\r\n ],\r\n \"dedicatedCoreQuotaPerVMFamilyEnforced\": true,\r\n \"lowPriorityCoreQuota\": 500,\r\n \"poolQuota\": 100,\r\n \"activeJobAndJobScheduleQuota\": 300,\r\n \"poolAllocationMode\": \"BatchService\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"encryption\": {\r\n \"keySource\": \"Microsoft.Batch\"\r\n },\r\n \"allowedAuthenticationModes\": [\r\n \"SharedKey\",\r\n \"AAD\",\r\n \"TaskAuthenticationToken\"\r\n ]\r\n },\r\n \"tags\": {\r\n \"tag1\": \"tagValue1\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/ps88/providers/Microsoft.Batch/batchAccounts/ps1341?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL3BzODgvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzMTM0MT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/ba2358c2-42f2-4138-88df-7c68cf608bea/resourceGroups/ps965/providers/Microsoft.Batch/batchAccounts/ps1981?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmEyMzU4YzItNDJmMi00MTM4LTg4ZGYtN2M2OGNmNjA4YmVhL3Jlc291cmNlR3JvdXBzL3BzOTY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9wczE5ODE/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5a068aa2-b90b-4a73-b7a6-1bd7448e609e" + "64715c20-d76c-4073-8968-cf53233b46c8" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/11.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Batch.BatchManagementClient/14.0.0.0" ] }, "ResponseHeaders": { @@ -432,13 +435,13 @@ "no-cache" ], "ETag": [ - "\"0x8D80D90C2935466\"" + "\"0x8D969760F70BFC4\"" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11997" ], "x-ms-request-id": [ - "c918548e-4ea3-4fa1-afdc-326e7b256f3c" + "a3e5ee4e-9c7d-413d-98e5-49277caf0787" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -450,16 +453,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-correlation-request-id": [ - "daf5c209-94e9-405b-b88b-af8eebbb05e2" + "2e4cc57f-148a-4fa2-a8ec-0f1d4a8601a5" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T225106Z:daf5c209-94e9-405b-b88b-af8eebbb05e2" + "CENTRALUS:20210827T161644Z:2e4cc57f-148a-4fa2-a8ec-0f1d4a8601a5" ], "Date": [ - "Wed, 10 Jun 2020 22:51:05 GMT" + "Fri, 27 Aug 2021 16:16:44 GMT" ], "Content-Length": [ - "2227" + "2998" ], "Content-Type": [ "application/json; charset=utf-8" @@ -468,29 +471,29 @@ "-1" ], "Last-Modified": [ - "Wed, 10 Jun 2020 22:51:06 GMT" + "Fri, 27 Aug 2021 16:16:43 GMT" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/ps88/providers/Microsoft.Batch/batchAccounts/ps1341\",\r\n \"name\": \"ps1341\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"ps1341.westus.batch.azure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"dedicatedCoreQuota\": 700,\r\n \"dedicatedCoreQuotaPerVMFamily\": [\r\n {\r\n \"name\": \"standardAv2Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardDv2Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardDv3Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardEv3Family\",\r\n \"coreQuota\": 50\r\n },\r\n {\r\n \"name\": \"standardDSv2Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardDSv3Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardESv3Family\",\r\n \"coreQuota\": 50\r\n },\r\n {\r\n \"name\": \"standardFFamily\",\r\n \"coreQuota\": 50\r\n },\r\n {\r\n \"name\": \"standardFSFamily\",\r\n \"coreQuota\": 50\r\n },\r\n {\r\n \"name\": \"standardA0_A7Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardA8_A11Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardDFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardGFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"basicAFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNVFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNVPromoFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNCFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNCPromoFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHPromoFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardMSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardDSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardGSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardLSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardLSv2Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNCSv2Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNDSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNCSv3Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardFSv2Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHBSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHCSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNVSv3Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHBrsv2Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardDASv4Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardEAv4Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardEASv4Family\",\r\n \"coreQuota\": 0\r\n }\r\n ],\r\n \"dedicatedCoreQuotaPerVMFamilyEnforced\": false,\r\n \"lowPriorityCoreQuota\": 500,\r\n \"poolQuota\": 100,\r\n \"activeJobAndJobScheduleQuota\": 300,\r\n \"poolAllocationMode\": \"BatchService\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"encryption\": {\r\n \"keySource\": \"Microsoft.Batch\"\r\n }\r\n },\r\n \"tags\": {\r\n \"tag2\": \"tagValue2\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/ba2358c2-42f2-4138-88df-7c68cf608bea/resourceGroups/ps965/providers/Microsoft.Batch/batchAccounts/ps1981\",\r\n \"name\": \"ps1981\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"ps1981.westus.batch.azure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"dedicatedCoreQuota\": 500,\r\n \"dedicatedCoreQuotaPerVMFamily\": [\r\n {\r\n \"name\": \"standardAv2Family\",\r\n \"coreQuota\": 500\r\n },\r\n {\r\n \"name\": \"standardDv2Family\",\r\n \"coreQuota\": 250\r\n },\r\n {\r\n \"name\": \"standardDv3Family\",\r\n \"coreQuota\": 500\r\n },\r\n {\r\n \"name\": \"standardEv3Family\",\r\n \"coreQuota\": 500\r\n },\r\n {\r\n \"name\": \"standardDSv2Family\",\r\n \"coreQuota\": 250\r\n },\r\n {\r\n \"name\": \"standardDSv3Family\",\r\n \"coreQuota\": 500\r\n },\r\n {\r\n \"name\": \"standardESv3Family\",\r\n \"coreQuota\": 500\r\n },\r\n {\r\n \"name\": \"standardFSv2Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardNCFamily\",\r\n \"coreQuota\": 24\r\n },\r\n {\r\n \"name\": \"standardNVFamily\",\r\n \"coreQuota\": 24\r\n },\r\n {\r\n \"name\": \"standardDDv4Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardDDSv4Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardEDv4Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardEDSv4Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardA0_A7Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardA8_A11Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardDFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardGFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"basicAFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardFFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNVPromoFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNCPromoFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHPromoFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardMSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardDSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardFSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardGSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardLSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardLSv2Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNCSv2Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNDSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNCSv3Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHBSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHCSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNVSv3Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHBrsv2Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardDAv4Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardDASv4Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardEAv4Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardEASv4Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardMSv2Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardEIv3Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNVSv4Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"Standard NCASv3_T4 Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardXEIDSv4Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"Standard NDASv4_A100 Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardDCSv2Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHBv3Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNPSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardFXMDVSFamily\",\r\n \"coreQuota\": 0\r\n }\r\n ],\r\n \"dedicatedCoreQuotaPerVMFamilyEnforced\": true,\r\n \"lowPriorityCoreQuota\": 500,\r\n \"poolQuota\": 100,\r\n \"activeJobAndJobScheduleQuota\": 300,\r\n \"poolAllocationMode\": \"BatchService\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"encryption\": {\r\n \"keySource\": \"Microsoft.Batch\"\r\n },\r\n \"allowedAuthenticationModes\": [\r\n \"SharedKey\",\r\n \"AAD\",\r\n \"TaskAuthenticationToken\"\r\n ]\r\n },\r\n \"tags\": {\r\n \"tag2\": \"tagValue2\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/ps88/providers/Microsoft.Batch/batchAccounts/ps1341?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL3BzODgvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzMTM0MT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/ba2358c2-42f2-4138-88df-7c68cf608bea/resourceGroups/ps965/providers/Microsoft.Batch/batchAccounts/ps1981?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmEyMzU4YzItNDJmMi00MTM4LTg4ZGYtN2M2OGNmNjA4YmVhL3Jlc291cmNlR3JvdXBzL3BzOTY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9wczE5ODE/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7f713eba-f378-48ff-8fb9-7f282fab66e3" + "e3aec99f-956c-475d-b2ac-32e91a303b8d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/11.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Batch.BatchManagementClient/14.0.0.0" ] }, "ResponseHeaders": { @@ -501,13 +504,13 @@ "no-cache" ], "ETag": [ - "\"0x8D80D90C2935466\"" + "\"0x8D969760F70BFC4\"" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11996" ], "x-ms-request-id": [ - "a34bd4da-8fc9-44ce-a74f-56a902aae5ea" + "fbab6ba0-5124-4c41-b00e-1f32e27c4824" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -519,16 +522,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-correlation-request-id": [ - "28e4549f-f3fd-4d12-8c56-8118d52e0aa0" + "0aa03324-73fc-4d51-90aa-fd685398f120" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T225106Z:28e4549f-f3fd-4d12-8c56-8118d52e0aa0" + "CENTRALUS:20210827T161644Z:0aa03324-73fc-4d51-90aa-fd685398f120" ], "Date": [ - "Wed, 10 Jun 2020 22:51:05 GMT" + "Fri, 27 Aug 2021 16:16:44 GMT" ], "Content-Length": [ - "2227" + "2998" ], "Content-Type": [ "application/json; charset=utf-8" @@ -537,29 +540,29 @@ "-1" ], "Last-Modified": [ - "Wed, 10 Jun 2020 22:51:06 GMT" + "Fri, 27 Aug 2021 16:16:43 GMT" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/ps88/providers/Microsoft.Batch/batchAccounts/ps1341\",\r\n \"name\": \"ps1341\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"ps1341.westus.batch.azure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"dedicatedCoreQuota\": 700,\r\n \"dedicatedCoreQuotaPerVMFamily\": [\r\n {\r\n \"name\": \"standardAv2Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardDv2Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardDv3Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardEv3Family\",\r\n \"coreQuota\": 50\r\n },\r\n {\r\n \"name\": \"standardDSv2Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardDSv3Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardESv3Family\",\r\n \"coreQuota\": 50\r\n },\r\n {\r\n \"name\": \"standardFFamily\",\r\n \"coreQuota\": 50\r\n },\r\n {\r\n \"name\": \"standardFSFamily\",\r\n \"coreQuota\": 50\r\n },\r\n {\r\n \"name\": \"standardA0_A7Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardA8_A11Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardDFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardGFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"basicAFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNVFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNVPromoFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNCFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNCPromoFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHPromoFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardMSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardDSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardGSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardLSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardLSv2Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNCSv2Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNDSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNCSv3Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardFSv2Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHBSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHCSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNVSv3Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHBrsv2Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardDASv4Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardEAv4Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardEASv4Family\",\r\n \"coreQuota\": 0\r\n }\r\n ],\r\n \"dedicatedCoreQuotaPerVMFamilyEnforced\": false,\r\n \"lowPriorityCoreQuota\": 500,\r\n \"poolQuota\": 100,\r\n \"activeJobAndJobScheduleQuota\": 300,\r\n \"poolAllocationMode\": \"BatchService\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"encryption\": {\r\n \"keySource\": \"Microsoft.Batch\"\r\n }\r\n },\r\n \"tags\": {\r\n \"tag2\": \"tagValue2\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/ba2358c2-42f2-4138-88df-7c68cf608bea/resourceGroups/ps965/providers/Microsoft.Batch/batchAccounts/ps1981\",\r\n \"name\": \"ps1981\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"ps1981.westus.batch.azure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"dedicatedCoreQuota\": 500,\r\n \"dedicatedCoreQuotaPerVMFamily\": [\r\n {\r\n \"name\": \"standardAv2Family\",\r\n \"coreQuota\": 500\r\n },\r\n {\r\n \"name\": \"standardDv2Family\",\r\n \"coreQuota\": 250\r\n },\r\n {\r\n \"name\": \"standardDv3Family\",\r\n \"coreQuota\": 500\r\n },\r\n {\r\n \"name\": \"standardEv3Family\",\r\n \"coreQuota\": 500\r\n },\r\n {\r\n \"name\": \"standardDSv2Family\",\r\n \"coreQuota\": 250\r\n },\r\n {\r\n \"name\": \"standardDSv3Family\",\r\n \"coreQuota\": 500\r\n },\r\n {\r\n \"name\": \"standardESv3Family\",\r\n \"coreQuota\": 500\r\n },\r\n {\r\n \"name\": \"standardFSv2Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardNCFamily\",\r\n \"coreQuota\": 24\r\n },\r\n {\r\n \"name\": \"standardNVFamily\",\r\n \"coreQuota\": 24\r\n },\r\n {\r\n \"name\": \"standardDDv4Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardDDSv4Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardEDv4Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardEDSv4Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardA0_A7Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardA8_A11Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardDFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardGFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"basicAFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardFFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNVPromoFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNCPromoFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHPromoFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardMSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardDSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardFSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardGSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardLSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardLSv2Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNCSv2Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNDSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNCSv3Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHBSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHCSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNVSv3Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHBrsv2Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardDAv4Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardDASv4Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardEAv4Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardEASv4Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardMSv2Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardEIv3Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNVSv4Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"Standard NCASv3_T4 Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardXEIDSv4Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"Standard NDASv4_A100 Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardDCSv2Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHBv3Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNPSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardFXMDVSFamily\",\r\n \"coreQuota\": 0\r\n }\r\n ],\r\n \"dedicatedCoreQuotaPerVMFamilyEnforced\": true,\r\n \"lowPriorityCoreQuota\": 500,\r\n \"poolQuota\": 100,\r\n \"activeJobAndJobScheduleQuota\": 300,\r\n \"poolAllocationMode\": \"BatchService\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"encryption\": {\r\n \"keySource\": \"Microsoft.Batch\"\r\n },\r\n \"allowedAuthenticationModes\": [\r\n \"SharedKey\",\r\n \"AAD\",\r\n \"TaskAuthenticationToken\"\r\n ]\r\n },\r\n \"tags\": {\r\n \"tag2\": \"tagValue2\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/ps88/providers/Microsoft.Batch/batchAccounts/ps1341?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL3BzODgvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzMTM0MT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/ba2358c2-42f2-4138-88df-7c68cf608bea/resourceGroups/ps965/providers/Microsoft.Batch/batchAccounts/ps1981?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmEyMzU4YzItNDJmMi00MTM4LTg4ZGYtN2M2OGNmNjA4YmVhL3Jlc291cmNlR3JvdXBzL3BzOTY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9wczE5ODE/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "41ab65f8-5908-4ae5-a164-b7c9ee121c9f" + "dc3b6c81-a95b-4868-9a9f-6e5858f607c1" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/11.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Batch.BatchManagementClient/14.0.0.0" ] }, "ResponseHeaders": { @@ -570,13 +573,13 @@ "no-cache" ], "ETag": [ - "\"0x8D80D90C2935466\"" + "\"0x8D969760F70BFC4\"" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11995" ], "x-ms-request-id": [ - "420fd306-c6d8-44d8-94b5-a109fb4766df" + "41e4255e-aac2-482f-ab9a-a9fe8d6942b6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -588,16 +591,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-correlation-request-id": [ - "d5040d70-9ac5-429d-9d5a-bbbf32dd2bd9" + "6bef8b0e-8d29-44c9-b685-7b70cd7c49e6" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T225106Z:d5040d70-9ac5-429d-9d5a-bbbf32dd2bd9" + "CENTRALUS:20210827T161644Z:6bef8b0e-8d29-44c9-b685-7b70cd7c49e6" ], "Date": [ - "Wed, 10 Jun 2020 22:51:06 GMT" + "Fri, 27 Aug 2021 16:16:44 GMT" ], "Content-Length": [ - "2227" + "2998" ], "Content-Type": [ "application/json; charset=utf-8" @@ -606,29 +609,29 @@ "-1" ], "Last-Modified": [ - "Wed, 10 Jun 2020 22:51:06 GMT" + "Fri, 27 Aug 2021 16:16:43 GMT" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/ps88/providers/Microsoft.Batch/batchAccounts/ps1341\",\r\n \"name\": \"ps1341\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"ps1341.westus.batch.azure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"dedicatedCoreQuota\": 700,\r\n \"dedicatedCoreQuotaPerVMFamily\": [\r\n {\r\n \"name\": \"standardAv2Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardDv2Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardDv3Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardEv3Family\",\r\n \"coreQuota\": 50\r\n },\r\n {\r\n \"name\": \"standardDSv2Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardDSv3Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardESv3Family\",\r\n \"coreQuota\": 50\r\n },\r\n {\r\n \"name\": \"standardFFamily\",\r\n \"coreQuota\": 50\r\n },\r\n {\r\n \"name\": \"standardFSFamily\",\r\n \"coreQuota\": 50\r\n },\r\n {\r\n \"name\": \"standardA0_A7Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardA8_A11Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardDFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardGFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"basicAFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNVFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNVPromoFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNCFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNCPromoFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHPromoFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardMSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardDSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardGSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardLSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardLSv2Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNCSv2Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNDSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNCSv3Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardFSv2Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHBSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHCSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNVSv3Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHBrsv2Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardDASv4Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardEAv4Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardEASv4Family\",\r\n \"coreQuota\": 0\r\n }\r\n ],\r\n \"dedicatedCoreQuotaPerVMFamilyEnforced\": false,\r\n \"lowPriorityCoreQuota\": 500,\r\n \"poolQuota\": 100,\r\n \"activeJobAndJobScheduleQuota\": 300,\r\n \"poolAllocationMode\": \"BatchService\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"encryption\": {\r\n \"keySource\": \"Microsoft.Batch\"\r\n }\r\n },\r\n \"tags\": {\r\n \"tag2\": \"tagValue2\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/ba2358c2-42f2-4138-88df-7c68cf608bea/resourceGroups/ps965/providers/Microsoft.Batch/batchAccounts/ps1981\",\r\n \"name\": \"ps1981\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"ps1981.westus.batch.azure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"dedicatedCoreQuota\": 500,\r\n \"dedicatedCoreQuotaPerVMFamily\": [\r\n {\r\n \"name\": \"standardAv2Family\",\r\n \"coreQuota\": 500\r\n },\r\n {\r\n \"name\": \"standardDv2Family\",\r\n \"coreQuota\": 250\r\n },\r\n {\r\n \"name\": \"standardDv3Family\",\r\n \"coreQuota\": 500\r\n },\r\n {\r\n \"name\": \"standardEv3Family\",\r\n \"coreQuota\": 500\r\n },\r\n {\r\n \"name\": \"standardDSv2Family\",\r\n \"coreQuota\": 250\r\n },\r\n {\r\n \"name\": \"standardDSv3Family\",\r\n \"coreQuota\": 500\r\n },\r\n {\r\n \"name\": \"standardESv3Family\",\r\n \"coreQuota\": 500\r\n },\r\n {\r\n \"name\": \"standardFSv2Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardNCFamily\",\r\n \"coreQuota\": 24\r\n },\r\n {\r\n \"name\": \"standardNVFamily\",\r\n \"coreQuota\": 24\r\n },\r\n {\r\n \"name\": \"standardDDv4Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardDDSv4Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardEDv4Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardEDSv4Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardA0_A7Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardA8_A11Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardDFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardGFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"basicAFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardFFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNVPromoFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNCPromoFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHPromoFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardMSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardDSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardFSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardGSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardLSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardLSv2Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNCSv2Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNDSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNCSv3Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHBSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHCSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNVSv3Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHBrsv2Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardDAv4Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardDASv4Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardEAv4Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardEASv4Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardMSv2Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardEIv3Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNVSv4Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"Standard NCASv3_T4 Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardXEIDSv4Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"Standard NDASv4_A100 Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardDCSv2Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHBv3Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNPSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardFXMDVSFamily\",\r\n \"coreQuota\": 0\r\n }\r\n ],\r\n \"dedicatedCoreQuotaPerVMFamilyEnforced\": true,\r\n \"lowPriorityCoreQuota\": 500,\r\n \"poolQuota\": 100,\r\n \"activeJobAndJobScheduleQuota\": 300,\r\n \"poolAllocationMode\": \"BatchService\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"encryption\": {\r\n \"keySource\": \"Microsoft.Batch\"\r\n },\r\n \"allowedAuthenticationModes\": [\r\n \"SharedKey\",\r\n \"AAD\",\r\n \"TaskAuthenticationToken\"\r\n ]\r\n },\r\n \"tags\": {\r\n \"tag2\": \"tagValue2\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/ps88/providers/Microsoft.Batch/batchAccounts/ps1341?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL3BzODgvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzMTM0MT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/ba2358c2-42f2-4138-88df-7c68cf608bea/resourceGroups/ps965/providers/Microsoft.Batch/batchAccounts/ps1981?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmEyMzU4YzItNDJmMi00MTM4LTg4ZGYtN2M2OGNmNjA4YmVhL3Jlc291cmNlR3JvdXBzL3BzOTY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9wczE5ODE/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8da4ace1-f97a-4a90-a628-7b789b676dd0" + "433cc371-5257-4655-9125-9f8fd64e1f0b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/11.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Batch.BatchManagementClient/14.0.0.0" ] }, "ResponseHeaders": { @@ -639,13 +642,13 @@ "no-cache" ], "ETag": [ - "\"0x8D80D90C3111F98\"" + "\"0x8D96976104B0AC8\"" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11994" ], "x-ms-request-id": [ - "3a82da79-027c-4ccd-80d8-60e1034d61a1" + "5ded4210-d6dd-4f48-96ba-f819ff7d747d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -657,16 +660,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-correlation-request-id": [ - "1412144b-1fa3-42d8-b9a5-9650b0a97f20" + "352e3fe0-3012-4add-bbe6-49a2dde4e30e" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T225107Z:1412144b-1fa3-42d8-b9a5-9650b0a97f20" + "CENTRALUS:20210827T161645Z:352e3fe0-3012-4add-bbe6-49a2dde4e30e" ], "Date": [ - "Wed, 10 Jun 2020 22:51:06 GMT" + "Fri, 27 Aug 2021 16:16:45 GMT" ], "Content-Length": [ - "2227" + "2998" ], "Content-Type": [ "application/json; charset=utf-8" @@ -675,29 +678,29 @@ "-1" ], "Last-Modified": [ - "Wed, 10 Jun 2020 22:51:07 GMT" + "Fri, 27 Aug 2021 16:16:45 GMT" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/ps88/providers/Microsoft.Batch/batchAccounts/ps1341\",\r\n \"name\": \"ps1341\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"ps1341.westus.batch.azure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"dedicatedCoreQuota\": 700,\r\n \"dedicatedCoreQuotaPerVMFamily\": [\r\n {\r\n \"name\": \"standardAv2Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardDv2Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardDv3Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardEv3Family\",\r\n \"coreQuota\": 50\r\n },\r\n {\r\n \"name\": \"standardDSv2Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardDSv3Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardESv3Family\",\r\n \"coreQuota\": 50\r\n },\r\n {\r\n \"name\": \"standardFFamily\",\r\n \"coreQuota\": 50\r\n },\r\n {\r\n \"name\": \"standardFSFamily\",\r\n \"coreQuota\": 50\r\n },\r\n {\r\n \"name\": \"standardA0_A7Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardA8_A11Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardDFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardGFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"basicAFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNVFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNVPromoFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNCFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNCPromoFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHPromoFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardMSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardDSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardGSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardLSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardLSv2Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNCSv2Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNDSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNCSv3Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardFSv2Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHBSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHCSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNVSv3Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHBrsv2Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardDASv4Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardEAv4Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardEASv4Family\",\r\n \"coreQuota\": 0\r\n }\r\n ],\r\n \"dedicatedCoreQuotaPerVMFamilyEnforced\": false,\r\n \"lowPriorityCoreQuota\": 500,\r\n \"poolQuota\": 100,\r\n \"activeJobAndJobScheduleQuota\": 300,\r\n \"poolAllocationMode\": \"BatchService\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"encryption\": {\r\n \"keySource\": \"Microsoft.Batch\"\r\n }\r\n },\r\n \"tags\": {\r\n \"tag2\": \"tagValue2\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/ba2358c2-42f2-4138-88df-7c68cf608bea/resourceGroups/ps965/providers/Microsoft.Batch/batchAccounts/ps1981\",\r\n \"name\": \"ps1981\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"ps1981.westus.batch.azure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"dedicatedCoreQuota\": 500,\r\n \"dedicatedCoreQuotaPerVMFamily\": [\r\n {\r\n \"name\": \"standardAv2Family\",\r\n \"coreQuota\": 500\r\n },\r\n {\r\n \"name\": \"standardDv2Family\",\r\n \"coreQuota\": 250\r\n },\r\n {\r\n \"name\": \"standardDv3Family\",\r\n \"coreQuota\": 500\r\n },\r\n {\r\n \"name\": \"standardEv3Family\",\r\n \"coreQuota\": 500\r\n },\r\n {\r\n \"name\": \"standardDSv2Family\",\r\n \"coreQuota\": 250\r\n },\r\n {\r\n \"name\": \"standardDSv3Family\",\r\n \"coreQuota\": 500\r\n },\r\n {\r\n \"name\": \"standardESv3Family\",\r\n \"coreQuota\": 500\r\n },\r\n {\r\n \"name\": \"standardFSv2Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardNCFamily\",\r\n \"coreQuota\": 24\r\n },\r\n {\r\n \"name\": \"standardNVFamily\",\r\n \"coreQuota\": 24\r\n },\r\n {\r\n \"name\": \"standardDDv4Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardDDSv4Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardEDv4Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardEDSv4Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardA0_A7Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardA8_A11Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardDFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardGFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"basicAFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardFFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNVPromoFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNCPromoFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHPromoFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardMSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardDSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardFSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardGSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardLSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardLSv2Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNCSv2Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNDSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNCSv3Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHBSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHCSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNVSv3Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHBrsv2Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardDAv4Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardDASv4Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardEAv4Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardEASv4Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardMSv2Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardEIv3Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNVSv4Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"Standard NCASv3_T4 Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardXEIDSv4Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"Standard NDASv4_A100 Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardDCSv2Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHBv3Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNPSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardFXMDVSFamily\",\r\n \"coreQuota\": 0\r\n }\r\n ],\r\n \"dedicatedCoreQuotaPerVMFamilyEnforced\": true,\r\n \"lowPriorityCoreQuota\": 500,\r\n \"poolQuota\": 100,\r\n \"activeJobAndJobScheduleQuota\": 300,\r\n \"poolAllocationMode\": \"BatchService\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"encryption\": {\r\n \"keySource\": \"Microsoft.Batch\"\r\n },\r\n \"allowedAuthenticationModes\": [\r\n \"SharedKey\",\r\n \"AAD\",\r\n \"TaskAuthenticationToken\"\r\n ]\r\n },\r\n \"tags\": {\r\n \"tag2\": \"tagValue2\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/ps88/providers/Microsoft.Batch/batchAccounts/ps1341?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL3BzODgvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzMTM0MT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/ba2358c2-42f2-4138-88df-7c68cf608bea/resourceGroups/ps965/providers/Microsoft.Batch/batchAccounts/ps1981?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmEyMzU4YzItNDJmMi00MTM4LTg4ZGYtN2M2OGNmNjA4YmVhL3Jlc291cmNlR3JvdXBzL3BzOTY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9wczE5ODE/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "151ac075-08ea-4f0f-bb8e-322f5586f0e1" + "70d1817a-3afe-4c24-ba55-499268377725" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/11.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Batch.BatchManagementClient/14.0.0.0" ] }, "ResponseHeaders": { @@ -711,7 +714,7 @@ "11991" ], "x-ms-request-id": [ - "1e18a316-f1f0-4c84-91c4-a4b3f4fb7dd5" + "52f3c710-3ae2-40a2-b01e-5f17b45ca823" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -723,13 +726,13 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-correlation-request-id": [ - "a77c6d7e-b8d0-40e4-946d-404fb92d8741" + "869b8263-e446-48ef-9709-26c5c5450e71" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T225122Z:a77c6d7e-b8d0-40e4-946d-404fb92d8741" + "CENTRALUS:20210827T161700Z:869b8263-e446-48ef-9709-26c5c5450e71" ], "Date": [ - "Wed, 10 Jun 2020 22:51:22 GMT" + "Fri, 27 Aug 2021 16:17:00 GMT" ], "Content-Length": [ "193" @@ -741,26 +744,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"AccountNotFound\",\r\n \"message\": \"The specified account does not exist.\\nRequestId:1e18a316-f1f0-4c84-91c4-a4b3f4fb7dd5\\nTime:2020-06-10T22:51:22.8556662Z\",\r\n \"target\": \"BatchAccount\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"AccountNotFound\",\r\n \"message\": \"The specified account does not exist.\\nRequestId:52f3c710-3ae2-40a2-b01e-5f17b45ca823\\nTime:2021-08-27T16:17:00.8804557Z\",\r\n \"target\": \"BatchAccount\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resources?$filter=resourceType%20eq%20'Microsoft.Batch%2FbatchAccounts'&api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5CYXRjaCUyRmJhdGNoQWNjb3VudHMnJmFwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/ba2358c2-42f2-4138-88df-7c68cf608bea/resources?$filter=resourceType%20eq%20'Microsoft.Batch%2FbatchAccounts'&api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmEyMzU4YzItNDJmMi00MTM4LTg4ZGYtN2M2OGNmNjA4YmVhL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5CYXRjaCUyRmJhdGNoQWNjb3VudHMnJmFwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f910e8b1-68a3-4389-be2c-77f1785f0ed9" + "e3aec99f-956c-475d-b2ac-32e91a303b8d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.43" ] }, "ResponseHeaders": { @@ -774,13 +777,13 @@ "11998" ], "x-ms-request-id": [ - "0c51730d-147d-42f5-84bf-1be778b103d3" + "8804dc64-622d-4a2b-89a2-17504e453a53" ], "x-ms-correlation-request-id": [ - "0c51730d-147d-42f5-84bf-1be778b103d3" + "8804dc64-622d-4a2b-89a2-17504e453a53" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T225106Z:0c51730d-147d-42f5-84bf-1be778b103d3" + "NORTHCENTRALUS:20210827T161644Z:8804dc64-622d-4a2b-89a2-17504e453a53" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -789,7 +792,7 @@ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 22:51:06 GMT" + "Fri, 27 Aug 2021 16:16:44 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -798,29 +801,29 @@ "-1" ], "Content-Length": [ - "16750" + "461" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/123/providers/Microsoft.Batch/batchAccounts/zfengbyos\",\r\n \"name\": \"zfengbyos\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/123/providers/Microsoft.Batch/batchAccounts/zfengtest\",\r\n \"name\": \"zfengtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/123/providers/Microsoft.Batch/batchAccounts/zfengtest1\",\r\n \"name\": \"zfengtest1\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/123/providers/Microsoft.Batch/batchAccounts/zfengtest21\",\r\n \"name\": \"zfengtest21\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/123/providers/Microsoft.Batch/batchAccounts/zfengtest4\",\r\n \"name\": \"zfengtest4\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/123/providers/Microsoft.Batch/batchAccounts/zfengtest7\",\r\n \"name\": \"zfengtest7\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/abc/providers/Microsoft.Batch/batchAccounts/prodtest6\",\r\n \"name\": \"prodtest6\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"francecentral\",\r\n \"tags\": {\r\n \"test3\": \"true\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/Accessibility/providers/Microsoft.Batch/batchAccounts/a11ytest\",\r\n \"name\": \"a11ytest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westcentralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/Accessibility/providers/Microsoft.Batch/batchAccounts/accessbilitytest\",\r\n \"name\": \"accessbilitytest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/BatchDNCrg/providers/Microsoft.Batch/batchAccounts/adfrolling2\",\r\n \"name\": \"adfrolling2\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/canary/providers/Microsoft.Batch/batchAccounts/canaryeast\",\r\n \"name\": \"canaryeast\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus2euap\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/canary/providers/Microsoft.Batch/batchAccounts/euaptest0611021004990589\",\r\n \"name\": \"euaptest0611021004990589\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus2euap\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/canary/providers/Microsoft.Batch/batchAccounts/euaptest0630031004731897\",\r\n \"name\": \"euaptest0630031004731897\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus2euap\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/canary/providers/Microsoft.Batch/batchAccounts/euaptest0630121004863737\",\r\n \"name\": \"euaptest0630121004863737\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus2euap\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/canary/providers/Microsoft.Batch/batchAccounts/euaptest0711041013356487\",\r\n \"name\": \"euaptest0711041013356487\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus2euap\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/canary/providers/Microsoft.Batch/batchAccounts/euaptest0716041018413102\",\r\n \"name\": \"euaptest0716041018413102\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus2euap\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/canary/providers/Microsoft.Batch/batchAccounts/euaptest0808191004097188\",\r\n \"name\": \"euaptest0808191004097188\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus2euap\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/canary/providers/Microsoft.Batch/batchAccounts/euaptest0814041017852508\",\r\n \"name\": \"euaptest0814041017852508\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus2euap\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/canary/providers/Microsoft.Batch/batchAccounts/euaptest0822111005187123\",\r\n \"name\": \"euaptest0822111005187123\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {\r\n \"region\": \"canary\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/canary/providers/Microsoft.Batch/batchAccounts/euaptest0822121004763792\",\r\n \"name\": \"euaptest0822121004763792\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {\r\n \"region\": \"canary\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/canary/providers/Microsoft.Batch/batchAccounts/euaptest0822131005136953\",\r\n \"name\": \"euaptest0822131005136953\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {\r\n \"region\": \"canary\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/canary/providers/Microsoft.Batch/batchAccounts/euaptest0822141003901289\",\r\n \"name\": \"euaptest0822141003901289\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {\r\n \"region\": \"canary\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/canary/providers/Microsoft.Batch/batchAccounts/euaptest0822151004258761\",\r\n \"name\": \"euaptest0822151004258761\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {\r\n \"region\": \"canary\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/canary/providers/Microsoft.Batch/batchAccounts/euaptest0822161005474421\",\r\n \"name\": \"euaptest0822161005474421\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {\r\n \"region\": \"canary\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/canary/providers/Microsoft.Batch/batchAccounts/euaptest0822171004503623\",\r\n \"name\": \"euaptest0822171004503623\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {\r\n \"region\": \"canary\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/canary/providers/Microsoft.Batch/batchAccounts/euaptest0822181004907394\",\r\n \"name\": \"euaptest0822181004907394\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {\r\n \"region\": \"canary\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/canary/providers/Microsoft.Batch/batchAccounts/euaptest0919211004355010\",\r\n \"name\": \"euaptest0919211004355010\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus2euap\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/canary/providers/Microsoft.Batch/batchAccounts/euaptest0921031009642615\",\r\n \"name\": \"euaptest0921031009642615\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus2euap\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/canary/providers/Microsoft.Batch/batchAccounts/euaptest1213011004867318\",\r\n \"name\": \"euaptest1213011004867318\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus2euap\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/canary/providers/Microsoft.Batch/batchAccounts/euaptest1214051004320420\",\r\n \"name\": \"euaptest1214051004320420\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus2euap\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/canary/providers/Microsoft.Batch/batchAccounts/euaptest1215061004521144\",\r\n \"name\": \"euaptest1215061004521144\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {\r\n \"region\": \"canary\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/canary/providers/Microsoft.Batch/batchAccounts/testcanary\",\r\n \"name\": \"testcanary\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"centraluseuap\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/doAzureParallel/providers/Microsoft.Batch/batchAccounts/canaryeast1\",\r\n \"name\": \"canaryeast1\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus2euap\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/prodtest1/providers/Microsoft.Batch/batchAccounts/prodtest1\",\r\n \"name\": \"prodtest1\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/prodtest3/providers/Microsoft.Batch/batchAccounts/prodtest3\",\r\n \"name\": \"prodtest3\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"southcentralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/prodtest4/providers/Microsoft.Batch/batchAccounts/pilotprod2test3\",\r\n \"name\": \"pilotprod2test3\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/prodtest4/providers/Microsoft.Batch/batchAccounts/pilotprodtestquota3\",\r\n \"name\": \"pilotprodtestquota3\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/prodtest4/providers/Microsoft.Batch/batchAccounts/pilotprodtestquota4\",\r\n \"name\": \"pilotprodtestquota4\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/prodtest4/providers/Microsoft.Batch/batchAccounts/prodtest4\",\r\n \"name\": \"prodtest4\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"centralus\",\r\n \"tags\": {\r\n \"test\": \"true\",\r\n \"test2\": \"true\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/prodtest5/providers/Microsoft.Batch/batchAccounts/prodtest5\",\r\n \"name\": \"prodtest5\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/ps3584/providers/Microsoft.Batch/batchAccounts/ps6084\",\r\n \"name\": \"ps6084\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/ps3892/providers/Microsoft.Batch/batchAccounts/ps4695\",\r\n \"name\": \"ps4695\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\",\r\n \"identity\": {\r\n \"principalId\": \"32e0b0da-c57b-4b36-b982-ddc483a638c9\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"SystemAssigned\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/ps8598/providers/Microsoft.Batch/batchAccounts/ps6118\",\r\n \"name\": \"ps6118\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/ps88/providers/Microsoft.Batch/batchAccounts/ps1341\",\r\n \"name\": \"ps1341\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"tag2\": \"tagValue2\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/rechentest/providers/Microsoft.Batch/batchAccounts/0prodtest\",\r\n \"name\": \"0prodtest\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/rechentest/providers/Microsoft.Batch/batchAccounts/testing\",\r\n \"name\": \"testing\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/rechentest/providers/Microsoft.Batch/batchAccounts/testunusablenodes\",\r\n \"name\": \"testunusablenodes\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/spark-hackathon/providers/Microsoft.Batch/batchAccounts/pilotprodtestquota\",\r\n \"name\": \"pilotprodtestquota\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/spark-hackathon/providers/Microsoft.Batch/batchAccounts/pilotprodtestquota2\",\r\n \"name\": \"pilotprodtestquota2\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/twacdmtestRG/providers/Microsoft.Batch/batchAccounts/twacdmbatchacct\",\r\n \"name\": \"twacdmbatchacct\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"centraluseuap\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/ade1\",\r\n \"name\": \"ade1\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"a\": \"b\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/byospilotprod2\",\r\n \"name\": \"byospilotprod2\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/ytre\",\r\n \"name\": \"ytre\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/zfeng521\",\r\n \"name\": \"zfeng521\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\",\r\n \"identity\": {\r\n \"principalId\": \"efb7955a-899d-4096-ac74-d31daefce211\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"SystemAssigned\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/zfeng710\",\r\n \"name\": \"zfeng710\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/zfengcmk\",\r\n \"name\": \"zfengcmk\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/zfengcmk1\",\r\n \"name\": \"zfengcmk1\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/zfengcmk2\",\r\n \"name\": \"zfengcmk2\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/zfengcmk4\",\r\n \"name\": \"zfengcmk4\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/zfengcmkpp1\",\r\n \"name\": \"zfengcmkpp1\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus2\",\r\n \"identity\": {\r\n \"principalId\": \"b72c8be9-e240-48bb-95b3-8df72be5c969\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"SystemAssigned\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/zfengcmkpp2\",\r\n \"name\": \"zfengcmkpp2\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus2\",\r\n \"identity\": {\r\n \"principalId\": \"08e857f7-9f14-4d8a-985d-86546e35d747\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"SystemAssigned\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/zfengcmkpp3\",\r\n \"name\": \"zfengcmkpp3\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus2\",\r\n \"identity\": {\r\n \"principalId\": \"a139e587-6fbe-43d9-b439-0f908be49bae\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"SystemAssigned\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/zfengfff\",\r\n \"name\": \"zfengfff\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\",\r\n \"identity\": {\r\n \"principalId\": \"d1f7afbd-6333-44e2-92dd-0bdc15384f36\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"SystemAssigned\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/zfengpna\",\r\n \"name\": \"zfengpna\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/zfengpna1\",\r\n \"name\": \"zfengpna1\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/zfengscus\",\r\n \"name\": \"zfengscus\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"southcentralus\",\r\n \"identity\": {\r\n \"principalId\": \"bba85f11-cff7-4318-a339-b0ca615c1b6c\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"SystemAssigned\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/zfengwus\",\r\n \"name\": \"zfengwus\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\",\r\n \"identity\": {\r\n \"principalId\": \"0afcee94-2357-4d05-9f31-42a27a040ae5\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"SystemAssigned\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/zfeng/providers/Microsoft.Batch/batchAccounts/zfwestus\",\r\n \"name\": \"zfwestus\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/ba2358c2-42f2-4138-88df-7c68cf608bea/resourceGroups/ps965/providers/Microsoft.Batch/batchAccounts/ps1981\",\r\n \"name\": \"ps1981\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"tag2\": \"tagValue2\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/ba2358c2-42f2-4138-88df-7c68cf608bea/resourceGroups/batchportal/providers/Microsoft.Batch/batchAccounts/mikeportal\",\r\n \"name\": \"mikeportal\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/ps88/providers/Microsoft.Batch/batchAccounts/ps1341/listKeys?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL3BzODgvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzMTM0MS9saXN0S2V5cz9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/ba2358c2-42f2-4138-88df-7c68cf608bea/resourceGroups/ps965/providers/Microsoft.Batch/batchAccounts/ps1981/listKeys?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmEyMzU4YzItNDJmMi00MTM4LTg4ZGYtN2M2OGNmNjA4YmVhL3Jlc291cmNlR3JvdXBzL3BzOTY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9wczE5ODEvbGlzdEtleXM/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9ac65b3f-6a9e-419c-8d27-c905092fe139" + "e3aec99f-956c-475d-b2ac-32e91a303b8d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/11.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Batch.BatchManagementClient/14.0.0.0" ] }, "ResponseHeaders": { @@ -834,7 +837,7 @@ "1199" ], "x-ms-request-id": [ - "51bc8fa0-9d1b-46cb-b13a-1607b70ea737" + "8540ff3f-ce8b-4ed6-9b5c-91fe27aee02c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -846,13 +849,13 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-correlation-request-id": [ - "c0566d3a-9173-4baa-8a9e-fd816aa0b895" + "c16a0376-d9e2-4c61-a13b-62cc6b212708" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T225106Z:c0566d3a-9173-4baa-8a9e-fd816aa0b895" + "CENTRALUS:20210827T161644Z:c16a0376-d9e2-4c61-a13b-62cc6b212708" ], "Date": [ - "Wed, 10 Jun 2020 22:51:05 GMT" + "Fri, 27 Aug 2021 16:16:44 GMT" ], "Content-Length": [ "228" @@ -864,26 +867,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"accountName\": \"ps1341\",\r\n \"primary\": \"zG+OffKl4Z1R53sA0WDVOazkzcU0F4+A8ZSWZBtTJD9dKNi8wfRDOEoy8dDiCO3yMkFzdsrLCZvk4KhEZMDg3Q==\",\r\n \"secondary\": \"D00F44n1/CThIEbEQfw8ODBKzBpM7O/GTKgfmgCzf0N4RdmZH5wMNxin82rU4fsSLkt8C20ayUBIJ38xk9N15g==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"ps1981\",\r\n \"primary\": \"u2V1o2EeBao9JJaYC9QEZOwaNkL1V/NNpRaAo2Rt/+bI5tA6pQuJPaOzNbrzYzu8ZOkd32oHmbJIXsXoijc8/g==\",\r\n \"secondary\": \"gQNQiSTaJJsSdUUjJAb05r4DEqPyhjjkDl9UDynhJX2vmJHRqsC5STEPOUrdBHmeODv1KVkNBVopOHZBvGK1DA==\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/ps88/providers/Microsoft.Batch/batchAccounts/ps1341/listKeys?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL3BzODgvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzMTM0MS9saXN0S2V5cz9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/ba2358c2-42f2-4138-88df-7c68cf608bea/resourceGroups/ps965/providers/Microsoft.Batch/batchAccounts/ps1981/listKeys?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmEyMzU4YzItNDJmMi00MTM4LTg4ZGYtN2M2OGNmNjA4YmVhL3Jlc291cmNlR3JvdXBzL3BzOTY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9wczE5ODEvbGlzdEtleXM/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a8dfe470-9ac3-476d-bf68-22ddb9ef7ed0" + "dc3b6c81-a95b-4868-9a9f-6e5858f607c1" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/11.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Batch.BatchManagementClient/14.0.0.0" ] }, "ResponseHeaders": { @@ -897,7 +900,7 @@ "1198" ], "x-ms-request-id": [ - "8ac493a0-8cb1-4236-b0cc-5228144ac83c" + "0df2739a-7144-4664-9f90-cab7dcd1c126" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -909,13 +912,13 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-correlation-request-id": [ - "1ec9a73c-dcff-4b17-8aba-14abb3efcc2c" + "7621d8dd-ef5d-4955-a993-d7c8f408053a" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T225107Z:1ec9a73c-dcff-4b17-8aba-14abb3efcc2c" + "CENTRALUS:20210827T161644Z:7621d8dd-ef5d-4955-a993-d7c8f408053a" ], "Date": [ - "Wed, 10 Jun 2020 22:51:06 GMT" + "Fri, 27 Aug 2021 16:16:44 GMT" ], "Content-Length": [ "228" @@ -927,26 +930,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"accountName\": \"ps1341\",\r\n \"primary\": \"zG+OffKl4Z1R53sA0WDVOazkzcU0F4+A8ZSWZBtTJD9dKNi8wfRDOEoy8dDiCO3yMkFzdsrLCZvk4KhEZMDg3Q==\",\r\n \"secondary\": \"D00F44n1/CThIEbEQfw8ODBKzBpM7O/GTKgfmgCzf0N4RdmZH5wMNxin82rU4fsSLkt8C20ayUBIJ38xk9N15g==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"ps1981\",\r\n \"primary\": \"u2V1o2EeBao9JJaYC9QEZOwaNkL1V/NNpRaAo2Rt/+bI5tA6pQuJPaOzNbrzYzu8ZOkd32oHmbJIXsXoijc8/g==\",\r\n \"secondary\": \"gQNQiSTaJJsSdUUjJAb05r4DEqPyhjjkDl9UDynhJX2vmJHRqsC5STEPOUrdBHmeODv1KVkNBVopOHZBvGK1DA==\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/ps88/providers/Microsoft.Batch/batchAccounts/ps1341/regenerateKeys?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL3BzODgvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzMTM0MS9yZWdlbmVyYXRlS2V5cz9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/ba2358c2-42f2-4138-88df-7c68cf608bea/resourceGroups/ps965/providers/Microsoft.Batch/batchAccounts/ps1981/regenerateKeys?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmEyMzU4YzItNDJmMi00MTM4LTg4ZGYtN2M2OGNmNjA4YmVhL3Jlc291cmNlR3JvdXBzL3BzOTY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9wczE5ODEvcmVnZW5lcmF0ZUtleXM/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", "RequestMethod": "POST", "RequestBody": "{\r\n \"keyName\": \"Primary\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "4d9ef02e-6ad1-4cb0-ac23-4334fb3c9fa6" + "433cc371-5257-4655-9125-9f8fd64e1f0b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/11.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Batch.BatchManagementClient/14.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -966,7 +969,7 @@ "1197" ], "x-ms-request-id": [ - "9c813f81-2bac-44f5-aa88-b68dd2c834cb" + "74cf5cdf-63e4-49fc-b7fb-87e3fe279062" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -978,13 +981,13 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-correlation-request-id": [ - "255236ab-b3ee-429e-85d3-ce45171908a2" + "9287c645-17ab-40bc-9d4d-904520297eff" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T225107Z:255236ab-b3ee-429e-85d3-ce45171908a2" + "CENTRALUS:20210827T161645Z:9287c645-17ab-40bc-9d4d-904520297eff" ], "Date": [ - "Wed, 10 Jun 2020 22:51:06 GMT" + "Fri, 27 Aug 2021 16:16:44 GMT" ], "Content-Length": [ "228" @@ -996,26 +999,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"accountName\": \"ps1341\",\r\n \"primary\": \"1PSBJLaGIzGpw68MKsT+Txwd3mnODk2ru7kQI5WUyam9+6I6lDbcgl4hblnhOSLc+obaYvZn5v7oPM6BEt9CQQ==\",\r\n \"secondary\": \"D00F44n1/CThIEbEQfw8ODBKzBpM7O/GTKgfmgCzf0N4RdmZH5wMNxin82rU4fsSLkt8C20ayUBIJ38xk9N15g==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"ps1981\",\r\n \"primary\": \"SxdGAKRV+C6EDc3KOpoBO+chSMuvgKZS+HF3EtQNudZiGdBVlV2eGQHzGxxL0K4P4lTvv0YfQnBkhtxqeDI37w==\",\r\n \"secondary\": \"gQNQiSTaJJsSdUUjJAb05r4DEqPyhjjkDl9UDynhJX2vmJHRqsC5STEPOUrdBHmeODv1KVkNBVopOHZBvGK1DA==\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/ps88/providers/Microsoft.Batch/batchAccounts/ps1341?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL3BzODgvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3BzMTM0MT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/ba2358c2-42f2-4138-88df-7c68cf608bea/resourceGroups/ps965/providers/Microsoft.Batch/batchAccounts/ps1981?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmEyMzU4YzItNDJmMi00MTM4LTg4ZGYtN2M2OGNmNjA4YmVhL3Jlc291cmNlR3JvdXBzL3BzOTY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9wczE5ODE/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ae3e1ac9-3532-42b0-92c2-acda532ad785" + "f010d251-0aa9-4ea2-8910-b23f53e7248b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/11.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Batch.BatchManagementClient/14.0.0.0" ] }, "ResponseHeaders": { @@ -1026,13 +1029,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/westus/accountOperationResults/ps1341-c7faaed9-7360-40f8-a06c-9bb67cf90544?api-version=2020-05-01" + "https://management.azure.com/subscriptions/ba2358c2-42f2-4138-88df-7c68cf608bea/providers/Microsoft.Batch/locations/westus/accountOperationResults/ps1981-31512b82-fd6f-4911-b90a-ebf5150e30ed?api-version=2021-06-01" ], "Retry-After": [ "15" ], "x-ms-request-id": [ - "c7faaed9-7360-40f8-a06c-9bb67cf90544" + "31512b82-fd6f-4911-b90a-ebf5150e30ed" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1047,13 +1050,13 @@ "14999" ], "x-ms-correlation-request-id": [ - "c870cfb7-6ac2-4023-8995-a26482e2d5db" + "d9af4198-b2b5-4f17-a1ee-42abaf691953" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T225107Z:c870cfb7-6ac2-4023-8995-a26482e2d5db" + "CENTRALUS:20210827T161645Z:d9af4198-b2b5-4f17-a1ee-42abaf691953" ], "Date": [ - "Wed, 10 Jun 2020 22:51:06 GMT" + "Fri, 27 Aug 2021 16:16:45 GMT" ], "Expires": [ "-1" @@ -1066,16 +1069,19 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/westus/accountOperationResults/ps1341-c7faaed9-7360-40f8-a06c-9bb67cf90544?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL3dlc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9wczEzNDEtYzdmYWFlZDktNzM2MC00MGY4LWEwNmMtOWJiNjdjZjkwNTQ0P2FwaS12ZXJzaW9uPTIwMjAtMDUtMDE=", + "RequestUri": "/subscriptions/ba2358c2-42f2-4138-88df-7c68cf608bea/providers/Microsoft.Batch/locations/westus/accountOperationResults/ps1981-31512b82-fd6f-4911-b90a-ebf5150e30ed?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmEyMzU4YzItNDJmMi00MTM4LTg4ZGYtN2M2OGNmNjA4YmVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL3dlc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9wczE5ODEtMzE1MTJiODItZmQ2Zi00OTExLWI5MGEtZWJmNTE1MGUzMGVkP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "f010d251-0aa9-4ea2-8910-b23f53e7248b" + ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/11.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Batch.BatchManagementClient/14.0.0.0" ] }, "ResponseHeaders": { @@ -1086,7 +1092,7 @@ "no-cache" ], "x-ms-request-id": [ - "b0db6e1d-0d64-4582-a90f-cd4aef7ef9d4" + "587d2808-d9c6-4fc8-9bd4-c7bf7074d799" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1101,13 +1107,13 @@ "11993" ], "x-ms-correlation-request-id": [ - "67316f15-3411-432a-a479-9f4c1bf91197" + "b74e9f00-7508-409f-99ff-5bfa15d88337" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T225122Z:67316f15-3411-432a-a479-9f4c1bf91197" + "CENTRALUS:20210827T161700Z:b74e9f00-7508-409f-99ff-5bfa15d88337" ], "Date": [ - "Wed, 10 Jun 2020 22:51:22 GMT" + "Fri, 27 Aug 2021 16:17:00 GMT" ], "Expires": [ "-1" @@ -1120,16 +1126,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/westus/accountOperationResults/ps1341-c7faaed9-7360-40f8-a06c-9bb67cf90544?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL3dlc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9wczEzNDEtYzdmYWFlZDktNzM2MC00MGY4LWEwNmMtOWJiNjdjZjkwNTQ0P2FwaS12ZXJzaW9uPTIwMjAtMDUtMDE=", + "RequestUri": "/subscriptions/ba2358c2-42f2-4138-88df-7c68cf608bea/providers/Microsoft.Batch/locations/westus/accountOperationResults/ps1981-31512b82-fd6f-4911-b90a-ebf5150e30ed?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmEyMzU4YzItNDJmMi00MTM4LTg4ZGYtN2M2OGNmNjA4YmVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL3dlc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9wczE5ODEtMzE1MTJiODItZmQ2Zi00OTExLWI5MGEtZWJmNTE1MGUzMGVkP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "f010d251-0aa9-4ea2-8910-b23f53e7248b" + ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/11.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Batch.BatchManagementClient/14.0.0.0" ] }, "ResponseHeaders": { @@ -1140,7 +1149,7 @@ "no-cache" ], "x-ms-request-id": [ - "bf39ce08-9b9b-475d-85f0-3fca5f786835" + "3b996078-a97b-4ba9-9f44-4fb9118bf20b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1155,13 +1164,13 @@ "11992" ], "x-ms-correlation-request-id": [ - "dd3e1548-31bb-48f3-9a51-03c806de0c87" + "6fd06309-855e-4da3-b13e-76495d3d30b1" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T225122Z:dd3e1548-31bb-48f3-9a51-03c806de0c87" + "CENTRALUS:20210827T161700Z:6fd06309-855e-4da3-b13e-76495d3d30b1" ], "Date": [ - "Wed, 10 Jun 2020 22:51:22 GMT" + "Fri, 27 Aug 2021 16:17:00 GMT" ], "Expires": [ "-1" @@ -1174,22 +1183,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourcegroups/ps88?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlZ3JvdXBzL3BzODg/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/ba2358c2-42f2-4138-88df-7c68cf608bea/resourcegroups/ps965?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmEyMzU4YzItNDJmMi00MTM4LTg4ZGYtN2M2OGNmNjA4YmVhL3Jlc291cmNlZ3JvdXBzL3BzOTY1P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "483400ae-fffd-4874-b480-66afecbb4338" + "f85e4032-af79-42a2-a635-f51e88eacab7" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.43" ] }, "ResponseHeaders": { @@ -1200,7 +1209,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg4LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/ba2358c2-42f2-4138-88df-7c68cf608bea/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk2NS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -1209,13 +1218,13 @@ "14999" ], "x-ms-request-id": [ - "3dc01c3c-dc20-4afd-ac35-426428dc0809" + "c4052c70-2cd3-4349-86d0-aebcb4eae528" ], "x-ms-correlation-request-id": [ - "3dc01c3c-dc20-4afd-ac35-426428dc0809" + "c4052c70-2cd3-4349-86d0-aebcb4eae528" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T225123Z:3dc01c3c-dc20-4afd-ac35-426428dc0809" + "NORTHCENTRALUS:20210827T161701Z:c4052c70-2cd3-4349-86d0-aebcb4eae528" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1224,7 +1233,7 @@ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 22:51:22 GMT" + "Fri, 27 Aug 2021 16:17:01 GMT" ], "Expires": [ "-1" @@ -1237,16 +1246,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg4LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnNExWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/ba2358c2-42f2-4138-88df-7c68cf608bea/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk2NS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmEyMzU4YzItNDJmMi00MTM4LTg4ZGYtN2M2OGNmNjA4YmVhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprMk5TMVhSVk5VVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5kbGMzUjFjeUo5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.43" ] }, "ResponseHeaders": { @@ -1257,7 +1266,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg4LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/ba2358c2-42f2-4138-88df-7c68cf608bea/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk2NS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -1266,13 +1275,13 @@ "11997" ], "x-ms-request-id": [ - "e957e3e5-1656-4109-b835-b7048e7a33a1" + "cfb7fe9b-7c70-4d85-b703-62e0bec236c4" ], "x-ms-correlation-request-id": [ - "e957e3e5-1656-4109-b835-b7048e7a33a1" + "cfb7fe9b-7c70-4d85-b703-62e0bec236c4" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T225138Z:e957e3e5-1656-4109-b835-b7048e7a33a1" + "NORTHCENTRALUS:20210827T161717Z:cfb7fe9b-7c70-4d85-b703-62e0bec236c4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1281,7 +1290,7 @@ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 22:51:37 GMT" + "Fri, 27 Aug 2021 16:17:16 GMT" ], "Expires": [ "-1" @@ -1294,16 +1303,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg4LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnNExWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/ba2358c2-42f2-4138-88df-7c68cf608bea/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk2NS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmEyMzU4YzItNDJmMi00MTM4LTg4ZGYtN2M2OGNmNjA4YmVhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprMk5TMVhSVk5VVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5kbGMzUjFjeUo5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.43" ] }, "ResponseHeaders": { @@ -1314,7 +1323,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg4LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/ba2358c2-42f2-4138-88df-7c68cf608bea/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk2NS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -1323,13 +1332,13 @@ "11996" ], "x-ms-request-id": [ - "7445c0c6-e1a1-42c6-b6d4-2e71fbacb790" + "8c326fd4-83f7-476e-8d58-9c9ef23fe50a" ], "x-ms-correlation-request-id": [ - "7445c0c6-e1a1-42c6-b6d4-2e71fbacb790" + "8c326fd4-83f7-476e-8d58-9c9ef23fe50a" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T225153Z:7445c0c6-e1a1-42c6-b6d4-2e71fbacb790" + "NORTHCENTRALUS:20210827T161732Z:8c326fd4-83f7-476e-8d58-9c9ef23fe50a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1338,7 +1347,7 @@ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 22:51:53 GMT" + "Fri, 27 Aug 2021 16:17:31 GMT" ], "Expires": [ "-1" @@ -1351,16 +1360,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg4LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnNExWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/ba2358c2-42f2-4138-88df-7c68cf608bea/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk2NS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmEyMzU4YzItNDJmMi00MTM4LTg4ZGYtN2M2OGNmNjA4YmVhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprMk5TMVhSVk5VVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5kbGMzUjFjeUo5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.43" ] }, "ResponseHeaders": { @@ -1370,17 +1379,23 @@ "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/ba2358c2-42f2-4138-88df-7c68cf608bea/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk2NS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], "x-ms-ratelimit-remaining-subscription-reads": [ "11995" ], "x-ms-request-id": [ - "0f6e3c53-c549-455b-93b4-4ab5d49d11aa" + "4cb7d9e1-30fc-44a7-ae28-a3f151d21ba4" ], "x-ms-correlation-request-id": [ - "0f6e3c53-c549-455b-93b4-4ab5d49d11aa" + "4cb7d9e1-30fc-44a7-ae28-a3f151d21ba4" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T225208Z:0f6e3c53-c549-455b-93b4-4ab5d49d11aa" + "NORTHCENTRALUS:20210827T161747Z:4cb7d9e1-30fc-44a7-ae28-a3f151d21ba4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1389,7 +1404,7 @@ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 22:52:08 GMT" + "Fri, 27 Aug 2021 16:17:46 GMT" ], "Expires": [ "-1" @@ -1399,19 +1414,19 @@ ] }, "ResponseBody": "", - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg4LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnNExWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/ba2358c2-42f2-4138-88df-7c68cf608bea/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk2NS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmEyMzU4YzItNDJmMi00MTM4LTg4ZGYtN2M2OGNmNjA4YmVhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprMk5TMVhSVk5VVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5kbGMzUjFjeUo5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.43" ] }, "ResponseHeaders": { @@ -1421,17 +1436,125 @@ "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/ba2358c2-42f2-4138-88df-7c68cf608bea/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk2NS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], "x-ms-ratelimit-remaining-subscription-reads": [ "11994" ], "x-ms-request-id": [ - "767097f2-cc29-4239-ac87-395c89eb817e" + "20e1b110-9435-4114-8dd9-e3d47920e38b" + ], + "x-ms-correlation-request-id": [ + "20e1b110-9435-4114-8dd9-e3d47920e38b" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20210827T161802Z:20e1b110-9435-4114-8dd9-e3d47920e38b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 27 Aug 2021 16:18:02 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/ba2358c2-42f2-4138-88df-7c68cf608bea/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk2NS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmEyMzU4YzItNDJmMi00MTM4LTg4ZGYtN2M2OGNmNjA4YmVhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprMk5TMVhSVk5VVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5kbGMzUjFjeUo5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.43" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-request-id": [ + "ad5da7e5-1af0-4369-9bfb-4f81347c1c8f" + ], + "x-ms-correlation-request-id": [ + "ad5da7e5-1af0-4369-9bfb-4f81347c1c8f" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20210827T161817Z:ad5da7e5-1af0-4369-9bfb-4f81347c1c8f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 27 Aug 2021 16:18:17 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ba2358c2-42f2-4138-88df-7c68cf608bea/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk2NS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmEyMzU4YzItNDJmMi00MTM4LTg4ZGYtN2M2OGNmNjA4YmVhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprMk5TMVhSVk5VVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5kbGMzUjFjeUo5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.43" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" + ], + "x-ms-request-id": [ + "4a8c80cc-2086-419e-9d4f-d6253f726e7a" ], "x-ms-correlation-request-id": [ - "767097f2-cc29-4239-ac87-395c89eb817e" + "4a8c80cc-2086-419e-9d4f-d6253f726e7a" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T225208Z:767097f2-cc29-4239-ac87-395c89eb817e" + "NORTHCENTRALUS:20210827T161817Z:4a8c80cc-2086-419e-9d4f-d6253f726e7a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1440,7 +1563,7 @@ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 22:52:08 GMT" + "Fri, 27 Aug 2021 16:18:17 GMT" ], "Expires": [ "-1" @@ -1455,14 +1578,14 @@ ], "Names": { "Test-BatchAccountEndToEnd": [ - "ps1341", - "ps88" + "ps1981", + "ps965" ] }, "Variables": { - "SubscriptionId": "21abd678-18c5-4660-9fdd-8c5ba6b6fe1f", - "AZURE_BATCH_ACCOUNT": "prodtest6", - "AZURE_BATCH_ENDPOINT": "https://prodtest6.francecentral.batch.azure.com", - "AZURE_BATCH_RESOURCE_GROUP": "abc" + "SubscriptionId": "ba2358c2-42f2-4138-88df-7c68cf608bea", + "AZURE_BATCH_ACCOUNT": "mikeportal", + "AZURE_BATCH_ENDPOINT": "https://mikeportal.eastus.batch.azure.com", + "AZURE_BATCH_RESOURCE_GROUP": "batchportal" } } \ No newline at end of file diff --git a/src/Batch/Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.BatchAccountTests/TestCreateNewBatchAccountWithNoPublicIp.json b/src/Batch/Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.BatchAccountTests/TestCreateNewBatchAccountWithNoPublicIp.json index 0d24674c9ebd..5d1000962fce 100644 --- a/src/Batch/Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.BatchAccountTests/TestCreateNewBatchAccountWithNoPublicIp.json +++ b/src/Batch/Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.BatchAccountTests/TestCreateNewBatchAccountWithNoPublicIp.json @@ -1,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2g/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/ba2358c2-42f2-4138-88df-7c68cf608bea/providers/Microsoft.Batch?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmEyMzU4YzItNDJmMi00MTM4LTg4ZGYtN2M2OGNmNjA4YmVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2g/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c1a8518c-0a16-43f2-857d-04b78052dd49" + "77cdfdbe-4067-4633-a589-c0c91131773a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.43" ] }, "ResponseHeaders": { @@ -30,13 +30,13 @@ "11999" ], "x-ms-request-id": [ - "f9cceae7-4ed1-461d-b0f1-64d639bde165" + "b8b83796-b9a6-441c-97e9-4da482b0056a" ], "x-ms-correlation-request-id": [ - "f9cceae7-4ed1-461d-b0f1-64d639bde165" + "b8b83796-b9a6-441c-97e9-4da482b0056a" ], "x-ms-routing-request-id": [ - "WESTUS:20200609T210914Z:f9cceae7-4ed1-461d-b0f1-64d639bde165" + "NORTHCENTRALUS:20210827T162004Z:b8b83796-b9a6-441c-97e9-4da482b0056a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -45,7 +45,7 @@ "nosniff" ], "Date": [ - "Tue, 09 Jun 2020 21:09:14 GMT" + "Fri, 27 Aug 2021 16:20:04 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -54,29 +54,29 @@ "-1" ], "Content-Length": [ - "4461" + "7565" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch\",\r\n \"namespace\": \"Microsoft.Batch\",\r\n \"authorization\": {\r\n \"applicationId\": \"ddbf3205-c6bd-46ae-8127-60eb93363864\",\r\n \"roleDefinitionId\": \"b7f84953-1d03-4eab-9ea4-45f065258ff8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"batchAccounts\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\",\r\n \"2015-07-01\",\r\n \"2014-05-01-privatepreview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/accountOperationResults\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\",\r\n \"2015-07-01\",\r\n \"2014-05-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/ba2358c2-42f2-4138-88df-7c68cf608bea/providers/Microsoft.Batch\",\r\n \"namespace\": \"Microsoft.Batch\",\r\n \"authorization\": {\r\n \"applicationId\": \"ddbf3205-c6bd-46ae-8127-60eb93363864\",\r\n \"roleDefinitionId\": \"b7f84953-1d03-4eab-9ea4-45f065258ff8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"batchAccounts\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Jio India West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Norway East\",\r\n \"Brazil Southeast\",\r\n \"West US 3\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\",\r\n \"2015-07-01\",\r\n \"2014-05-01-privatepreview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"batchAccounts/pools\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Jio India West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Norway East\",\r\n \"Brazil Southeast\",\r\n \"West US 3\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"batchAccounts/certificates\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Jio India West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Norway East\",\r\n \"Brazil Southeast\",\r\n \"West US 3\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Jio India West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Norway East\",\r\n \"Brazil Southeast\",\r\n \"West US 3\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Jio India West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Norway East\",\r\n \"Brazil Southeast\",\r\n \"West US 3\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Jio India West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Norway East\",\r\n \"Brazil Southeast\",\r\n \"West US 3\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/accountOperationResults\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Jio India West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Norway East\",\r\n \"Brazil Southeast\",\r\n \"West US 3\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\",\r\n \"2015-07-01\",\r\n \"2014-05-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/virtualMachineSkus\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Jio India West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Norway East\",\r\n \"Brazil Southeast\",\r\n \"West US 3\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/cloudServiceSkus\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Jio India West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Norway East\",\r\n \"Brazil Southeast\",\r\n \"West US 3\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourcegroups/ps3892?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlZ3JvdXBzL3BzMzg5Mj9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/ba2358c2-42f2-4138-88df-7c68cf608bea/resourcegroups/ps2105?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmEyMzU4YzItNDJmMi00MTM4LTg4ZGYtN2M2OGNmNjA4YmVhL3Jlc291cmNlZ3JvdXBzL3BzMjEwNT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "63bf0212-1fcd-4938-a634-035876a30624" + "f5469de1-6dfd-41df-a4ac-e3a3c341eef2" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.43" ], "Content-Type": [ "application/json; charset=utf-8" @@ -96,13 +96,13 @@ "1199" ], "x-ms-request-id": [ - "176a534a-116f-4bd2-ae1a-c1705385003c" + "068241c1-ada4-4aec-b6cd-f0a03323b0bc" ], "x-ms-correlation-request-id": [ - "176a534a-116f-4bd2-ae1a-c1705385003c" + "068241c1-ada4-4aec-b6cd-f0a03323b0bc" ], "x-ms-routing-request-id": [ - "WESTUS:20200609T210915Z:176a534a-116f-4bd2-ae1a-c1705385003c" + "NORTHCENTRALUS:20210827T162005Z:068241c1-ada4-4aec-b6cd-f0a03323b0bc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -111,7 +111,7 @@ "nosniff" ], "Date": [ - "Tue, 09 Jun 2020 21:09:14 GMT" + "Fri, 27 Aug 2021 16:20:05 GMT" ], "Content-Length": [ "165" @@ -123,32 +123,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/ps3892\",\r\n \"name\": \"ps3892\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/ba2358c2-42f2-4138-88df-7c68cf608bea/resourceGroups/ps2105\",\r\n \"name\": \"ps2105\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/ps3892/providers/Microsoft.Batch/batchAccounts/ps4695?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL3BzMzg5Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvcHM0Njk1P2FwaS12ZXJzaW9uPTIwMjAtMDUtMDE=", + "RequestUri": "/subscriptions/ba2358c2-42f2-4138-88df-7c68cf608bea/resourceGroups/ps2105/providers/Microsoft.Batch/batchAccounts/ps4582?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmEyMzU4YzItNDJmMi00MTM4LTg4ZGYtN2M2OGNmNjA4YmVhL3Jlc291cmNlR3JvdXBzL3BzMjEwNS9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvcHM0NTgyP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"publicNetworkAccess\": \"Disabled\"\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\"\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"publicNetworkAccess\": \"Disabled\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "e5e6983a-03c9-4aee-a032-35ab1145eb70" + "cf5fc1a4-c9b7-4a6e-b6c4-aaf07bc2a4b1" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/11.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Batch.BatchManagementClient/14.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "145" + "135" ] }, "ResponseHeaders": { @@ -159,13 +159,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/ps3892/providers/Microsoft.Batch/batchAccounts/ps4695/operationResults/c459819d-ca72-4428-bfa3-7b803a37a932?api-version=2020-05-01" + "https://management.azure.com/subscriptions/ba2358c2-42f2-4138-88df-7c68cf608bea/resourceGroups/ps2105/providers/Microsoft.Batch/batchAccounts/ps4582/operationResults/cc68a593-daae-4d75-b232-87cee520c021?api-version=2021-06-01" ], "Retry-After": [ "15" ], "x-ms-request-id": [ - "c459819d-ca72-4428-bfa3-7b803a37a932" + "cc68a593-daae-4d75-b232-87cee520c021" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -180,13 +180,13 @@ "1199" ], "x-ms-correlation-request-id": [ - "d6119f06-f0dd-4b94-a3b1-07914a54d6b0" + "a6eea41e-d006-4f55-a403-5afe283679d6" ], "x-ms-routing-request-id": [ - "WESTUS:20200609T210918Z:d6119f06-f0dd-4b94-a3b1-07914a54d6b0" + "NORTHCENTRALUS:20210827T162007Z:a6eea41e-d006-4f55-a403-5afe283679d6" ], "Date": [ - "Tue, 09 Jun 2020 21:09:17 GMT" + "Fri, 27 Aug 2021 16:20:07 GMT" ], "Expires": [ "-1" @@ -199,16 +199,19 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/ps3892/providers/Microsoft.Batch/batchAccounts/ps4695/operationResults/c459819d-ca72-4428-bfa3-7b803a37a932?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL3BzMzg5Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvcHM0Njk1L29wZXJhdGlvblJlc3VsdHMvYzQ1OTgxOWQtY2E3Mi00NDI4LWJmYTMtN2I4MDNhMzdhOTMyP2FwaS12ZXJzaW9uPTIwMjAtMDUtMDE=", + "RequestUri": "/subscriptions/ba2358c2-42f2-4138-88df-7c68cf608bea/resourceGroups/ps2105/providers/Microsoft.Batch/batchAccounts/ps4582/operationResults/cc68a593-daae-4d75-b232-87cee520c021?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmEyMzU4YzItNDJmMi00MTM4LTg4ZGYtN2M2OGNmNjA4YmVhL3Jlc291cmNlR3JvdXBzL3BzMjEwNS9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvcHM0NTgyL29wZXJhdGlvblJlc3VsdHMvY2M2OGE1OTMtZGFhZS00ZDc1LWIyMzItODdjZWU1MjBjMDIxP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "cf5fc1a4-c9b7-4a6e-b6c4-aaf07bc2a4b1" + ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/11.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Batch.BatchManagementClient/14.0.0.0" ] }, "ResponseHeaders": { @@ -219,13 +222,13 @@ "no-cache" ], "ETag": [ - "\"0x8D80CB968915F53\"" + "\"0x8D96976921B278E\"" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11999" ], "x-ms-request-id": [ - "fda2ebd1-5d69-4c04-a4e6-cc02637a287f" + "81c0d6e0-da87-4131-976b-7cac747d5a35" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -237,16 +240,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-correlation-request-id": [ - "1eaba6a7-553c-4bb4-9ded-6a95022727b6" + "f9fd13dd-127a-4de9-ad11-6a93e951abe1" ], "x-ms-routing-request-id": [ - "WESTUS:20200609T210933Z:1eaba6a7-553c-4bb4-9ded-6a95022727b6" + "NORTHCENTRALUS:20210827T162022Z:f9fd13dd-127a-4de9-ad11-6a93e951abe1" ], "Date": [ - "Tue, 09 Jun 2020 21:09:32 GMT" + "Fri, 27 Aug 2021 16:20:22 GMT" ], "Content-Length": [ - "2347" + "3004" ], "Content-Type": [ "application/json; charset=utf-8" @@ -255,29 +258,29 @@ "-1" ], "Last-Modified": [ - "Tue, 09 Jun 2020 21:09:33 GMT" + "Fri, 27 Aug 2021 16:20:22 GMT" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/ps3892/providers/Microsoft.Batch/batchAccounts/ps4695\",\r\n \"name\": \"ps4695\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"ps4695.westus.batch.azure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"dedicatedCoreQuota\": 700,\r\n \"dedicatedCoreQuotaPerVMFamily\": [\r\n {\r\n \"name\": \"standardAv2Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardDv2Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardDv3Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardEv3Family\",\r\n \"coreQuota\": 50\r\n },\r\n {\r\n \"name\": \"standardDSv2Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardDSv3Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardESv3Family\",\r\n \"coreQuota\": 50\r\n },\r\n {\r\n \"name\": \"standardFFamily\",\r\n \"coreQuota\": 50\r\n },\r\n {\r\n \"name\": \"standardFSFamily\",\r\n \"coreQuota\": 50\r\n },\r\n {\r\n \"name\": \"standardA0_A7Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardA8_A11Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardDFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardGFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"basicAFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNVFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNVPromoFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNCFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNCPromoFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHPromoFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardMSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardDSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardGSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardLSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardLSv2Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNCSv2Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNDSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNCSv3Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardFSv2Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHBSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHCSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNVSv3Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHBrsv2Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardDASv4Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardEAv4Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardEASv4Family\",\r\n \"coreQuota\": 0\r\n }\r\n ],\r\n \"dedicatedCoreQuotaPerVMFamilyEnforced\": false,\r\n \"lowPriorityCoreQuota\": 500,\r\n \"poolQuota\": 100,\r\n \"activeJobAndJobScheduleQuota\": 300,\r\n \"poolAllocationMode\": \"BatchService\",\r\n \"publicNetworkAccess\": \"Disabled\",\r\n \"privateEndpointConnections\": [],\r\n \"encryption\": {\r\n \"keySource\": \"Microsoft.Batch\"\r\n }\r\n },\r\n \"identity\": {\r\n \"principalId\": \"32e0b0da-c57b-4b36-b982-ddc483a638c9\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"SystemAssigned\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/ba2358c2-42f2-4138-88df-7c68cf608bea/resourceGroups/ps2105/providers/Microsoft.Batch/batchAccounts/ps4582\",\r\n \"name\": \"ps4582\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"ps4582.westus.batch.azure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"dedicatedCoreQuota\": 500,\r\n \"dedicatedCoreQuotaPerVMFamily\": [\r\n {\r\n \"name\": \"standardAv2Family\",\r\n \"coreQuota\": 500\r\n },\r\n {\r\n \"name\": \"standardDv2Family\",\r\n \"coreQuota\": 250\r\n },\r\n {\r\n \"name\": \"standardDv3Family\",\r\n \"coreQuota\": 500\r\n },\r\n {\r\n \"name\": \"standardEv3Family\",\r\n \"coreQuota\": 500\r\n },\r\n {\r\n \"name\": \"standardDSv2Family\",\r\n \"coreQuota\": 250\r\n },\r\n {\r\n \"name\": \"standardDSv3Family\",\r\n \"coreQuota\": 500\r\n },\r\n {\r\n \"name\": \"standardESv3Family\",\r\n \"coreQuota\": 500\r\n },\r\n {\r\n \"name\": \"standardFSv2Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardNCFamily\",\r\n \"coreQuota\": 24\r\n },\r\n {\r\n \"name\": \"standardNVFamily\",\r\n \"coreQuota\": 24\r\n },\r\n {\r\n \"name\": \"standardDDv4Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardDDSv4Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardEDv4Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardEDSv4Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardA0_A7Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardA8_A11Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardDFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardGFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"basicAFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardFFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNVPromoFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNCPromoFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHPromoFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardMSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardDSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardFSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardGSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardLSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardLSv2Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNCSv2Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNDSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNCSv3Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHBSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHCSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNVSv3Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHBrsv2Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardDAv4Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardDASv4Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardEAv4Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardEASv4Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardMSv2Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardEIv3Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNVSv4Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"Standard NCASv3_T4 Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardXEIDSv4Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"Standard NDASv4_A100 Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardDCSv2Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHBv3Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNPSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardFXMDVSFamily\",\r\n \"coreQuota\": 0\r\n }\r\n ],\r\n \"dedicatedCoreQuotaPerVMFamilyEnforced\": true,\r\n \"lowPriorityCoreQuota\": 500,\r\n \"poolQuota\": 100,\r\n \"activeJobAndJobScheduleQuota\": 300,\r\n \"poolAllocationMode\": \"BatchService\",\r\n \"publicNetworkAccess\": \"Disabled\",\r\n \"privateEndpointConnections\": [],\r\n \"encryption\": {\r\n \"keySource\": \"Microsoft.Batch\"\r\n },\r\n \"allowedAuthenticationModes\": [\r\n \"SharedKey\",\r\n \"AAD\",\r\n \"TaskAuthenticationToken\"\r\n ]\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/ps3892/providers/Microsoft.Network/virtualNetworks/myvnet?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL3BzMzg5Mi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL215dm5ldD9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestUri": "/subscriptions/ba2358c2-42f2-4138-88df-7c68cf608bea/resourceGroups/ps2105/providers/Microsoft.Network/virtualNetworks/myvnet?api-version=2021-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmEyMzU4YzItNDJmMi00MTM4LTg4ZGYtN2M2OGNmNjA4YmVhL3Jlc291cmNlR3JvdXBzL3BzMjEwNS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL215dm5ldD9hcGktdmVyc2lvbj0yMDIxLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0b5d9eb0-0091-42fc-ba4d-9a54d0a94e87" + "3d49c8bb-ba90-4f61-aac1-1293eb1e374a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.1.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.5.0.0" ] }, "ResponseHeaders": { @@ -291,13 +294,13 @@ "gateway" ], "x-ms-request-id": [ - "2ff8d7d7-add4-4176-a832-e11e8551f8da" + "b63e1cd8-7067-413b-b4ca-dc316a7480a1" ], "x-ms-correlation-request-id": [ - "2ff8d7d7-add4-4176-a832-e11e8551f8da" + "b63e1cd8-7067-413b-b4ca-dc316a7480a1" ], "x-ms-routing-request-id": [ - "WESTUS:20200609T210933Z:2ff8d7d7-add4-4176-a832-e11e8551f8da" + "NORTHCENTRALUS:20210827T162023Z:b63e1cd8-7067-413b-b4ca-dc316a7480a1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -306,7 +309,7 @@ "nosniff" ], "Date": [ - "Tue, 09 Jun 2020 21:09:33 GMT" + "Fri, 27 Aug 2021 16:20:22 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -318,20 +321,23 @@ "218" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/virtualNetworks/myvnet' under resource group 'ps3892' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/virtualNetworks/myvnet' under resource group 'ps2105' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/ps3892/providers/Microsoft.Network/virtualNetworks/myvnet?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL3BzMzg5Mi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL215dm5ldD9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestUri": "/subscriptions/ba2358c2-42f2-4138-88df-7c68cf608bea/resourceGroups/ps2105/providers/Microsoft.Network/virtualNetworks/myvnet?api-version=2021-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmEyMzU4YzItNDJmMi00MTM4LTg4ZGYtN2M2OGNmNjA4YmVhL3Jlc291cmNlR3JvdXBzL3BzMjEwNS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL215dm5ldD9hcGktdmVyc2lvbj0yMDIxLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "3d49c8bb-ba90-4f61-aac1-1293eb1e374a" + ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.1.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.5.0.0" ] }, "ResponseHeaders": { @@ -342,16 +348,16 @@ "no-cache" ], "ETag": [ - "W/\"cc446e03-a472-4610-8896-f3aa36133f9b\"" + "W/\"03b83db0-d0a8-4c80-b1a7-f6ebe7801995\"" ], "x-ms-request-id": [ - "f8cffedf-98d9-45c1-b089-7415afcd352a" + "6c3b58bb-5518-4414-b328-d92007a42ff6" ], "x-ms-correlation-request-id": [ - "03144e2b-bfdc-44a8-a42d-70d44a776f49" + "a8e65d69-be3c-426b-bc96-37db95b88476" ], "x-ms-arm-service-request-id": [ - "f6366bcd-495b-47cf-8184-5f36924ec74a" + "14c5986c-411c-4abb-a1ac-48c4f717be2c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -361,19 +367,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11989" ], "x-ms-routing-request-id": [ - "WESTUS:20200609T210939Z:03144e2b-bfdc-44a8-a42d-70d44a776f49" + "NORTHCENTRALUS:20210827T162030Z:a8e65d69-be3c-426b-bc96-37db95b88476" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 09 Jun 2020 21:09:38 GMT" + "Fri, 27 Aug 2021 16:20:29 GMT" ], "Content-Length": [ - "1273" + "1239" ], "Content-Type": [ "application/json; charset=utf-8" @@ -382,26 +388,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"myvnet\",\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/ps3892/providers/Microsoft.Network/virtualNetworks/myvnet\",\r\n \"etag\": \"W/\\\"cc446e03-a472-4610-8896-f3aa36133f9b\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"50b7e95b-b597-4ac5-acf5-dfdc3d54ea38\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"11.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"mysubnet\",\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/ps3892/providers/Microsoft.Network/virtualNetworks/myvnet/subnets/mysubnet\",\r\n \"etag\": \"W/\\\"cc446e03-a472-4610-8896-f3aa36133f9b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"11.0.1.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Disabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"myvnet\",\r\n \"id\": \"/subscriptions/ba2358c2-42f2-4138-88df-7c68cf608bea/resourceGroups/ps2105/providers/Microsoft.Network/virtualNetworks/myvnet\",\r\n \"etag\": \"W/\\\"03b83db0-d0a8-4c80-b1a7-f6ebe7801995\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"a72b3489-eafa-4490-832c-931518d85cff\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"11.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"mysubnet\",\r\n \"id\": \"/subscriptions/ba2358c2-42f2-4138-88df-7c68cf608bea/resourceGroups/ps2105/providers/Microsoft.Network/virtualNetworks/myvnet/subnets/mysubnet\",\r\n \"etag\": \"W/\\\"03b83db0-d0a8-4c80-b1a7-f6ebe7801995\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"11.0.1.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Disabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/ps3892/providers/Microsoft.Network/virtualNetworks/myvnet?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL3BzMzg5Mi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL215dm5ldD9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestUri": "/subscriptions/ba2358c2-42f2-4138-88df-7c68cf608bea/resourceGroups/ps2105/providers/Microsoft.Network/virtualNetworks/myvnet?api-version=2021-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmEyMzU4YzItNDJmMi00MTM4LTg4ZGYtN2M2OGNmNjA4YmVhL3Jlc291cmNlR3JvdXBzL3BzMjEwNS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL215dm5ldD9hcGktdmVyc2lvbj0yMDIxLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "58308795-ebff-4037-b54a-00a7dc1010f5" + "3d49c8bb-ba90-4f61-aac1-1293eb1e374a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.1.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.5.0.0" ] }, "ResponseHeaders": { @@ -412,16 +418,16 @@ "no-cache" ], "ETag": [ - "W/\"cc446e03-a472-4610-8896-f3aa36133f9b\"" + "W/\"03b83db0-d0a8-4c80-b1a7-f6ebe7801995\"" ], "x-ms-request-id": [ - "6dc8962f-02a4-47dc-aef6-ebee45afa6a9" + "4f09b3d9-ae63-4418-8c14-d599f5e5b0f7" ], "x-ms-correlation-request-id": [ - "fce8c75b-d417-4c31-9a47-8a17532cb393" + "389ad14b-6d40-45b3-b4d0-f24ed0ff78c0" ], "x-ms-arm-service-request-id": [ - "b3516772-a0ac-4b29-89a4-e939a260feba" + "f7b1101f-afad-46be-adb3-72c1fa105884" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -431,19 +437,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11988" ], "x-ms-routing-request-id": [ - "WESTUS:20200609T210939Z:fce8c75b-d417-4c31-9a47-8a17532cb393" + "NORTHCENTRALUS:20210827T162030Z:389ad14b-6d40-45b3-b4d0-f24ed0ff78c0" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 09 Jun 2020 21:09:38 GMT" + "Fri, 27 Aug 2021 16:20:29 GMT" ], "Content-Length": [ - "1273" + "1239" ], "Content-Type": [ "application/json; charset=utf-8" @@ -452,26 +458,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"myvnet\",\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/ps3892/providers/Microsoft.Network/virtualNetworks/myvnet\",\r\n \"etag\": \"W/\\\"cc446e03-a472-4610-8896-f3aa36133f9b\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"50b7e95b-b597-4ac5-acf5-dfdc3d54ea38\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"11.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"mysubnet\",\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/ps3892/providers/Microsoft.Network/virtualNetworks/myvnet/subnets/mysubnet\",\r\n \"etag\": \"W/\\\"cc446e03-a472-4610-8896-f3aa36133f9b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"11.0.1.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Disabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"myvnet\",\r\n \"id\": \"/subscriptions/ba2358c2-42f2-4138-88df-7c68cf608bea/resourceGroups/ps2105/providers/Microsoft.Network/virtualNetworks/myvnet\",\r\n \"etag\": \"W/\\\"03b83db0-d0a8-4c80-b1a7-f6ebe7801995\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"a72b3489-eafa-4490-832c-931518d85cff\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"11.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"mysubnet\",\r\n \"id\": \"/subscriptions/ba2358c2-42f2-4138-88df-7c68cf608bea/resourceGroups/ps2105/providers/Microsoft.Network/virtualNetworks/myvnet/subnets/mysubnet\",\r\n \"etag\": \"W/\\\"03b83db0-d0a8-4c80-b1a7-f6ebe7801995\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"11.0.1.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Disabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/ps3892/providers/Microsoft.Network/virtualNetworks/myvnet?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL3BzMzg5Mi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL215dm5ldD9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestUri": "/subscriptions/ba2358c2-42f2-4138-88df-7c68cf608bea/resourceGroups/ps2105/providers/Microsoft.Network/virtualNetworks/myvnet?api-version=2021-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmEyMzU4YzItNDJmMi00MTM4LTg4ZGYtN2M2OGNmNjA4YmVhL3Jlc291cmNlR3JvdXBzL3BzMjEwNS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL215dm5ldD9hcGktdmVyc2lvbj0yMDIxLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "eaa0d86f-b43c-46f4-bb49-09347833124a" + "7e66613a-b875-482f-bbae-da8c9c826eb9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.1.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.5.0.0" ] }, "ResponseHeaders": { @@ -482,16 +488,16 @@ "no-cache" ], "ETag": [ - "W/\"cc446e03-a472-4610-8896-f3aa36133f9b\"" + "W/\"03b83db0-d0a8-4c80-b1a7-f6ebe7801995\"" ], "x-ms-request-id": [ - "688fd068-97dd-4b97-a498-ec4139c975c6" + "7c0e4111-1055-4e97-9343-1e8d95857c3e" ], "x-ms-correlation-request-id": [ - "b87813f1-2bb2-4109-8a49-74e6d7eb93d2" + "09b2df92-e798-4dfe-bf6a-773edd1be21a" ], "x-ms-arm-service-request-id": [ - "9596bfef-39b3-49f6-b00a-d0504ca507f3" + "4dfd1288-8a24-48d6-a898-347fe23c95a7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -501,19 +507,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11987" ], "x-ms-routing-request-id": [ - "WESTUS:20200609T210939Z:b87813f1-2bb2-4109-8a49-74e6d7eb93d2" + "NORTHCENTRALUS:20210827T162030Z:09b2df92-e798-4dfe-bf6a-773edd1be21a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 09 Jun 2020 21:09:39 GMT" + "Fri, 27 Aug 2021 16:20:30 GMT" ], "Content-Length": [ - "1273" + "1239" ], "Content-Type": [ "application/json; charset=utf-8" @@ -522,32 +528,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"myvnet\",\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/ps3892/providers/Microsoft.Network/virtualNetworks/myvnet\",\r\n \"etag\": \"W/\\\"cc446e03-a472-4610-8896-f3aa36133f9b\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"50b7e95b-b597-4ac5-acf5-dfdc3d54ea38\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"11.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"mysubnet\",\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/ps3892/providers/Microsoft.Network/virtualNetworks/myvnet/subnets/mysubnet\",\r\n \"etag\": \"W/\\\"cc446e03-a472-4610-8896-f3aa36133f9b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"11.0.1.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Disabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"myvnet\",\r\n \"id\": \"/subscriptions/ba2358c2-42f2-4138-88df-7c68cf608bea/resourceGroups/ps2105/providers/Microsoft.Network/virtualNetworks/myvnet\",\r\n \"etag\": \"W/\\\"03b83db0-d0a8-4c80-b1a7-f6ebe7801995\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"a72b3489-eafa-4490-832c-931518d85cff\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"11.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"mysubnet\",\r\n \"id\": \"/subscriptions/ba2358c2-42f2-4138-88df-7c68cf608bea/resourceGroups/ps2105/providers/Microsoft.Network/virtualNetworks/myvnet/subnets/mysubnet\",\r\n \"etag\": \"W/\\\"03b83db0-d0a8-4c80-b1a7-f6ebe7801995\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"11.0.1.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Disabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/ps3892/providers/Microsoft.Network/virtualNetworks/myvnet?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL3BzMzg5Mi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL215dm5ldD9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestUri": "/subscriptions/ba2358c2-42f2-4138-88df-7c68cf608bea/resourceGroups/ps2105/providers/Microsoft.Network/virtualNetworks/myvnet?api-version=2021-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmEyMzU4YzItNDJmMi00MTM4LTg4ZGYtN2M2OGNmNjA4YmVhL3Jlc291cmNlR3JvdXBzL3BzMjEwNS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL215dm5ldD9hcGktdmVyc2lvbj0yMDIxLTAyLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"11.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"11.0.1.0/24\",\r\n \"addressPrefixes\": [],\r\n \"serviceEndpoints\": [],\r\n \"serviceEndpointPolicies\": [],\r\n \"ipAllocations\": [],\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Disabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"name\": \"mysubnet\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"ipAllocations\": []\r\n },\r\n \"location\": \"westus\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"11.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"11.0.1.0/24\",\r\n \"addressPrefixes\": [],\r\n \"serviceEndpoints\": [],\r\n \"serviceEndpointPolicies\": [],\r\n \"ipAllocations\": [],\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Disabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\",\r\n \"applicationGatewayIpConfigurations\": []\r\n },\r\n \"name\": \"mysubnet\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"ipAllocations\": []\r\n },\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "bb48bc42-3ddf-4c40-849c-fdbef8947749" + "3d49c8bb-ba90-4f61-aac1-1293eb1e374a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.1.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.5.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "680" + "733" ] }, "ResponseHeaders": { @@ -561,19 +567,19 @@ "3" ], "x-ms-request-id": [ - "06c0cdca-d43a-4869-aaef-5407f2e21678" + "32302fd7-7a78-430c-b0a1-b6bb222c0737" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Network/locations/westus/operations/06c0cdca-d43a-4869-aaef-5407f2e21678?api-version=2020-04-01" + "https://management.azure.com/subscriptions/ba2358c2-42f2-4138-88df-7c68cf608bea/providers/Microsoft.Network/locations/westus/operations/32302fd7-7a78-430c-b0a1-b6bb222c0737?api-version=2021-02-01" ], "x-ms-correlation-request-id": [ - "e907b002-6966-4b7c-ab09-d14f92acbe31" + "3c993579-6516-4975-83d7-1d3f47fc9445" ], "Azure-AsyncNotification": [ "Enabled" ], "x-ms-arm-service-request-id": [ - "6d9b50eb-dbf0-4b08-8a41-ac19f0c7ab6c" + "7416fc42-5754-4ebb-b8cb-9170deaf0a0c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -583,19 +589,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1198" ], "x-ms-routing-request-id": [ - "WESTUS:20200609T210936Z:e907b002-6966-4b7c-ab09-d14f92acbe31" + "NORTHCENTRALUS:20210827T162026Z:3c993579-6516-4975-83d7-1d3f47fc9445" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 09 Jun 2020 21:09:35 GMT" + "Fri, 27 Aug 2021 16:20:26 GMT" ], "Content-Length": [ - "1271" + "1237" ], "Content-Type": [ "application/json; charset=utf-8" @@ -604,20 +610,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"myvnet\",\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/ps3892/providers/Microsoft.Network/virtualNetworks/myvnet\",\r\n \"etag\": \"W/\\\"fd13453f-0943-484a-8ace-5adcd399d099\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"50b7e95b-b597-4ac5-acf5-dfdc3d54ea38\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"11.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"mysubnet\",\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/ps3892/providers/Microsoft.Network/virtualNetworks/myvnet/subnets/mysubnet\",\r\n \"etag\": \"W/\\\"fd13453f-0943-484a-8ace-5adcd399d099\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"11.0.1.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Disabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"myvnet\",\r\n \"id\": \"/subscriptions/ba2358c2-42f2-4138-88df-7c68cf608bea/resourceGroups/ps2105/providers/Microsoft.Network/virtualNetworks/myvnet\",\r\n \"etag\": \"W/\\\"a0b92a2f-be90-4d47-972d-9732083cc4af\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"a72b3489-eafa-4490-832c-931518d85cff\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"11.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"mysubnet\",\r\n \"id\": \"/subscriptions/ba2358c2-42f2-4138-88df-7c68cf608bea/resourceGroups/ps2105/providers/Microsoft.Network/virtualNetworks/myvnet/subnets/mysubnet\",\r\n \"etag\": \"W/\\\"a0b92a2f-be90-4d47-972d-9732083cc4af\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"11.0.1.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Disabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Network/locations/westus/operations/06c0cdca-d43a-4869-aaef-5407f2e21678?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMDZjMGNkY2EtZDQzYS00ODY5LWFhZWYtNTQwN2YyZTIxNjc4P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/ba2358c2-42f2-4138-88df-7c68cf608bea/providers/Microsoft.Network/locations/westus/operations/32302fd7-7a78-430c-b0a1-b6bb222c0737?api-version=2021-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmEyMzU4YzItNDJmMi00MTM4LTg4ZGYtN2M2OGNmNjA4YmVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzIzMDJmZDctN2E3OC00MzBjLWIwYTEtYjZiYjIyMmMwNzM3P2FwaS12ZXJzaW9uPTIwMjEtMDItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "3d49c8bb-ba90-4f61-aac1-1293eb1e374a" + ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.1.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.5.0.0" ] }, "ResponseHeaders": { @@ -628,13 +637,13 @@ "no-cache" ], "x-ms-request-id": [ - "9a3e8583-2f19-4676-b8bd-147411340e44" + "0afceaf2-0518-4427-94e9-522b1089fe5d" ], "x-ms-correlation-request-id": [ - "8c784383-7ead-4a07-9bb0-91ac9cf8e346" + "3474e6cb-072a-4974-86de-d7267b3358e1" ], "x-ms-arm-service-request-id": [ - "0d39ea9a-8297-47b2-8971-ac933db5df2e" + "9ae8f03d-cc94-43ce-bbc3-888fbaf7088b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -644,16 +653,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11990" ], "x-ms-routing-request-id": [ - "WESTUS:20200609T210939Z:8c784383-7ead-4a07-9bb0-91ac9cf8e346" + "NORTHCENTRALUS:20210827T162030Z:3474e6cb-072a-4974-86de-d7267b3358e1" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 09 Jun 2020 21:09:38 GMT" + "Fri, 27 Aug 2021 16:20:29 GMT" ], "Content-Length": [ "29" @@ -669,22 +678,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/ps3892/providers/Microsoft.Batch/batchAccounts/ps4695/privateLinkResources?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL3BzMzg5Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvcHM0Njk1L3ByaXZhdGVMaW5rUmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMjAtMDMtMDE=", + "RequestUri": "/subscriptions/ba2358c2-42f2-4138-88df-7c68cf608bea/resourceGroups/ps2105/providers/Microsoft.Batch/batchAccounts/ps4582/privateLinkResources?api-version=2020-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmEyMzU4YzItNDJmMi00MTM4LTg4ZGYtN2M2OGNmNjA4YmVhL3Jlc291cmNlR3JvdXBzL3BzMjEwNS9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvcHM0NTgyL3ByaXZhdGVMaW5rUmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMjAtMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6d8c0922-d3d0-400f-b4ea-a0bd57a01b30" + "03de9346-0c0f-4878-862f-e0a2f85be6b2" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.43" ] }, "ResponseHeaders": { @@ -698,7 +707,7 @@ "11999" ], "x-ms-request-id": [ - "275b1012-6067-41c3-91ad-d4f3956c2ea2" + "60b631f4-0937-4a48-91fa-512f11ecc390" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -710,13 +719,13 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-correlation-request-id": [ - "82787f0f-b0bc-4422-8cb8-91ca81ad8c41" + "69a960ce-cd77-476b-bbb3-4f97ab5aee11" ], "x-ms-routing-request-id": [ - "WESTUS:20200609T210939Z:82787f0f-b0bc-4422-8cb8-91ca81ad8c41" + "NORTHCENTRALUS:20210827T162031Z:69a960ce-cd77-476b-bbb3-4f97ab5aee11" ], "Date": [ - "Tue, 09 Jun 2020 21:09:38 GMT" + "Fri, 27 Aug 2021 16:20:30 GMT" ], "Content-Length": [ "379" @@ -728,26 +737,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/ps3892/providers/Microsoft.Batch/batchAccounts/ps4695/privateLinkResources/ps4695\",\r\n \"name\": \"ps4695\",\r\n \"type\": \"Microsoft.Batch/batchAccounts/privateLinkResources\",\r\n \"properties\": {\r\n \"groupId\": \"batchAccount\",\r\n \"requiredMembers\": [\r\n \"batchAccount\"\r\n ],\r\n \"requiredZoneNames\": [\r\n \"privatelink.westus.batch.azure.com\"\r\n ]\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/ba2358c2-42f2-4138-88df-7c68cf608bea/resourceGroups/ps2105/providers/Microsoft.Batch/batchAccounts/ps4582/privateLinkResources/ps4582\",\r\n \"name\": \"ps4582\",\r\n \"type\": \"Microsoft.Batch/batchAccounts/privateLinkResources\",\r\n \"properties\": {\r\n \"groupId\": \"batchAccount\",\r\n \"requiredMembers\": [\r\n \"batchAccount\"\r\n ],\r\n \"requiredZoneNames\": [\r\n \"privatelink.westus.batch.azure.com\"\r\n ]\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/ps3892/providers/Microsoft.Network/privateEndpoints/mypec?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL3BzMzg5Mi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHJpdmF0ZUVuZHBvaW50cy9teXBlYz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestUri": "/subscriptions/ba2358c2-42f2-4138-88df-7c68cf608bea/resourceGroups/ps2105/providers/Microsoft.Network/privateEndpoints/mypec?api-version=2021-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmEyMzU4YzItNDJmMi00MTM4LTg4ZGYtN2M2OGNmNjA4YmVhL3Jlc291cmNlR3JvdXBzL3BzMjEwNS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHJpdmF0ZUVuZHBvaW50cy9teXBlYz9hcGktdmVyc2lvbj0yMDIxLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "02831395-0ef9-43f5-a4c8-e4d9a9dbc025" + "7788d4a5-ecd3-4bd6-bbd3-08898dca3dc5" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.1.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.5.0.0" ] }, "ResponseHeaders": { @@ -761,13 +770,13 @@ "gateway" ], "x-ms-request-id": [ - "85cba16e-0368-4102-81b0-6ebcbd6a1f2e" + "15ad4648-7510-4241-9771-f4edd9d44909" ], "x-ms-correlation-request-id": [ - "85cba16e-0368-4102-81b0-6ebcbd6a1f2e" + "15ad4648-7510-4241-9771-f4edd9d44909" ], "x-ms-routing-request-id": [ - "WESTUS:20200609T210939Z:85cba16e-0368-4102-81b0-6ebcbd6a1f2e" + "NORTHCENTRALUS:20210827T162031Z:15ad4648-7510-4241-9771-f4edd9d44909" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -776,7 +785,7 @@ "nosniff" ], "Date": [ - "Tue, 09 Jun 2020 21:09:39 GMT" + "Fri, 27 Aug 2021 16:20:30 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -788,20 +797,23 @@ "218" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/privateEndpoints/mypec' under resource group 'ps3892' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/privateEndpoints/mypec' under resource group 'ps2105' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/ps3892/providers/Microsoft.Network/privateEndpoints/mypec?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL3BzMzg5Mi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHJpdmF0ZUVuZHBvaW50cy9teXBlYz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestUri": "/subscriptions/ba2358c2-42f2-4138-88df-7c68cf608bea/resourceGroups/ps2105/providers/Microsoft.Network/privateEndpoints/mypec?api-version=2021-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmEyMzU4YzItNDJmMi00MTM4LTg4ZGYtN2M2OGNmNjA4YmVhL3Jlc291cmNlR3JvdXBzL3BzMjEwNS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHJpdmF0ZUVuZHBvaW50cy9teXBlYz9hcGktdmVyc2lvbj0yMDIxLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "7788d4a5-ecd3-4bd6-bbd3-08898dca3dc5" + ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.1.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.5.0.0" ] }, "ResponseHeaders": { @@ -812,16 +824,16 @@ "no-cache" ], "ETag": [ - "W/\"f6a85bc5-f043-4830-a800-b8feb1746519\"" + "W/\"e2c9835a-c3ba-4b2e-924b-f4759c83f6c4\"" ], "x-ms-request-id": [ - "10b50ce4-37ae-4c67-9e44-a3c39caa5323" + "8b00aa03-fca2-4a5c-9db8-417a2ae874ed" ], "x-ms-correlation-request-id": [ - "3b0f042c-9e4d-419e-93b3-6f88d4641731" + "e5abd0c4-e45d-46df-a687-ff16610cbc43" ], "x-ms-arm-service-request-id": [ - "3b724936-2152-4285-9d99-d5ba7c4081ab" + "3341a68f-96c1-41fc-aa83-aec8e1378472" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -831,16 +843,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11982" ], "x-ms-routing-request-id": [ - "WESTUS:20200609T211011Z:3b0f042c-9e4d-419e-93b3-6f88d4641731" + "NORTHCENTRALUS:20210827T162113Z:e5abd0c4-e45d-46df-a687-ff16610cbc43" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 09 Jun 2020 21:10:11 GMT" + "Fri, 27 Aug 2021 16:21:13 GMT" ], "Content-Length": [ "1887" @@ -852,26 +864,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"mypec\",\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/ps3892/providers/Microsoft.Network/privateEndpoints/mypec\",\r\n \"etag\": \"W/\\\"f6a85bc5-f043-4830-a800-b8feb1746519\\\"\",\r\n \"type\": \"Microsoft.Network/privateEndpoints\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"a47ee878-d308-496a-b521-5e2aa026e23b\",\r\n \"privateLinkServiceConnections\": [],\r\n \"manualPrivateLinkServiceConnections\": [\r\n {\r\n \"name\": \"myplsconnection\",\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/ps3892/providers/Microsoft.Network/privateEndpoints/mypec/manualPrivateLinkServiceConnections/myplsconnection\",\r\n \"etag\": \"W/\\\"f6a85bc5-f043-4830-a800-b8feb1746519\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateLinkServiceId\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/ps3892/providers/Microsoft.Batch/batchAccounts/ps4695\",\r\n \"groupIds\": [\r\n \"batchAccount\"\r\n ],\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"description\": \"Manual approval still required\",\r\n \"actionsRequired\": \"Manual approval request\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/privateEndpoints/manualPrivateLinkServiceConnections\"\r\n }\r\n ],\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/ps3892/providers/Microsoft.Network/virtualNetworks/myvnet/subnets/mysubnet\"\r\n },\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/ps3892/providers/Microsoft.Network/networkInterfaces/mypec.nic.5ecd1547-1374-4a8e-b670-7ee9054f150f\"\r\n }\r\n ],\r\n \"customDnsConfigs\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"mypec\",\r\n \"id\": \"/subscriptions/ba2358c2-42f2-4138-88df-7c68cf608bea/resourceGroups/ps2105/providers/Microsoft.Network/privateEndpoints/mypec\",\r\n \"etag\": \"W/\\\"e2c9835a-c3ba-4b2e-924b-f4759c83f6c4\\\"\",\r\n \"type\": \"Microsoft.Network/privateEndpoints\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"0f8bb789-4a48-41ed-a129-dba5ff9189e7\",\r\n \"privateLinkServiceConnections\": [],\r\n \"manualPrivateLinkServiceConnections\": [\r\n {\r\n \"name\": \"myplsconnection\",\r\n \"id\": \"/subscriptions/ba2358c2-42f2-4138-88df-7c68cf608bea/resourceGroups/ps2105/providers/Microsoft.Network/privateEndpoints/mypec/manualPrivateLinkServiceConnections/myplsconnection\",\r\n \"etag\": \"W/\\\"e2c9835a-c3ba-4b2e-924b-f4759c83f6c4\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateLinkServiceId\": \"/subscriptions/ba2358c2-42f2-4138-88df-7c68cf608bea/resourceGroups/ps2105/providers/Microsoft.Batch/batchAccounts/ps4582\",\r\n \"groupIds\": [\r\n \"batchAccount\"\r\n ],\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"description\": \"Manual approval still required\",\r\n \"actionsRequired\": \"Manual approval request\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/privateEndpoints/manualPrivateLinkServiceConnections\"\r\n }\r\n ],\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/ba2358c2-42f2-4138-88df-7c68cf608bea/resourceGroups/ps2105/providers/Microsoft.Network/virtualNetworks/myvnet/subnets/mysubnet\"\r\n },\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/ba2358c2-42f2-4138-88df-7c68cf608bea/resourceGroups/ps2105/providers/Microsoft.Network/networkInterfaces/mypec.nic.be92e45b-a769-4f37-959e-f2bf5ed69d79\"\r\n }\r\n ],\r\n \"customDnsConfigs\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/ps3892/providers/Microsoft.Network/privateEndpoints/mypec?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL3BzMzg5Mi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHJpdmF0ZUVuZHBvaW50cy9teXBlYz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestUri": "/subscriptions/ba2358c2-42f2-4138-88df-7c68cf608bea/resourceGroups/ps2105/providers/Microsoft.Network/privateEndpoints/mypec?api-version=2021-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmEyMzU4YzItNDJmMi00MTM4LTg4ZGYtN2M2OGNmNjA4YmVhL3Jlc291cmNlR3JvdXBzL3BzMjEwNS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHJpdmF0ZUVuZHBvaW50cy9teXBlYz9hcGktdmVyc2lvbj0yMDIxLTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "dbcf78a1-a26b-4496-afc8-cd31cfe2be66" + "7788d4a5-ecd3-4bd6-bbd3-08898dca3dc5" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.1.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.5.0.0" ] }, "ResponseHeaders": { @@ -882,16 +894,16 @@ "no-cache" ], "ETag": [ - "W/\"f6a85bc5-f043-4830-a800-b8feb1746519\"" + "W/\"e2c9835a-c3ba-4b2e-924b-f4759c83f6c4\"" ], "x-ms-request-id": [ - "89ba5e51-dab3-4219-bb91-0411e1e19e9a" + "c9dead34-116d-4e06-bd34-90b4b7d1eaf5" ], "x-ms-correlation-request-id": [ - "1bb40469-fd53-41d8-a2c5-c7b717203828" + "a0395262-966d-4e7e-9c76-3a5708a1bca7" ], "x-ms-arm-service-request-id": [ - "5aae7609-4e5b-4a12-912c-609ddd89b152" + "7689017f-2338-4469-a30f-502a5cd28fde" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -901,16 +913,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11981" ], "x-ms-routing-request-id": [ - "WESTUS:20200609T211011Z:1bb40469-fd53-41d8-a2c5-c7b717203828" + "NORTHCENTRALUS:20210827T162114Z:a0395262-966d-4e7e-9c76-3a5708a1bca7" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 09 Jun 2020 21:10:11 GMT" + "Fri, 27 Aug 2021 16:21:13 GMT" ], "Content-Length": [ "1887" @@ -922,32 +934,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"mypec\",\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/ps3892/providers/Microsoft.Network/privateEndpoints/mypec\",\r\n \"etag\": \"W/\\\"f6a85bc5-f043-4830-a800-b8feb1746519\\\"\",\r\n \"type\": \"Microsoft.Network/privateEndpoints\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"a47ee878-d308-496a-b521-5e2aa026e23b\",\r\n \"privateLinkServiceConnections\": [],\r\n \"manualPrivateLinkServiceConnections\": [\r\n {\r\n \"name\": \"myplsconnection\",\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/ps3892/providers/Microsoft.Network/privateEndpoints/mypec/manualPrivateLinkServiceConnections/myplsconnection\",\r\n \"etag\": \"W/\\\"f6a85bc5-f043-4830-a800-b8feb1746519\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateLinkServiceId\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/ps3892/providers/Microsoft.Batch/batchAccounts/ps4695\",\r\n \"groupIds\": [\r\n \"batchAccount\"\r\n ],\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"description\": \"Manual approval still required\",\r\n \"actionsRequired\": \"Manual approval request\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/privateEndpoints/manualPrivateLinkServiceConnections\"\r\n }\r\n ],\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/ps3892/providers/Microsoft.Network/virtualNetworks/myvnet/subnets/mysubnet\"\r\n },\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/ps3892/providers/Microsoft.Network/networkInterfaces/mypec.nic.5ecd1547-1374-4a8e-b670-7ee9054f150f\"\r\n }\r\n ],\r\n \"customDnsConfigs\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"mypec\",\r\n \"id\": \"/subscriptions/ba2358c2-42f2-4138-88df-7c68cf608bea/resourceGroups/ps2105/providers/Microsoft.Network/privateEndpoints/mypec\",\r\n \"etag\": \"W/\\\"e2c9835a-c3ba-4b2e-924b-f4759c83f6c4\\\"\",\r\n \"type\": \"Microsoft.Network/privateEndpoints\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"0f8bb789-4a48-41ed-a129-dba5ff9189e7\",\r\n \"privateLinkServiceConnections\": [],\r\n \"manualPrivateLinkServiceConnections\": [\r\n {\r\n \"name\": \"myplsconnection\",\r\n \"id\": \"/subscriptions/ba2358c2-42f2-4138-88df-7c68cf608bea/resourceGroups/ps2105/providers/Microsoft.Network/privateEndpoints/mypec/manualPrivateLinkServiceConnections/myplsconnection\",\r\n \"etag\": \"W/\\\"e2c9835a-c3ba-4b2e-924b-f4759c83f6c4\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateLinkServiceId\": \"/subscriptions/ba2358c2-42f2-4138-88df-7c68cf608bea/resourceGroups/ps2105/providers/Microsoft.Batch/batchAccounts/ps4582\",\r\n \"groupIds\": [\r\n \"batchAccount\"\r\n ],\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"description\": \"Manual approval still required\",\r\n \"actionsRequired\": \"Manual approval request\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/privateEndpoints/manualPrivateLinkServiceConnections\"\r\n }\r\n ],\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/ba2358c2-42f2-4138-88df-7c68cf608bea/resourceGroups/ps2105/providers/Microsoft.Network/virtualNetworks/myvnet/subnets/mysubnet\"\r\n },\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/ba2358c2-42f2-4138-88df-7c68cf608bea/resourceGroups/ps2105/providers/Microsoft.Network/networkInterfaces/mypec.nic.be92e45b-a769-4f37-959e-f2bf5ed69d79\"\r\n }\r\n ],\r\n \"customDnsConfigs\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/ps3892/providers/Microsoft.Network/privateEndpoints/mypec?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL3BzMzg5Mi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHJpdmF0ZUVuZHBvaW50cy9teXBlYz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestUri": "/subscriptions/ba2358c2-42f2-4138-88df-7c68cf608bea/resourceGroups/ps2105/providers/Microsoft.Network/privateEndpoints/mypec?api-version=2021-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmEyMzU4YzItNDJmMi00MTM4LTg4ZGYtN2M2OGNmNjA4YmVhL3Jlc291cmNlR3JvdXBzL3BzMjEwNS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHJpdmF0ZUVuZHBvaW50cy9teXBlYz9hcGktdmVyc2lvbj0yMDIxLTAyLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"subnet\": {\r\n \"properties\": {\r\n \"addressPrefix\": \"11.0.1.0/24\",\r\n \"addressPrefixes\": [],\r\n \"serviceEndpoints\": [],\r\n \"serviceEndpointPolicies\": [],\r\n \"ipAllocations\": [],\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Disabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"name\": \"mysubnet\",\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/ps3892/providers/Microsoft.Network/virtualNetworks/myvnet/subnets/mysubnet\"\r\n },\r\n \"privateLinkServiceConnections\": [],\r\n \"manualPrivateLinkServiceConnections\": [\r\n {\r\n \"properties\": {\r\n \"privateLinkServiceId\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/ps3892/providers/Microsoft.Batch/batchAccounts/ps4695\",\r\n \"groupIds\": [\r\n \"batchAccount\"\r\n ]\r\n },\r\n \"name\": \"myplsconnection\"\r\n }\r\n ],\r\n \"customDnsConfigs\": []\r\n },\r\n \"location\": \"westus\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"subnet\": {\r\n \"properties\": {\r\n \"addressPrefix\": \"11.0.1.0/24\",\r\n \"addressPrefixes\": [],\r\n \"serviceEndpoints\": [],\r\n \"serviceEndpointPolicies\": [],\r\n \"ipAllocations\": [],\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Disabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\",\r\n \"applicationGatewayIpConfigurations\": []\r\n },\r\n \"name\": \"mysubnet\",\r\n \"id\": \"/subscriptions/ba2358c2-42f2-4138-88df-7c68cf608bea/resourceGroups/ps2105/providers/Microsoft.Network/virtualNetworks/myvnet/subnets/mysubnet\"\r\n },\r\n \"privateLinkServiceConnections\": [],\r\n \"manualPrivateLinkServiceConnections\": [\r\n {\r\n \"properties\": {\r\n \"privateLinkServiceId\": \"/subscriptions/ba2358c2-42f2-4138-88df-7c68cf608bea/resourceGroups/ps2105/providers/Microsoft.Batch/batchAccounts/ps4582\",\r\n \"groupIds\": [\r\n \"batchAccount\"\r\n ]\r\n },\r\n \"name\": \"myplsconnection\"\r\n }\r\n ],\r\n \"customDnsConfigs\": []\r\n },\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "fc243055-a4e7-4db3-8dd3-e937e139fd60" + "7788d4a5-ecd3-4bd6-bbd3-08898dca3dc5" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.1.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.5.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "1049" + "1100" ] }, "ResponseHeaders": { @@ -961,19 +973,19 @@ "10" ], "x-ms-request-id": [ - "3287242c-4447-4cd8-9601-aa1400bb6807" + "21b4b51f-8855-4e37-a68a-b9fe12451e83" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Network/locations/westus/operations/3287242c-4447-4cd8-9601-aa1400bb6807?api-version=2020-04-01" + "https://management.azure.com/subscriptions/ba2358c2-42f2-4138-88df-7c68cf608bea/providers/Microsoft.Network/locations/westus/operations/21b4b51f-8855-4e37-a68a-b9fe12451e83?api-version=2021-02-01" ], "x-ms-correlation-request-id": [ - "cdee016f-25ec-4c1b-a913-3ea95d498bb1" + "c12bb126-cd7d-4856-952d-f86fb1003c14" ], "Azure-AsyncNotification": [ "Enabled" ], "x-ms-arm-service-request-id": [ - "6a57a447-3d3c-4806-8f3a-249b895c1ae5" + "f1013389-fef8-49a5-a3b5-0671c1614ca8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -983,16 +995,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1197" ], "x-ms-routing-request-id": [ - "WESTUS:20200609T210941Z:cdee016f-25ec-4c1b-a913-3ea95d498bb1" + "NORTHCENTRALUS:20210827T162033Z:c12bb126-cd7d-4856-952d-f86fb1003c14" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 09 Jun 2020 21:09:41 GMT" + "Fri, 27 Aug 2021 16:20:33 GMT" ], "Content-Length": [ "1854" @@ -1004,20 +1016,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"mypec\",\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/ps3892/providers/Microsoft.Network/privateEndpoints/mypec\",\r\n \"etag\": \"W/\\\"9b6499d5-87f9-4113-b572-87a004d5cc1f\\\"\",\r\n \"type\": \"Microsoft.Network/privateEndpoints\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"a47ee878-d308-496a-b521-5e2aa026e23b\",\r\n \"privateLinkServiceConnections\": [],\r\n \"manualPrivateLinkServiceConnections\": [\r\n {\r\n \"name\": \"myplsconnection\",\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/ps3892/providers/Microsoft.Network/privateEndpoints/mypec/manualPrivateLinkServiceConnections/myplsconnection\",\r\n \"etag\": \"W/\\\"9b6499d5-87f9-4113-b572-87a004d5cc1f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateLinkServiceId\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/ps3892/providers/Microsoft.Batch/batchAccounts/ps4695\",\r\n \"groupIds\": [\r\n \"batchAccount\"\r\n ],\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"description\": \"Awaiting Approval\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/privateEndpoints/manualPrivateLinkServiceConnections\"\r\n }\r\n ],\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/ps3892/providers/Microsoft.Network/virtualNetworks/myvnet/subnets/mysubnet\"\r\n },\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/ps3892/providers/Microsoft.Network/networkInterfaces/mypec.nic.5ecd1547-1374-4a8e-b670-7ee9054f150f\"\r\n }\r\n ],\r\n \"customDnsConfigs\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"mypec\",\r\n \"id\": \"/subscriptions/ba2358c2-42f2-4138-88df-7c68cf608bea/resourceGroups/ps2105/providers/Microsoft.Network/privateEndpoints/mypec\",\r\n \"etag\": \"W/\\\"30b78663-d2f3-4a0f-9a58-5f092bf54ff0\\\"\",\r\n \"type\": \"Microsoft.Network/privateEndpoints\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"0f8bb789-4a48-41ed-a129-dba5ff9189e7\",\r\n \"privateLinkServiceConnections\": [],\r\n \"manualPrivateLinkServiceConnections\": [\r\n {\r\n \"name\": \"myplsconnection\",\r\n \"id\": \"/subscriptions/ba2358c2-42f2-4138-88df-7c68cf608bea/resourceGroups/ps2105/providers/Microsoft.Network/privateEndpoints/mypec/manualPrivateLinkServiceConnections/myplsconnection\",\r\n \"etag\": \"W/\\\"30b78663-d2f3-4a0f-9a58-5f092bf54ff0\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateLinkServiceId\": \"/subscriptions/ba2358c2-42f2-4138-88df-7c68cf608bea/resourceGroups/ps2105/providers/Microsoft.Batch/batchAccounts/ps4582\",\r\n \"groupIds\": [\r\n \"batchAccount\"\r\n ],\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"description\": \"Awaiting Approval\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/privateEndpoints/manualPrivateLinkServiceConnections\"\r\n }\r\n ],\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/ba2358c2-42f2-4138-88df-7c68cf608bea/resourceGroups/ps2105/providers/Microsoft.Network/virtualNetworks/myvnet/subnets/mysubnet\"\r\n },\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/ba2358c2-42f2-4138-88df-7c68cf608bea/resourceGroups/ps2105/providers/Microsoft.Network/networkInterfaces/mypec.nic.be92e45b-a769-4f37-959e-f2bf5ed69d79\"\r\n }\r\n ],\r\n \"customDnsConfigs\": []\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Network/locations/westus/operations/3287242c-4447-4cd8-9601-aa1400bb6807?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzI4NzI0MmMtNDQ0Ny00Y2Q4LTk2MDEtYWExNDAwYmI2ODA3P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/ba2358c2-42f2-4138-88df-7c68cf608bea/providers/Microsoft.Network/locations/westus/operations/21b4b51f-8855-4e37-a68a-b9fe12451e83?api-version=2021-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmEyMzU4YzItNDJmMi00MTM4LTg4ZGYtN2M2OGNmNjA4YmVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMjFiNGI1MWYtODg1NS00ZTM3LWE2OGEtYjlmZTEyNDUxZTgzP2FwaS12ZXJzaW9uPTIwMjEtMDItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "7788d4a5-ecd3-4bd6-bbd3-08898dca3dc5" + ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.1.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.5.0.0" ] }, "ResponseHeaders": { @@ -1031,13 +1046,13 @@ "10" ], "x-ms-request-id": [ - "5fd6485f-3a76-41e7-bf15-41e1d4f76b61" + "9083036d-7d26-46dc-96a6-1bf9b9701611" ], "x-ms-correlation-request-id": [ - "36594ae6-ac87-47ea-beef-0d01244b4db3" + "78e86588-3fb6-4644-b1c5-8dac47a1c682" ], "x-ms-arm-service-request-id": [ - "5f4b6389-e82d-4a68-93ab-e6cf34ef4fc9" + "39b6924b-5ed8-48a4-9e3f-d5715ef27ccc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1047,16 +1062,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11985" ], "x-ms-routing-request-id": [ - "WESTUS:20200609T210951Z:36594ae6-ac87-47ea-beef-0d01244b4db3" + "NORTHCENTRALUS:20210827T162043Z:78e86588-3fb6-4644-b1c5-8dac47a1c682" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 09 Jun 2020 21:09:51 GMT" + "Fri, 27 Aug 2021 16:20:42 GMT" ], "Content-Length": [ "30" @@ -1072,16 +1087,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Network/locations/westus/operations/3287242c-4447-4cd8-9601-aa1400bb6807?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzI4NzI0MmMtNDQ0Ny00Y2Q4LTk2MDEtYWExNDAwYmI2ODA3P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/ba2358c2-42f2-4138-88df-7c68cf608bea/providers/Microsoft.Network/locations/westus/operations/21b4b51f-8855-4e37-a68a-b9fe12451e83?api-version=2021-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmEyMzU4YzItNDJmMi00MTM4LTg4ZGYtN2M2OGNmNjA4YmVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMjFiNGI1MWYtODg1NS00ZTM3LWE2OGEtYjlmZTEyNDUxZTgzP2FwaS12ZXJzaW9uPTIwMjEtMDItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "7788d4a5-ecd3-4bd6-bbd3-08898dca3dc5" + ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.1.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.5.0.0" ] }, "ResponseHeaders": { @@ -1092,16 +1110,16 @@ "no-cache" ], "Retry-After": [ - "10" + "20" ], "x-ms-request-id": [ - "561482bb-fa2e-4e13-bbe6-4d28cb8d746e" + "490d53c4-1c48-48df-8285-d953f6a2cebd" ], "x-ms-correlation-request-id": [ - "52601e70-d53a-455e-9a4b-8954ca25f394" + "d4de1d7e-b32c-42c7-bce4-36d8fa92cad4" ], "x-ms-arm-service-request-id": [ - "2e563e4d-3575-4b66-a239-be340bb9b636" + "6974fbdb-20a1-4ce9-a4b0-5c5dead7450d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1111,16 +1129,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11984" ], "x-ms-routing-request-id": [ - "WESTUS:20200609T211001Z:52601e70-d53a-455e-9a4b-8954ca25f394" + "NORTHCENTRALUS:20210827T162053Z:d4de1d7e-b32c-42c7-bce4-36d8fa92cad4" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 09 Jun 2020 21:10:01 GMT" + "Fri, 27 Aug 2021 16:20:52 GMT" ], "Content-Length": [ "30" @@ -1136,16 +1154,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Network/locations/westus/operations/3287242c-4447-4cd8-9601-aa1400bb6807?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzI4NzI0MmMtNDQ0Ny00Y2Q4LTk2MDEtYWExNDAwYmI2ODA3P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/ba2358c2-42f2-4138-88df-7c68cf608bea/providers/Microsoft.Network/locations/westus/operations/21b4b51f-8855-4e37-a68a-b9fe12451e83?api-version=2021-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmEyMzU4YzItNDJmMi00MTM4LTg4ZGYtN2M2OGNmNjA4YmVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMjFiNGI1MWYtODg1NS00ZTM3LWE2OGEtYjlmZTEyNDUxZTgzP2FwaS12ZXJzaW9uPTIwMjEtMDItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "7788d4a5-ecd3-4bd6-bbd3-08898dca3dc5" + ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/19.21.1.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.5.0.0" ] }, "ResponseHeaders": { @@ -1156,13 +1177,13 @@ "no-cache" ], "x-ms-request-id": [ - "aef90e50-7cc5-4e94-b788-4e85b7369cfb" + "d12d06e1-a275-4956-95d5-32e6754fcbf0" ], "x-ms-correlation-request-id": [ - "91222423-0df4-466d-91e1-e86044ce450c" + "20b77e11-003d-4869-bd57-cb543a2790f3" ], "x-ms-arm-service-request-id": [ - "5db7618f-09c0-4db1-b74c-64448a862a88" + "89766b7a-1ce9-4e3a-bf50-1e0406ece4e7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1172,16 +1193,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11983" ], "x-ms-routing-request-id": [ - "WESTUS:20200609T211011Z:91222423-0df4-466d-91e1-e86044ce450c" + "NORTHCENTRALUS:20210827T162113Z:20b77e11-003d-4869-bd57-cb543a2790f3" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 09 Jun 2020 21:10:11 GMT" + "Fri, 27 Aug 2021 16:21:13 GMT" ], "Content-Length": [ "29" @@ -1197,22 +1218,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/ps3892/providers/Microsoft.Batch/batchAccounts/ps4695/privateEndpointConnections?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL3BzMzg5Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvcHM0Njk1L3ByaXZhdGVFbmRwb2ludENvbm5lY3Rpb25zP2FwaS12ZXJzaW9uPTIwMjAtMDMtMDE=", + "RequestUri": "/subscriptions/ba2358c2-42f2-4138-88df-7c68cf608bea/resourceGroups/ps2105/providers/Microsoft.Batch/batchAccounts/ps4582/privateEndpointConnections?api-version=2020-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmEyMzU4YzItNDJmMi00MTM4LTg4ZGYtN2M2OGNmNjA4YmVhL3Jlc291cmNlR3JvdXBzL3BzMjEwNS9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvcHM0NTgyL3ByaXZhdGVFbmRwb2ludENvbm5lY3Rpb25zP2FwaS12ZXJzaW9uPTIwMjAtMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3264c6ef-5303-4c9f-903a-4110b5318eda" + "bab8e7b7-ae9b-4fcb-88b6-4c86b9f10f59" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.43" ] }, "ResponseHeaders": { @@ -1226,7 +1247,7 @@ "11998" ], "x-ms-request-id": [ - "d16f4dcc-73aa-45ac-b3d0-2f45d733f007" + "8cbe06bc-d19a-4645-b126-4a8a34ee262c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1238,13 +1259,13 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-correlation-request-id": [ - "a3e946cb-1aea-4a22-87ff-d97cbd4f1282" + "58fc70b8-1d12-45b7-b240-d608dcba3cd9" ], "x-ms-routing-request-id": [ - "WESTUS:20200609T211012Z:a3e946cb-1aea-4a22-87ff-d97cbd4f1282" + "NORTHCENTRALUS:20210827T162114Z:58fc70b8-1d12-45b7-b240-d608dcba3cd9" ], "Date": [ - "Tue, 09 Jun 2020 21:10:11 GMT" + "Fri, 27 Aug 2021 16:21:14 GMT" ], "Content-Length": [ "709" @@ -1256,26 +1277,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/ps3892/providers/Microsoft.Batch/batchAccounts/ps4695/privateEndpointConnections/mypec.a47ee878-d308-496a-b521-5e2aa026e23b\",\r\n \"name\": \"mypec.a47ee878-d308-496a-b521-5e2aa026e23b\",\r\n \"type\": \"Microsoft.Batch/batchAccounts/privateEndpointConnections\",\r\n \"etag\": \"W/\\\"0x8D80CB979B3D1ED\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/ps3892/providers/Microsoft.Network/privateEndpoints/mypec\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"description\": \"Manual approval still required\",\r\n \"actionsRequired\": \"Manual approval request\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/ba2358c2-42f2-4138-88df-7c68cf608bea/resourceGroups/ps2105/providers/Microsoft.Batch/batchAccounts/ps4582/privateEndpointConnections/mypec.0f8bb789-4a48-41ed-a129-dba5ff9189e7\",\r\n \"name\": \"mypec.0f8bb789-4a48-41ed-a129-dba5ff9189e7\",\r\n \"type\": \"Microsoft.Batch/batchAccounts/privateEndpointConnections\",\r\n \"etag\": \"W/\\\"0x8D96976A14B1DA2\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/ba2358c2-42f2-4138-88df-7c68cf608bea/resourceGroups/ps2105/providers/Microsoft.Network/privateEndpoints/mypec\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"description\": \"Manual approval still required\",\r\n \"actionsRequired\": \"Manual approval request\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourcegroups/ps3892?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlZ3JvdXBzL3BzMzg5Mj9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/ba2358c2-42f2-4138-88df-7c68cf608bea/resourcegroups/ps2105?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmEyMzU4YzItNDJmMi00MTM4LTg4ZGYtN2M2OGNmNjA4YmVhL3Jlc291cmNlZ3JvdXBzL3BzMjEwNT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ce534968-d019-41b1-8e85-0b09f7a313e6" + "5e36ac37-c8e1-43a1-a264-cfed324ae4cc" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.43" ] }, "ResponseHeaders": { @@ -1286,7 +1307,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/ba2358c2-42f2-4138-88df-7c68cf608bea/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIxMDUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -1295,13 +1316,13 @@ "14999" ], "x-ms-request-id": [ - "dbe6580c-d696-41d0-9544-5dc7323b333a" + "02446d89-e87b-408a-8b18-5610e4df2a89" ], "x-ms-correlation-request-id": [ - "dbe6580c-d696-41d0-9544-5dc7323b333a" + "02446d89-e87b-408a-8b18-5610e4df2a89" ], "x-ms-routing-request-id": [ - "WESTUS:20200609T211012Z:dbe6580c-d696-41d0-9544-5dc7323b333a" + "NORTHCENTRALUS:20210827T162115Z:02446d89-e87b-408a-8b18-5610e4df2a89" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1310,7 +1331,7 @@ "nosniff" ], "Date": [ - "Tue, 09 Jun 2020 21:10:11 GMT" + "Fri, 27 Aug 2021 16:21:14 GMT" ], "Expires": [ "-1" @@ -1323,16 +1344,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/ba2358c2-42f2-4138-88df-7c68cf608bea/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIxMDUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmEyMzU4YzItNDJmMi00MTM4LTg4ZGYtN2M2OGNmNjA4YmVhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJeE1EVXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.43" ] }, "ResponseHeaders": { @@ -1343,7 +1364,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/ba2358c2-42f2-4138-88df-7c68cf608bea/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIxMDUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -1352,13 +1373,13 @@ "11998" ], "x-ms-request-id": [ - "6bba2d53-314a-4181-9a18-7fe2b8f0899f" + "db30ee48-1079-4e72-b378-7bf4daca440c" ], "x-ms-correlation-request-id": [ - "6bba2d53-314a-4181-9a18-7fe2b8f0899f" + "db30ee48-1079-4e72-b378-7bf4daca440c" ], "x-ms-routing-request-id": [ - "WESTUS:20200609T211027Z:6bba2d53-314a-4181-9a18-7fe2b8f0899f" + "NORTHCENTRALUS:20210827T162130Z:db30ee48-1079-4e72-b378-7bf4daca440c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1367,7 +1388,7 @@ "nosniff" ], "Date": [ - "Tue, 09 Jun 2020 21:10:27 GMT" + "Fri, 27 Aug 2021 16:21:30 GMT" ], "Expires": [ "-1" @@ -1380,16 +1401,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/ba2358c2-42f2-4138-88df-7c68cf608bea/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIxMDUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmEyMzU4YzItNDJmMi00MTM4LTg4ZGYtN2M2OGNmNjA4YmVhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJeE1EVXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.43" ] }, "ResponseHeaders": { @@ -1400,7 +1421,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/ba2358c2-42f2-4138-88df-7c68cf608bea/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIxMDUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -1409,13 +1430,13 @@ "11997" ], "x-ms-request-id": [ - "25ae565a-e588-4457-8266-622009bee32a" + "85ccc261-bff7-4a7a-b1aa-5750fd18be03" ], "x-ms-correlation-request-id": [ - "25ae565a-e588-4457-8266-622009bee32a" + "85ccc261-bff7-4a7a-b1aa-5750fd18be03" ], "x-ms-routing-request-id": [ - "WESTUS:20200609T211042Z:25ae565a-e588-4457-8266-622009bee32a" + "NORTHCENTRALUS:20210827T162145Z:85ccc261-bff7-4a7a-b1aa-5750fd18be03" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1424,7 +1445,7 @@ "nosniff" ], "Date": [ - "Tue, 09 Jun 2020 21:10:41 GMT" + "Fri, 27 Aug 2021 16:21:45 GMT" ], "Expires": [ "-1" @@ -1437,16 +1458,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/ba2358c2-42f2-4138-88df-7c68cf608bea/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIxMDUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmEyMzU4YzItNDJmMi00MTM4LTg4ZGYtN2M2OGNmNjA4YmVhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJeE1EVXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.43" ] }, "ResponseHeaders": { @@ -1457,7 +1478,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/ba2358c2-42f2-4138-88df-7c68cf608bea/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIxMDUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -1466,13 +1487,13 @@ "11996" ], "x-ms-request-id": [ - "8cbeca1b-daf2-4273-8ca1-458a1fed916e" + "c1c449cb-1ae7-45c3-bf8e-08b6047d637a" ], "x-ms-correlation-request-id": [ - "8cbeca1b-daf2-4273-8ca1-458a1fed916e" + "c1c449cb-1ae7-45c3-bf8e-08b6047d637a" ], "x-ms-routing-request-id": [ - "WESTUS:20200609T211057Z:8cbeca1b-daf2-4273-8ca1-458a1fed916e" + "NORTHCENTRALUS:20210827T162201Z:c1c449cb-1ae7-45c3-bf8e-08b6047d637a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1481,7 +1502,7 @@ "nosniff" ], "Date": [ - "Tue, 09 Jun 2020 21:10:56 GMT" + "Fri, 27 Aug 2021 16:22:00 GMT" ], "Expires": [ "-1" @@ -1494,16 +1515,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/ba2358c2-42f2-4138-88df-7c68cf608bea/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIxMDUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmEyMzU4YzItNDJmMi00MTM4LTg4ZGYtN2M2OGNmNjA4YmVhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJeE1EVXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.43" ] }, "ResponseHeaders": { @@ -1514,7 +1535,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/ba2358c2-42f2-4138-88df-7c68cf608bea/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIxMDUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -1523,13 +1544,13 @@ "11995" ], "x-ms-request-id": [ - "f63aca40-d80a-4635-af70-555b4397ed5b" + "034f8160-dd11-4f3f-a0b1-6d962dc3c596" ], "x-ms-correlation-request-id": [ - "f63aca40-d80a-4635-af70-555b4397ed5b" + "034f8160-dd11-4f3f-a0b1-6d962dc3c596" ], "x-ms-routing-request-id": [ - "WESTUS:20200609T211112Z:f63aca40-d80a-4635-af70-555b4397ed5b" + "NORTHCENTRALUS:20210827T162216Z:034f8160-dd11-4f3f-a0b1-6d962dc3c596" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1538,7 +1559,7 @@ "nosniff" ], "Date": [ - "Tue, 09 Jun 2020 21:11:11 GMT" + "Fri, 27 Aug 2021 16:22:15 GMT" ], "Expires": [ "-1" @@ -1551,16 +1572,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/ba2358c2-42f2-4138-88df-7c68cf608bea/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIxMDUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmEyMzU4YzItNDJmMi00MTM4LTg4ZGYtN2M2OGNmNjA4YmVhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJeE1EVXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.43" ] }, "ResponseHeaders": { @@ -1570,23 +1591,17 @@ "Pragma": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], "x-ms-ratelimit-remaining-subscription-reads": [ "11994" ], "x-ms-request-id": [ - "77f11b42-649b-4373-af5f-d3d8d1db8748" + "7d1ab417-11c5-4e95-959e-0ddcb1cd0adc" ], "x-ms-correlation-request-id": [ - "77f11b42-649b-4373-af5f-d3d8d1db8748" + "7d1ab417-11c5-4e95-959e-0ddcb1cd0adc" ], "x-ms-routing-request-id": [ - "WESTUS:20200609T211127Z:77f11b42-649b-4373-af5f-d3d8d1db8748" + "NORTHCENTRALUS:20210827T162231Z:7d1ab417-11c5-4e95-959e-0ddcb1cd0adc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1595,7 +1610,7 @@ "nosniff" ], "Date": [ - "Tue, 09 Jun 2020 21:11:26 GMT" + "Fri, 27 Aug 2021 16:22:30 GMT" ], "Expires": [ "-1" @@ -1605,19 +1620,19 @@ ] }, "ResponseBody": "", - "StatusCode": 202 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/ba2358c2-42f2-4138-88df-7c68cf608bea/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIxMDUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmEyMzU4YzItNDJmMi00MTM4LTg4ZGYtN2M2OGNmNjA4YmVhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJeE1EVXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.43" ] }, "ResponseHeaders": { @@ -1627,251 +1642,17 @@ "Pragma": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], "x-ms-ratelimit-remaining-subscription-reads": [ "11993" ], "x-ms-request-id": [ - "ce9ee602-a0a9-44e3-9214-02b108958a2a" - ], - "x-ms-correlation-request-id": [ - "ce9ee602-a0a9-44e3-9214-02b108958a2a" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T211142Z:ce9ee602-a0a9-44e3-9214-02b108958a2a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 21:11:41 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" - ], - "x-ms-request-id": [ - "11bf5e96-98b1-4f9d-afde-0aa39e5faa80" - ], - "x-ms-correlation-request-id": [ - "11bf5e96-98b1-4f9d-afde-0aa39e5faa80" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T211157Z:11bf5e96-98b1-4f9d-afde-0aa39e5faa80" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 21:11:56 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" - ], - "x-ms-request-id": [ - "716affb0-14a1-456d-bc6c-220df7c02bb9" - ], - "x-ms-correlation-request-id": [ - "716affb0-14a1-456d-bc6c-220df7c02bb9" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T211212Z:716affb0-14a1-456d-bc6c-220df7c02bb9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 21:12:12 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" - ], - "x-ms-request-id": [ - "33ec3357-f3f5-4a50-b40d-26bec93383ac" - ], - "x-ms-correlation-request-id": [ - "33ec3357-f3f5-4a50-b40d-26bec93383ac" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T211227Z:33ec3357-f3f5-4a50-b40d-26bec93383ac" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 21:12:27 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" - ], - "x-ms-request-id": [ - "6f036546-7541-4751-8d95-090a7fd9bd9a" + "e2092a0b-c970-48d6-867c-cdb0117c4751" ], "x-ms-correlation-request-id": [ - "6f036546-7541-4751-8d95-090a7fd9bd9a" + "e2092a0b-c970-48d6-867c-cdb0117c4751" ], "x-ms-routing-request-id": [ - "WESTUS:20200609T211242Z:6f036546-7541-4751-8d95-090a7fd9bd9a" + "NORTHCENTRALUS:20210827T162231Z:e2092a0b-c970-48d6-867c-cdb0117c4751" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1880,7 +1661,7 @@ "nosniff" ], "Date": [ - "Tue, 09 Jun 2020 21:12:42 GMT" + "Fri, 27 Aug 2021 16:22:30 GMT" ], "Expires": [ "-1" @@ -1890,13468 +1671,19 @@ ] }, "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" - ], - "x-ms-request-id": [ - "fc4e94cc-41a7-4912-8a1f-e0b25558095e" - ], - "x-ms-correlation-request-id": [ - "fc4e94cc-41a7-4912-8a1f-e0b25558095e" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T211257Z:fc4e94cc-41a7-4912-8a1f-e0b25558095e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 21:12:57 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" - ], - "x-ms-request-id": [ - "4ceb8a29-5eb4-4464-8052-88250040781d" - ], - "x-ms-correlation-request-id": [ - "4ceb8a29-5eb4-4464-8052-88250040781d" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T211312Z:4ceb8a29-5eb4-4464-8052-88250040781d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 21:13:12 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" - ], - "x-ms-request-id": [ - "ffe274b5-b922-42b8-8868-8ef91be1cc6e" - ], - "x-ms-correlation-request-id": [ - "ffe274b5-b922-42b8-8868-8ef91be1cc6e" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T211327Z:ffe274b5-b922-42b8-8868-8ef91be1cc6e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 21:13:27 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" - ], - "x-ms-request-id": [ - "660b2c32-5a88-4b39-a125-f6360e30c812" - ], - "x-ms-correlation-request-id": [ - "660b2c32-5a88-4b39-a125-f6360e30c812" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T211342Z:660b2c32-5a88-4b39-a125-f6360e30c812" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 21:13:42 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11984" - ], - "x-ms-request-id": [ - "c0eb2c69-0fc7-4eeb-9a3a-32bf730891d7" - ], - "x-ms-correlation-request-id": [ - "c0eb2c69-0fc7-4eeb-9a3a-32bf730891d7" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T211357Z:c0eb2c69-0fc7-4eeb-9a3a-32bf730891d7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 21:13:56 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11983" - ], - "x-ms-request-id": [ - "afae96af-f48f-429f-9009-01c47e634033" - ], - "x-ms-correlation-request-id": [ - "afae96af-f48f-429f-9009-01c47e634033" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T211412Z:afae96af-f48f-429f-9009-01c47e634033" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 21:14:12 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11982" - ], - "x-ms-request-id": [ - "e4c2a57e-5f63-482f-a500-fd382716b8cb" - ], - "x-ms-correlation-request-id": [ - "e4c2a57e-5f63-482f-a500-fd382716b8cb" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T211427Z:e4c2a57e-5f63-482f-a500-fd382716b8cb" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 21:14:27 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11981" - ], - "x-ms-request-id": [ - "fa01871e-5422-4c71-be8f-40e69e52fa95" - ], - "x-ms-correlation-request-id": [ - "fa01871e-5422-4c71-be8f-40e69e52fa95" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T211443Z:fa01871e-5422-4c71-be8f-40e69e52fa95" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 21:14:42 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11980" - ], - "x-ms-request-id": [ - "c3521af2-b135-4630-9e50-5806f725ed1c" - ], - "x-ms-correlation-request-id": [ - "c3521af2-b135-4630-9e50-5806f725ed1c" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T211458Z:c3521af2-b135-4630-9e50-5806f725ed1c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 21:14:57 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11979" - ], - "x-ms-request-id": [ - "9d48db83-d090-43e6-b9fe-416f97564818" - ], - "x-ms-correlation-request-id": [ - "9d48db83-d090-43e6-b9fe-416f97564818" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T211513Z:9d48db83-d090-43e6-b9fe-416f97564818" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 21:15:12 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11978" - ], - "x-ms-request-id": [ - "61cfec23-e3c3-4aae-a621-5be25fc6500a" - ], - "x-ms-correlation-request-id": [ - "61cfec23-e3c3-4aae-a621-5be25fc6500a" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T211528Z:61cfec23-e3c3-4aae-a621-5be25fc6500a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 21:15:27 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11977" - ], - "x-ms-request-id": [ - "b3ac4249-cfe5-4cff-a3bd-6128580a7b03" - ], - "x-ms-correlation-request-id": [ - "b3ac4249-cfe5-4cff-a3bd-6128580a7b03" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T211543Z:b3ac4249-cfe5-4cff-a3bd-6128580a7b03" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 21:15:43 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11976" - ], - "x-ms-request-id": [ - "0138b08d-6fa7-415b-954f-67194e641c57" - ], - "x-ms-correlation-request-id": [ - "0138b08d-6fa7-415b-954f-67194e641c57" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T211558Z:0138b08d-6fa7-415b-954f-67194e641c57" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 21:15:58 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11975" - ], - "x-ms-request-id": [ - "c3a7bb23-fb55-4f83-9073-c1d703b76d86" - ], - "x-ms-correlation-request-id": [ - "c3a7bb23-fb55-4f83-9073-c1d703b76d86" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T211613Z:c3a7bb23-fb55-4f83-9073-c1d703b76d86" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 21:16:12 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11974" - ], - "x-ms-request-id": [ - "fe1815ea-d55c-4c5f-ac61-57bdbebf3299" - ], - "x-ms-correlation-request-id": [ - "fe1815ea-d55c-4c5f-ac61-57bdbebf3299" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T211628Z:fe1815ea-d55c-4c5f-ac61-57bdbebf3299" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 21:16:27 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11973" - ], - "x-ms-request-id": [ - "791b7edc-67f2-4144-95ee-cd71198de08e" - ], - "x-ms-correlation-request-id": [ - "791b7edc-67f2-4144-95ee-cd71198de08e" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T211643Z:791b7edc-67f2-4144-95ee-cd71198de08e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 21:16:42 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11972" - ], - "x-ms-request-id": [ - "bceeb1d9-e356-4d10-ac3a-c3b9ba2c35ef" - ], - "x-ms-correlation-request-id": [ - "bceeb1d9-e356-4d10-ac3a-c3b9ba2c35ef" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T211658Z:bceeb1d9-e356-4d10-ac3a-c3b9ba2c35ef" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 21:16:57 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11971" - ], - "x-ms-request-id": [ - "7147b694-7e26-46fc-8097-bfca2253aff7" - ], - "x-ms-correlation-request-id": [ - "7147b694-7e26-46fc-8097-bfca2253aff7" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T211713Z:7147b694-7e26-46fc-8097-bfca2253aff7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 21:17:12 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11970" - ], - "x-ms-request-id": [ - "b86b8616-9934-4955-b07d-ab1342f31b02" - ], - "x-ms-correlation-request-id": [ - "b86b8616-9934-4955-b07d-ab1342f31b02" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T211728Z:b86b8616-9934-4955-b07d-ab1342f31b02" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 21:17:27 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11969" - ], - "x-ms-request-id": [ - "7b7bc8fd-4177-4b2f-9530-81fed9694189" - ], - "x-ms-correlation-request-id": [ - "7b7bc8fd-4177-4b2f-9530-81fed9694189" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T211743Z:7b7bc8fd-4177-4b2f-9530-81fed9694189" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 21:17:43 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11968" - ], - "x-ms-request-id": [ - "58e399b1-0329-407f-b075-bace3478ca9c" - ], - "x-ms-correlation-request-id": [ - "58e399b1-0329-407f-b075-bace3478ca9c" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T211758Z:58e399b1-0329-407f-b075-bace3478ca9c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 21:17:58 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11967" - ], - "x-ms-request-id": [ - "fd91cb03-f346-4f48-b581-ce978b3f2831" - ], - "x-ms-correlation-request-id": [ - "fd91cb03-f346-4f48-b581-ce978b3f2831" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T211813Z:fd91cb03-f346-4f48-b581-ce978b3f2831" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 21:18:13 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11966" - ], - "x-ms-request-id": [ - "8fbcf035-27e7-4c3a-bf9a-a23c25b65f8b" - ], - "x-ms-correlation-request-id": [ - "8fbcf035-27e7-4c3a-bf9a-a23c25b65f8b" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T211828Z:8fbcf035-27e7-4c3a-bf9a-a23c25b65f8b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 21:18:28 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11965" - ], - "x-ms-request-id": [ - "892a6a56-e25a-4946-82df-7d1b574a91ea" - ], - "x-ms-correlation-request-id": [ - "892a6a56-e25a-4946-82df-7d1b574a91ea" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T211843Z:892a6a56-e25a-4946-82df-7d1b574a91ea" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 21:18:43 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11964" - ], - "x-ms-request-id": [ - "56730dff-32d5-4911-9675-c913117982bc" - ], - "x-ms-correlation-request-id": [ - "56730dff-32d5-4911-9675-c913117982bc" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T211858Z:56730dff-32d5-4911-9675-c913117982bc" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 21:18:57 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11963" - ], - "x-ms-request-id": [ - "9891346b-aec6-415b-936f-57407a124701" - ], - "x-ms-correlation-request-id": [ - "9891346b-aec6-415b-936f-57407a124701" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T211913Z:9891346b-aec6-415b-936f-57407a124701" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 21:19:12 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11962" - ], - "x-ms-request-id": [ - "03e422dd-fca8-4333-b11b-85feeb2fec83" - ], - "x-ms-correlation-request-id": [ - "03e422dd-fca8-4333-b11b-85feeb2fec83" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T211928Z:03e422dd-fca8-4333-b11b-85feeb2fec83" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 21:19:28 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11961" - ], - "x-ms-request-id": [ - "ecf31120-7e97-474d-990b-faa85cff990c" - ], - "x-ms-correlation-request-id": [ - "ecf31120-7e97-474d-990b-faa85cff990c" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T211943Z:ecf31120-7e97-474d-990b-faa85cff990c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 21:19:43 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11960" - ], - "x-ms-request-id": [ - "b6abcea1-077a-44df-9842-4448b71ec1df" - ], - "x-ms-correlation-request-id": [ - "b6abcea1-077a-44df-9842-4448b71ec1df" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T211958Z:b6abcea1-077a-44df-9842-4448b71ec1df" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 21:19:58 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11959" - ], - "x-ms-request-id": [ - "1e60aa18-af2b-476d-a6ed-ea5fda47ba3c" - ], - "x-ms-correlation-request-id": [ - "1e60aa18-af2b-476d-a6ed-ea5fda47ba3c" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T212013Z:1e60aa18-af2b-476d-a6ed-ea5fda47ba3c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 21:20:13 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11958" - ], - "x-ms-request-id": [ - "284df091-2232-43f4-b313-23fd857379cc" - ], - "x-ms-correlation-request-id": [ - "284df091-2232-43f4-b313-23fd857379cc" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T212029Z:284df091-2232-43f4-b313-23fd857379cc" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 21:20:28 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11957" - ], - "x-ms-request-id": [ - "868860b4-285f-4c82-89cb-8d891be3da63" - ], - "x-ms-correlation-request-id": [ - "868860b4-285f-4c82-89cb-8d891be3da63" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T212044Z:868860b4-285f-4c82-89cb-8d891be3da63" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 21:20:43 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11956" - ], - "x-ms-request-id": [ - "c88abb18-0385-4149-92fd-48decee97f5a" - ], - "x-ms-correlation-request-id": [ - "c88abb18-0385-4149-92fd-48decee97f5a" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T212059Z:c88abb18-0385-4149-92fd-48decee97f5a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 21:20:59 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11955" - ], - "x-ms-request-id": [ - "80b252ef-aab0-49cb-b0bf-4b6f26155784" - ], - "x-ms-correlation-request-id": [ - "80b252ef-aab0-49cb-b0bf-4b6f26155784" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T212114Z:80b252ef-aab0-49cb-b0bf-4b6f26155784" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 21:21:13 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11954" - ], - "x-ms-request-id": [ - "76b02832-380d-4259-bfd9-4dbaa8fde0f4" - ], - "x-ms-correlation-request-id": [ - "76b02832-380d-4259-bfd9-4dbaa8fde0f4" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T212129Z:76b02832-380d-4259-bfd9-4dbaa8fde0f4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 21:21:28 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11953" - ], - "x-ms-request-id": [ - "dff49d0c-1a34-4b01-aae7-2f09f9d537b3" - ], - "x-ms-correlation-request-id": [ - "dff49d0c-1a34-4b01-aae7-2f09f9d537b3" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T212144Z:dff49d0c-1a34-4b01-aae7-2f09f9d537b3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 21:21:43 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11952" - ], - "x-ms-request-id": [ - "58e57aef-76da-4eaf-bb0e-8ede0ce3a91a" - ], - "x-ms-correlation-request-id": [ - "58e57aef-76da-4eaf-bb0e-8ede0ce3a91a" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T212159Z:58e57aef-76da-4eaf-bb0e-8ede0ce3a91a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 21:21:58 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11951" - ], - "x-ms-request-id": [ - "5ce2c850-ce90-4480-aa09-1aa4c8c7093f" - ], - "x-ms-correlation-request-id": [ - "5ce2c850-ce90-4480-aa09-1aa4c8c7093f" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T212214Z:5ce2c850-ce90-4480-aa09-1aa4c8c7093f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 21:22:13 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11950" - ], - "x-ms-request-id": [ - "7e950a0d-0efd-4d3c-98da-7396775779a5" - ], - "x-ms-correlation-request-id": [ - "7e950a0d-0efd-4d3c-98da-7396775779a5" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T212229Z:7e950a0d-0efd-4d3c-98da-7396775779a5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 21:22:28 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11949" - ], - "x-ms-request-id": [ - "9c550a31-6c73-478e-b0f3-8a0b6cc4b34e" - ], - "x-ms-correlation-request-id": [ - "9c550a31-6c73-478e-b0f3-8a0b6cc4b34e" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T212244Z:9c550a31-6c73-478e-b0f3-8a0b6cc4b34e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 21:22:43 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11948" - ], - "x-ms-request-id": [ - "6743c6ca-58cd-4c0d-ab14-9856976afce1" - ], - "x-ms-correlation-request-id": [ - "6743c6ca-58cd-4c0d-ab14-9856976afce1" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T212259Z:6743c6ca-58cd-4c0d-ab14-9856976afce1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 21:22:59 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11947" - ], - "x-ms-request-id": [ - "03d0b443-c9df-43e5-affa-f59e5ac15596" - ], - "x-ms-correlation-request-id": [ - "03d0b443-c9df-43e5-affa-f59e5ac15596" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T212314Z:03d0b443-c9df-43e5-affa-f59e5ac15596" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 21:23:14 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11946" - ], - "x-ms-request-id": [ - "c334c1a3-ec3b-4939-b586-94aecaa9b9a6" - ], - "x-ms-correlation-request-id": [ - "c334c1a3-ec3b-4939-b586-94aecaa9b9a6" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T212329Z:c334c1a3-ec3b-4939-b586-94aecaa9b9a6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 21:23:29 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11945" - ], - "x-ms-request-id": [ - "85c6d967-8062-4717-ae77-08ea1821d799" - ], - "x-ms-correlation-request-id": [ - "85c6d967-8062-4717-ae77-08ea1821d799" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T212344Z:85c6d967-8062-4717-ae77-08ea1821d799" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 21:23:44 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11944" - ], - "x-ms-request-id": [ - "8839afd9-5885-46fb-94bb-e3168db49696" - ], - "x-ms-correlation-request-id": [ - "8839afd9-5885-46fb-94bb-e3168db49696" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T212359Z:8839afd9-5885-46fb-94bb-e3168db49696" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 21:23:59 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11943" - ], - "x-ms-request-id": [ - "ac45d563-1066-43bf-8ec7-028bc0cee503" - ], - "x-ms-correlation-request-id": [ - "ac45d563-1066-43bf-8ec7-028bc0cee503" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T212414Z:ac45d563-1066-43bf-8ec7-028bc0cee503" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 21:24:14 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11942" - ], - "x-ms-request-id": [ - "11fd3d82-81d1-45b8-95b2-ca5690800630" - ], - "x-ms-correlation-request-id": [ - "11fd3d82-81d1-45b8-95b2-ca5690800630" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T212429Z:11fd3d82-81d1-45b8-95b2-ca5690800630" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 21:24:29 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11941" - ], - "x-ms-request-id": [ - "3f107ecc-f577-47f7-85c8-9f96807e4371" - ], - "x-ms-correlation-request-id": [ - "3f107ecc-f577-47f7-85c8-9f96807e4371" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T212444Z:3f107ecc-f577-47f7-85c8-9f96807e4371" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 21:24:44 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11940" - ], - "x-ms-request-id": [ - "cead576d-1936-4f15-b193-cb0829af8489" - ], - "x-ms-correlation-request-id": [ - "cead576d-1936-4f15-b193-cb0829af8489" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T212459Z:cead576d-1936-4f15-b193-cb0829af8489" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 21:24:59 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11939" - ], - "x-ms-request-id": [ - "5c4d52cf-bb2a-465a-8ba7-fcf557a0c945" - ], - "x-ms-correlation-request-id": [ - "5c4d52cf-bb2a-465a-8ba7-fcf557a0c945" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T212515Z:5c4d52cf-bb2a-465a-8ba7-fcf557a0c945" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 21:25:14 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11938" - ], - "x-ms-request-id": [ - "1efefebf-34c6-4fe2-81f0-8dcb3d5a2420" - ], - "x-ms-correlation-request-id": [ - "1efefebf-34c6-4fe2-81f0-8dcb3d5a2420" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T212530Z:1efefebf-34c6-4fe2-81f0-8dcb3d5a2420" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 21:25:29 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11937" - ], - "x-ms-request-id": [ - "7f43e492-98b6-4b80-8e0f-1a8229aeea9f" - ], - "x-ms-correlation-request-id": [ - "7f43e492-98b6-4b80-8e0f-1a8229aeea9f" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T212545Z:7f43e492-98b6-4b80-8e0f-1a8229aeea9f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 21:25:44 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11936" - ], - "x-ms-request-id": [ - "28877921-2f1f-4d19-b678-93ac45de61cb" - ], - "x-ms-correlation-request-id": [ - "28877921-2f1f-4d19-b678-93ac45de61cb" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T212600Z:28877921-2f1f-4d19-b678-93ac45de61cb" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 21:25:59 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11935" - ], - "x-ms-request-id": [ - "16089e13-557d-4b8a-be82-4545237f462a" - ], - "x-ms-correlation-request-id": [ - "16089e13-557d-4b8a-be82-4545237f462a" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T212615Z:16089e13-557d-4b8a-be82-4545237f462a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 21:26:14 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11934" - ], - "x-ms-request-id": [ - "e7eb4bed-8115-4315-9ba5-8bbbf6109a22" - ], - "x-ms-correlation-request-id": [ - "e7eb4bed-8115-4315-9ba5-8bbbf6109a22" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T212630Z:e7eb4bed-8115-4315-9ba5-8bbbf6109a22" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 21:26:29 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11933" - ], - "x-ms-request-id": [ - "335cada5-342f-4f1d-a51a-f3a57ec5b9d0" - ], - "x-ms-correlation-request-id": [ - "335cada5-342f-4f1d-a51a-f3a57ec5b9d0" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T212645Z:335cada5-342f-4f1d-a51a-f3a57ec5b9d0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 21:26:44 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11932" - ], - "x-ms-request-id": [ - "82c323c1-bd44-46d0-9878-0c4e9d140cee" - ], - "x-ms-correlation-request-id": [ - "82c323c1-bd44-46d0-9878-0c4e9d140cee" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T212700Z:82c323c1-bd44-46d0-9878-0c4e9d140cee" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 21:27:00 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11931" - ], - "x-ms-request-id": [ - "063af8c3-8f66-4ee0-a46b-ce33b95f96f1" - ], - "x-ms-correlation-request-id": [ - "063af8c3-8f66-4ee0-a46b-ce33b95f96f1" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T212715Z:063af8c3-8f66-4ee0-a46b-ce33b95f96f1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 21:27:15 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11930" - ], - "x-ms-request-id": [ - "c8b20a82-b552-49d6-abe9-bf36199fae41" - ], - "x-ms-correlation-request-id": [ - "c8b20a82-b552-49d6-abe9-bf36199fae41" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T212730Z:c8b20a82-b552-49d6-abe9-bf36199fae41" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 21:27:30 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11929" - ], - "x-ms-request-id": [ - "55b5f077-eab4-432f-a7fd-949f4a9e03e6" - ], - "x-ms-correlation-request-id": [ - "55b5f077-eab4-432f-a7fd-949f4a9e03e6" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T212745Z:55b5f077-eab4-432f-a7fd-949f4a9e03e6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 21:27:44 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11928" - ], - "x-ms-request-id": [ - "b422157e-dffc-466c-bde5-8483bcf50754" - ], - "x-ms-correlation-request-id": [ - "b422157e-dffc-466c-bde5-8483bcf50754" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T212800Z:b422157e-dffc-466c-bde5-8483bcf50754" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 21:27:59 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11927" - ], - "x-ms-request-id": [ - "802c81a8-18fc-4b2d-91a9-ecaa186ead13" - ], - "x-ms-correlation-request-id": [ - "802c81a8-18fc-4b2d-91a9-ecaa186ead13" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T212815Z:802c81a8-18fc-4b2d-91a9-ecaa186ead13" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 21:28:14 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11926" - ], - "x-ms-request-id": [ - "77bca834-1739-4127-ac38-145304369316" - ], - "x-ms-correlation-request-id": [ - "77bca834-1739-4127-ac38-145304369316" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T212830Z:77bca834-1739-4127-ac38-145304369316" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 21:28:30 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11925" - ], - "x-ms-request-id": [ - "c1fd74dc-19cc-4504-baaf-94e85c530693" - ], - "x-ms-correlation-request-id": [ - "c1fd74dc-19cc-4504-baaf-94e85c530693" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T212845Z:c1fd74dc-19cc-4504-baaf-94e85c530693" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 21:28:45 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11924" - ], - "x-ms-request-id": [ - "c11ba9ca-3cf2-44f0-a528-107092284204" - ], - "x-ms-correlation-request-id": [ - "c11ba9ca-3cf2-44f0-a528-107092284204" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T212900Z:c11ba9ca-3cf2-44f0-a528-107092284204" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 21:29:00 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11923" - ], - "x-ms-request-id": [ - "96485855-5ec2-4cbd-83f8-8e357f45f71d" - ], - "x-ms-correlation-request-id": [ - "96485855-5ec2-4cbd-83f8-8e357f45f71d" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T212915Z:96485855-5ec2-4cbd-83f8-8e357f45f71d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 21:29:15 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11922" - ], - "x-ms-request-id": [ - "2bef2609-00b4-4bb6-9059-f3aada202df2" - ], - "x-ms-correlation-request-id": [ - "2bef2609-00b4-4bb6-9059-f3aada202df2" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T212930Z:2bef2609-00b4-4bb6-9059-f3aada202df2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 21:29:30 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11921" - ], - "x-ms-request-id": [ - "70d71b52-6705-4f17-a8bc-ae85c328b3f7" - ], - "x-ms-correlation-request-id": [ - "70d71b52-6705-4f17-a8bc-ae85c328b3f7" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T212945Z:70d71b52-6705-4f17-a8bc-ae85c328b3f7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 21:29:45 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11920" - ], - "x-ms-request-id": [ - "f134d2e9-6a50-4500-9d2f-18ebb7b5be2f" - ], - "x-ms-correlation-request-id": [ - "f134d2e9-6a50-4500-9d2f-18ebb7b5be2f" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T213000Z:f134d2e9-6a50-4500-9d2f-18ebb7b5be2f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 21:30:00 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11919" - ], - "x-ms-request-id": [ - "dd77be34-4ad8-4e02-adcc-f42f81f06e21" - ], - "x-ms-correlation-request-id": [ - "dd77be34-4ad8-4e02-adcc-f42f81f06e21" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T213015Z:dd77be34-4ad8-4e02-adcc-f42f81f06e21" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 21:30:15 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11918" - ], - "x-ms-request-id": [ - "c8486782-6cc2-4018-9d6d-31d3667eda21" - ], - "x-ms-correlation-request-id": [ - "c8486782-6cc2-4018-9d6d-31d3667eda21" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T213031Z:c8486782-6cc2-4018-9d6d-31d3667eda21" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 21:30:30 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11917" - ], - "x-ms-request-id": [ - "2b2cfbd2-9838-4447-a539-8b5173cd64a3" - ], - "x-ms-correlation-request-id": [ - "2b2cfbd2-9838-4447-a539-8b5173cd64a3" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T213046Z:2b2cfbd2-9838-4447-a539-8b5173cd64a3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 21:30:45 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11916" - ], - "x-ms-request-id": [ - "7492686c-b8c4-4d47-a6e3-70779710d27a" - ], - "x-ms-correlation-request-id": [ - "7492686c-b8c4-4d47-a6e3-70779710d27a" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T213101Z:7492686c-b8c4-4d47-a6e3-70779710d27a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 21:31:00 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11915" - ], - "x-ms-request-id": [ - "d79a2fd2-9381-465c-af40-6a176d6c2dbe" - ], - "x-ms-correlation-request-id": [ - "d79a2fd2-9381-465c-af40-6a176d6c2dbe" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T213116Z:d79a2fd2-9381-465c-af40-6a176d6c2dbe" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 21:31:15 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11914" - ], - "x-ms-request-id": [ - "7512e585-689f-4b46-a012-4e90401339cb" - ], - "x-ms-correlation-request-id": [ - "7512e585-689f-4b46-a012-4e90401339cb" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T213131Z:7512e585-689f-4b46-a012-4e90401339cb" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 21:31:30 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11913" - ], - "x-ms-request-id": [ - "67103550-4d48-4db6-92de-2a6d5adb6c70" - ], - "x-ms-correlation-request-id": [ - "67103550-4d48-4db6-92de-2a6d5adb6c70" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T213146Z:67103550-4d48-4db6-92de-2a6d5adb6c70" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 21:31:45 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11912" - ], - "x-ms-request-id": [ - "9d97d4cc-ed1c-4d49-b692-f3055d966e83" - ], - "x-ms-correlation-request-id": [ - "9d97d4cc-ed1c-4d49-b692-f3055d966e83" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T213201Z:9d97d4cc-ed1c-4d49-b692-f3055d966e83" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 21:32:00 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11911" - ], - "x-ms-request-id": [ - "2853c986-de38-494a-bd35-09feb54304c0" - ], - "x-ms-correlation-request-id": [ - "2853c986-de38-494a-bd35-09feb54304c0" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T213216Z:2853c986-de38-494a-bd35-09feb54304c0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 21:32:16 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11910" - ], - "x-ms-request-id": [ - "39376379-0a76-4a6e-aaf1-d438a72cc50e" - ], - "x-ms-correlation-request-id": [ - "39376379-0a76-4a6e-aaf1-d438a72cc50e" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T213231Z:39376379-0a76-4a6e-aaf1-d438a72cc50e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 21:32:31 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11909" - ], - "x-ms-request-id": [ - "a011df2e-5ddb-4900-8d1f-ed8b7bd28593" - ], - "x-ms-correlation-request-id": [ - "a011df2e-5ddb-4900-8d1f-ed8b7bd28593" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T213246Z:a011df2e-5ddb-4900-8d1f-ed8b7bd28593" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 21:32:46 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11908" - ], - "x-ms-request-id": [ - "320e85ae-b30c-4470-bf81-a2e8ab50890f" - ], - "x-ms-correlation-request-id": [ - "320e85ae-b30c-4470-bf81-a2e8ab50890f" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T213301Z:320e85ae-b30c-4470-bf81-a2e8ab50890f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 21:33:01 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11907" - ], - "x-ms-request-id": [ - "0894cfcb-5ce3-427f-9bec-189dcc49c63d" - ], - "x-ms-correlation-request-id": [ - "0894cfcb-5ce3-427f-9bec-189dcc49c63d" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T213316Z:0894cfcb-5ce3-427f-9bec-189dcc49c63d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 21:33:16 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11906" - ], - "x-ms-request-id": [ - "21f35204-1ef1-4396-82bd-d6e5fba22f60" - ], - "x-ms-correlation-request-id": [ - "21f35204-1ef1-4396-82bd-d6e5fba22f60" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T213331Z:21f35204-1ef1-4396-82bd-d6e5fba22f60" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 21:33:30 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11905" - ], - "x-ms-request-id": [ - "d8d4693c-3e2c-4a64-8c2c-a57dc3c6f9fc" - ], - "x-ms-correlation-request-id": [ - "d8d4693c-3e2c-4a64-8c2c-a57dc3c6f9fc" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T213346Z:d8d4693c-3e2c-4a64-8c2c-a57dc3c6f9fc" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 21:33:45 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11904" - ], - "x-ms-request-id": [ - "f6c52046-a4ad-455d-afe1-217b86d8da6d" - ], - "x-ms-correlation-request-id": [ - "f6c52046-a4ad-455d-afe1-217b86d8da6d" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T213401Z:f6c52046-a4ad-455d-afe1-217b86d8da6d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 21:34:01 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11903" - ], - "x-ms-request-id": [ - "3562bb59-365c-4eb8-9a34-4b62cfeed569" - ], - "x-ms-correlation-request-id": [ - "3562bb59-365c-4eb8-9a34-4b62cfeed569" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T213416Z:3562bb59-365c-4eb8-9a34-4b62cfeed569" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 21:34:16 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11902" - ], - "x-ms-request-id": [ - "40e25a3d-3d18-4dcd-8903-9af42722d5e1" - ], - "x-ms-correlation-request-id": [ - "40e25a3d-3d18-4dcd-8903-9af42722d5e1" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T213431Z:40e25a3d-3d18-4dcd-8903-9af42722d5e1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 21:34:31 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11901" - ], - "x-ms-request-id": [ - "b84f5198-8ad4-45b5-b303-b5d1f467d5d0" - ], - "x-ms-correlation-request-id": [ - "b84f5198-8ad4-45b5-b303-b5d1f467d5d0" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T213446Z:b84f5198-8ad4-45b5-b303-b5d1f467d5d0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 21:34:46 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11900" - ], - "x-ms-request-id": [ - "d9b567cb-0d8c-49ee-b691-ca172fdf4d90" - ], - "x-ms-correlation-request-id": [ - "d9b567cb-0d8c-49ee-b691-ca172fdf4d90" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T213501Z:d9b567cb-0d8c-49ee-b691-ca172fdf4d90" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 21:35:01 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11899" - ], - "x-ms-request-id": [ - "e0339e3f-80d6-4687-86c2-32b461db404e" - ], - "x-ms-correlation-request-id": [ - "e0339e3f-80d6-4687-86c2-32b461db404e" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T213517Z:e0339e3f-80d6-4687-86c2-32b461db404e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 21:35:16 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11898" - ], - "x-ms-request-id": [ - "54263957-b062-4e35-9c15-3d226038927c" - ], - "x-ms-correlation-request-id": [ - "54263957-b062-4e35-9c15-3d226038927c" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T213532Z:54263957-b062-4e35-9c15-3d226038927c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 21:35:31 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11897" - ], - "x-ms-request-id": [ - "a2484897-2c93-4c9d-90f1-8a1bbffb2dd4" - ], - "x-ms-correlation-request-id": [ - "a2484897-2c93-4c9d-90f1-8a1bbffb2dd4" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T213547Z:a2484897-2c93-4c9d-90f1-8a1bbffb2dd4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 21:35:46 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11896" - ], - "x-ms-request-id": [ - "9a19ec79-83a6-48f1-afc9-4506043ee688" - ], - "x-ms-correlation-request-id": [ - "9a19ec79-83a6-48f1-afc9-4506043ee688" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T213602Z:9a19ec79-83a6-48f1-afc9-4506043ee688" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 21:36:01 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11895" - ], - "x-ms-request-id": [ - "0c03a914-732b-4bae-9cc2-940b1b5e54b0" - ], - "x-ms-correlation-request-id": [ - "0c03a914-732b-4bae-9cc2-940b1b5e54b0" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T213617Z:0c03a914-732b-4bae-9cc2-940b1b5e54b0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 21:36:17 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11894" - ], - "x-ms-request-id": [ - "c53e0096-738d-4490-96de-def1eeed74cb" - ], - "x-ms-correlation-request-id": [ - "c53e0096-738d-4490-96de-def1eeed74cb" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T213632Z:c53e0096-738d-4490-96de-def1eeed74cb" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 21:36:32 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11893" - ], - "x-ms-request-id": [ - "593fff47-3aa5-4142-91c7-58beffb4167f" - ], - "x-ms-correlation-request-id": [ - "593fff47-3aa5-4142-91c7-58beffb4167f" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T213647Z:593fff47-3aa5-4142-91c7-58beffb4167f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 21:36:47 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11892" - ], - "x-ms-request-id": [ - "296f41c6-c97b-4338-8468-ac5c1e9614d1" - ], - "x-ms-correlation-request-id": [ - "296f41c6-c97b-4338-8468-ac5c1e9614d1" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T213702Z:296f41c6-c97b-4338-8468-ac5c1e9614d1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 21:37:01 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11891" - ], - "x-ms-request-id": [ - "278e3723-0e6d-4f63-b4e0-612d39cd9194" - ], - "x-ms-correlation-request-id": [ - "278e3723-0e6d-4f63-b4e0-612d39cd9194" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T213717Z:278e3723-0e6d-4f63-b4e0-612d39cd9194" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 21:37:16 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11890" - ], - "x-ms-request-id": [ - "def41645-c20d-455d-8746-c6da59bc4704" - ], - "x-ms-correlation-request-id": [ - "def41645-c20d-455d-8746-c6da59bc4704" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T213732Z:def41645-c20d-455d-8746-c6da59bc4704" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 21:37:31 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11889" - ], - "x-ms-request-id": [ - "6166c1cb-2df0-4b1f-9aa7-7d9feec92f43" - ], - "x-ms-correlation-request-id": [ - "6166c1cb-2df0-4b1f-9aa7-7d9feec92f43" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T213747Z:6166c1cb-2df0-4b1f-9aa7-7d9feec92f43" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 21:37:46 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11888" - ], - "x-ms-request-id": [ - "527bf2ec-8926-4270-be42-3f700522f294" - ], - "x-ms-correlation-request-id": [ - "527bf2ec-8926-4270-be42-3f700522f294" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T213802Z:527bf2ec-8926-4270-be42-3f700522f294" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 21:38:02 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11887" - ], - "x-ms-request-id": [ - "6465e9cd-b075-42d4-b4d9-97e43aed852f" - ], - "x-ms-correlation-request-id": [ - "6465e9cd-b075-42d4-b4d9-97e43aed852f" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T213817Z:6465e9cd-b075-42d4-b4d9-97e43aed852f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 21:38:17 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11886" - ], - "x-ms-request-id": [ - "3b9dbb1c-fd85-4e1f-9ce7-58adbe918c51" - ], - "x-ms-correlation-request-id": [ - "3b9dbb1c-fd85-4e1f-9ce7-58adbe918c51" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T213832Z:3b9dbb1c-fd85-4e1f-9ce7-58adbe918c51" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 21:38:32 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11885" - ], - "x-ms-request-id": [ - "b5f8a4bd-7d90-4f17-89ac-f4f568356346" - ], - "x-ms-correlation-request-id": [ - "b5f8a4bd-7d90-4f17-89ac-f4f568356346" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T213847Z:b5f8a4bd-7d90-4f17-89ac-f4f568356346" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 21:38:47 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11884" - ], - "x-ms-request-id": [ - "e908c632-f12c-474f-9d5f-e02ff1e32726" - ], - "x-ms-correlation-request-id": [ - "e908c632-f12c-474f-9d5f-e02ff1e32726" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T213902Z:e908c632-f12c-474f-9d5f-e02ff1e32726" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 21:39:02 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11883" - ], - "x-ms-request-id": [ - "99f10a43-12c9-4a5b-b060-bbe912ae6bd0" - ], - "x-ms-correlation-request-id": [ - "99f10a43-12c9-4a5b-b060-bbe912ae6bd0" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T213917Z:99f10a43-12c9-4a5b-b060-bbe912ae6bd0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 21:39:17 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11882" - ], - "x-ms-request-id": [ - "ce40fe5b-ba95-412c-901a-0ba8c08100c8" - ], - "x-ms-correlation-request-id": [ - "ce40fe5b-ba95-412c-901a-0ba8c08100c8" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T213932Z:ce40fe5b-ba95-412c-901a-0ba8c08100c8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 21:39:32 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11881" - ], - "x-ms-request-id": [ - "3fa83486-9e77-4c33-93a4-ce29457944e9" - ], - "x-ms-correlation-request-id": [ - "3fa83486-9e77-4c33-93a4-ce29457944e9" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T213947Z:3fa83486-9e77-4c33-93a4-ce29457944e9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 21:39:47 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11880" - ], - "x-ms-request-id": [ - "f8cae603-ae94-4e25-ae5c-a25118b041d3" - ], - "x-ms-correlation-request-id": [ - "f8cae603-ae94-4e25-ae5c-a25118b041d3" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T214003Z:f8cae603-ae94-4e25-ae5c-a25118b041d3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 21:40:02 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11879" - ], - "x-ms-request-id": [ - "31565462-f94a-4ed6-b504-25a235746302" - ], - "x-ms-correlation-request-id": [ - "31565462-f94a-4ed6-b504-25a235746302" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T214018Z:31565462-f94a-4ed6-b504-25a235746302" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 21:40:17 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11878" - ], - "x-ms-request-id": [ - "a7118511-7cfa-44a1-b5e0-f5847df084b4" - ], - "x-ms-correlation-request-id": [ - "a7118511-7cfa-44a1-b5e0-f5847df084b4" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T214033Z:a7118511-7cfa-44a1-b5e0-f5847df084b4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 21:40:32 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11877" - ], - "x-ms-request-id": [ - "4f985054-c0f6-4948-9c13-4b1c1e4bea58" - ], - "x-ms-correlation-request-id": [ - "4f985054-c0f6-4948-9c13-4b1c1e4bea58" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T214048Z:4f985054-c0f6-4948-9c13-4b1c1e4bea58" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 21:40:47 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11876" - ], - "x-ms-request-id": [ - "e7098c93-e074-4bd3-bcf6-9116f0b527fa" - ], - "x-ms-correlation-request-id": [ - "e7098c93-e074-4bd3-bcf6-9116f0b527fa" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T214103Z:e7098c93-e074-4bd3-bcf6-9116f0b527fa" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 21:41:02 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11875" - ], - "x-ms-request-id": [ - "52f5cb6d-9c18-49e9-971e-d0e228bfdca7" - ], - "x-ms-correlation-request-id": [ - "52f5cb6d-9c18-49e9-971e-d0e228bfdca7" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T214118Z:52f5cb6d-9c18-49e9-971e-d0e228bfdca7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 21:41:17 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11874" - ], - "x-ms-request-id": [ - "757aa710-0a52-4a56-afa2-ab1a88f87a4c" - ], - "x-ms-correlation-request-id": [ - "757aa710-0a52-4a56-afa2-ab1a88f87a4c" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T214133Z:757aa710-0a52-4a56-afa2-ab1a88f87a4c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 21:41:32 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11873" - ], - "x-ms-request-id": [ - "02bc01c7-131d-4e3d-a668-3a643e7ca172" - ], - "x-ms-correlation-request-id": [ - "02bc01c7-131d-4e3d-a668-3a643e7ca172" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T214148Z:02bc01c7-131d-4e3d-a668-3a643e7ca172" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 21:41:48 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11872" - ], - "x-ms-request-id": [ - "443432d8-bc1f-482f-a17b-b883365a8c96" - ], - "x-ms-correlation-request-id": [ - "443432d8-bc1f-482f-a17b-b883365a8c96" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T214203Z:443432d8-bc1f-482f-a17b-b883365a8c96" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 21:42:03 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11871" - ], - "x-ms-request-id": [ - "d09475fc-00f3-46e9-8380-5ec9f2b8c07a" - ], - "x-ms-correlation-request-id": [ - "d09475fc-00f3-46e9-8380-5ec9f2b8c07a" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T214218Z:d09475fc-00f3-46e9-8380-5ec9f2b8c07a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 21:42:18 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11870" - ], - "x-ms-request-id": [ - "d784e85d-0668-4951-b98f-d7075ef36b8d" - ], - "x-ms-correlation-request-id": [ - "d784e85d-0668-4951-b98f-d7075ef36b8d" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T214233Z:d784e85d-0668-4951-b98f-d7075ef36b8d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 21:42:33 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11869" - ], - "x-ms-request-id": [ - "dc916a9f-4a32-490c-a0f4-797ae7a74be6" - ], - "x-ms-correlation-request-id": [ - "dc916a9f-4a32-490c-a0f4-797ae7a74be6" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T214248Z:dc916a9f-4a32-490c-a0f4-797ae7a74be6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 21:42:47 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11868" - ], - "x-ms-request-id": [ - "e81ebe89-31b7-42f7-abd4-ab6b082dbb5b" - ], - "x-ms-correlation-request-id": [ - "e81ebe89-31b7-42f7-abd4-ab6b082dbb5b" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T214303Z:e81ebe89-31b7-42f7-abd4-ab6b082dbb5b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 21:43:02 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11867" - ], - "x-ms-request-id": [ - "b3404c8a-30aa-4f7a-abea-43024045039e" - ], - "x-ms-correlation-request-id": [ - "b3404c8a-30aa-4f7a-abea-43024045039e" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T214318Z:b3404c8a-30aa-4f7a-abea-43024045039e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 21:43:17 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11866" - ], - "x-ms-request-id": [ - "1893a356-0b91-42a0-8a98-32e9ca19fe66" - ], - "x-ms-correlation-request-id": [ - "1893a356-0b91-42a0-8a98-32e9ca19fe66" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T214333Z:1893a356-0b91-42a0-8a98-32e9ca19fe66" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 21:43:33 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11865" - ], - "x-ms-request-id": [ - "c36cd488-a671-4881-8c5e-f1f0d2784999" - ], - "x-ms-correlation-request-id": [ - "c36cd488-a671-4881-8c5e-f1f0d2784999" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T214348Z:c36cd488-a671-4881-8c5e-f1f0d2784999" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 21:43:48 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11864" - ], - "x-ms-request-id": [ - "5ac4ac0e-b739-4ffa-804e-4f82979633fe" - ], - "x-ms-correlation-request-id": [ - "5ac4ac0e-b739-4ffa-804e-4f82979633fe" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T214403Z:5ac4ac0e-b739-4ffa-804e-4f82979633fe" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 21:44:03 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11863" - ], - "x-ms-request-id": [ - "6297a57a-d681-4415-b74e-96dcc41fa606" - ], - "x-ms-correlation-request-id": [ - "6297a57a-d681-4415-b74e-96dcc41fa606" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T214418Z:6297a57a-d681-4415-b74e-96dcc41fa606" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 21:44:18 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11862" - ], - "x-ms-request-id": [ - "603ed69c-122c-4843-b428-c5f2e2aa621c" - ], - "x-ms-correlation-request-id": [ - "603ed69c-122c-4843-b428-c5f2e2aa621c" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T214433Z:603ed69c-122c-4843-b428-c5f2e2aa621c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 21:44:33 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11861" - ], - "x-ms-request-id": [ - "1a4f2d32-c48d-4154-a317-2df45bfe7880" - ], - "x-ms-correlation-request-id": [ - "1a4f2d32-c48d-4154-a317-2df45bfe7880" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T214448Z:1a4f2d32-c48d-4154-a317-2df45bfe7880" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 21:44:48 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11860" - ], - "x-ms-request-id": [ - "3c82fe1c-fd20-43dc-9e87-9e17054d2036" - ], - "x-ms-correlation-request-id": [ - "3c82fe1c-fd20-43dc-9e87-9e17054d2036" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T214503Z:3c82fe1c-fd20-43dc-9e87-9e17054d2036" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 21:45:03 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11859" - ], - "x-ms-request-id": [ - "caadb9aa-4c48-4865-9452-86af2b92d37e" - ], - "x-ms-correlation-request-id": [ - "caadb9aa-4c48-4865-9452-86af2b92d37e" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T214519Z:caadb9aa-4c48-4865-9452-86af2b92d37e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 21:45:18 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11858" - ], - "x-ms-request-id": [ - "49f86f42-681f-4c56-91d1-e251e881a916" - ], - "x-ms-correlation-request-id": [ - "49f86f42-681f-4c56-91d1-e251e881a916" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T214534Z:49f86f42-681f-4c56-91d1-e251e881a916" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 21:45:33 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11857" - ], - "x-ms-request-id": [ - "068e58ed-f2c4-4256-9416-1f1e06156bb1" - ], - "x-ms-correlation-request-id": [ - "068e58ed-f2c4-4256-9416-1f1e06156bb1" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T214549Z:068e58ed-f2c4-4256-9416-1f1e06156bb1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 21:45:48 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11856" - ], - "x-ms-request-id": [ - "d4e39918-a907-4531-b771-3d348e84b852" - ], - "x-ms-correlation-request-id": [ - "d4e39918-a907-4531-b771-3d348e84b852" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T214604Z:d4e39918-a907-4531-b771-3d348e84b852" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 21:46:03 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11855" - ], - "x-ms-request-id": [ - "ac29692e-c8ab-477a-9247-e764fc354f70" - ], - "x-ms-correlation-request-id": [ - "ac29692e-c8ab-477a-9247-e764fc354f70" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T214619Z:ac29692e-c8ab-477a-9247-e764fc354f70" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 21:46:18 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11854" - ], - "x-ms-request-id": [ - "f6cfaa40-7c57-4642-ac1a-d7863f8d2aac" - ], - "x-ms-correlation-request-id": [ - "f6cfaa40-7c57-4642-ac1a-d7863f8d2aac" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T214634Z:f6cfaa40-7c57-4642-ac1a-d7863f8d2aac" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 21:46:33 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11853" - ], - "x-ms-request-id": [ - "acd6fa3a-ef72-46e1-9474-da12379e3d5b" - ], - "x-ms-correlation-request-id": [ - "acd6fa3a-ef72-46e1-9474-da12379e3d5b" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T214649Z:acd6fa3a-ef72-46e1-9474-da12379e3d5b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 21:46:48 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11852" - ], - "x-ms-request-id": [ - "343277fd-2cec-45ce-8bb0-8295c61099ee" - ], - "x-ms-correlation-request-id": [ - "343277fd-2cec-45ce-8bb0-8295c61099ee" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T214704Z:343277fd-2cec-45ce-8bb0-8295c61099ee" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 21:47:04 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11851" - ], - "x-ms-request-id": [ - "0801d058-1654-468f-a881-50dd23629d3f" - ], - "x-ms-correlation-request-id": [ - "0801d058-1654-468f-a881-50dd23629d3f" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T214719Z:0801d058-1654-468f-a881-50dd23629d3f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 21:47:19 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11850" - ], - "x-ms-request-id": [ - "99687fbc-5c9f-4ab0-9e15-14ce4ba299b0" - ], - "x-ms-correlation-request-id": [ - "99687fbc-5c9f-4ab0-9e15-14ce4ba299b0" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T214734Z:99687fbc-5c9f-4ab0-9e15-14ce4ba299b0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 21:47:33 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11849" - ], - "x-ms-request-id": [ - "78085983-be59-4999-abf0-26210bcfb414" - ], - "x-ms-correlation-request-id": [ - "78085983-be59-4999-abf0-26210bcfb414" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T214749Z:78085983-be59-4999-abf0-26210bcfb414" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 21:47:48 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11848" - ], - "x-ms-request-id": [ - "95882197-07d4-44eb-b0b4-9bc80e36c923" - ], - "x-ms-correlation-request-id": [ - "95882197-07d4-44eb-b0b4-9bc80e36c923" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T214804Z:95882197-07d4-44eb-b0b4-9bc80e36c923" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 21:48:03 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11847" - ], - "x-ms-request-id": [ - "64685dca-d379-4891-aab9-63e5ac3f6c86" - ], - "x-ms-correlation-request-id": [ - "64685dca-d379-4891-aab9-63e5ac3f6c86" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T214819Z:64685dca-d379-4891-aab9-63e5ac3f6c86" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 21:48:18 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11846" - ], - "x-ms-request-id": [ - "d3acc555-325a-442b-a765-43baa938e74e" - ], - "x-ms-correlation-request-id": [ - "d3acc555-325a-442b-a765-43baa938e74e" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T214834Z:d3acc555-325a-442b-a765-43baa938e74e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 21:48:34 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11845" - ], - "x-ms-request-id": [ - "a40ddf1e-b8e8-4c22-b7ad-bfb20bdbc6ad" - ], - "x-ms-correlation-request-id": [ - "a40ddf1e-b8e8-4c22-b7ad-bfb20bdbc6ad" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T214849Z:a40ddf1e-b8e8-4c22-b7ad-bfb20bdbc6ad" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 21:48:49 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11844" - ], - "x-ms-request-id": [ - "c69cd2b4-1c6a-40e6-9bcd-b439f8db9a99" - ], - "x-ms-correlation-request-id": [ - "c69cd2b4-1c6a-40e6-9bcd-b439f8db9a99" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T214904Z:c69cd2b4-1c6a-40e6-9bcd-b439f8db9a99" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 21:49:04 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11843" - ], - "x-ms-request-id": [ - "3d2eed9a-3ae4-4f64-a267-9e828dd87f2d" - ], - "x-ms-correlation-request-id": [ - "3d2eed9a-3ae4-4f64-a267-9e828dd87f2d" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T214919Z:3d2eed9a-3ae4-4f64-a267-9e828dd87f2d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 21:49:19 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11842" - ], - "x-ms-request-id": [ - "4c22bd7d-a2cb-4b79-9c4c-a019da0e45fb" - ], - "x-ms-correlation-request-id": [ - "4c22bd7d-a2cb-4b79-9c4c-a019da0e45fb" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T214934Z:4c22bd7d-a2cb-4b79-9c4c-a019da0e45fb" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 21:49:34 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11841" - ], - "x-ms-request-id": [ - "ee304a1a-175e-4f0f-a13b-f89412c2ba7a" - ], - "x-ms-correlation-request-id": [ - "ee304a1a-175e-4f0f-a13b-f89412c2ba7a" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T214949Z:ee304a1a-175e-4f0f-a13b-f89412c2ba7a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 21:49:49 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11840" - ], - "x-ms-request-id": [ - "1e8e6238-70c0-4069-aa79-c12cea998274" - ], - "x-ms-correlation-request-id": [ - "1e8e6238-70c0-4069-aa79-c12cea998274" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T215004Z:1e8e6238-70c0-4069-aa79-c12cea998274" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 21:50:04 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11839" - ], - "x-ms-request-id": [ - "133a3d48-129e-462e-97f1-bc059c26ede8" - ], - "x-ms-correlation-request-id": [ - "133a3d48-129e-462e-97f1-bc059c26ede8" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T215019Z:133a3d48-129e-462e-97f1-bc059c26ede8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 21:50:19 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11838" - ], - "x-ms-request-id": [ - "3beaaec2-8ffc-4cc7-bbef-f267156ddb58" - ], - "x-ms-correlation-request-id": [ - "3beaaec2-8ffc-4cc7-bbef-f267156ddb58" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T215034Z:3beaaec2-8ffc-4cc7-bbef-f267156ddb58" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 21:50:34 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11837" - ], - "x-ms-request-id": [ - "678ef2dc-062c-4e2d-b57a-75c6aa412259" - ], - "x-ms-correlation-request-id": [ - "678ef2dc-062c-4e2d-b57a-75c6aa412259" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T215050Z:678ef2dc-062c-4e2d-b57a-75c6aa412259" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 21:50:49 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11836" - ], - "x-ms-request-id": [ - "a530f527-cb48-46a0-aa40-65cbbcb76b04" - ], - "x-ms-correlation-request-id": [ - "a530f527-cb48-46a0-aa40-65cbbcb76b04" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T215105Z:a530f527-cb48-46a0-aa40-65cbbcb76b04" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 21:51:04 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11835" - ], - "x-ms-request-id": [ - "d890aeb2-b460-4143-8fbf-2b34c2b2843c" - ], - "x-ms-correlation-request-id": [ - "d890aeb2-b460-4143-8fbf-2b34c2b2843c" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T215120Z:d890aeb2-b460-4143-8fbf-2b34c2b2843c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 21:51:19 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11834" - ], - "x-ms-request-id": [ - "063b19e3-4d1a-4af8-b6cc-8d27dc12321a" - ], - "x-ms-correlation-request-id": [ - "063b19e3-4d1a-4af8-b6cc-8d27dc12321a" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T215135Z:063b19e3-4d1a-4af8-b6cc-8d27dc12321a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 21:51:34 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11833" - ], - "x-ms-request-id": [ - "449c11cf-0cc7-450e-80ba-3b93cc0710b5" - ], - "x-ms-correlation-request-id": [ - "449c11cf-0cc7-450e-80ba-3b93cc0710b5" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T215150Z:449c11cf-0cc7-450e-80ba-3b93cc0710b5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 21:51:49 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11832" - ], - "x-ms-request-id": [ - "a9770d9a-1866-4109-b748-0530246e8454" - ], - "x-ms-correlation-request-id": [ - "a9770d9a-1866-4109-b748-0530246e8454" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T215205Z:a9770d9a-1866-4109-b748-0530246e8454" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 21:52:04 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11831" - ], - "x-ms-request-id": [ - "a46d9e82-70c1-4af5-8842-8d5acbb5aeb5" - ], - "x-ms-correlation-request-id": [ - "a46d9e82-70c1-4af5-8842-8d5acbb5aeb5" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T215220Z:a46d9e82-70c1-4af5-8842-8d5acbb5aeb5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 21:52:19 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11830" - ], - "x-ms-request-id": [ - "884dc78b-04c6-430a-ab62-cb5968ecb29b" - ], - "x-ms-correlation-request-id": [ - "884dc78b-04c6-430a-ab62-cb5968ecb29b" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T215235Z:884dc78b-04c6-430a-ab62-cb5968ecb29b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 21:52:34 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11829" - ], - "x-ms-request-id": [ - "14e60765-1f9b-470b-8161-f5b9400a7a69" - ], - "x-ms-correlation-request-id": [ - "14e60765-1f9b-470b-8161-f5b9400a7a69" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T215250Z:14e60765-1f9b-470b-8161-f5b9400a7a69" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 21:52:49 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11828" - ], - "x-ms-request-id": [ - "6cb3035c-c319-452a-9609-b320e5514d8a" - ], - "x-ms-correlation-request-id": [ - "6cb3035c-c319-452a-9609-b320e5514d8a" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T215305Z:6cb3035c-c319-452a-9609-b320e5514d8a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 21:53:04 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11827" - ], - "x-ms-request-id": [ - "50f67f19-52b1-4cfc-b294-13b227e1980b" - ], - "x-ms-correlation-request-id": [ - "50f67f19-52b1-4cfc-b294-13b227e1980b" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T215320Z:50f67f19-52b1-4cfc-b294-13b227e1980b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 21:53:20 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11826" - ], - "x-ms-request-id": [ - "9ef5598c-367c-4fd5-a649-71482ac08b60" - ], - "x-ms-correlation-request-id": [ - "9ef5598c-367c-4fd5-a649-71482ac08b60" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T215335Z:9ef5598c-367c-4fd5-a649-71482ac08b60" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 21:53:35 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11825" - ], - "x-ms-request-id": [ - "37f298a9-db6a-472b-ad91-d7795a1a8f35" - ], - "x-ms-correlation-request-id": [ - "37f298a9-db6a-472b-ad91-d7795a1a8f35" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T215350Z:37f298a9-db6a-472b-ad91-d7795a1a8f35" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 21:53:50 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11824" - ], - "x-ms-request-id": [ - "b8210cc9-7e99-40fa-9d2b-b242efaab156" - ], - "x-ms-correlation-request-id": [ - "b8210cc9-7e99-40fa-9d2b-b242efaab156" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T215405Z:b8210cc9-7e99-40fa-9d2b-b242efaab156" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 21:54:05 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11823" - ], - "x-ms-request-id": [ - "5b305b9c-c890-4d42-ba34-4804e8aefab5" - ], - "x-ms-correlation-request-id": [ - "5b305b9c-c890-4d42-ba34-4804e8aefab5" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T215420Z:5b305b9c-c890-4d42-ba34-4804e8aefab5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 21:54:20 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11822" - ], - "x-ms-request-id": [ - "6e41830f-dd74-4a65-858f-e024c6e2451f" - ], - "x-ms-correlation-request-id": [ - "6e41830f-dd74-4a65-858f-e024c6e2451f" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T215435Z:6e41830f-dd74-4a65-858f-e024c6e2451f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 21:54:35 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11821" - ], - "x-ms-request-id": [ - "9c8b0add-49c2-4416-85d8-23e2c369158c" - ], - "x-ms-correlation-request-id": [ - "9c8b0add-49c2-4416-85d8-23e2c369158c" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T215450Z:9c8b0add-49c2-4416-85d8-23e2c369158c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 21:54:50 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11820" - ], - "x-ms-request-id": [ - "55f7fb34-1320-4a0a-8cff-b18daffe41e4" - ], - "x-ms-correlation-request-id": [ - "55f7fb34-1320-4a0a-8cff-b18daffe41e4" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T215505Z:55f7fb34-1320-4a0a-8cff-b18daffe41e4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 21:55:04 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11819" - ], - "x-ms-request-id": [ - "0ea28786-ade0-4b64-8aee-6659c25fdb50" - ], - "x-ms-correlation-request-id": [ - "0ea28786-ade0-4b64-8aee-6659c25fdb50" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T215521Z:0ea28786-ade0-4b64-8aee-6659c25fdb50" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 21:55:20 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11818" - ], - "x-ms-request-id": [ - "7f7ffe6e-ba7f-4997-b6e6-dbc08727b87b" - ], - "x-ms-correlation-request-id": [ - "7f7ffe6e-ba7f-4997-b6e6-dbc08727b87b" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T215536Z:7f7ffe6e-ba7f-4997-b6e6-dbc08727b87b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 21:55:35 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11817" - ], - "x-ms-request-id": [ - "af38b2f7-b2ad-41a2-803e-a892b39e1eea" - ], - "x-ms-correlation-request-id": [ - "af38b2f7-b2ad-41a2-803e-a892b39e1eea" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T215551Z:af38b2f7-b2ad-41a2-803e-a892b39e1eea" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 21:55:50 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11816" - ], - "x-ms-request-id": [ - "9b9c22d8-afde-425c-86a1-7636006ee666" - ], - "x-ms-correlation-request-id": [ - "9b9c22d8-afde-425c-86a1-7636006ee666" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T215606Z:9b9c22d8-afde-425c-86a1-7636006ee666" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 21:56:05 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11815" - ], - "x-ms-request-id": [ - "69dd49f9-a63d-4207-8fbb-5d2c4d8fd33f" - ], - "x-ms-correlation-request-id": [ - "69dd49f9-a63d-4207-8fbb-5d2c4d8fd33f" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T215621Z:69dd49f9-a63d-4207-8fbb-5d2c4d8fd33f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 21:56:20 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11814" - ], - "x-ms-request-id": [ - "27de2c53-ca88-45e5-93f1-bda7a97a72e9" - ], - "x-ms-correlation-request-id": [ - "27de2c53-ca88-45e5-93f1-bda7a97a72e9" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T215636Z:27de2c53-ca88-45e5-93f1-bda7a97a72e9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 21:56:35 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11813" - ], - "x-ms-request-id": [ - "a06a64b6-7b47-40cb-8541-4f9480afcb38" - ], - "x-ms-correlation-request-id": [ - "a06a64b6-7b47-40cb-8541-4f9480afcb38" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T215651Z:a06a64b6-7b47-40cb-8541-4f9480afcb38" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 21:56:50 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11812" - ], - "x-ms-request-id": [ - "1986f1ea-4818-4a95-8c38-925df6c014cf" - ], - "x-ms-correlation-request-id": [ - "1986f1ea-4818-4a95-8c38-925df6c014cf" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T215706Z:1986f1ea-4818-4a95-8c38-925df6c014cf" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 21:57:05 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11811" - ], - "x-ms-request-id": [ - "1486b411-bf5e-4800-9af0-1d6fe08ef8bd" - ], - "x-ms-correlation-request-id": [ - "1486b411-bf5e-4800-9af0-1d6fe08ef8bd" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T215721Z:1486b411-bf5e-4800-9af0-1d6fe08ef8bd" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 21:57:21 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11810" - ], - "x-ms-request-id": [ - "35fedc76-bc4e-4ec2-a99c-51164ce655fc" - ], - "x-ms-correlation-request-id": [ - "35fedc76-bc4e-4ec2-a99c-51164ce655fc" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T215736Z:35fedc76-bc4e-4ec2-a99c-51164ce655fc" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 21:57:36 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11809" - ], - "x-ms-request-id": [ - "ca678df8-24dc-49fc-9897-69aff6252d26" - ], - "x-ms-correlation-request-id": [ - "ca678df8-24dc-49fc-9897-69aff6252d26" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T215751Z:ca678df8-24dc-49fc-9897-69aff6252d26" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 21:57:50 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11808" - ], - "x-ms-request-id": [ - "1bdb572c-e7a8-463e-afdd-df364103ba93" - ], - "x-ms-correlation-request-id": [ - "1bdb572c-e7a8-463e-afdd-df364103ba93" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T215806Z:1bdb572c-e7a8-463e-afdd-df364103ba93" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 21:58:05 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11807" - ], - "x-ms-request-id": [ - "7b0a87aa-0aeb-4ed0-92a9-8614c6b7a321" - ], - "x-ms-correlation-request-id": [ - "7b0a87aa-0aeb-4ed0-92a9-8614c6b7a321" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T215821Z:7b0a87aa-0aeb-4ed0-92a9-8614c6b7a321" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 21:58:20 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11806" - ], - "x-ms-request-id": [ - "8219ff4c-c1a2-49f5-8ff7-c7118ca6256b" - ], - "x-ms-correlation-request-id": [ - "8219ff4c-c1a2-49f5-8ff7-c7118ca6256b" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T215836Z:8219ff4c-c1a2-49f5-8ff7-c7118ca6256b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 21:58:35 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11805" - ], - "x-ms-request-id": [ - "ae62a747-6fe9-402b-a354-66f769117ba9" - ], - "x-ms-correlation-request-id": [ - "ae62a747-6fe9-402b-a354-66f769117ba9" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T215851Z:ae62a747-6fe9-402b-a354-66f769117ba9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 21:58:51 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11804" - ], - "x-ms-request-id": [ - "5740e455-8e58-4daf-9f00-233ec62efb1f" - ], - "x-ms-correlation-request-id": [ - "5740e455-8e58-4daf-9f00-233ec62efb1f" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T215906Z:5740e455-8e58-4daf-9f00-233ec62efb1f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 21:59:06 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11803" - ], - "x-ms-request-id": [ - "dd7bc540-207e-4226-adb2-988146a2b4a3" - ], - "x-ms-correlation-request-id": [ - "dd7bc540-207e-4226-adb2-988146a2b4a3" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T215921Z:dd7bc540-207e-4226-adb2-988146a2b4a3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 21:59:21 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11802" - ], - "x-ms-request-id": [ - "c3b55f4e-9a5a-4ff0-abe2-6626c6c13e0b" - ], - "x-ms-correlation-request-id": [ - "c3b55f4e-9a5a-4ff0-abe2-6626c6c13e0b" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T215936Z:c3b55f4e-9a5a-4ff0-abe2-6626c6c13e0b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 21:59:36 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11801" - ], - "x-ms-request-id": [ - "0b909d25-a00a-44d6-8030-5ab73094be64" - ], - "x-ms-correlation-request-id": [ - "0b909d25-a00a-44d6-8030-5ab73094be64" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T215951Z:0b909d25-a00a-44d6-8030-5ab73094be64" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 21:59:51 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11800" - ], - "x-ms-request-id": [ - "196e7317-3b7d-4b7f-9fa2-ae62c9107a01" - ], - "x-ms-correlation-request-id": [ - "196e7317-3b7d-4b7f-9fa2-ae62c9107a01" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T220006Z:196e7317-3b7d-4b7f-9fa2-ae62c9107a01" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 22:00:06 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11799" - ], - "x-ms-request-id": [ - "c2562f92-03d4-4e52-ab29-ff641092657d" - ], - "x-ms-correlation-request-id": [ - "c2562f92-03d4-4e52-ab29-ff641092657d" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T220021Z:c2562f92-03d4-4e52-ab29-ff641092657d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 22:00:21 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11798" - ], - "x-ms-request-id": [ - "cbc97a6a-34d4-44ff-bda8-103f1b0391bd" - ], - "x-ms-correlation-request-id": [ - "cbc97a6a-34d4-44ff-bda8-103f1b0391bd" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T220037Z:cbc97a6a-34d4-44ff-bda8-103f1b0391bd" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 22:00:36 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11797" - ], - "x-ms-request-id": [ - "186d57dc-5e27-4647-b290-b7a4d8690254" - ], - "x-ms-correlation-request-id": [ - "186d57dc-5e27-4647-b290-b7a4d8690254" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T220052Z:186d57dc-5e27-4647-b290-b7a4d8690254" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 22:00:51 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11796" - ], - "x-ms-request-id": [ - "e6a4f59b-9d3e-424c-8dfa-03a61bc694a2" - ], - "x-ms-correlation-request-id": [ - "e6a4f59b-9d3e-424c-8dfa-03a61bc694a2" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T220107Z:e6a4f59b-9d3e-424c-8dfa-03a61bc694a2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 22:01:07 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11795" - ], - "x-ms-request-id": [ - "22ceb54a-d5cc-45ed-a941-e4fc447b4159" - ], - "x-ms-correlation-request-id": [ - "22ceb54a-d5cc-45ed-a941-e4fc447b4159" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T220122Z:22ceb54a-d5cc-45ed-a941-e4fc447b4159" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 22:01:21 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11794" - ], - "x-ms-request-id": [ - "2acda3f3-1f5e-46cf-9b82-95624411c70e" - ], - "x-ms-correlation-request-id": [ - "2acda3f3-1f5e-46cf-9b82-95624411c70e" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T220137Z:2acda3f3-1f5e-46cf-9b82-95624411c70e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 22:01:36 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11793" - ], - "x-ms-request-id": [ - "9873d92f-5aa8-49b0-8db5-76ccaa9bc684" - ], - "x-ms-correlation-request-id": [ - "9873d92f-5aa8-49b0-8db5-76ccaa9bc684" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T220152Z:9873d92f-5aa8-49b0-8db5-76ccaa9bc684" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 22:01:51 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11792" - ], - "x-ms-request-id": [ - "208f2d20-41dc-4a33-a1f1-951a98b769f9" - ], - "x-ms-correlation-request-id": [ - "208f2d20-41dc-4a33-a1f1-951a98b769f9" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T220207Z:208f2d20-41dc-4a33-a1f1-951a98b769f9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 22:02:06 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11791" - ], - "x-ms-request-id": [ - "76213201-bd5d-48b5-a8c4-060452f9915c" - ], - "x-ms-correlation-request-id": [ - "76213201-bd5d-48b5-a8c4-060452f9915c" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T220222Z:76213201-bd5d-48b5-a8c4-060452f9915c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 22:02:21 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11790" - ], - "x-ms-request-id": [ - "edd307e4-df2d-4b23-acf0-32a0ea7a9f4a" - ], - "x-ms-correlation-request-id": [ - "edd307e4-df2d-4b23-acf0-32a0ea7a9f4a" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T220237Z:edd307e4-df2d-4b23-acf0-32a0ea7a9f4a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 22:02:36 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11789" - ], - "x-ms-request-id": [ - "a1f1027b-235b-40f4-b126-27be090f1872" - ], - "x-ms-correlation-request-id": [ - "a1f1027b-235b-40f4-b126-27be090f1872" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T220252Z:a1f1027b-235b-40f4-b126-27be090f1872" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 22:02:51 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11788" - ], - "x-ms-request-id": [ - "2f785e21-eae4-490c-b41d-2a0f5e97b353" - ], - "x-ms-correlation-request-id": [ - "2f785e21-eae4-490c-b41d-2a0f5e97b353" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T220307Z:2f785e21-eae4-490c-b41d-2a0f5e97b353" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 22:03:07 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11787" - ], - "x-ms-request-id": [ - "bc368416-3282-4d28-9ee7-b1d0c6df7247" - ], - "x-ms-correlation-request-id": [ - "bc368416-3282-4d28-9ee7-b1d0c6df7247" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T220322Z:bc368416-3282-4d28-9ee7-b1d0c6df7247" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 22:03:22 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11786" - ], - "x-ms-request-id": [ - "ef2e9857-95cd-4652-8122-861315367afb" - ], - "x-ms-correlation-request-id": [ - "ef2e9857-95cd-4652-8122-861315367afb" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T220337Z:ef2e9857-95cd-4652-8122-861315367afb" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 22:03:37 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11785" - ], - "x-ms-request-id": [ - "b6e074b0-9bed-4d25-b8c8-3fa395adef50" - ], - "x-ms-correlation-request-id": [ - "b6e074b0-9bed-4d25-b8c8-3fa395adef50" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T220352Z:b6e074b0-9bed-4d25-b8c8-3fa395adef50" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 22:03:52 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11784" - ], - "x-ms-request-id": [ - "f01986ae-7642-4113-b1bc-f654aaa75b74" - ], - "x-ms-correlation-request-id": [ - "f01986ae-7642-4113-b1bc-f654aaa75b74" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T220407Z:f01986ae-7642-4113-b1bc-f654aaa75b74" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 22:04:07 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11783" - ], - "x-ms-request-id": [ - "b0526659-1e0d-4664-8f8f-edd4de079d67" - ], - "x-ms-correlation-request-id": [ - "b0526659-1e0d-4664-8f8f-edd4de079d67" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T220422Z:b0526659-1e0d-4664-8f8f-edd4de079d67" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 22:04:22 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11782" - ], - "x-ms-request-id": [ - "7aea4080-6f78-4813-9265-64d9aca071f1" - ], - "x-ms-correlation-request-id": [ - "7aea4080-6f78-4813-9265-64d9aca071f1" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T220437Z:7aea4080-6f78-4813-9265-64d9aca071f1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 22:04:37 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11781" - ], - "x-ms-request-id": [ - "8de79650-c021-46c3-8ba3-60f68a395017" - ], - "x-ms-correlation-request-id": [ - "8de79650-c021-46c3-8ba3-60f68a395017" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T220452Z:8de79650-c021-46c3-8ba3-60f68a395017" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 22:04:52 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11780" - ], - "x-ms-request-id": [ - "fd09b6a0-d6f5-416b-8f78-03538e3f411b" - ], - "x-ms-correlation-request-id": [ - "fd09b6a0-d6f5-416b-8f78-03538e3f411b" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T220508Z:fd09b6a0-d6f5-416b-8f78-03538e3f411b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 22:05:07 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11779" - ], - "x-ms-request-id": [ - "da42620b-2857-4043-a58d-acd4bb59c2bd" - ], - "x-ms-correlation-request-id": [ - "da42620b-2857-4043-a58d-acd4bb59c2bd" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T220523Z:da42620b-2857-4043-a58d-acd4bb59c2bd" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 22:05:22 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11778" - ], - "x-ms-request-id": [ - "29031840-da5f-41af-81f2-fd62d4ddb92e" - ], - "x-ms-correlation-request-id": [ - "29031840-da5f-41af-81f2-fd62d4ddb92e" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T220538Z:29031840-da5f-41af-81f2-fd62d4ddb92e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 22:05:38 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11777" - ], - "x-ms-request-id": [ - "6614958b-92d1-4e6a-918f-ed7832b96906" - ], - "x-ms-correlation-request-id": [ - "6614958b-92d1-4e6a-918f-ed7832b96906" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T220553Z:6614958b-92d1-4e6a-918f-ed7832b96906" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 22:05:52 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11776" - ], - "x-ms-request-id": [ - "27de2af5-cf7c-40c4-b75d-75ae637310ec" - ], - "x-ms-correlation-request-id": [ - "27de2af5-cf7c-40c4-b75d-75ae637310ec" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T220608Z:27de2af5-cf7c-40c4-b75d-75ae637310ec" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 22:06:07 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11775" - ], - "x-ms-request-id": [ - "fb2eb578-04b3-4c66-964b-dcdde75e58c1" - ], - "x-ms-correlation-request-id": [ - "fb2eb578-04b3-4c66-964b-dcdde75e58c1" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T220623Z:fb2eb578-04b3-4c66-964b-dcdde75e58c1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 22:06:22 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11774" - ], - "x-ms-request-id": [ - "5a481016-f782-4710-8e41-7e4bd09aedb7" - ], - "x-ms-correlation-request-id": [ - "5a481016-f782-4710-8e41-7e4bd09aedb7" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T220638Z:5a481016-f782-4710-8e41-7e4bd09aedb7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 22:06:37 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11773" - ], - "x-ms-request-id": [ - "e8988631-b10a-4ce5-b2db-6ed2d97abb7e" - ], - "x-ms-correlation-request-id": [ - "e8988631-b10a-4ce5-b2db-6ed2d97abb7e" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T220653Z:e8988631-b10a-4ce5-b2db-6ed2d97abb7e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 22:06:52 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11772" - ], - "x-ms-request-id": [ - "99f4f1df-38ee-4248-a118-b96d4633cd37" - ], - "x-ms-correlation-request-id": [ - "99f4f1df-38ee-4248-a118-b96d4633cd37" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T220708Z:99f4f1df-38ee-4248-a118-b96d4633cd37" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 22:07:07 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11771" - ], - "x-ms-request-id": [ - "edc60d30-2a4a-4c2c-b675-ded8198d29c5" - ], - "x-ms-correlation-request-id": [ - "edc60d30-2a4a-4c2c-b675-ded8198d29c5" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T220723Z:edc60d30-2a4a-4c2c-b675-ded8198d29c5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 22:07:23 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11770" - ], - "x-ms-request-id": [ - "1be8fbea-0664-482d-9fed-0130a10a09b5" - ], - "x-ms-correlation-request-id": [ - "1be8fbea-0664-482d-9fed-0130a10a09b5" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T220738Z:1be8fbea-0664-482d-9fed-0130a10a09b5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 22:07:38 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11769" - ], - "x-ms-request-id": [ - "c4dc77e5-3101-40eb-8c80-868f84bac632" - ], - "x-ms-correlation-request-id": [ - "c4dc77e5-3101-40eb-8c80-868f84bac632" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T220753Z:c4dc77e5-3101-40eb-8c80-868f84bac632" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 22:07:53 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11768" - ], - "x-ms-request-id": [ - "a087eb6a-a3cb-41aa-81be-6b6b936934d3" - ], - "x-ms-correlation-request-id": [ - "a087eb6a-a3cb-41aa-81be-6b6b936934d3" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T220808Z:a087eb6a-a3cb-41aa-81be-6b6b936934d3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 22:08:08 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11767" - ], - "x-ms-request-id": [ - "5df8081a-f8c5-456e-a2da-6335eed3127d" - ], - "x-ms-correlation-request-id": [ - "5df8081a-f8c5-456e-a2da-6335eed3127d" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T220823Z:5df8081a-f8c5-456e-a2da-6335eed3127d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 22:08:22 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11766" - ], - "x-ms-request-id": [ - "8c2b90ed-d335-4dca-8406-1b249c70598e" - ], - "x-ms-correlation-request-id": [ - "8c2b90ed-d335-4dca-8406-1b249c70598e" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T220838Z:8c2b90ed-d335-4dca-8406-1b249c70598e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 22:08:37 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11765" - ], - "x-ms-request-id": [ - "ca5323ba-8d47-45e1-9cd8-bcf100bff94a" - ], - "x-ms-correlation-request-id": [ - "ca5323ba-8d47-45e1-9cd8-bcf100bff94a" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T220853Z:ca5323ba-8d47-45e1-9cd8-bcf100bff94a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 22:08:52 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11764" - ], - "x-ms-request-id": [ - "e60d2314-dd8c-4ed2-aa2e-8591c4f978f8" - ], - "x-ms-correlation-request-id": [ - "e60d2314-dd8c-4ed2-aa2e-8591c4f978f8" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T220908Z:e60d2314-dd8c-4ed2-aa2e-8591c4f978f8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 22:09:07 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11763" - ], - "x-ms-request-id": [ - "9bf3e105-29a5-46e4-9edf-0770496f5ca1" - ], - "x-ms-correlation-request-id": [ - "9bf3e105-29a5-46e4-9edf-0770496f5ca1" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T220923Z:9bf3e105-29a5-46e4-9edf-0770496f5ca1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 22:09:23 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11762" - ], - "x-ms-request-id": [ - "171d74b9-5c3b-4e32-96b9-3f73949a7ad7" - ], - "x-ms-correlation-request-id": [ - "171d74b9-5c3b-4e32-96b9-3f73949a7ad7" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T220938Z:171d74b9-5c3b-4e32-96b9-3f73949a7ad7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 22:09:38 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11761" - ], - "x-ms-request-id": [ - "3cb15c03-5219-4e26-a4f4-ac8bbf13ba2a" - ], - "x-ms-correlation-request-id": [ - "3cb15c03-5219-4e26-a4f4-ac8bbf13ba2a" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T220953Z:3cb15c03-5219-4e26-a4f4-ac8bbf13ba2a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 22:09:53 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11761" - ], - "x-ms-request-id": [ - "6fe8e92f-4a9b-4b1a-ba0c-de72fc1be906" - ], - "x-ms-correlation-request-id": [ - "6fe8e92f-4a9b-4b1a-ba0c-de72fc1be906" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T221008Z:6fe8e92f-4a9b-4b1a-ba0c-de72fc1be906" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 22:10:08 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11760" - ], - "x-ms-request-id": [ - "2151efd7-0d78-4289-a9ef-4f0ad7690c5c" - ], - "x-ms-correlation-request-id": [ - "2151efd7-0d78-4289-a9ef-4f0ad7690c5c" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T221024Z:2151efd7-0d78-4289-a9ef-4f0ad7690c5c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 22:10:23 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11759" - ], - "x-ms-request-id": [ - "9156fe3e-0b69-44fe-8a60-0749120c36c5" - ], - "x-ms-correlation-request-id": [ - "9156fe3e-0b69-44fe-8a60-0749120c36c5" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T221039Z:9156fe3e-0b69-44fe-8a60-0749120c36c5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 22:10:38 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11758" - ], - "x-ms-request-id": [ - "276f21c6-4ec1-4131-b4bd-dd60e0313800" - ], - "x-ms-correlation-request-id": [ - "276f21c6-4ec1-4131-b4bd-dd60e0313800" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T221054Z:276f21c6-4ec1-4131-b4bd-dd60e0313800" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 22:10:53 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11757" - ], - "x-ms-request-id": [ - "141ce59f-2c68-4200-913b-23d741697f65" - ], - "x-ms-correlation-request-id": [ - "141ce59f-2c68-4200-913b-23d741697f65" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T221109Z:141ce59f-2c68-4200-913b-23d741697f65" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 22:11:08 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11756" - ], - "x-ms-request-id": [ - "6c4ecbce-9058-4f0d-b8f8-5f1d8e96e8d9" - ], - "x-ms-correlation-request-id": [ - "6c4ecbce-9058-4f0d-b8f8-5f1d8e96e8d9" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T221124Z:6c4ecbce-9058-4f0d-b8f8-5f1d8e96e8d9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 22:11:23 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11755" - ], - "x-ms-request-id": [ - "23831f3e-4ea8-4789-b912-ee0df879cb77" - ], - "x-ms-correlation-request-id": [ - "23831f3e-4ea8-4789-b912-ee0df879cb77" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T221139Z:23831f3e-4ea8-4789-b912-ee0df879cb77" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 22:11:38 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4OTItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE9USXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11754" - ], - "x-ms-request-id": [ - "eb388f19-aba2-448b-8b15-bdef57cd3428" - ], - "x-ms-correlation-request-id": [ - "eb388f19-aba2-448b-8b15-bdef57cd3428" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T221154Z:eb388f19-aba2-448b-8b15-bdef57cd3428" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 22:11:53 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "853" - ] - }, - "ResponseBody": "{\r\n \"Error\": {\r\n \"Code\": \"ResourceGroupDeletionTimeout\",\r\n \"Target\": null,\r\n \"Message\": \"Deletion of resource group 'ps3892' did not finish within the allowed time as resources with identifiers 'Microsoft.Batch/batchAccounts/ps4695' could not be deleted. The provisioning state of the resource group will be rolled back. The tracking Id is 'dbe6580c-d696-41d0-9544-5dc7323b333a'. Please check audit logs for more details.\",\r\n \"Details\": [\r\n {\r\n \"Code\": null,\r\n \"Target\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/ps3892/providers/Microsoft.Batch/batchAccounts/ps4695\",\r\n \"Message\": \"{\\\"error\\\":{\\\"code\\\":\\\"AccountBeingDeleted\\\",\\\"message\\\":\\\"The specified account is being deleted.\\\\nRequestId:322e219e-c690-43b1-b51e-ccef0a06066e\\\\nTime:2020-06-09T22:11:13.4149354Z\\\",\\\"target\\\":\\\"BatchAccount\\\"}}\",\r\n \"Details\": null,\r\n \"AdditionalInfo\": null\r\n }\r\n ],\r\n \"AdditionalInfo\": null\r\n }\r\n}", - "StatusCode": 409 + "StatusCode": 200 } ], "Names": { "Test-CreateNewBatchAccountWithNoPublicIp": [ - "ps4695", - "ps3892" + "ps4582", + "ps2105" ] }, "Variables": { - "SubscriptionId": "21abd678-18c5-4660-9fdd-8c5ba6b6fe1f", - "AZURE_BATCH_ACCOUNT": "prodtest6", - "AZURE_BATCH_ENDPOINT": "https://prodtest6.francecentral.batch.azure.com", - "AZURE_BATCH_RESOURCE_GROUP": "abc" + "SubscriptionId": "ba2358c2-42f2-4138-88df-7c68cf608bea", + "AZURE_BATCH_ACCOUNT": "mikeportal", + "AZURE_BATCH_ENDPOINT": "https://mikeportal.eastus.batch.azure.com", + "AZURE_BATCH_RESOURCE_GROUP": "batchportal" } } \ No newline at end of file diff --git a/src/Batch/Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.BatchAccountTests/TestCreateNewBatchAccountWithSystemIdentity.json b/src/Batch/Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.BatchAccountTests/TestCreateNewBatchAccountWithSystemIdentity.json index a573db06252e..f2ed3571de4e 100644 --- a/src/Batch/Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.BatchAccountTests/TestCreateNewBatchAccountWithSystemIdentity.json +++ b/src/Batch/Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.BatchAccountTests/TestCreateNewBatchAccountWithSystemIdentity.json @@ -1,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2g/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/ba2358c2-42f2-4138-88df-7c68cf608bea/providers/Microsoft.Batch?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmEyMzU4YzItNDJmMi00MTM4LTg4ZGYtN2M2OGNmNjA4YmVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2g/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "32ff8b62-027b-4997-8d5f-86334a1094e8" + "7bfaf3a0-bc75-48d1-8dcd-452e9faf1524" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.43" ] }, "ResponseHeaders": { @@ -30,13 +30,13 @@ "11999" ], "x-ms-request-id": [ - "cbe1d648-fecf-46b7-bc75-97930de02b8c" + "3cc5720e-1378-4184-9ef2-596395d95af9" ], "x-ms-correlation-request-id": [ - "cbe1d648-fecf-46b7-bc75-97930de02b8c" + "3cc5720e-1378-4184-9ef2-596395d95af9" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T225211Z:cbe1d648-fecf-46b7-bc75-97930de02b8c" + "NORTHCENTRALUS:20210827T161824Z:3cc5720e-1378-4184-9ef2-596395d95af9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -45,7 +45,7 @@ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 22:52:11 GMT" + "Fri, 27 Aug 2021 16:18:23 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -54,29 +54,29 @@ "-1" ], "Content-Length": [ - "4461" + "7565" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch\",\r\n \"namespace\": \"Microsoft.Batch\",\r\n \"authorization\": {\r\n \"applicationId\": \"ddbf3205-c6bd-46ae-8127-60eb93363864\",\r\n \"roleDefinitionId\": \"b7f84953-1d03-4eab-9ea4-45f065258ff8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"batchAccounts\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\",\r\n \"2015-07-01\",\r\n \"2014-05-01-privatepreview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/accountOperationResults\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\",\r\n \"2015-07-01\",\r\n \"2014-05-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/ba2358c2-42f2-4138-88df-7c68cf608bea/providers/Microsoft.Batch\",\r\n \"namespace\": \"Microsoft.Batch\",\r\n \"authorization\": {\r\n \"applicationId\": \"ddbf3205-c6bd-46ae-8127-60eb93363864\",\r\n \"roleDefinitionId\": \"b7f84953-1d03-4eab-9ea4-45f065258ff8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"batchAccounts\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Jio India West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Norway East\",\r\n \"Brazil Southeast\",\r\n \"West US 3\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\",\r\n \"2015-07-01\",\r\n \"2014-05-01-privatepreview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"batchAccounts/pools\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Jio India West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Norway East\",\r\n \"Brazil Southeast\",\r\n \"West US 3\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"batchAccounts/certificates\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Jio India West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Norway East\",\r\n \"Brazil Southeast\",\r\n \"West US 3\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Jio India West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Norway East\",\r\n \"Brazil Southeast\",\r\n \"West US 3\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Jio India West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Norway East\",\r\n \"Brazil Southeast\",\r\n \"West US 3\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Jio India West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Norway East\",\r\n \"Brazil Southeast\",\r\n \"West US 3\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/accountOperationResults\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Jio India West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Norway East\",\r\n \"Brazil Southeast\",\r\n \"West US 3\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\",\r\n \"2015-07-01\",\r\n \"2014-05-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/virtualMachineSkus\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Jio India West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Norway East\",\r\n \"Brazil Southeast\",\r\n \"West US 3\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/cloudServiceSkus\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Jio India West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Norway East\",\r\n \"Brazil Southeast\",\r\n \"West US 3\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourcegroups/ps7348?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlZ3JvdXBzL3BzNzM0OD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/ba2358c2-42f2-4138-88df-7c68cf608bea/resourcegroups/ps9258?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmEyMzU4YzItNDJmMi00MTM4LTg4ZGYtN2M2OGNmNjA4YmVhL3Jlc291cmNlZ3JvdXBzL3BzOTI1OD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "14347ccf-6cad-467a-8862-da3af232e606" + "3a88d592-51c6-4a29-bac4-49bfefe2f49f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.43" ], "Content-Type": [ "application/json; charset=utf-8" @@ -96,13 +96,13 @@ "1199" ], "x-ms-request-id": [ - "cd2eab92-4a55-4118-889f-747b721c6b21" + "f60e8ffb-8344-4b03-aee5-9ffefb247598" ], "x-ms-correlation-request-id": [ - "cd2eab92-4a55-4118-889f-747b721c6b21" + "f60e8ffb-8344-4b03-aee5-9ffefb247598" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T225211Z:cd2eab92-4a55-4118-889f-747b721c6b21" + "NORTHCENTRALUS:20210827T161824Z:f60e8ffb-8344-4b03-aee5-9ffefb247598" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -111,7 +111,7 @@ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 22:52:11 GMT" + "Fri, 27 Aug 2021 16:18:24 GMT" ], "Content-Length": [ "165" @@ -123,26 +123,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/ps7348\",\r\n \"name\": \"ps7348\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/ba2358c2-42f2-4138-88df-7c68cf608bea/resourceGroups/ps9258\",\r\n \"name\": \"ps9258\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/ps7348/providers/Microsoft.Batch/batchAccounts/ps5534?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL3BzNzM0OC9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvcHM1NTM0P2FwaS12ZXJzaW9uPTIwMjAtMDUtMDE=", + "RequestUri": "/subscriptions/ba2358c2-42f2-4138-88df-7c68cf608bea/resourceGroups/ps9258/providers/Microsoft.Batch/batchAccounts/ps3244?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmEyMzU4YzItNDJmMi00MTM4LTg4ZGYtN2M2OGNmNjA4YmVhL3Jlc291cmNlR3JvdXBzL3BzOTI1OC9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvcHMzMjQ0P2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "50444838-5541-428b-b16d-4ab78965157a" + "c61a053b-f5f6-4cb9-9030-d3f3a9650786" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/11.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Batch.BatchManagementClient/14.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -159,13 +159,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/ps7348/providers/Microsoft.Batch/batchAccounts/ps5534/operationResults/46137e23-ac04-4544-ba7d-e66771829904?api-version=2020-05-01" + "https://management.azure.com/subscriptions/ba2358c2-42f2-4138-88df-7c68cf608bea/resourceGroups/ps9258/providers/Microsoft.Batch/batchAccounts/ps3244/operationResults/10415a1c-f30f-4932-95ea-06591d9ed370?api-version=2021-06-01" ], "Retry-After": [ "15" ], "x-ms-request-id": [ - "46137e23-ac04-4544-ba7d-e66771829904" + "10415a1c-f30f-4932-95ea-06591d9ed370" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -180,13 +180,13 @@ "1199" ], "x-ms-correlation-request-id": [ - "142b18ba-282a-4f56-8777-ae41cb73c334" + "34133b7f-701a-4056-90de-486daa875959" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T225214Z:142b18ba-282a-4f56-8777-ae41cb73c334" + "NORTHCENTRALUS:20210827T161829Z:34133b7f-701a-4056-90de-486daa875959" ], "Date": [ - "Wed, 10 Jun 2020 22:52:14 GMT" + "Fri, 27 Aug 2021 16:18:28 GMT" ], "Expires": [ "-1" @@ -199,16 +199,19 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/ps7348/providers/Microsoft.Batch/batchAccounts/ps5534/operationResults/46137e23-ac04-4544-ba7d-e66771829904?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL3BzNzM0OC9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvcHM1NTM0L29wZXJhdGlvblJlc3VsdHMvNDYxMzdlMjMtYWMwNC00NTQ0LWJhN2QtZTY2NzcxODI5OTA0P2FwaS12ZXJzaW9uPTIwMjAtMDUtMDE=", + "RequestUri": "/subscriptions/ba2358c2-42f2-4138-88df-7c68cf608bea/resourceGroups/ps9258/providers/Microsoft.Batch/batchAccounts/ps3244/operationResults/10415a1c-f30f-4932-95ea-06591d9ed370?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmEyMzU4YzItNDJmMi00MTM4LTg4ZGYtN2M2OGNmNjA4YmVhL3Jlc291cmNlR3JvdXBzL3BzOTI1OC9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvcHMzMjQ0L29wZXJhdGlvblJlc3VsdHMvMTA0MTVhMWMtZjMwZi00OTMyLTk1ZWEtMDY1OTFkOWVkMzcwP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "c61a053b-f5f6-4cb9-9030-d3f3a9650786" + ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/11.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Batch.BatchManagementClient/14.0.0.0" ] }, "ResponseHeaders": { @@ -219,13 +222,13 @@ "no-cache" ], "ETag": [ - "\"0x8D80D90F450BC1C\"" + "\"0x8D96976574F875E\"" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11999" ], "x-ms-request-id": [ - "c39e5a83-ba21-4d8c-9cb0-62de63d77158" + "b30d7591-8040-4a3d-8561-74b4f6e0938b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -237,16 +240,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-correlation-request-id": [ - "4ec6b5ef-297e-4b0d-be49-d40afc82f39b" + "3b902a29-0c6d-46d7-b151-29b295fc75df" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T225229Z:4ec6b5ef-297e-4b0d-be49-d40afc82f39b" + "NORTHCENTRALUS:20210827T161844Z:3b902a29-0c6d-46d7-b151-29b295fc75df" ], "Date": [ - "Wed, 10 Jun 2020 22:52:28 GMT" + "Fri, 27 Aug 2021 16:18:43 GMT" ], "Content-Length": [ - "2314" + "3084" ], "Content-Type": [ "application/json; charset=utf-8" @@ -255,29 +258,29 @@ "-1" ], "Last-Modified": [ - "Wed, 10 Jun 2020 22:52:29 GMT" + "Fri, 27 Aug 2021 16:18:44 GMT" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/ps7348/providers/Microsoft.Batch/batchAccounts/ps5534\",\r\n \"name\": \"ps5534\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"ps5534.westus.batch.azure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"dedicatedCoreQuota\": 700,\r\n \"dedicatedCoreQuotaPerVMFamily\": [\r\n {\r\n \"name\": \"standardAv2Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardDv2Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardDv3Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardEv3Family\",\r\n \"coreQuota\": 50\r\n },\r\n {\r\n \"name\": \"standardDSv2Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardDSv3Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardESv3Family\",\r\n \"coreQuota\": 50\r\n },\r\n {\r\n \"name\": \"standardFFamily\",\r\n \"coreQuota\": 50\r\n },\r\n {\r\n \"name\": \"standardFSFamily\",\r\n \"coreQuota\": 50\r\n },\r\n {\r\n \"name\": \"standardA0_A7Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardA8_A11Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardDFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardGFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"basicAFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNVFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNVPromoFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNCFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNCPromoFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHPromoFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardMSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardDSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardGSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardLSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardLSv2Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNCSv2Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNDSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNCSv3Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardFSv2Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHBSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHCSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNVSv3Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHBrsv2Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardDASv4Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardEAv4Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardEASv4Family\",\r\n \"coreQuota\": 0\r\n }\r\n ],\r\n \"dedicatedCoreQuotaPerVMFamilyEnforced\": false,\r\n \"lowPriorityCoreQuota\": 500,\r\n \"poolQuota\": 100,\r\n \"activeJobAndJobScheduleQuota\": 300,\r\n \"poolAllocationMode\": \"BatchService\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"encryption\": {\r\n \"keySource\": \"Microsoft.Batch\"\r\n }\r\n },\r\n \"identity\": {\r\n \"principalId\": \"88a95336-725e-448f-9ec2-3e2f73b03153\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"SystemAssigned\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/ba2358c2-42f2-4138-88df-7c68cf608bea/resourceGroups/ps9258/providers/Microsoft.Batch/batchAccounts/ps3244\",\r\n \"name\": \"ps3244\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"ps3244.westus.batch.azure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"dedicatedCoreQuota\": 500,\r\n \"dedicatedCoreQuotaPerVMFamily\": [\r\n {\r\n \"name\": \"standardAv2Family\",\r\n \"coreQuota\": 500\r\n },\r\n {\r\n \"name\": \"standardDv2Family\",\r\n \"coreQuota\": 250\r\n },\r\n {\r\n \"name\": \"standardDv3Family\",\r\n \"coreQuota\": 500\r\n },\r\n {\r\n \"name\": \"standardEv3Family\",\r\n \"coreQuota\": 500\r\n },\r\n {\r\n \"name\": \"standardDSv2Family\",\r\n \"coreQuota\": 250\r\n },\r\n {\r\n \"name\": \"standardDSv3Family\",\r\n \"coreQuota\": 500\r\n },\r\n {\r\n \"name\": \"standardESv3Family\",\r\n \"coreQuota\": 500\r\n },\r\n {\r\n \"name\": \"standardFSv2Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardNCFamily\",\r\n \"coreQuota\": 24\r\n },\r\n {\r\n \"name\": \"standardNVFamily\",\r\n \"coreQuota\": 24\r\n },\r\n {\r\n \"name\": \"standardDDv4Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardDDSv4Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardEDv4Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardEDSv4Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardA0_A7Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardA8_A11Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardDFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardGFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"basicAFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardFFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNVPromoFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNCPromoFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHPromoFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardMSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardDSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardFSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardGSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardLSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardLSv2Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNCSv2Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNDSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNCSv3Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHBSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHCSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNVSv3Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHBrsv2Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardDAv4Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardDASv4Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardEAv4Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardEASv4Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardMSv2Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardEIv3Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNVSv4Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"Standard NCASv3_T4 Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardXEIDSv4Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"Standard NDASv4_A100 Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardDCSv2Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHBv3Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNPSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardFXMDVSFamily\",\r\n \"coreQuota\": 0\r\n }\r\n ],\r\n \"dedicatedCoreQuotaPerVMFamilyEnforced\": true,\r\n \"lowPriorityCoreQuota\": 500,\r\n \"poolQuota\": 100,\r\n \"activeJobAndJobScheduleQuota\": 300,\r\n \"poolAllocationMode\": \"BatchService\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"encryption\": {\r\n \"keySource\": \"Microsoft.Batch\"\r\n },\r\n \"allowedAuthenticationModes\": [\r\n \"SharedKey\",\r\n \"AAD\",\r\n \"TaskAuthenticationToken\"\r\n ]\r\n },\r\n \"identity\": {\r\n \"principalId\": \"74046d55-78d6-4451-a217-5521b360a297\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"SystemAssigned\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourcegroups/ps7348?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlZ3JvdXBzL3BzNzM0OD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/ba2358c2-42f2-4138-88df-7c68cf608bea/resourcegroups/ps9258?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmEyMzU4YzItNDJmMi00MTM4LTg4ZGYtN2M2OGNmNjA4YmVhL3Jlc291cmNlZ3JvdXBzL3BzOTI1OD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e6293b2f-3fed-45de-a328-83837065fea3" + "b48cd2a4-2dba-4bef-9fb0-cd1172a3b1a0" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.43" ] }, "ResponseHeaders": { @@ -288,7 +291,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzczNDgtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/ba2358c2-42f2-4138-88df-7c68cf608bea/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkyNTgtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -297,13 +300,13 @@ "14999" ], "x-ms-request-id": [ - "2bf1547b-1248-4c48-94ca-9f9ca1e9605e" + "a976ae94-dc8e-4744-840a-c7d1a9a05161" ], "x-ms-correlation-request-id": [ - "2bf1547b-1248-4c48-94ca-9f9ca1e9605e" + "a976ae94-dc8e-4744-840a-c7d1a9a05161" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T225229Z:2bf1547b-1248-4c48-94ca-9f9ca1e9605e" + "NORTHCENTRALUS:20210827T161845Z:a976ae94-dc8e-4744-840a-c7d1a9a05161" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -312,7 +315,7 @@ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 22:52:29 GMT" + "Fri, 27 Aug 2021 16:18:44 GMT" ], "Expires": [ "-1" @@ -325,16 +328,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzczNDgtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjek5EZ3RWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/ba2358c2-42f2-4138-88df-7c68cf608bea/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkyNTgtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmEyMzU4YzItNDJmMi00MTM4LTg4ZGYtN2M2OGNmNjA4YmVhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpreU5UZ3RWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.43" ] }, "ResponseHeaders": { @@ -345,7 +348,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzczNDgtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/ba2358c2-42f2-4138-88df-7c68cf608bea/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkyNTgtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -354,13 +357,13 @@ "11998" ], "x-ms-request-id": [ - "0a584d7e-99d5-4a77-8b95-3f702e01dda7" + "750bd192-5e6c-4696-a6cf-74793230e599" ], "x-ms-correlation-request-id": [ - "0a584d7e-99d5-4a77-8b95-3f702e01dda7" + "750bd192-5e6c-4696-a6cf-74793230e599" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T225245Z:0a584d7e-99d5-4a77-8b95-3f702e01dda7" + "NORTHCENTRALUS:20210827T161900Z:750bd192-5e6c-4696-a6cf-74793230e599" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -369,7 +372,7 @@ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 22:52:44 GMT" + "Fri, 27 Aug 2021 16:18:59 GMT" ], "Expires": [ "-1" @@ -382,16 +385,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzczNDgtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjek5EZ3RWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/ba2358c2-42f2-4138-88df-7c68cf608bea/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkyNTgtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmEyMzU4YzItNDJmMi00MTM4LTg4ZGYtN2M2OGNmNjA4YmVhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpreU5UZ3RWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.43" ] }, "ResponseHeaders": { @@ -402,7 +405,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzczNDgtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/ba2358c2-42f2-4138-88df-7c68cf608bea/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkyNTgtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -411,13 +414,13 @@ "11997" ], "x-ms-request-id": [ - "8f3355d1-1cc4-49b8-849b-f10f12a86842" + "fbe984dc-4a32-4889-9024-ea1cf308f70e" ], "x-ms-correlation-request-id": [ - "8f3355d1-1cc4-49b8-849b-f10f12a86842" + "fbe984dc-4a32-4889-9024-ea1cf308f70e" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T225300Z:8f3355d1-1cc4-49b8-849b-f10f12a86842" + "NORTHCENTRALUS:20210827T161915Z:fbe984dc-4a32-4889-9024-ea1cf308f70e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -426,7 +429,7 @@ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 22:52:59 GMT" + "Fri, 27 Aug 2021 16:19:14 GMT" ], "Expires": [ "-1" @@ -439,16 +442,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzczNDgtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjek5EZ3RWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/ba2358c2-42f2-4138-88df-7c68cf608bea/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkyNTgtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmEyMzU4YzItNDJmMi00MTM4LTg4ZGYtN2M2OGNmNjA4YmVhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpreU5UZ3RWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.43" ] }, "ResponseHeaders": { @@ -459,7 +462,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzczNDgtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/ba2358c2-42f2-4138-88df-7c68cf608bea/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkyNTgtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -468,13 +471,13 @@ "11996" ], "x-ms-request-id": [ - "1dc9be2f-4f69-4e30-9b39-58ad01327bd0" + "8b7eb46c-ae61-4eb8-a1fc-fcc2b3cd4d54" ], "x-ms-correlation-request-id": [ - "1dc9be2f-4f69-4e30-9b39-58ad01327bd0" + "8b7eb46c-ae61-4eb8-a1fc-fcc2b3cd4d54" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T225315Z:1dc9be2f-4f69-4e30-9b39-58ad01327bd0" + "NORTHCENTRALUS:20210827T161930Z:8b7eb46c-ae61-4eb8-a1fc-fcc2b3cd4d54" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -483,7 +486,7 @@ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 22:53:14 GMT" + "Fri, 27 Aug 2021 16:19:30 GMT" ], "Expires": [ "-1" @@ -496,16 +499,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzczNDgtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjek5EZ3RWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/ba2358c2-42f2-4138-88df-7c68cf608bea/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkyNTgtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmEyMzU4YzItNDJmMi00MTM4LTg4ZGYtN2M2OGNmNjA4YmVhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpreU5UZ3RWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.43" ] }, "ResponseHeaders": { @@ -516,7 +519,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzczNDgtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/ba2358c2-42f2-4138-88df-7c68cf608bea/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkyNTgtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -525,13 +528,13 @@ "11995" ], "x-ms-request-id": [ - "8fc6621d-ad4c-4341-a1ac-c6001bd47064" + "f340f374-8964-4e97-ad67-a3ea0a422daf" ], "x-ms-correlation-request-id": [ - "8fc6621d-ad4c-4341-a1ac-c6001bd47064" + "f340f374-8964-4e97-ad67-a3ea0a422daf" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T225330Z:8fc6621d-ad4c-4341-a1ac-c6001bd47064" + "NORTHCENTRALUS:20210827T161945Z:f340f374-8964-4e97-ad67-a3ea0a422daf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -540,7 +543,7 @@ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 22:53:29 GMT" + "Fri, 27 Aug 2021 16:19:45 GMT" ], "Expires": [ "-1" @@ -553,16 +556,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzczNDgtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjek5EZ3RWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/ba2358c2-42f2-4138-88df-7c68cf608bea/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkyNTgtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmEyMzU4YzItNDJmMi00MTM4LTg4ZGYtN2M2OGNmNjA4YmVhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpreU5UZ3RWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.43" ] }, "ResponseHeaders": { @@ -572,131 +575,17 @@ "Pragma": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzczNDgtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], "x-ms-ratelimit-remaining-subscription-reads": [ "11994" ], "x-ms-request-id": [ - "a8031a67-83c9-40ab-93a6-37dc4f333c9c" - ], - "x-ms-correlation-request-id": [ - "a8031a67-83c9-40ab-93a6-37dc4f333c9c" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200610T225345Z:a8031a67-83c9-40ab-93a6-37dc4f333c9c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 10 Jun 2020 22:53:45 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzczNDgtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjek5EZ3RWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzczNDgtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" - ], - "x-ms-request-id": [ - "6d20dbe4-7968-4283-aea6-6c53180ab280" - ], - "x-ms-correlation-request-id": [ - "6d20dbe4-7968-4283-aea6-6c53180ab280" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200610T225400Z:6d20dbe4-7968-4283-aea6-6c53180ab280" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 10 Jun 2020 22:53:59 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzczNDgtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjek5EZ3RWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" - ], - "x-ms-request-id": [ - "4b91c717-fc97-4c01-9595-a735007a46aa" + "09e1b7d7-c704-463c-8106-86b9e940616f" ], "x-ms-correlation-request-id": [ - "4b91c717-fc97-4c01-9595-a735007a46aa" + "09e1b7d7-c704-463c-8106-86b9e940616f" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T225415Z:4b91c717-fc97-4c01-9595-a735007a46aa" + "NORTHCENTRALUS:20210827T162000Z:09e1b7d7-c704-463c-8106-86b9e940616f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -705,7 +594,7 @@ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 22:54:14 GMT" + "Fri, 27 Aug 2021 16:20:00 GMT" ], "Expires": [ "-1" @@ -718,16 +607,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzczNDgtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjek5EZ3RWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/ba2358c2-42f2-4138-88df-7c68cf608bea/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkyNTgtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmEyMzU4YzItNDJmMi00MTM4LTg4ZGYtN2M2OGNmNjA4YmVhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpreU5UZ3RWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.43" ] }, "ResponseHeaders": { @@ -738,16 +627,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11993" ], "x-ms-request-id": [ - "e706d940-949a-48bf-8d14-ceba199efa38" + "6c344c80-d342-43c9-9568-4449f912f9cc" ], "x-ms-correlation-request-id": [ - "e706d940-949a-48bf-8d14-ceba199efa38" + "6c344c80-d342-43c9-9568-4449f912f9cc" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T225415Z:e706d940-949a-48bf-8d14-ceba199efa38" + "NORTHCENTRALUS:20210827T162001Z:6c344c80-d342-43c9-9568-4449f912f9cc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -756,7 +645,7 @@ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 22:54:14 GMT" + "Fri, 27 Aug 2021 16:20:00 GMT" ], "Expires": [ "-1" @@ -771,14 +660,14 @@ ], "Names": { "Test-CreateNewBatchAccountWithSystemIdentity": [ - "ps5534", - "ps7348" + "ps3244", + "ps9258" ] }, "Variables": { - "SubscriptionId": "21abd678-18c5-4660-9fdd-8c5ba6b6fe1f", - "AZURE_BATCH_ACCOUNT": "prodtest6", - "AZURE_BATCH_ENDPOINT": "https://prodtest6.francecentral.batch.azure.com", - "AZURE_BATCH_RESOURCE_GROUP": "abc" + "SubscriptionId": "ba2358c2-42f2-4138-88df-7c68cf608bea", + "AZURE_BATCH_ACCOUNT": "mikeportal", + "AZURE_BATCH_ENDPOINT": "https://mikeportal.eastus.batch.azure.com", + "AZURE_BATCH_RESOURCE_GROUP": "batchportal" } } \ No newline at end of file diff --git a/src/Batch/Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.BatchAccountTests/TestGetBatchSupportedImages.json b/src/Batch/Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.BatchAccountTests/TestGetBatchSupportedImages.json index a8115d235055..57a7e87dae4d 100644 --- a/src/Batch/Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.BatchAccountTests/TestGetBatchSupportedImages.json +++ b/src/Batch/Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.BatchAccountTests/TestGetBatchSupportedImages.json @@ -1,25 +1,28 @@ { "Entries": [ { - "RequestUri": "/supportedimages?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L3N1cHBvcnRlZGltYWdlcz9hcGktdmVyc2lvbj0yMDIwLTAzLTAxLjExLjA=", + "RequestUri": "/supportedimages?api-version=2021-06-01.14.0", + "EncodedRequestUri": "L3N1cHBvcnRlZGltYWdlcz9hcGktdmVyc2lvbj0yMDIxLTA2LTAxLjE0LjA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "eb2cd06e-933f-4ae4-8064-227e13042d96" + "dd47a826-b466-4ba7-b9aa-643635e9c1c6" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 21:05:16 GMT" + "Fri, 27 Aug 2021 16:16:21 GMT" + ], + "x-ms-client-request-id": [ + "5ec4503c-61d0-46da-9737-35a3e63d03f0" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/13.0.20.15503", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", "AzurePowershell/Az1.0.0" ] }, @@ -31,7 +34,7 @@ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "31a6fe6d-90e9-4b6a-a85d-8e9a219cde3d" + "def47478-d500-422e-81e9-1449927dd7bc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -43,21 +46,21 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 21:05:38 GMT" + "Fri, 27 Aug 2021 16:16:20 GMT" ], "Content-Type": [ "application/json; odata=minimalmetadata" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://prodtest6.francecentral.batch.azure.com/$metadata#supportedimages\",\r\n \"value\": [\r\n {\r\n \"imageReference\": {\r\n \"publisher\": \"batch\",\r\n \"offer\": \"rendering-centos73\",\r\n \"sku\": \"rendering\",\r\n \"version\": \"latest\"\r\n },\r\n \"verificationType\": \"verified\",\r\n \"nodeAgentSKUId\": \"batch.node.centos 7\",\r\n \"osType\": \"linux\"\r\n },\r\n {\r\n \"imageReference\": {\r\n \"publisher\": \"batch\",\r\n \"offer\": \"rendering-windows2016\",\r\n \"sku\": \"rendering\",\r\n \"version\": \"latest\"\r\n },\r\n \"verificationType\": \"verified\",\r\n \"nodeAgentSKUId\": \"batch.node.windows amd64\",\r\n \"osType\": \"windows\"\r\n },\r\n {\r\n \"imageReference\": {\r\n \"publisher\": \"canonical\",\r\n \"offer\": \"ubuntuserver\",\r\n \"sku\": \"16.04-lts\",\r\n \"version\": \"latest\"\r\n },\r\n \"verificationType\": \"verified\",\r\n \"nodeAgentSKUId\": \"batch.node.ubuntu 16.04\",\r\n \"batchSupportEndOfLife\": \"2021-05-21T00:00:00Z\",\r\n \"osType\": \"linux\"\r\n },\r\n {\r\n \"imageReference\": {\r\n \"publisher\": \"canonical\",\r\n \"offer\": \"ubuntuserver\",\r\n \"sku\": \"16.04.0-lts\",\r\n \"version\": \"latest\"\r\n },\r\n \"verificationType\": \"unverified\",\r\n \"nodeAgentSKUId\": \"batch.node.ubuntu 16.04\",\r\n \"batchSupportEndOfLife\": \"2021-05-21T00:00:00Z\",\r\n \"osType\": \"linux\"\r\n },\r\n {\r\n \"imageReference\": {\r\n \"publisher\": \"canonical\",\r\n \"offer\": \"ubuntuserver\",\r\n \"sku\": \"16_04-lts-gen2\",\r\n \"version\": \"latest\"\r\n },\r\n \"verificationType\": \"unverified\",\r\n \"nodeAgentSKUId\": \"batch.node.ubuntu 16.04\",\r\n \"batchSupportEndOfLife\": \"2021-05-21T00:00:00Z\",\r\n \"osType\": \"linux\"\r\n },\r\n {\r\n \"imageReference\": {\r\n \"publisher\": \"canonical\",\r\n \"offer\": \"ubuntuserver\",\r\n \"sku\": \"18.04-lts\",\r\n \"version\": \"latest\"\r\n },\r\n \"verificationType\": \"verified\",\r\n \"nodeAgentSKUId\": \"batch.node.ubuntu 18.04\",\r\n \"osType\": \"linux\"\r\n },\r\n {\r\n \"imageReference\": {\r\n \"publisher\": \"canonical\",\r\n \"offer\": \"ubuntuserver\",\r\n \"sku\": \"18_04-lts-gen2\",\r\n \"version\": \"latest\"\r\n },\r\n \"verificationType\": \"unverified\",\r\n \"nodeAgentSKUId\": \"batch.node.ubuntu 18.04\",\r\n \"osType\": \"linux\"\r\n },\r\n {\r\n \"imageReference\": {\r\n \"publisher\": \"credativ\",\r\n \"offer\": \"debian\",\r\n \"sku\": \"8\",\r\n \"version\": \"latest\"\r\n },\r\n \"verificationType\": \"verified\",\r\n \"nodeAgentSKUId\": \"batch.node.debian 8\",\r\n \"batchSupportEndOfLife\": \"2020-07-30T00:00:00Z\",\r\n \"osType\": \"linux\"\r\n },\r\n {\r\n \"imageReference\": {\r\n \"publisher\": \"credativ\",\r\n \"offer\": \"debian\",\r\n \"sku\": \"9\",\r\n \"version\": \"latest\"\r\n },\r\n \"verificationType\": \"verified\",\r\n \"nodeAgentSKUId\": \"batch.node.debian 9\",\r\n \"osType\": \"linux\"\r\n },\r\n {\r\n \"imageReference\": {\r\n \"publisher\": \"debian\",\r\n \"offer\": \"debian-10\",\r\n \"sku\": \"10\",\r\n \"version\": \"latest\"\r\n },\r\n \"verificationType\": \"verified\",\r\n \"nodeAgentSKUId\": \"batch.node.debian 10\",\r\n \"osType\": \"linux\"\r\n },\r\n {\r\n \"imageReference\": {\r\n \"publisher\": \"microsoft-azure-batch\",\r\n \"offer\": \"centos-container\",\r\n \"sku\": \"7-4\",\r\n \"version\": \"latest\"\r\n },\r\n \"verificationType\": \"unverified\",\r\n \"nodeAgentSKUId\": \"batch.node.centos 7\",\r\n \"capabilities\": [\r\n \"DockerCompatible\",\r\n \"NvidiaTeslaDriverInstalled\",\r\n \"NvidiaGridDriverInstalled\"\r\n ],\r\n \"osType\": \"linux\"\r\n },\r\n {\r\n \"imageReference\": {\r\n \"publisher\": \"microsoft-azure-batch\",\r\n \"offer\": \"centos-container\",\r\n \"sku\": \"7-5\",\r\n \"version\": \"latest\"\r\n },\r\n \"verificationType\": \"unverified\",\r\n \"nodeAgentSKUId\": \"batch.node.centos 7\",\r\n \"capabilities\": [\r\n \"DockerCompatible\",\r\n \"NvidiaTeslaDriverInstalled\",\r\n \"NvidiaGridDriverInstalled\"\r\n ],\r\n \"osType\": \"linux\"\r\n },\r\n {\r\n \"imageReference\": {\r\n \"publisher\": \"microsoft-azure-batch\",\r\n \"offer\": \"centos-container\",\r\n \"sku\": \"7-6\",\r\n \"version\": \"latest\"\r\n },\r\n \"verificationType\": \"unverified\",\r\n \"nodeAgentSKUId\": \"batch.node.centos 7\",\r\n \"capabilities\": [\r\n \"DockerCompatible\",\r\n \"NvidiaTeslaDriverInstalled\",\r\n \"NvidiaGridDriverInstalled\"\r\n ],\r\n \"osType\": \"linux\"\r\n },\r\n {\r\n \"imageReference\": {\r\n \"publisher\": \"microsoft-azure-batch\",\r\n \"offer\": \"centos-container\",\r\n \"sku\": \"7-7\",\r\n \"version\": \"latest\"\r\n },\r\n \"verificationType\": \"verified\",\r\n \"nodeAgentSKUId\": \"batch.node.centos 7\",\r\n \"capabilities\": [\r\n \"DockerCompatible\",\r\n \"NvidiaTeslaDriverInstalled\",\r\n \"NvidiaGridDriverInstalled\"\r\n ],\r\n \"osType\": \"linux\"\r\n },\r\n {\r\n \"imageReference\": {\r\n \"publisher\": \"microsoft-azure-batch\",\r\n \"offer\": \"centos-container-rdma\",\r\n \"sku\": \"7-4\",\r\n \"version\": \"latest\"\r\n },\r\n \"verificationType\": \"verified\",\r\n \"nodeAgentSKUId\": \"batch.node.centos 7\",\r\n \"capabilities\": [\r\n \"DockerCompatible\",\r\n \"NvidiaTeslaDriverInstalled\",\r\n \"SupportsRDMAOnly\",\r\n \"IntelMPIRuntimeInstalled\"\r\n ],\r\n \"osType\": \"linux\"\r\n },\r\n {\r\n \"imageReference\": {\r\n \"publisher\": \"microsoft-azure-batch\",\r\n \"offer\": \"centos-container-rdma\",\r\n \"sku\": \"7-6\",\r\n \"version\": \"latest\"\r\n },\r\n \"verificationType\": \"unverified\",\r\n \"nodeAgentSKUId\": \"batch.node.centos 7\",\r\n \"capabilities\": [\r\n \"DockerCompatible\",\r\n \"NvidiaTeslaDriverInstalled\",\r\n \"SupportsRDMAOnly\",\r\n \"IntelMPIRuntimeInstalled\"\r\n ],\r\n \"osType\": \"linux\"\r\n },\r\n {\r\n \"imageReference\": {\r\n \"publisher\": \"microsoft-azure-batch\",\r\n \"offer\": \"centos-container-rdma\",\r\n \"sku\": \"7-7\",\r\n \"version\": \"latest\"\r\n },\r\n \"verificationType\": \"verified\",\r\n \"nodeAgentSKUId\": \"batch.node.centos 7\",\r\n \"capabilities\": [\r\n \"DockerCompatible\",\r\n \"NvidiaTeslaDriverInstalled\",\r\n \"SupportsRDMAOnly\",\r\n \"IntelMPIRuntimeInstalled\"\r\n ],\r\n \"osType\": \"linux\"\r\n },\r\n {\r\n \"imageReference\": {\r\n \"publisher\": \"microsoft-azure-batch\",\r\n \"offer\": \"ubuntu-server-container\",\r\n \"sku\": \"16-04-lts\",\r\n \"version\": \"latest\"\r\n },\r\n \"verificationType\": \"verified\",\r\n \"nodeAgentSKUId\": \"batch.node.ubuntu 16.04\",\r\n \"capabilities\": [\r\n \"DockerCompatible\",\r\n \"NvidiaTeslaDriverInstalled\",\r\n \"NvidiaGridDriverInstalled\"\r\n ],\r\n \"batchSupportEndOfLife\": \"2021-05-21T00:00:00Z\",\r\n \"osType\": \"linux\"\r\n },\r\n {\r\n \"imageReference\": {\r\n \"publisher\": \"microsoft-azure-batch\",\r\n \"offer\": \"ubuntu-server-container-rdma\",\r\n \"sku\": \"16-04-lts\",\r\n \"version\": \"latest\"\r\n },\r\n \"verificationType\": \"verified\",\r\n \"nodeAgentSKUId\": \"batch.node.ubuntu 16.04\",\r\n \"capabilities\": [\r\n \"DockerCompatible\",\r\n \"NvidiaTeslaDriverInstalled\",\r\n \"SupportsRDMAOnly\"\r\n ],\r\n \"batchSupportEndOfLife\": \"2021-05-21T00:00:00Z\",\r\n \"osType\": \"linux\"\r\n },\r\n {\r\n \"imageReference\": {\r\n \"publisher\": \"microsoft-dsvm\",\r\n \"offer\": \"dsvm-win-2019\",\r\n \"sku\": \"server-2019\",\r\n \"version\": \"latest\"\r\n },\r\n \"verificationType\": \"unverified\",\r\n \"nodeAgentSKUId\": \"batch.node.windows amd64\",\r\n \"osType\": \"windows\"\r\n },\r\n {\r\n \"imageReference\": {\r\n \"publisher\": \"microsoft-dsvm\",\r\n \"offer\": \"dsvm-windows\",\r\n \"sku\": \"server-2016\",\r\n \"version\": \"latest\"\r\n },\r\n \"verificationType\": \"unverified\",\r\n \"nodeAgentSKUId\": \"batch.node.windows amd64\",\r\n \"osType\": \"windows\"\r\n },\r\n {\r\n \"imageReference\": {\r\n \"publisher\": \"microsoft-dsvm\",\r\n \"offer\": \"linux-data-science-vm-ubuntu\",\r\n \"sku\": \"linuxdsvmubuntu\",\r\n \"version\": \"latest\"\r\n },\r\n \"verificationType\": \"unverified\",\r\n \"nodeAgentSKUId\": \"batch.node.ubuntu 16.04\",\r\n \"capabilities\": [\r\n \"DockerCompatible\",\r\n \"NvidiaTeslaDriverInstalled\"\r\n ],\r\n \"batchSupportEndOfLife\": \"2021-05-21T00:00:00Z\",\r\n \"osType\": \"linux\"\r\n },\r\n {\r\n \"imageReference\": {\r\n \"publisher\": \"microsoft-dsvm\",\r\n \"offer\": \"ubuntu-1804\",\r\n \"sku\": \"1804\",\r\n \"version\": \"latest\"\r\n },\r\n \"verificationType\": \"unverified\",\r\n \"nodeAgentSKUId\": \"batch.node.ubuntu 18.04\",\r\n \"capabilities\": [\r\n \"NvidiaTeslaDriverInstalled\"\r\n ],\r\n \"osType\": \"linux\"\r\n },\r\n {\r\n \"imageReference\": {\r\n \"publisher\": \"microsoftwindowsserver\",\r\n \"offer\": \"windowsserver\",\r\n \"sku\": \"2008-r2-sp1\",\r\n \"version\": \"latest\"\r\n },\r\n \"verificationType\": \"verified\",\r\n \"nodeAgentSKUId\": \"batch.node.windows amd64\",\r\n \"osType\": \"windows\"\r\n },\r\n {\r\n \"imageReference\": {\r\n \"publisher\": \"microsoftwindowsserver\",\r\n \"offer\": \"windowsserver\",\r\n \"sku\": \"2008-r2-sp1-smalldisk\",\r\n \"version\": \"latest\"\r\n },\r\n \"verificationType\": \"verified\",\r\n \"nodeAgentSKUId\": \"batch.node.windows amd64\",\r\n \"osType\": \"windows\"\r\n },\r\n {\r\n \"imageReference\": {\r\n \"publisher\": \"microsoftwindowsserver\",\r\n \"offer\": \"windowsserver\",\r\n \"sku\": \"2012-datacenter\",\r\n \"version\": \"latest\"\r\n },\r\n \"verificationType\": \"verified\",\r\n \"nodeAgentSKUId\": \"batch.node.windows amd64\",\r\n \"osType\": \"windows\"\r\n },\r\n {\r\n \"imageReference\": {\r\n \"publisher\": \"microsoftwindowsserver\",\r\n \"offer\": \"windowsserver\",\r\n \"sku\": \"2012-datacenter-smalldisk\",\r\n \"version\": \"latest\"\r\n },\r\n \"verificationType\": \"verified\",\r\n \"nodeAgentSKUId\": \"batch.node.windows amd64\",\r\n \"osType\": \"windows\"\r\n },\r\n {\r\n \"imageReference\": {\r\n \"publisher\": \"microsoftwindowsserver\",\r\n \"offer\": \"windowsserver\",\r\n \"sku\": \"2012-r2-datacenter\",\r\n \"version\": \"latest\"\r\n },\r\n \"verificationType\": \"verified\",\r\n \"nodeAgentSKUId\": \"batch.node.windows amd64\",\r\n \"osType\": \"windows\"\r\n },\r\n {\r\n \"imageReference\": {\r\n \"publisher\": \"microsoftwindowsserver\",\r\n \"offer\": \"windowsserver\",\r\n \"sku\": \"2012-r2-datacenter-smalldisk\",\r\n \"version\": \"latest\"\r\n },\r\n \"verificationType\": \"verified\",\r\n \"nodeAgentSKUId\": \"batch.node.windows amd64\",\r\n \"osType\": \"windows\"\r\n },\r\n {\r\n \"imageReference\": {\r\n \"publisher\": \"microsoftwindowsserver\",\r\n \"offer\": \"windowsserver\",\r\n \"sku\": \"2016-datacenter\",\r\n \"version\": \"latest\"\r\n },\r\n \"verificationType\": \"verified\",\r\n \"nodeAgentSKUId\": \"batch.node.windows amd64\",\r\n \"osType\": \"windows\"\r\n },\r\n {\r\n \"imageReference\": {\r\n \"publisher\": \"microsoftwindowsserver\",\r\n \"offer\": \"windowsserver\",\r\n \"sku\": \"2016-datacenter-gs\",\r\n \"version\": \"latest\"\r\n },\r\n \"verificationType\": \"unverified\",\r\n \"nodeAgentSKUId\": \"batch.node.windows amd64\",\r\n \"osType\": \"windows\"\r\n },\r\n {\r\n \"imageReference\": {\r\n \"publisher\": \"microsoftwindowsserver\",\r\n \"offer\": \"windowsserver\",\r\n \"sku\": \"2016-datacenter-smalldisk\",\r\n \"version\": \"latest\"\r\n },\r\n \"verificationType\": \"verified\",\r\n \"nodeAgentSKUId\": \"batch.node.windows amd64\",\r\n \"osType\": \"windows\"\r\n },\r\n {\r\n \"imageReference\": {\r\n \"publisher\": \"microsoftwindowsserver\",\r\n \"offer\": \"windowsserver\",\r\n \"sku\": \"2016-datacenter-with-containers\",\r\n \"version\": \"latest\"\r\n },\r\n \"verificationType\": \"verified\",\r\n \"nodeAgentSKUId\": \"batch.node.windows amd64\",\r\n \"capabilities\": [\r\n \"DockerCompatible\"\r\n ],\r\n \"osType\": \"windows\"\r\n },\r\n {\r\n \"imageReference\": {\r\n \"publisher\": \"microsoftwindowsserver\",\r\n \"offer\": \"windowsserver\",\r\n \"sku\": \"2016-datacenter-with-containers-gs\",\r\n \"version\": \"latest\"\r\n },\r\n \"verificationType\": \"unverified\",\r\n \"nodeAgentSKUId\": \"batch.node.windows amd64\",\r\n \"osType\": \"windows\"\r\n },\r\n {\r\n \"imageReference\": {\r\n \"publisher\": \"microsoftwindowsserver\",\r\n \"offer\": \"windowsserver\",\r\n \"sku\": \"2019-datacenter\",\r\n \"version\": \"latest\"\r\n },\r\n \"verificationType\": \"verified\",\r\n \"nodeAgentSKUId\": \"batch.node.windows amd64\",\r\n \"osType\": \"windows\"\r\n },\r\n {\r\n \"imageReference\": {\r\n \"publisher\": \"microsoftwindowsserver\",\r\n \"offer\": \"windowsserver\",\r\n \"sku\": \"2019-datacenter-core\",\r\n \"version\": \"latest\"\r\n },\r\n \"verificationType\": \"verified\",\r\n \"nodeAgentSKUId\": \"batch.node.windows amd64\",\r\n \"osType\": \"windows\"\r\n },\r\n {\r\n \"imageReference\": {\r\n \"publisher\": \"microsoftwindowsserver\",\r\n \"offer\": \"windowsserver\",\r\n \"sku\": \"2019-datacenter-core-smalldisk\",\r\n \"version\": \"latest\"\r\n },\r\n \"verificationType\": \"verified\",\r\n \"nodeAgentSKUId\": \"batch.node.windows amd64\",\r\n \"osType\": \"windows\"\r\n },\r\n {\r\n \"imageReference\": {\r\n \"publisher\": \"microsoftwindowsserver\",\r\n \"offer\": \"windowsserver\",\r\n \"sku\": \"2019-datacenter-core-with-containers\",\r\n \"version\": \"latest\"\r\n },\r\n \"verificationType\": \"verified\",\r\n \"nodeAgentSKUId\": \"batch.node.windows amd64\",\r\n \"capabilities\": [\r\n \"DockerCompatible\"\r\n ],\r\n \"osType\": \"windows\"\r\n },\r\n {\r\n \"imageReference\": {\r\n \"publisher\": \"microsoftwindowsserver\",\r\n \"offer\": \"windowsserver\",\r\n \"sku\": \"2019-datacenter-core-with-containers-smalldisk\",\r\n \"version\": \"latest\"\r\n },\r\n \"verificationType\": \"verified\",\r\n \"nodeAgentSKUId\": \"batch.node.windows amd64\",\r\n \"capabilities\": [\r\n \"DockerCompatible\"\r\n ],\r\n \"osType\": \"windows\"\r\n },\r\n {\r\n \"imageReference\": {\r\n \"publisher\": \"microsoftwindowsserver\",\r\n \"offer\": \"windowsserver\",\r\n \"sku\": \"2019-datacenter-gs\",\r\n \"version\": \"latest\"\r\n },\r\n \"verificationType\": \"unverified\",\r\n \"nodeAgentSKUId\": \"batch.node.windows amd64\",\r\n \"osType\": \"windows\"\r\n },\r\n {\r\n \"imageReference\": {\r\n \"publisher\": \"microsoftwindowsserver\",\r\n \"offer\": \"windowsserver\",\r\n \"sku\": \"2019-datacenter-smalldisk\",\r\n \"version\": \"latest\"\r\n },\r\n \"verificationType\": \"verified\",\r\n \"nodeAgentSKUId\": \"batch.node.windows amd64\",\r\n \"osType\": \"windows\"\r\n },\r\n {\r\n \"imageReference\": {\r\n \"publisher\": \"microsoftwindowsserver\",\r\n \"offer\": \"windowsserver\",\r\n \"sku\": \"2019-datacenter-with-containers\",\r\n \"version\": \"latest\"\r\n },\r\n \"verificationType\": \"verified\",\r\n \"nodeAgentSKUId\": \"batch.node.windows amd64\",\r\n \"capabilities\": [\r\n \"DockerCompatible\"\r\n ],\r\n \"osType\": \"windows\"\r\n },\r\n {\r\n \"imageReference\": {\r\n \"publisher\": \"microsoftwindowsserver\",\r\n \"offer\": \"windowsserver\",\r\n \"sku\": \"2019-datacenter-with-containers-gs\",\r\n \"version\": \"latest\"\r\n },\r\n \"verificationType\": \"unverified\",\r\n \"nodeAgentSKUId\": \"batch.node.windows amd64\",\r\n \"osType\": \"windows\"\r\n },\r\n {\r\n \"imageReference\": {\r\n \"publisher\": \"microsoftwindowsserver\",\r\n \"offer\": \"windowsserver\",\r\n \"sku\": \"2019-datacenter-with-containers-smalldisk\",\r\n \"version\": \"latest\"\r\n },\r\n \"verificationType\": \"verified\",\r\n \"nodeAgentSKUId\": \"batch.node.windows amd64\",\r\n \"capabilities\": [\r\n \"DockerCompatible\"\r\n ],\r\n \"osType\": \"windows\"\r\n },\r\n {\r\n \"imageReference\": {\r\n \"publisher\": \"microsoftwindowsserver\",\r\n \"offer\": \"windowsserver\",\r\n \"sku\": \"datacenter-core-1903-with-containers-smalldisk\",\r\n \"version\": \"latest\"\r\n },\r\n \"verificationType\": \"unverified\",\r\n \"nodeAgentSKUId\": \"batch.node.windows amd64\",\r\n \"capabilities\": [\r\n \"DockerCompatible\"\r\n ],\r\n \"batchSupportEndOfLife\": \"2021-01-08T00:00:00Z\",\r\n \"osType\": \"windows\"\r\n },\r\n {\r\n \"imageReference\": {\r\n \"publisher\": \"microsoftwindowsserver\",\r\n \"offer\": \"windowsserversemiannual\",\r\n \"sku\": \"datacenter-core-1809-with-containers-smalldisk\",\r\n \"version\": \"latest\"\r\n },\r\n \"verificationType\": \"unverified\",\r\n \"nodeAgentSKUId\": \"batch.node.windows amd64\",\r\n \"capabilities\": [\r\n \"DockerCompatible\"\r\n ],\r\n \"batchSupportEndOfLife\": \"2020-06-12T00:00:00Z\",\r\n \"osType\": \"windows\"\r\n },\r\n {\r\n \"imageReference\": {\r\n \"publisher\": \"openlogic\",\r\n \"offer\": \"centos\",\r\n \"sku\": \"7.3\",\r\n \"version\": \"latest\"\r\n },\r\n \"verificationType\": \"unverified\",\r\n \"nodeAgentSKUId\": \"batch.node.centos 7\",\r\n \"osType\": \"linux\"\r\n },\r\n {\r\n \"imageReference\": {\r\n \"publisher\": \"openlogic\",\r\n \"offer\": \"centos\",\r\n \"sku\": \"7.4\",\r\n \"version\": \"latest\"\r\n },\r\n \"verificationType\": \"unverified\",\r\n \"nodeAgentSKUId\": \"batch.node.centos 7\",\r\n \"osType\": \"linux\"\r\n },\r\n {\r\n \"imageReference\": {\r\n \"publisher\": \"openlogic\",\r\n \"offer\": \"centos\",\r\n \"sku\": \"7.5\",\r\n \"version\": \"latest\"\r\n },\r\n \"verificationType\": \"unverified\",\r\n \"nodeAgentSKUId\": \"batch.node.centos 7\",\r\n \"osType\": \"linux\"\r\n },\r\n {\r\n \"imageReference\": {\r\n \"publisher\": \"openlogic\",\r\n \"offer\": \"centos\",\r\n \"sku\": \"7.6\",\r\n \"version\": \"latest\"\r\n },\r\n \"verificationType\": \"unverified\",\r\n \"nodeAgentSKUId\": \"batch.node.centos 7\",\r\n \"osType\": \"linux\"\r\n },\r\n {\r\n \"imageReference\": {\r\n \"publisher\": \"openlogic\",\r\n \"offer\": \"centos\",\r\n \"sku\": \"7.7\",\r\n \"version\": \"latest\"\r\n },\r\n \"verificationType\": \"verified\",\r\n \"nodeAgentSKUId\": \"batch.node.centos 7\",\r\n \"osType\": \"linux\"\r\n },\r\n {\r\n \"imageReference\": {\r\n \"publisher\": \"openlogic\",\r\n \"offer\": \"centos\",\r\n \"sku\": \"8_1\",\r\n \"version\": \"latest\"\r\n },\r\n \"verificationType\": \"verified\",\r\n \"nodeAgentSKUId\": \"batch.node.centos 8\",\r\n \"osType\": \"linux\"\r\n },\r\n {\r\n \"imageReference\": {\r\n \"publisher\": \"openlogic\",\r\n \"offer\": \"centos-hpc\",\r\n \"sku\": \"7.1\",\r\n \"version\": \"latest\"\r\n },\r\n \"verificationType\": \"unverified\",\r\n \"nodeAgentSKUId\": \"batch.node.centos 7\",\r\n \"capabilities\": [\r\n \"SupportsRDMAOnly\",\r\n \"IntelMPIRuntimeInstalled\"\r\n ],\r\n \"osType\": \"linux\"\r\n },\r\n {\r\n \"imageReference\": {\r\n \"publisher\": \"openlogic\",\r\n \"offer\": \"centos-hpc\",\r\n \"sku\": \"7.3\",\r\n \"version\": \"latest\"\r\n },\r\n \"verificationType\": \"unverified\",\r\n \"nodeAgentSKUId\": \"batch.node.centos 7\",\r\n \"capabilities\": [\r\n \"SupportsRDMAOnly\",\r\n \"IntelMPIRuntimeInstalled\"\r\n ],\r\n \"osType\": \"linux\"\r\n },\r\n {\r\n \"imageReference\": {\r\n \"publisher\": \"openlogic\",\r\n \"offer\": \"centos-hpc\",\r\n \"sku\": \"7.4\",\r\n \"version\": \"latest\"\r\n },\r\n \"verificationType\": \"verified\",\r\n \"nodeAgentSKUId\": \"batch.node.centos 7\",\r\n \"capabilities\": [\r\n \"SupportsRDMAOnly\",\r\n \"IntelMPIRuntimeInstalled\"\r\n ],\r\n \"osType\": \"linux\"\r\n },\r\n {\r\n \"imageReference\": {\r\n \"publisher\": \"openlogic\",\r\n \"offer\": \"centos-hpc\",\r\n \"sku\": \"7.6\",\r\n \"version\": \"latest\"\r\n },\r\n \"verificationType\": \"unverified\",\r\n \"nodeAgentSKUId\": \"batch.node.centos 7\",\r\n \"capabilities\": [\r\n \"SupportsRDMAOnly\",\r\n \"IntelMPIRuntimeInstalled\"\r\n ],\r\n \"osType\": \"linux\"\r\n },\r\n {\r\n \"imageReference\": {\r\n \"publisher\": \"openlogic\",\r\n \"offer\": \"centos-hpc\",\r\n \"sku\": \"7.7\",\r\n \"version\": \"latest\"\r\n },\r\n \"verificationType\": \"verified\",\r\n \"nodeAgentSKUId\": \"batch.node.centos 7\",\r\n \"capabilities\": [\r\n \"SupportsRDMAOnly\",\r\n \"IntelMPIRuntimeInstalled\"\r\n ],\r\n \"osType\": \"linux\"\r\n },\r\n {\r\n \"imageReference\": {\r\n \"publisher\": \"oracle\",\r\n \"offer\": \"oracle-linux\",\r\n \"sku\": \"7.4\",\r\n \"version\": \"latest\"\r\n },\r\n \"verificationType\": \"unverified\",\r\n \"nodeAgentSKUId\": \"batch.node.centos 7\",\r\n \"osType\": \"linux\"\r\n },\r\n {\r\n \"imageReference\": {\r\n \"publisher\": \"oracle\",\r\n \"offer\": \"oracle-linux\",\r\n \"sku\": \"7.5\",\r\n \"version\": \"latest\"\r\n },\r\n \"verificationType\": \"unverified\",\r\n \"nodeAgentSKUId\": \"batch.node.centos 7\",\r\n \"osType\": \"linux\"\r\n },\r\n {\r\n \"imageReference\": {\r\n \"publisher\": \"oracle\",\r\n \"offer\": \"oracle-linux\",\r\n \"sku\": \"7.6\",\r\n \"version\": \"latest\"\r\n },\r\n \"verificationType\": \"unverified\",\r\n \"nodeAgentSKUId\": \"batch.node.centos 7\",\r\n \"osType\": \"linux\"\r\n },\r\n {\r\n \"imageReference\": {\r\n \"publisher\": \"oracle\",\r\n \"offer\": \"oracle-linux\",\r\n \"sku\": \"77\",\r\n \"version\": \"latest\"\r\n },\r\n \"verificationType\": \"unverified\",\r\n \"nodeAgentSKUId\": \"batch.node.centos 7\",\r\n \"osType\": \"linux\"\r\n },\r\n {\r\n \"imageReference\": {\r\n \"publisher\": \"oracle\",\r\n \"offer\": \"oracle-linux\",\r\n \"sku\": \"81\",\r\n \"version\": \"latest\"\r\n },\r\n \"verificationType\": \"unverified\",\r\n \"nodeAgentSKUId\": \"batch.node.centos 8\",\r\n \"osType\": \"linux\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#supportedimages\",\r\n \"value\": [\r\n {\r\n \"imageReference\": {\r\n \"publisher\": \"batch\",\r\n \"offer\": \"rendering-centos73\",\r\n \"sku\": \"rendering\",\r\n \"version\": \"latest\"\r\n },\r\n \"verificationType\": \"verified\",\r\n \"nodeAgentSKUId\": \"batch.node.centos 7\",\r\n \"osType\": \"linux\"\r\n },\r\n {\r\n \"imageReference\": {\r\n \"publisher\": \"batch\",\r\n \"offer\": \"rendering-windows2016\",\r\n \"sku\": \"rendering\",\r\n \"version\": \"latest\"\r\n },\r\n \"verificationType\": \"verified\",\r\n \"nodeAgentSKUId\": \"batch.node.windows amd64\",\r\n \"osType\": \"windows\"\r\n },\r\n {\r\n \"imageReference\": {\r\n \"publisher\": \"canonical\",\r\n \"offer\": \"0001-com-ubuntu-server-focal\",\r\n \"sku\": \"20_04-lts\",\r\n \"version\": \"latest\"\r\n },\r\n \"verificationType\": \"verified\",\r\n \"nodeAgentSKUId\": \"batch.node.ubuntu 20.04\",\r\n \"osType\": \"linux\"\r\n },\r\n {\r\n \"imageReference\": {\r\n \"publisher\": \"canonical\",\r\n \"offer\": \"0001-com-ubuntu-server-focal\",\r\n \"sku\": \"20_04-lts-gen2\",\r\n \"version\": \"latest\"\r\n },\r\n \"verificationType\": \"verified\",\r\n \"nodeAgentSKUId\": \"batch.node.ubuntu 20.04\",\r\n \"capabilities\": [\r\n \"Generation2VMImage\"\r\n ],\r\n \"osType\": \"linux\"\r\n },\r\n {\r\n \"imageReference\": {\r\n \"publisher\": \"canonical\",\r\n \"offer\": \"ubuntuserver\",\r\n \"sku\": \"18.04-lts\",\r\n \"version\": \"latest\"\r\n },\r\n \"verificationType\": \"verified\",\r\n \"nodeAgentSKUId\": \"batch.node.ubuntu 18.04\",\r\n \"osType\": \"linux\"\r\n },\r\n {\r\n \"imageReference\": {\r\n \"publisher\": \"canonical\",\r\n \"offer\": \"ubuntuserver\",\r\n \"sku\": \"18_04-lts-gen2\",\r\n \"version\": \"latest\"\r\n },\r\n \"verificationType\": \"unverified\",\r\n \"nodeAgentSKUId\": \"batch.node.ubuntu 18.04\",\r\n \"capabilities\": [\r\n \"Generation2VMImage\"\r\n ],\r\n \"osType\": \"linux\"\r\n },\r\n {\r\n \"imageReference\": {\r\n \"publisher\": \"debian\",\r\n \"offer\": \"debian-10\",\r\n \"sku\": \"10\",\r\n \"version\": \"latest\"\r\n },\r\n \"verificationType\": \"verified\",\r\n \"nodeAgentSKUId\": \"batch.node.debian 10\",\r\n \"osType\": \"linux\"\r\n },\r\n {\r\n \"imageReference\": {\r\n \"publisher\": \"microsoft-azure-batch\",\r\n \"offer\": \"centos-container\",\r\n \"sku\": \"7-6\",\r\n \"version\": \"latest\"\r\n },\r\n \"verificationType\": \"unverified\",\r\n \"nodeAgentSKUId\": \"batch.node.centos 7\",\r\n \"capabilities\": [\r\n \"DockerCompatible\",\r\n \"NvidiaTeslaDriverInstalled\",\r\n \"NvidiaGridDriverInstalled\"\r\n ],\r\n \"osType\": \"linux\"\r\n },\r\n {\r\n \"imageReference\": {\r\n \"publisher\": \"microsoft-azure-batch\",\r\n \"offer\": \"centos-container\",\r\n \"sku\": \"7-7\",\r\n \"version\": \"latest\"\r\n },\r\n \"verificationType\": \"unverified\",\r\n \"nodeAgentSKUId\": \"batch.node.centos 7\",\r\n \"capabilities\": [\r\n \"DockerCompatible\",\r\n \"NvidiaTeslaDriverInstalled\",\r\n \"NvidiaGridDriverInstalled\"\r\n ],\r\n \"osType\": \"linux\"\r\n },\r\n {\r\n \"imageReference\": {\r\n \"publisher\": \"microsoft-azure-batch\",\r\n \"offer\": \"centos-container\",\r\n \"sku\": \"7-8\",\r\n \"version\": \"latest\"\r\n },\r\n \"verificationType\": \"verified\",\r\n \"nodeAgentSKUId\": \"batch.node.centos 7\",\r\n \"capabilities\": [\r\n \"DockerCompatible\",\r\n \"NvidiaTeslaDriverInstalled\",\r\n \"NvidiaGridDriverInstalled\"\r\n ],\r\n \"osType\": \"linux\"\r\n },\r\n {\r\n \"imageReference\": {\r\n \"publisher\": \"microsoft-azure-batch\",\r\n \"offer\": \"centos-container\",\r\n \"sku\": \"8-2\",\r\n \"version\": \"latest\"\r\n },\r\n \"verificationType\": \"verified\",\r\n \"nodeAgentSKUId\": \"batch.node.centos 8\",\r\n \"capabilities\": [\r\n \"DockerCompatible\",\r\n \"NvidiaTeslaDriverInstalled\",\r\n \"NvidiaGridDriverInstalled\"\r\n ],\r\n \"batchSupportEndOfLife\": \"2021-12-31T00:00:00Z\",\r\n \"osType\": \"linux\"\r\n },\r\n {\r\n \"imageReference\": {\r\n \"publisher\": \"microsoft-azure-batch\",\r\n \"offer\": \"centos-container-rdma\",\r\n \"sku\": \"7-6\",\r\n \"version\": \"latest\"\r\n },\r\n \"verificationType\": \"unverified\",\r\n \"nodeAgentSKUId\": \"batch.node.centos 7\",\r\n \"capabilities\": [\r\n \"DockerCompatible\",\r\n \"NvidiaTeslaDriverInstalled\",\r\n \"SupportsRDMAOnly\",\r\n \"IntelMPIRuntimeInstalled\"\r\n ],\r\n \"osType\": \"linux\"\r\n },\r\n {\r\n \"imageReference\": {\r\n \"publisher\": \"microsoft-azure-batch\",\r\n \"offer\": \"centos-container-rdma\",\r\n \"sku\": \"7-7\",\r\n \"version\": \"latest\"\r\n },\r\n \"verificationType\": \"unverified\",\r\n \"nodeAgentSKUId\": \"batch.node.centos 7\",\r\n \"capabilities\": [\r\n \"DockerCompatible\",\r\n \"NvidiaTeslaDriverInstalled\",\r\n \"SupportsRDMAOnly\",\r\n \"IntelMPIRuntimeInstalled\"\r\n ],\r\n \"osType\": \"linux\"\r\n },\r\n {\r\n \"imageReference\": {\r\n \"publisher\": \"microsoft-azure-batch\",\r\n \"offer\": \"centos-container-rdma\",\r\n \"sku\": \"7-8\",\r\n \"version\": \"latest\"\r\n },\r\n \"verificationType\": \"verified\",\r\n \"nodeAgentSKUId\": \"batch.node.centos 7\",\r\n \"capabilities\": [\r\n \"DockerCompatible\",\r\n \"NvidiaTeslaDriverInstalled\",\r\n \"SupportsRDMAOnly\",\r\n \"IntelMPIRuntimeInstalled\"\r\n ],\r\n \"osType\": \"linux\"\r\n },\r\n {\r\n \"imageReference\": {\r\n \"publisher\": \"microsoft-azure-batch\",\r\n \"offer\": \"centos-container-rdma\",\r\n \"sku\": \"8-1\",\r\n \"version\": \"latest\"\r\n },\r\n \"verificationType\": \"verified\",\r\n \"nodeAgentSKUId\": \"batch.node.centos 8\",\r\n \"capabilities\": [\r\n \"DockerCompatible\",\r\n \"NvidiaTeslaDriverInstalled\",\r\n \"SupportsRDMAOnly\",\r\n \"IntelMPIRuntimeInstalled\"\r\n ],\r\n \"batchSupportEndOfLife\": \"2021-12-31T00:00:00Z\",\r\n \"osType\": \"linux\"\r\n },\r\n {\r\n \"imageReference\": {\r\n \"publisher\": \"microsoft-azure-batch\",\r\n \"offer\": \"ubuntu-server-container\",\r\n \"sku\": \"20-04-lts\",\r\n \"version\": \"latest\"\r\n },\r\n \"verificationType\": \"verified\",\r\n \"nodeAgentSKUId\": \"batch.node.ubuntu 20.04\",\r\n \"capabilities\": [\r\n \"DockerCompatible\",\r\n \"NvidiaTeslaDriverInstalled\",\r\n \"NvidiaGridDriverInstalled\"\r\n ],\r\n \"osType\": \"linux\"\r\n },\r\n {\r\n \"imageReference\": {\r\n \"publisher\": \"microsoft-azure-batch\",\r\n \"offer\": \"ubuntu-server-container-rdma\",\r\n \"sku\": \"20-04-lts\",\r\n \"version\": \"latest\"\r\n },\r\n \"verificationType\": \"verified\",\r\n \"nodeAgentSKUId\": \"batch.node.ubuntu 20.04\",\r\n \"capabilities\": [\r\n \"DockerCompatible\",\r\n \"NvidiaTeslaDriverInstalled\",\r\n \"SupportsRDMAOnly\",\r\n \"IntelMPIRuntimeInstalled\"\r\n ],\r\n \"osType\": \"linux\"\r\n },\r\n {\r\n \"imageReference\": {\r\n \"publisher\": \"microsoft-dsvm\",\r\n \"offer\": \"dsvm-win-2019\",\r\n \"sku\": \"server-2019\",\r\n \"version\": \"latest\"\r\n },\r\n \"verificationType\": \"unverified\",\r\n \"nodeAgentSKUId\": \"batch.node.windows amd64\",\r\n \"osType\": \"windows\"\r\n },\r\n {\r\n \"imageReference\": {\r\n \"publisher\": \"microsoft-dsvm\",\r\n \"offer\": \"ubuntu-1804\",\r\n \"sku\": \"1804\",\r\n \"version\": \"latest\"\r\n },\r\n \"verificationType\": \"unverified\",\r\n \"nodeAgentSKUId\": \"batch.node.ubuntu 18.04\",\r\n \"capabilities\": [\r\n \"NvidiaTeslaDriverInstalled\"\r\n ],\r\n \"osType\": \"linux\"\r\n },\r\n {\r\n \"imageReference\": {\r\n \"publisher\": \"microsoft-dsvm\",\r\n \"offer\": \"ubuntu-hpc\",\r\n \"sku\": \"1804\",\r\n \"version\": \"latest\"\r\n },\r\n \"verificationType\": \"unverified\",\r\n \"nodeAgentSKUId\": \"batch.node.ubuntu 18.04\",\r\n \"capabilities\": [\r\n \"SupportsRDMAOnly\",\r\n \"Generation2VMImage\",\r\n \"IntelMPIRuntimeInstalled\"\r\n ],\r\n \"osType\": \"linux\"\r\n },\r\n {\r\n \"imageReference\": {\r\n \"publisher\": \"microsoft-dsvm\",\r\n \"offer\": \"ubuntu-hpc\",\r\n \"sku\": \"2004\",\r\n \"version\": \"latest\"\r\n },\r\n \"verificationType\": \"unverified\",\r\n \"nodeAgentSKUId\": \"batch.node.ubuntu 20.04\",\r\n \"capabilities\": [\r\n \"SupportsRDMAOnly\",\r\n \"Generation2VMImage\",\r\n \"IntelMPIRuntimeInstalled\"\r\n ],\r\n \"osType\": \"linux\"\r\n },\r\n {\r\n \"imageReference\": {\r\n \"publisher\": \"microsoftwindowsserver\",\r\n \"offer\": \"windowsserver\",\r\n \"sku\": \"2008-r2-sp1\",\r\n \"version\": \"latest\"\r\n },\r\n \"verificationType\": \"unverified\",\r\n \"nodeAgentSKUId\": \"batch.node.windows amd64\",\r\n \"batchSupportEndOfLife\": \"2020-02-14T00:00:00Z\",\r\n \"osType\": \"windows\"\r\n },\r\n {\r\n \"imageReference\": {\r\n \"publisher\": \"microsoftwindowsserver\",\r\n \"offer\": \"windowsserver\",\r\n \"sku\": \"2008-r2-sp1-smalldisk\",\r\n \"version\": \"latest\"\r\n },\r\n \"verificationType\": \"unverified\",\r\n \"nodeAgentSKUId\": \"batch.node.windows amd64\",\r\n \"batchSupportEndOfLife\": \"2020-02-14T00:00:00Z\",\r\n \"osType\": \"windows\"\r\n },\r\n {\r\n \"imageReference\": {\r\n \"publisher\": \"microsoftwindowsserver\",\r\n \"offer\": \"windowsserver\",\r\n \"sku\": \"2012-datacenter\",\r\n \"version\": \"latest\"\r\n },\r\n \"verificationType\": \"verified\",\r\n \"nodeAgentSKUId\": \"batch.node.windows amd64\",\r\n \"osType\": \"windows\"\r\n },\r\n {\r\n \"imageReference\": {\r\n \"publisher\": \"microsoftwindowsserver\",\r\n \"offer\": \"windowsserver\",\r\n \"sku\": \"2012-datacenter-smalldisk\",\r\n \"version\": \"latest\"\r\n },\r\n \"verificationType\": \"verified\",\r\n \"nodeAgentSKUId\": \"batch.node.windows amd64\",\r\n \"osType\": \"windows\"\r\n },\r\n {\r\n \"imageReference\": {\r\n \"publisher\": \"microsoftwindowsserver\",\r\n \"offer\": \"windowsserver\",\r\n \"sku\": \"2012-r2-datacenter\",\r\n \"version\": \"latest\"\r\n },\r\n \"verificationType\": \"verified\",\r\n \"nodeAgentSKUId\": \"batch.node.windows amd64\",\r\n \"osType\": \"windows\"\r\n },\r\n {\r\n \"imageReference\": {\r\n \"publisher\": \"microsoftwindowsserver\",\r\n \"offer\": \"windowsserver\",\r\n \"sku\": \"2012-r2-datacenter-smalldisk\",\r\n \"version\": \"latest\"\r\n },\r\n \"verificationType\": \"verified\",\r\n \"nodeAgentSKUId\": \"batch.node.windows amd64\",\r\n \"osType\": \"windows\"\r\n },\r\n {\r\n \"imageReference\": {\r\n \"publisher\": \"microsoftwindowsserver\",\r\n \"offer\": \"windowsserver\",\r\n \"sku\": \"2016-datacenter\",\r\n \"version\": \"latest\"\r\n },\r\n \"verificationType\": \"verified\",\r\n \"nodeAgentSKUId\": \"batch.node.windows amd64\",\r\n \"osType\": \"windows\"\r\n },\r\n {\r\n \"imageReference\": {\r\n \"publisher\": \"microsoftwindowsserver\",\r\n \"offer\": \"windowsserver\",\r\n \"sku\": \"2016-datacenter-gensecond\",\r\n \"version\": \"latest\"\r\n },\r\n \"verificationType\": \"unverified\",\r\n \"nodeAgentSKUId\": \"batch.node.windows amd64\",\r\n \"capabilities\": [\r\n \"Generation2VMImage\"\r\n ],\r\n \"osType\": \"windows\"\r\n },\r\n {\r\n \"imageReference\": {\r\n \"publisher\": \"microsoftwindowsserver\",\r\n \"offer\": \"windowsserver\",\r\n \"sku\": \"2016-datacenter-gs\",\r\n \"version\": \"latest\"\r\n },\r\n \"verificationType\": \"unverified\",\r\n \"nodeAgentSKUId\": \"batch.node.windows amd64\",\r\n \"osType\": \"windows\"\r\n },\r\n {\r\n \"imageReference\": {\r\n \"publisher\": \"microsoftwindowsserver\",\r\n \"offer\": \"windowsserver\",\r\n \"sku\": \"2016-datacenter-smalldisk\",\r\n \"version\": \"latest\"\r\n },\r\n \"verificationType\": \"verified\",\r\n \"nodeAgentSKUId\": \"batch.node.windows amd64\",\r\n \"osType\": \"windows\"\r\n },\r\n {\r\n \"imageReference\": {\r\n \"publisher\": \"microsoftwindowsserver\",\r\n \"offer\": \"windowsserver\",\r\n \"sku\": \"2016-datacenter-smalldisk-g2\",\r\n \"version\": \"latest\"\r\n },\r\n \"verificationType\": \"unverified\",\r\n \"nodeAgentSKUId\": \"batch.node.windows amd64\",\r\n \"capabilities\": [\r\n \"Generation2VMImage\"\r\n ],\r\n \"osType\": \"windows\"\r\n },\r\n {\r\n \"imageReference\": {\r\n \"publisher\": \"microsoftwindowsserver\",\r\n \"offer\": \"windowsserver\",\r\n \"sku\": \"2016-datacenter-with-containers\",\r\n \"version\": \"latest\"\r\n },\r\n \"verificationType\": \"verified\",\r\n \"nodeAgentSKUId\": \"batch.node.windows amd64\",\r\n \"capabilities\": [\r\n \"DockerCompatible\"\r\n ],\r\n \"osType\": \"windows\"\r\n },\r\n {\r\n \"imageReference\": {\r\n \"publisher\": \"microsoftwindowsserver\",\r\n \"offer\": \"windowsserver\",\r\n \"sku\": \"2016-datacenter-with-containers-gs\",\r\n \"version\": \"latest\"\r\n },\r\n \"verificationType\": \"unverified\",\r\n \"nodeAgentSKUId\": \"batch.node.windows amd64\",\r\n \"capabilities\": [\r\n \"DockerCompatible\"\r\n ],\r\n \"osType\": \"windows\"\r\n },\r\n {\r\n \"imageReference\": {\r\n \"publisher\": \"microsoftwindowsserver\",\r\n \"offer\": \"windowsserver\",\r\n \"sku\": \"2019-datacenter\",\r\n \"version\": \"latest\"\r\n },\r\n \"verificationType\": \"verified\",\r\n \"nodeAgentSKUId\": \"batch.node.windows amd64\",\r\n \"osType\": \"windows\"\r\n },\r\n {\r\n \"imageReference\": {\r\n \"publisher\": \"microsoftwindowsserver\",\r\n \"offer\": \"windowsserver\",\r\n \"sku\": \"2019-datacenter-core\",\r\n \"version\": \"latest\"\r\n },\r\n \"verificationType\": \"verified\",\r\n \"nodeAgentSKUId\": \"batch.node.windows amd64\",\r\n \"osType\": \"windows\"\r\n },\r\n {\r\n \"imageReference\": {\r\n \"publisher\": \"microsoftwindowsserver\",\r\n \"offer\": \"windowsserver\",\r\n \"sku\": \"2019-datacenter-core-g2\",\r\n \"version\": \"latest\"\r\n },\r\n \"verificationType\": \"unverified\",\r\n \"nodeAgentSKUId\": \"batch.node.windows amd64\",\r\n \"capabilities\": [\r\n \"Generation2VMImage\"\r\n ],\r\n \"osType\": \"windows\"\r\n },\r\n {\r\n \"imageReference\": {\r\n \"publisher\": \"microsoftwindowsserver\",\r\n \"offer\": \"windowsserver\",\r\n \"sku\": \"2019-datacenter-core-smalldisk\",\r\n \"version\": \"latest\"\r\n },\r\n \"verificationType\": \"verified\",\r\n \"nodeAgentSKUId\": \"batch.node.windows amd64\",\r\n \"osType\": \"windows\"\r\n },\r\n {\r\n \"imageReference\": {\r\n \"publisher\": \"microsoftwindowsserver\",\r\n \"offer\": \"windowsserver\",\r\n \"sku\": \"2019-datacenter-core-smalldisk-g2\",\r\n \"version\": \"latest\"\r\n },\r\n \"verificationType\": \"unverified\",\r\n \"nodeAgentSKUId\": \"batch.node.windows amd64\",\r\n \"capabilities\": [\r\n \"Generation2VMImage\"\r\n ],\r\n \"osType\": \"windows\"\r\n },\r\n {\r\n \"imageReference\": {\r\n \"publisher\": \"microsoftwindowsserver\",\r\n \"offer\": \"windowsserver\",\r\n \"sku\": \"2019-datacenter-core-with-containers\",\r\n \"version\": \"latest\"\r\n },\r\n \"verificationType\": \"verified\",\r\n \"nodeAgentSKUId\": \"batch.node.windows amd64\",\r\n \"capabilities\": [\r\n \"DockerCompatible\"\r\n ],\r\n \"osType\": \"windows\"\r\n },\r\n {\r\n \"imageReference\": {\r\n \"publisher\": \"microsoftwindowsserver\",\r\n \"offer\": \"windowsserver\",\r\n \"sku\": \"2019-datacenter-core-with-containers-g2\",\r\n \"version\": \"latest\"\r\n },\r\n \"verificationType\": \"unverified\",\r\n \"nodeAgentSKUId\": \"batch.node.windows amd64\",\r\n \"capabilities\": [\r\n \"DockerCompatible\",\r\n \"Generation2VMImage\"\r\n ],\r\n \"osType\": \"windows\"\r\n },\r\n {\r\n \"imageReference\": {\r\n \"publisher\": \"microsoftwindowsserver\",\r\n \"offer\": \"windowsserver\",\r\n \"sku\": \"2019-datacenter-core-with-containers-smalldisk\",\r\n \"version\": \"latest\"\r\n },\r\n \"verificationType\": \"verified\",\r\n \"nodeAgentSKUId\": \"batch.node.windows amd64\",\r\n \"capabilities\": [\r\n \"DockerCompatible\"\r\n ],\r\n \"osType\": \"windows\"\r\n },\r\n {\r\n \"imageReference\": {\r\n \"publisher\": \"microsoftwindowsserver\",\r\n \"offer\": \"windowsserver\",\r\n \"sku\": \"2019-datacenter-gensecond\",\r\n \"version\": \"latest\"\r\n },\r\n \"verificationType\": \"unverified\",\r\n \"nodeAgentSKUId\": \"batch.node.windows amd64\",\r\n \"capabilities\": [\r\n \"Generation2VMImage\"\r\n ],\r\n \"osType\": \"windows\"\r\n },\r\n {\r\n \"imageReference\": {\r\n \"publisher\": \"microsoftwindowsserver\",\r\n \"offer\": \"windowsserver\",\r\n \"sku\": \"2019-datacenter-gs\",\r\n \"version\": \"latest\"\r\n },\r\n \"verificationType\": \"unverified\",\r\n \"nodeAgentSKUId\": \"batch.node.windows amd64\",\r\n \"osType\": \"windows\"\r\n },\r\n {\r\n \"imageReference\": {\r\n \"publisher\": \"microsoftwindowsserver\",\r\n \"offer\": \"windowsserver\",\r\n \"sku\": \"2019-datacenter-smalldisk\",\r\n \"version\": \"latest\"\r\n },\r\n \"verificationType\": \"verified\",\r\n \"nodeAgentSKUId\": \"batch.node.windows amd64\",\r\n \"osType\": \"windows\"\r\n },\r\n {\r\n \"imageReference\": {\r\n \"publisher\": \"microsoftwindowsserver\",\r\n \"offer\": \"windowsserver\",\r\n \"sku\": \"2019-datacenter-smalldisk-g2\",\r\n \"version\": \"latest\"\r\n },\r\n \"verificationType\": \"unverified\",\r\n \"nodeAgentSKUId\": \"batch.node.windows amd64\",\r\n \"capabilities\": [\r\n \"Generation2VMImage\"\r\n ],\r\n \"osType\": \"windows\"\r\n },\r\n {\r\n \"imageReference\": {\r\n \"publisher\": \"microsoftwindowsserver\",\r\n \"offer\": \"windowsserver\",\r\n \"sku\": \"2019-datacenter-with-containers\",\r\n \"version\": \"latest\"\r\n },\r\n \"verificationType\": \"verified\",\r\n \"nodeAgentSKUId\": \"batch.node.windows amd64\",\r\n \"capabilities\": [\r\n \"DockerCompatible\"\r\n ],\r\n \"osType\": \"windows\"\r\n },\r\n {\r\n \"imageReference\": {\r\n \"publisher\": \"microsoftwindowsserver\",\r\n \"offer\": \"windowsserver\",\r\n \"sku\": \"2019-datacenter-with-containers-g2\",\r\n \"version\": \"latest\"\r\n },\r\n \"verificationType\": \"unverified\",\r\n \"nodeAgentSKUId\": \"batch.node.windows amd64\",\r\n \"capabilities\": [\r\n \"DockerCompatible\",\r\n \"Generation2VMImage\"\r\n ],\r\n \"osType\": \"windows\"\r\n },\r\n {\r\n \"imageReference\": {\r\n \"publisher\": \"microsoftwindowsserver\",\r\n \"offer\": \"windowsserver\",\r\n \"sku\": \"2019-datacenter-with-containers-gs\",\r\n \"version\": \"latest\"\r\n },\r\n \"verificationType\": \"unverified\",\r\n \"nodeAgentSKUId\": \"batch.node.windows amd64\",\r\n \"capabilities\": [\r\n \"DockerCompatible\"\r\n ],\r\n \"osType\": \"windows\"\r\n },\r\n {\r\n \"imageReference\": {\r\n \"publisher\": \"microsoftwindowsserver\",\r\n \"offer\": \"windowsserver\",\r\n \"sku\": \"2019-datacenter-with-containers-smalldisk\",\r\n \"version\": \"latest\"\r\n },\r\n \"verificationType\": \"verified\",\r\n \"nodeAgentSKUId\": \"batch.node.windows amd64\",\r\n \"capabilities\": [\r\n \"DockerCompatible\"\r\n ],\r\n \"osType\": \"windows\"\r\n },\r\n {\r\n \"imageReference\": {\r\n \"publisher\": \"microsoftwindowsserver\",\r\n \"offer\": \"windowsserver\",\r\n \"sku\": \"datacenter-core-2004-with-containers-smalldisk\",\r\n \"version\": \"latest\"\r\n },\r\n \"verificationType\": \"unverified\",\r\n \"nodeAgentSKUId\": \"batch.node.windows amd64\",\r\n \"capabilities\": [\r\n \"DockerCompatible\"\r\n ],\r\n \"batchSupportEndOfLife\": \"2022-01-14T00:00:00Z\",\r\n \"osType\": \"windows\"\r\n },\r\n {\r\n \"imageReference\": {\r\n \"publisher\": \"microsoftwindowsserver\",\r\n \"offer\": \"windowsserver\",\r\n \"sku\": \"datacenter-core-20h2-with-containers-smalldisk\",\r\n \"version\": \"latest\"\r\n },\r\n \"verificationType\": \"unverified\",\r\n \"nodeAgentSKUId\": \"batch.node.windows amd64\",\r\n \"capabilities\": [\r\n \"DockerCompatible\"\r\n ],\r\n \"osType\": \"windows\"\r\n },\r\n {\r\n \"imageReference\": {\r\n \"publisher\": \"microsoftwindowsserver\",\r\n \"offer\": \"windowsserver\",\r\n \"sku\": \"datacenter-core-20h2-with-containers-smalldisk-g2\",\r\n \"version\": \"latest\"\r\n },\r\n \"verificationType\": \"unverified\",\r\n \"nodeAgentSKUId\": \"batch.node.windows amd64\",\r\n \"capabilities\": [\r\n \"DockerCompatible\",\r\n \"Generation2VMImage\"\r\n ],\r\n \"osType\": \"windows\"\r\n },\r\n {\r\n \"imageReference\": {\r\n \"publisher\": \"microsoftwindowsserver\",\r\n \"offer\": \"windowsserver\",\r\n \"sku\": \"datacenter-core-20h2-with-containers-smalldisk-gs\",\r\n \"version\": \"latest\"\r\n },\r\n \"verificationType\": \"unverified\",\r\n \"nodeAgentSKUId\": \"batch.node.windows amd64\",\r\n \"capabilities\": [\r\n \"DockerCompatible\"\r\n ],\r\n \"osType\": \"windows\"\r\n },\r\n {\r\n \"imageReference\": {\r\n \"publisher\": \"openlogic\",\r\n \"offer\": \"centos\",\r\n \"sku\": \"7.3\",\r\n \"version\": \"latest\"\r\n },\r\n \"verificationType\": \"unverified\",\r\n \"nodeAgentSKUId\": \"batch.node.centos 7\",\r\n \"osType\": \"linux\"\r\n },\r\n {\r\n \"imageReference\": {\r\n \"publisher\": \"openlogic\",\r\n \"offer\": \"centos\",\r\n \"sku\": \"7.4\",\r\n \"version\": \"latest\"\r\n },\r\n \"verificationType\": \"unverified\",\r\n \"nodeAgentSKUId\": \"batch.node.centos 7\",\r\n \"osType\": \"linux\"\r\n },\r\n {\r\n \"imageReference\": {\r\n \"publisher\": \"openlogic\",\r\n \"offer\": \"centos\",\r\n \"sku\": \"7.5\",\r\n \"version\": \"latest\"\r\n },\r\n \"verificationType\": \"unverified\",\r\n \"nodeAgentSKUId\": \"batch.node.centos 7\",\r\n \"osType\": \"linux\"\r\n },\r\n {\r\n \"imageReference\": {\r\n \"publisher\": \"openlogic\",\r\n \"offer\": \"centos\",\r\n \"sku\": \"7.6\",\r\n \"version\": \"latest\"\r\n },\r\n \"verificationType\": \"unverified\",\r\n \"nodeAgentSKUId\": \"batch.node.centos 7\",\r\n \"osType\": \"linux\"\r\n },\r\n {\r\n \"imageReference\": {\r\n \"publisher\": \"openlogic\",\r\n \"offer\": \"centos\",\r\n \"sku\": \"7.7\",\r\n \"version\": \"latest\"\r\n },\r\n \"verificationType\": \"unverified\",\r\n \"nodeAgentSKUId\": \"batch.node.centos 7\",\r\n \"osType\": \"linux\"\r\n },\r\n {\r\n \"imageReference\": {\r\n \"publisher\": \"openlogic\",\r\n \"offer\": \"centos\",\r\n \"sku\": \"7_8\",\r\n \"version\": \"latest\"\r\n },\r\n \"verificationType\": \"verified\",\r\n \"nodeAgentSKUId\": \"batch.node.centos 7\",\r\n \"osType\": \"linux\"\r\n },\r\n {\r\n \"imageReference\": {\r\n \"publisher\": \"openlogic\",\r\n \"offer\": \"centos\",\r\n \"sku\": \"7_8-gen2\",\r\n \"version\": \"latest\"\r\n },\r\n \"verificationType\": \"unverified\",\r\n \"nodeAgentSKUId\": \"batch.node.centos 7\",\r\n \"capabilities\": [\r\n \"Generation2VMImage\"\r\n ],\r\n \"osType\": \"linux\"\r\n },\r\n {\r\n \"imageReference\": {\r\n \"publisher\": \"openlogic\",\r\n \"offer\": \"centos\",\r\n \"sku\": \"8_1\",\r\n \"version\": \"latest\"\r\n },\r\n \"verificationType\": \"unverified\",\r\n \"nodeAgentSKUId\": \"batch.node.centos 8\",\r\n \"batchSupportEndOfLife\": \"2021-12-31T00:00:00Z\",\r\n \"osType\": \"linux\"\r\n },\r\n {\r\n \"imageReference\": {\r\n \"publisher\": \"openlogic\",\r\n \"offer\": \"centos\",\r\n \"sku\": \"8_2\",\r\n \"version\": \"latest\"\r\n },\r\n \"verificationType\": \"verified\",\r\n \"nodeAgentSKUId\": \"batch.node.centos 8\",\r\n \"batchSupportEndOfLife\": \"2021-12-31T00:00:00Z\",\r\n \"osType\": \"linux\"\r\n },\r\n {\r\n \"imageReference\": {\r\n \"publisher\": \"openlogic\",\r\n \"offer\": \"centos\",\r\n \"sku\": \"8_2-gen2\",\r\n \"version\": \"latest\"\r\n },\r\n \"verificationType\": \"unverified\",\r\n \"nodeAgentSKUId\": \"batch.node.centos 8\",\r\n \"capabilities\": [\r\n \"Generation2VMImage\"\r\n ],\r\n \"batchSupportEndOfLife\": \"2021-12-31T00:00:00Z\",\r\n \"osType\": \"linux\"\r\n },\r\n {\r\n \"imageReference\": {\r\n \"publisher\": \"openlogic\",\r\n \"offer\": \"centos-hpc\",\r\n \"sku\": \"7.3\",\r\n \"version\": \"latest\"\r\n },\r\n \"verificationType\": \"unverified\",\r\n \"nodeAgentSKUId\": \"batch.node.centos 7\",\r\n \"capabilities\": [\r\n \"SupportsRDMAOnly\",\r\n \"IntelMPIRuntimeInstalled\"\r\n ],\r\n \"osType\": \"linux\"\r\n },\r\n {\r\n \"imageReference\": {\r\n \"publisher\": \"openlogic\",\r\n \"offer\": \"centos-hpc\",\r\n \"sku\": \"7.4\",\r\n \"version\": \"latest\"\r\n },\r\n \"verificationType\": \"verified\",\r\n \"nodeAgentSKUId\": \"batch.node.centos 7\",\r\n \"capabilities\": [\r\n \"SupportsRDMAOnly\",\r\n \"IntelMPIRuntimeInstalled\"\r\n ],\r\n \"osType\": \"linux\"\r\n },\r\n {\r\n \"imageReference\": {\r\n \"publisher\": \"openlogic\",\r\n \"offer\": \"centos-hpc\",\r\n \"sku\": \"7.6\",\r\n \"version\": \"latest\"\r\n },\r\n \"verificationType\": \"unverified\",\r\n \"nodeAgentSKUId\": \"batch.node.centos 7\",\r\n \"capabilities\": [\r\n \"SupportsRDMAOnly\",\r\n \"IntelMPIRuntimeInstalled\"\r\n ],\r\n \"osType\": \"linux\"\r\n },\r\n {\r\n \"imageReference\": {\r\n \"publisher\": \"openlogic\",\r\n \"offer\": \"centos-hpc\",\r\n \"sku\": \"7.7\",\r\n \"version\": \"latest\"\r\n },\r\n \"verificationType\": \"verified\",\r\n \"nodeAgentSKUId\": \"batch.node.centos 7\",\r\n \"capabilities\": [\r\n \"SupportsRDMAOnly\",\r\n \"IntelMPIRuntimeInstalled\"\r\n ],\r\n \"osType\": \"linux\"\r\n },\r\n {\r\n \"imageReference\": {\r\n \"publisher\": \"openlogic\",\r\n \"offer\": \"centos-hpc\",\r\n \"sku\": \"7_7-gen2\",\r\n \"version\": \"latest\"\r\n },\r\n \"verificationType\": \"unverified\",\r\n \"nodeAgentSKUId\": \"batch.node.centos 7\",\r\n \"capabilities\": [\r\n \"SupportsRDMAOnly\",\r\n \"IntelMPIRuntimeInstalled\",\r\n \"Generation2VMImage\"\r\n ],\r\n \"osType\": \"linux\"\r\n },\r\n {\r\n \"imageReference\": {\r\n \"publisher\": \"openlogic\",\r\n \"offer\": \"centos-hpc\",\r\n \"sku\": \"8_1\",\r\n \"version\": \"latest\"\r\n },\r\n \"verificationType\": \"unverified\",\r\n \"nodeAgentSKUId\": \"batch.node.centos 8\",\r\n \"capabilities\": [\r\n \"SupportsRDMAOnly\",\r\n \"IntelMPIRuntimeInstalled\"\r\n ],\r\n \"osType\": \"linux\"\r\n },\r\n {\r\n \"imageReference\": {\r\n \"publisher\": \"openlogic\",\r\n \"offer\": \"centos-hpc\",\r\n \"sku\": \"8_1-gen2\",\r\n \"version\": \"latest\"\r\n },\r\n \"verificationType\": \"unverified\",\r\n \"nodeAgentSKUId\": \"batch.node.centos 8\",\r\n \"capabilities\": [\r\n \"SupportsRDMAOnly\",\r\n \"IntelMPIRuntimeInstalled\",\r\n \"Generation2VMImage\"\r\n ],\r\n \"osType\": \"linux\"\r\n },\r\n {\r\n \"imageReference\": {\r\n \"publisher\": \"oracle\",\r\n \"offer\": \"oracle-linux\",\r\n \"sku\": \"7.4\",\r\n \"version\": \"latest\"\r\n },\r\n \"verificationType\": \"unverified\",\r\n \"nodeAgentSKUId\": \"batch.node.centos 7\",\r\n \"osType\": \"linux\"\r\n },\r\n {\r\n \"imageReference\": {\r\n \"publisher\": \"oracle\",\r\n \"offer\": \"oracle-linux\",\r\n \"sku\": \"78\",\r\n \"version\": \"latest\"\r\n },\r\n \"verificationType\": \"unverified\",\r\n \"nodeAgentSKUId\": \"batch.node.centos 7\",\r\n \"osType\": \"linux\"\r\n },\r\n {\r\n \"imageReference\": {\r\n \"publisher\": \"oracle\",\r\n \"offer\": \"oracle-linux\",\r\n \"sku\": \"81\",\r\n \"version\": \"latest\"\r\n },\r\n \"verificationType\": \"unverified\",\r\n \"nodeAgentSKUId\": \"batch.node.centos 8\",\r\n \"batchSupportEndOfLife\": \"2021-12-31T00:00:00Z\",\r\n \"osType\": \"linux\"\r\n },\r\n {\r\n \"imageReference\": {\r\n \"publisher\": \"xilinx\",\r\n \"offer\": \"xilinx_alveo_u250_deployment_vm_centos78_032321\",\r\n \"sku\": \"xilinx_alveo_u250_deployment_vm_centos78_032321\",\r\n \"version\": \"latest\"\r\n },\r\n \"verificationType\": \"unverified\",\r\n \"nodeAgentSKUId\": \"batch.node.centos 7\",\r\n \"osType\": \"linux\"\r\n },\r\n {\r\n \"imageReference\": {\r\n \"publisher\": \"xilinx\",\r\n \"offer\": \"xilinx_alveo_u250_deployment_vm_ubuntu1804_032321\",\r\n \"sku\": \"xilinx_alveo_u250_deployment_vm_ubuntu_1804_032321\",\r\n \"version\": \"latest\"\r\n },\r\n \"verificationType\": \"unverified\",\r\n \"nodeAgentSKUId\": \"batch.node.ubuntu 18.04\",\r\n \"osType\": \"linux\"\r\n }\r\n ]\r\n}", "StatusCode": 200 } ], "Names": {}, "Variables": { - "SubscriptionId": "21abd678-18c5-4660-9fdd-8c5ba6b6fe1f", - "AZURE_BATCH_ACCOUNT": "prodtest6", - "AZURE_BATCH_ENDPOINT": "https://prodtest6.francecentral.batch.azure.com", - "AZURE_BATCH_RESOURCE_GROUP": "abc" + "SubscriptionId": "ba2358c2-42f2-4138-88df-7c68cf608bea", + "AZURE_BATCH_ACCOUNT": "mikeportal", + "AZURE_BATCH_ENDPOINT": "https://mikeportal.eastus.batch.azure.com", + "AZURE_BATCH_RESOURCE_GROUP": "batchportal" } } \ No newline at end of file diff --git a/src/Batch/Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.BatchApplicationPackageTests/TestCreatePoolWithApplicationPackage.json b/src/Batch/Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.BatchApplicationPackageTests/TestCreatePoolWithApplicationPackage.json index 610908df572c..e1a0322718d0 100644 --- a/src/Batch/Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.BatchApplicationPackageTests/TestCreatePoolWithApplicationPackage.json +++ b/src/Batch/Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.BatchApplicationPackageTests/TestCreatePoolWithApplicationPackage.json @@ -1,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/abc/providers/Microsoft.Batch/batchAccounts/prodtest6/applications/createPoolWithApplicationPackage/versions/foo?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2FiYy9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvcHJvZHRlc3Q2L2FwcGxpY2F0aW9ucy9jcmVhdGVQb29sV2l0aEFwcGxpY2F0aW9uUGFja2FnZS92ZXJzaW9ucy9mb28/YXBpLXZlcnNpb249MjAyMC0wNS0wMQ==", + "RequestUri": "/subscriptions/ba2358c2-42f2-4138-88df-7c68cf608bea/resourceGroups/batchportal/providers/Microsoft.Batch/batchAccounts/mikeportal/applications/createPoolWithApplicationPackage/versions/foo?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmEyMzU4YzItNDJmMi00MTM4LTg4ZGYtN2M2OGNmNjA4YmVhL3Jlc291cmNlR3JvdXBzL2JhdGNocG9ydGFsL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9taWtlcG9ydGFsL2FwcGxpY2F0aW9ucy9jcmVhdGVQb29sV2l0aEFwcGxpY2F0aW9uUGFja2FnZS92ZXJzaW9ucy9mb28/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", "RequestMethod": "PUT", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9b773cb9-836b-400c-b5a0-e1d5cc90c865" + "088d94e7-4001-47a4-8f3f-5353a98cab05" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/11.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Batch.BatchManagementClient/14.0.0.0" ] }, "ResponseHeaders": { @@ -27,13 +27,13 @@ "no-cache" ], "ETag": [ - "W/\"0x8D80CC2208DFA79\"" + "W/\"0x8D9697781BB5ED6\"" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], "x-ms-request-id": [ - "f7bd9397-a1ee-48f6-a496-a477be952af8" + "3abe3ef8-9766-4866-aa55-9b0f2ecbf8b6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -45,16 +45,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-correlation-request-id": [ - "99e0dd45-53ca-4e57-9a9f-bb230f8c220a" + "7c8ecb9d-4d29-4eb1-8789-dc226c781289" ], "x-ms-routing-request-id": [ - "WESTUS:20200609T221158Z:99e0dd45-53ca-4e57-9a9f-bb230f8c220a" + "NORTHCENTRALUS:20210827T162704Z:7c8ecb9d-4d29-4eb1-8789-dc226c781289" ], "Date": [ - "Tue, 09 Jun 2020 22:11:58 GMT" + "Fri, 27 Aug 2021 16:27:04 GMT" ], "Content-Length": [ - "637" + "653" ], "Content-Type": [ "application/json; charset=utf-8" @@ -63,29 +63,29 @@ "-1" ], "Last-Modified": [ - "Tue, 09 Jun 2020 22:11:58 GMT" + "Fri, 27 Aug 2021 16:27:04 GMT" ] }, - "ResponseBody": "{\r\n \"type\": \"Microsoft.Batch/batchAccounts/applications/versions\",\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/abc/providers/Microsoft.Batch/batchAccounts/prodtest6/applications/createPoolWithApplicationPackage/versions/foo\",\r\n \"name\": \"foo\",\r\n \"etag\": \"W/\\\"0x8D80CC2208DFA79\\\"\",\r\n \"properties\": {\r\n \"storageUrl\": \"https://prodtest6.blob.core.windows.net/app-createpoolwithapplicationp-f9ae94269c934ab7a486b1089c40562c/foo?sv=2018-03-28&sr=b&sig=eaI2Oz5GjNI%2Fzh1%2FaVXiR0ZzCv48J0i2T1HE6yf5Cd8%3D&st=2020-06-09T22%3A06%3A58Z&se=2020-06-10T02%3A11%3A58Z&sp=rw\",\r\n \"storageUrlExpiry\": \"2020-06-10T02:11:58.2568852Z\",\r\n \"state\": \"Pending\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"type\": \"Microsoft.Batch/batchAccounts/applications/versions\",\r\n \"id\": \"/subscriptions/ba2358c2-42f2-4138-88df-7c68cf608bea/resourceGroups/batchportal/providers/Microsoft.Batch/batchAccounts/mikeportal/applications/createPoolWithApplicationPackage/versions/foo\",\r\n \"name\": \"foo\",\r\n \"etag\": \"W/\\\"0x8D9697781BB5ED6\\\"\",\r\n \"properties\": {\r\n \"storageUrl\": \"https://mikebatchstorage.blob.core.windows.net/app-createpoolwithapplicationp-463489aed7c14678b3bc55b0594694aa/foo?sv=2018-03-28&sr=b&sig=l6O8piIFYhScPe%2FnYfG1QzfwEwnvA%2FGEJgjpQdMud6k%3D&st=2021-08-27T16%3A22%3A04Z&se=2021-08-27T20%3A27%3A04Z&sp=rw\",\r\n \"storageUrlExpiry\": \"2021-08-27T20:27:04.8266908Z\",\r\n \"state\": \"Pending\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/abc/providers/Microsoft.Batch/batchAccounts/prodtest6/applications/createPoolWithApplicationPackage/versions/foo/activate?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2FiYy9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvcHJvZHRlc3Q2L2FwcGxpY2F0aW9ucy9jcmVhdGVQb29sV2l0aEFwcGxpY2F0aW9uUGFja2FnZS92ZXJzaW9ucy9mb28vYWN0aXZhdGU/YXBpLXZlcnNpb249MjAyMC0wNS0wMQ==", + "RequestUri": "/subscriptions/ba2358c2-42f2-4138-88df-7c68cf608bea/resourceGroups/batchportal/providers/Microsoft.Batch/batchAccounts/mikeportal/applications/createPoolWithApplicationPackage/versions/foo/activate?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmEyMzU4YzItNDJmMi00MTM4LTg4ZGYtN2M2OGNmNjA4YmVhL3Jlc291cmNlR3JvdXBzL2JhdGNocG9ydGFsL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9taWtlcG9ydGFsL2FwcGxpY2F0aW9ucy9jcmVhdGVQb29sV2l0aEFwcGxpY2F0aW9uUGFja2FnZS92ZXJzaW9ucy9mb28vYWN0aXZhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", "RequestMethod": "POST", "RequestBody": "{\r\n \"format\": \"zip\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "10e50fe9-dd6a-4e98-9432-99bd181cca74" + "fdd4e90d-ab19-4a06-a14a-af1b49c7067f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/11.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Batch.BatchManagementClient/14.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -102,13 +102,13 @@ "no-cache" ], "ETag": [ - "W/\"0x8D80CC221A2F7B8\"" + "W/\"0x8D9697782A10456\"" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], "x-ms-request-id": [ - "8a248c8d-4842-47ba-abc3-697f1b3aebae" + "3e4e8f03-fc17-41e5-aaf0-fee9c07e715f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -120,16 +120,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-correlation-request-id": [ - "d25c3e76-8e58-4227-b3ee-930998969a19" + "9817fb43-ada6-4817-8233-06b7aeb2a842" ], "x-ms-routing-request-id": [ - "WESTUS:20200609T221200Z:d25c3e76-8e58-4227-b3ee-930998969a19" + "NORTHCENTRALUS:20210827T162706Z:9817fb43-ada6-4817-8233-06b7aeb2a842" ], "Date": [ - "Tue, 09 Jun 2020 22:12:00 GMT" + "Fri, 27 Aug 2021 16:27:05 GMT" ], "Content-Length": [ - "702" + "717" ], "Content-Type": [ "application/json; charset=utf-8" @@ -138,29 +138,29 @@ "-1" ], "Last-Modified": [ - "Tue, 09 Jun 2020 22:12:00 GMT" + "Fri, 27 Aug 2021 16:27:06 GMT" ] }, - "ResponseBody": "{\r\n \"type\": \"Microsoft.Batch/batchAccounts/applications/versions\",\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/abc/providers/Microsoft.Batch/batchAccounts/prodtest6/applications/createPoolWithApplicationPackage/versions/foo\",\r\n \"name\": \"foo\",\r\n \"etag\": \"W/\\\"0x8D80CC221A2F7B8\\\"\",\r\n \"properties\": {\r\n \"storageUrl\": \"https://prodtest6.blob.core.windows.net/app-createpoolwithapplicationp-f9ae94269c934ab7a486b1089c40562c/foo?sv=2018-03-28&sr=b&sig=HGM1bY7mqb52VH8klD4qu%2BJUe70iWIfI1w3nFZ%2FYLpA%3D&st=2020-06-09T22%3A07%3A00Z&se=2020-06-10T02%3A12%3A00Z&sp=rw\",\r\n \"storageUrlExpiry\": \"2020-06-10T02:12:00.0893602Z\",\r\n \"state\": \"Active\",\r\n \"format\": \"zip\",\r\n \"lastActivationTime\": \"2020-06-09T22:12:00.022087Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"type\": \"Microsoft.Batch/batchAccounts/applications/versions\",\r\n \"id\": \"/subscriptions/ba2358c2-42f2-4138-88df-7c68cf608bea/resourceGroups/batchportal/providers/Microsoft.Batch/batchAccounts/mikeportal/applications/createPoolWithApplicationPackage/versions/foo\",\r\n \"name\": \"foo\",\r\n \"etag\": \"W/\\\"0x8D9697782A10456\\\"\",\r\n \"properties\": {\r\n \"storageUrl\": \"https://mikebatchstorage.blob.core.windows.net/app-createpoolwithapplicationp-463489aed7c14678b3bc55b0594694aa/foo?sv=2018-03-28&sr=b&sig=QPR1J1GTKnCk7t41eivt%2FPYPPjxKjoD%2Bxl8LBF1BZoc%3D&st=2021-08-27T16%3A22%3A06Z&se=2021-08-27T20%3A27%3A06Z&sp=rw\",\r\n \"storageUrlExpiry\": \"2021-08-27T20:27:06.3486992Z\",\r\n \"state\": \"Active\",\r\n \"format\": \"zip\",\r\n \"lastActivationTime\": \"2021-08-27T16:27:06.31694Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/abc/providers/Microsoft.Batch/batchAccounts/prodtest6/applications/createPoolWithApplicationPackage/versions/foo?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2FiYy9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvcHJvZHRlc3Q2L2FwcGxpY2F0aW9ucy9jcmVhdGVQb29sV2l0aEFwcGxpY2F0aW9uUGFja2FnZS92ZXJzaW9ucy9mb28/YXBpLXZlcnNpb249MjAyMC0wNS0wMQ==", + "RequestUri": "/subscriptions/ba2358c2-42f2-4138-88df-7c68cf608bea/resourceGroups/batchportal/providers/Microsoft.Batch/batchAccounts/mikeportal/applications/createPoolWithApplicationPackage/versions/foo?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmEyMzU4YzItNDJmMi00MTM4LTg4ZGYtN2M2OGNmNjA4YmVhL3Jlc291cmNlR3JvdXBzL2JhdGNocG9ydGFsL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9taWtlcG9ydGFsL2FwcGxpY2F0aW9ucy9jcmVhdGVQb29sV2l0aEFwcGxpY2F0aW9uUGFja2FnZS92ZXJzaW9ucy9mb28/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c9274dbd-7147-4e74-8054-6f2ff1ed6ebc" + "fdd4e90d-ab19-4a06-a14a-af1b49c7067f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/11.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Batch.BatchManagementClient/14.0.0.0" ] }, "ResponseHeaders": { @@ -171,13 +171,13 @@ "no-cache" ], "ETag": [ - "W/\"0x8D80CC221A2F7B8\"" + "W/\"0x8D9697782A10456\"" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11999" ], "x-ms-request-id": [ - "8ef2ad7b-d759-4cba-b5cc-958ecd1f4581" + "db8f2ba3-b541-4b47-8718-2dd6d6403c70" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -189,16 +189,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-correlation-request-id": [ - "6d2687b5-6663-4c83-8cd6-1cd5bb7658c3" + "3476d747-d93a-4aca-9953-74a1b2e8840b" ], "x-ms-routing-request-id": [ - "WESTUS:20200609T221200Z:6d2687b5-6663-4c83-8cd6-1cd5bb7658c3" + "NORTHCENTRALUS:20210827T162706Z:3476d747-d93a-4aca-9953-74a1b2e8840b" ], "Date": [ - "Tue, 09 Jun 2020 22:12:00 GMT" + "Fri, 27 Aug 2021 16:27:05 GMT" ], "Content-Length": [ - "702" + "716" ], "Content-Type": [ "application/json; charset=utf-8" @@ -207,32 +207,35 @@ "-1" ], "Last-Modified": [ - "Tue, 09 Jun 2020 22:12:00 GMT" + "Fri, 27 Aug 2021 16:27:06 GMT" ] }, - "ResponseBody": "{\r\n \"type\": \"Microsoft.Batch/batchAccounts/applications/versions\",\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/abc/providers/Microsoft.Batch/batchAccounts/prodtest6/applications/createPoolWithApplicationPackage/versions/foo\",\r\n \"name\": \"foo\",\r\n \"etag\": \"W/\\\"0x8D80CC221A2F7B8\\\"\",\r\n \"properties\": {\r\n \"storageUrl\": \"https://prodtest6.blob.core.windows.net/app-createpoolwithapplicationp-f9ae94269c934ab7a486b1089c40562c/foo?sv=2018-03-28&sr=b&sig=HGM1bY7mqb52VH8klD4qu%2BJUe70iWIfI1w3nFZ%2FYLpA%3D&st=2020-06-09T22%3A07%3A00Z&se=2020-06-10T02%3A12%3A00Z&sp=rw\",\r\n \"storageUrlExpiry\": \"2020-06-10T02:12:00.3214646Z\",\r\n \"state\": \"Active\",\r\n \"format\": \"zip\",\r\n \"lastActivationTime\": \"2020-06-09T22:12:00.022087Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"type\": \"Microsoft.Batch/batchAccounts/applications/versions\",\r\n \"id\": \"/subscriptions/ba2358c2-42f2-4138-88df-7c68cf608bea/resourceGroups/batchportal/providers/Microsoft.Batch/batchAccounts/mikeportal/applications/createPoolWithApplicationPackage/versions/foo\",\r\n \"name\": \"foo\",\r\n \"etag\": \"W/\\\"0x8D9697782A10456\\\"\",\r\n \"properties\": {\r\n \"storageUrl\": \"https://mikebatchstorage.blob.core.windows.net/app-createpoolwithapplicationp-463489aed7c14678b3bc55b0594694aa/foo?sv=2018-03-28&sr=b&sig=QPR1J1GTKnCk7t41eivt%2FPYPPjxKjoD%2Bxl8LBF1BZoc%3D&st=2021-08-27T16%3A22%3A06Z&se=2021-08-27T20%3A27%3A06Z&sp=rw\",\r\n \"storageUrlExpiry\": \"2021-08-27T20:27:06.498992Z\",\r\n \"state\": \"Active\",\r\n \"format\": \"zip\",\r\n \"lastActivationTime\": \"2021-08-27T16:27:06.31694Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/pools?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L3Bvb2xzP2FwaS12ZXJzaW9uPTIwMjAtMDMtMDEuMTEuMA==", + "RequestUri": "/pools?api-version=2021-06-01.14.0", + "EncodedRequestUri": "L3Bvb2xzP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDEuMTQuMA==", "RequestMethod": "POST", "RequestBody": "{\r\n \"id\": \"testCreatePoolWithAppPackages\",\r\n \"vmSize\": \"small\",\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"osVersion\": \"*\"\r\n },\r\n \"targetDedicatedNodes\": 3,\r\n \"enableInterNodeCommunication\": false,\r\n \"applicationPackageReferences\": [\r\n {\r\n \"applicationId\": \"createPoolWithApplicationPackage\",\r\n \"version\": \"foo\"\r\n }\r\n ]\r\n}", "RequestHeaders": { "client-request-id": [ - "dd0488f5-c932-4f7a-9503-fc3eea404dc3" + "27ee0a38-d420-4fa8-8699-12577ded9513" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:12:00 GMT" + "Fri, 27 Aug 2021 16:27:07 GMT" + ], + "x-ms-client-request-id": [ + "40ef7e1d-d258-42a9-af6f-d1c3561789b6" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/13.0.20.15503", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", "AzurePowershell/Az1.0.0" ], "Content-Type": [ @@ -247,16 +250,16 @@ "chunked" ], "ETag": [ - "0x8D80CC22EE2BA00" + "0x8D9697782FD8C9F" ], "Location": [ - "https://prodtest6.francecentral.batch.azure.com/pools/testCreatePoolWithAppPackages" + "https://mikeportal.eastus.batch.azure.com/pools/testCreatePoolWithAppPackages" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "58b3cf70-ead6-452a-a173-806d5cbcb41e" + "4209d5c3-82b8-47c6-923c-68c3a2d0be8f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -268,35 +271,35 @@ "3.0" ], "DataServiceId": [ - "https://prodtest6.francecentral.batch.azure.com/pools/testCreatePoolWithAppPackages" + "https://mikeportal.eastus.batch.azure.com/pools/testCreatePoolWithAppPackages" ], "Date": [ - "Tue, 09 Jun 2020 22:12:22 GMT" + "Fri, 27 Aug 2021 16:27:05 GMT" ], "Last-Modified": [ - "Tue, 09 Jun 2020 22:12:22 GMT" + "Fri, 27 Aug 2021 16:27:06 GMT" ] }, "ResponseBody": "", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/abc/providers/Microsoft.Batch/batchAccounts/prodtest6/applications/createPoolWithApplicationPackage/versions/foo?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2FiYy9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvcHJvZHRlc3Q2L2FwcGxpY2F0aW9ucy9jcmVhdGVQb29sV2l0aEFwcGxpY2F0aW9uUGFja2FnZS92ZXJzaW9ucy9mb28/YXBpLXZlcnNpb249MjAyMC0wNS0wMQ==", + "RequestUri": "/subscriptions/ba2358c2-42f2-4138-88df-7c68cf608bea/resourceGroups/batchportal/providers/Microsoft.Batch/batchAccounts/mikeportal/applications/createPoolWithApplicationPackage/versions/foo?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmEyMzU4YzItNDJmMi00MTM4LTg4ZGYtN2M2OGNmNjA4YmVhL3Jlc291cmNlR3JvdXBzL2JhdGNocG9ydGFsL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9taWtlcG9ydGFsL2FwcGxpY2F0aW9ucy9jcmVhdGVQb29sV2l0aEFwcGxpY2F0aW9uUGFja2FnZS92ZXJzaW9ucy9mb28/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f7c4e9fb-088f-46b3-8e7b-a2cbf29cad2d" + "82c36a13-0ca2-4e08-a302-64dd361005c4" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/11.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Batch.BatchManagementClient/14.0.0.0" ] }, "ResponseHeaders": { @@ -307,7 +310,7 @@ "no-cache" ], "x-ms-request-id": [ - "70bf516a-c9f4-4deb-9477-59f216669ffd" + "68fb0bdc-d563-455e-add3-2c540efb7fb2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -322,13 +325,13 @@ "14999" ], "x-ms-correlation-request-id": [ - "490b4b5c-f5dd-48d0-93cd-7dc199f555dd" + "f5f06095-244b-45a3-bb82-f39508078275" ], "x-ms-routing-request-id": [ - "WESTUS:20200609T221222Z:490b4b5c-f5dd-48d0-93cd-7dc199f555dd" + "NORTHCENTRALUS:20210827T162707Z:f5f06095-244b-45a3-bb82-f39508078275" ], "Date": [ - "Tue, 09 Jun 2020 22:12:22 GMT" + "Fri, 27 Aug 2021 16:27:06 GMT" ], "Expires": [ "-1" @@ -341,22 +344,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/abc/providers/Microsoft.Batch/batchAccounts/prodtest6/applications/createPoolWithApplicationPackage?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2FiYy9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvcHJvZHRlc3Q2L2FwcGxpY2F0aW9ucy9jcmVhdGVQb29sV2l0aEFwcGxpY2F0aW9uUGFja2FnZT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/ba2358c2-42f2-4138-88df-7c68cf608bea/resourceGroups/batchportal/providers/Microsoft.Batch/batchAccounts/mikeportal/applications/createPoolWithApplicationPackage?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmEyMzU4YzItNDJmMi00MTM4LTg4ZGYtN2M2OGNmNjA4YmVhL3Jlc291cmNlR3JvdXBzL2JhdGNocG9ydGFsL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9taWtlcG9ydGFsL2FwcGxpY2F0aW9ucy9jcmVhdGVQb29sV2l0aEFwcGxpY2F0aW9uUGFja2FnZT9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4c15247b-adcb-461d-9b05-86c65461a6b8" + "f4b6d5f4-7e20-4eaf-b66e-dc608f33cd8c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/11.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Batch.BatchManagementClient/14.0.0.0" ] }, "ResponseHeaders": { @@ -367,7 +370,7 @@ "no-cache" ], "x-ms-request-id": [ - "287318ec-3f67-4861-a2df-83ce61f973e1" + "62a01e8f-cc98-4fbc-bc0e-b7449515316a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -382,13 +385,13 @@ "14998" ], "x-ms-correlation-request-id": [ - "f0aa751c-0511-43c2-b332-0b1f9efe785a" + "e371283a-2af0-4671-96d1-052cfcfd3e77" ], "x-ms-routing-request-id": [ - "WESTUS:20200609T221222Z:f0aa751c-0511-43c2-b332-0b1f9efe785a" + "NORTHCENTRALUS:20210827T162707Z:e371283a-2af0-4671-96d1-052cfcfd3e77" ], "Date": [ - "Tue, 09 Jun 2020 22:12:22 GMT" + "Fri, 27 Aug 2021 16:27:06 GMT" ], "Expires": [ "-1" @@ -401,25 +404,28 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testCreatePoolWithAppPackages?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RDcmVhdGVQb29sV2l0aEFwcFBhY2thZ2VzP2FwaS12ZXJzaW9uPTIwMjAtMDMtMDEuMTEuMA==", + "RequestUri": "/pools/testCreatePoolWithAppPackages?api-version=2021-06-01.14.0", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RDcmVhdGVQb29sV2l0aEFwcFBhY2thZ2VzP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDEuMTQuMA==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "90999b00-6c92-437a-b76b-bcec1f5f5ebb" + "3a9e84f3-f9b4-4ff3-8072-b441f506c596" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:12:22 GMT" + "Fri, 27 Aug 2021 16:27:08 GMT" + ], + "x-ms-client-request-id": [ + "6b022141-8e53-4bc3-9f9f-df7add310fb6" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/13.0.20.15503", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", "AzurePowershell/Az1.0.0" ], "Content-Length": [ @@ -434,7 +440,7 @@ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "26772ec3-4443-4002-80cc-812cc35c0821" + "d1629e42-3f0b-4478-9d71-0c35ff91ca00" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -446,7 +452,7 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 22:12:23 GMT" + "Fri, 27 Aug 2021 16:27:07 GMT" ] }, "ResponseBody": "", @@ -455,9 +461,9 @@ ], "Names": {}, "Variables": { - "SubscriptionId": "21abd678-18c5-4660-9fdd-8c5ba6b6fe1f", - "AZURE_BATCH_ACCOUNT": "prodtest6", - "AZURE_BATCH_ENDPOINT": "https://prodtest6.francecentral.batch.azure.com", - "AZURE_BATCH_RESOURCE_GROUP": "abc" + "SubscriptionId": "ba2358c2-42f2-4138-88df-7c68cf608bea", + "AZURE_BATCH_ACCOUNT": "mikeportal", + "AZURE_BATCH_ENDPOINT": "https://mikeportal.eastus.batch.azure.com", + "AZURE_BATCH_RESOURCE_GROUP": "batchportal" } } \ No newline at end of file diff --git a/src/Batch/Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.BatchApplicationPackageTests/TestUpdateApplicationPackage.json b/src/Batch/Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.BatchApplicationPackageTests/TestUpdateApplicationPackage.json index 25319fe525dd..6261750ff71b 100644 --- a/src/Batch/Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.BatchApplicationPackageTests/TestUpdateApplicationPackage.json +++ b/src/Batch/Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.BatchApplicationPackageTests/TestUpdateApplicationPackage.json @@ -1,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/abc/providers/Microsoft.Batch/batchAccounts/prodtest6/applications/updateApplicationPackage/versions/foo?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2FiYy9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvcHJvZHRlc3Q2L2FwcGxpY2F0aW9ucy91cGRhdGVBcHBsaWNhdGlvblBhY2thZ2UvdmVyc2lvbnMvZm9vP2FwaS12ZXJzaW9uPTIwMjAtMDUtMDE=", + "RequestUri": "/subscriptions/ba2358c2-42f2-4138-88df-7c68cf608bea/resourceGroups/batchportal/providers/Microsoft.Batch/batchAccounts/mikeportal/applications/updateApplicationPackage/versions/foo?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmEyMzU4YzItNDJmMi00MTM4LTg4ZGYtN2M2OGNmNjA4YmVhL3Jlc291cmNlR3JvdXBzL2JhdGNocG9ydGFsL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9taWtlcG9ydGFsL2FwcGxpY2F0aW9ucy91cGRhdGVBcHBsaWNhdGlvblBhY2thZ2UvdmVyc2lvbnMvZm9vP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", "RequestMethod": "PUT", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "18c65ebe-96a9-4eeb-a93b-ef222e333eab" + "36123f11-e5c8-4f4e-8aad-01ddf28294a1" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/11.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Batch.BatchManagementClient/14.0.0.0" ] }, "ResponseHeaders": { @@ -27,13 +27,13 @@ "no-cache" ], "ETag": [ - "W/\"0x8D80CC231BA388A\"" + "W/\"0x8D9697784F6F409\"" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1196" ], "x-ms-request-id": [ - "ae79ac94-2789-468b-8807-1a1a30e41c59" + "e92ee380-c908-4fe4-b4ed-aee30fbadebc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -45,16 +45,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-correlation-request-id": [ - "ab976f21-dd44-4e7d-9b81-78fd77051f9e" + "5163b01b-d51c-47ee-8785-6d081c4697ee" ], "x-ms-routing-request-id": [ - "WESTUS:20200609T221227Z:ab976f21-dd44-4e7d-9b81-78fd77051f9e" + "NORTHCENTRALUS:20210827T162710Z:5163b01b-d51c-47ee-8785-6d081c4697ee" ], "Date": [ - "Tue, 09 Jun 2020 22:12:26 GMT" + "Fri, 27 Aug 2021 16:27:09 GMT" ], "Content-Length": [ - "631" + "643" ], "Content-Type": [ "application/json; charset=utf-8" @@ -63,29 +63,29 @@ "-1" ], "Last-Modified": [ - "Tue, 09 Jun 2020 22:12:27 GMT" + "Fri, 27 Aug 2021 16:27:10 GMT" ] }, - "ResponseBody": "{\r\n \"type\": \"Microsoft.Batch/batchAccounts/applications/versions\",\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/abc/providers/Microsoft.Batch/batchAccounts/prodtest6/applications/updateApplicationPackage/versions/foo\",\r\n \"name\": \"foo\",\r\n \"etag\": \"W/\\\"0x8D80CC231BA388A\\\"\",\r\n \"properties\": {\r\n \"storageUrl\": \"https://prodtest6.blob.core.windows.net/app-updateapplicationpackage-8569eeb16c46473faa4f198ba909ceda/foo?sv=2018-03-28&sr=b&sig=3LND8w%2BvB%2BT%2FpbYdLNeXvSqMSBA%2FwU0NfZ4vxrE8UoU%3D&st=2020-06-09T22%3A07%3A27Z&se=2020-06-10T02%3A12%3A27Z&sp=rw\",\r\n \"storageUrlExpiry\": \"2020-06-10T02:12:27.0477783Z\",\r\n \"state\": \"Pending\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"type\": \"Microsoft.Batch/batchAccounts/applications/versions\",\r\n \"id\": \"/subscriptions/ba2358c2-42f2-4138-88df-7c68cf608bea/resourceGroups/batchportal/providers/Microsoft.Batch/batchAccounts/mikeportal/applications/updateApplicationPackage/versions/foo\",\r\n \"name\": \"foo\",\r\n \"etag\": \"W/\\\"0x8D9697784F6F409\\\"\",\r\n \"properties\": {\r\n \"storageUrl\": \"https://mikebatchstorage.blob.core.windows.net/app-updateapplicationpackage-3f7abba7016842f78f8dc3e920118134/foo?sv=2018-03-28&sr=b&sig=O%2BZOcYJmvypjURrfmEM%2FCEq0qSNFNEkYao7jbxk51v8%3D&st=2021-08-27T16%3A22%3A10Z&se=2021-08-27T20%3A27%3A10Z&sp=rw\",\r\n \"storageUrlExpiry\": \"2021-08-27T20:27:10.2515139Z\",\r\n \"state\": \"Pending\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/abc/providers/Microsoft.Batch/batchAccounts/prodtest6/applications/updateApplicationPackage?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2FiYy9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvcHJvZHRlc3Q2L2FwcGxpY2F0aW9ucy91cGRhdGVBcHBsaWNhdGlvblBhY2thZ2U/YXBpLXZlcnNpb249MjAyMC0wNS0wMQ==", + "RequestUri": "/subscriptions/ba2358c2-42f2-4138-88df-7c68cf608bea/resourceGroups/batchportal/providers/Microsoft.Batch/batchAccounts/mikeportal/applications/updateApplicationPackage?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmEyMzU4YzItNDJmMi00MTM4LTg4ZGYtN2M2OGNmNjA4YmVhL3Jlc291cmNlR3JvdXBzL2JhdGNocG9ydGFsL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9taWtlcG9ydGFsL2FwcGxpY2F0aW9ucy91cGRhdGVBcHBsaWNhdGlvblBhY2thZ2U/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6d14d8f6-5171-497a-bd91-5756de0f1976" + "1d59d99e-8a31-43e5-9bfb-a2d135f822aa" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/11.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Batch.BatchManagementClient/14.0.0.0" ] }, "ResponseHeaders": { @@ -96,13 +96,13 @@ "no-cache" ], "ETag": [ - "W/\"0x8D80CC231B76658\"" + "W/\"0x8D9697784F59083\"" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11980" ], "x-ms-request-id": [ - "aa34b386-e787-4c70-ac08-8e032b1025a6" + "a8754610-ca64-4303-b1d7-dac311ea9670" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -114,16 +114,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-correlation-request-id": [ - "f637d908-02c4-46f6-9703-622d40500273" + "7d1ea183-6959-4c76-ade1-29c75b7f432f" ], "x-ms-routing-request-id": [ - "WESTUS:20200609T221227Z:f637d908-02c4-46f6-9703-622d40500273" + "NORTHCENTRALUS:20210827T162711Z:7d1ea183-6959-4c76-ade1-29c75b7f432f" ], "Date": [ - "Tue, 09 Jun 2020 22:12:27 GMT" + "Fri, 27 Aug 2021 16:27:11 GMT" ], "Content-Length": [ - "321" + "330" ], "Content-Type": [ "application/json; charset=utf-8" @@ -132,29 +132,29 @@ "-1" ], "Last-Modified": [ - "Tue, 09 Jun 2020 22:12:27 GMT" + "Fri, 27 Aug 2021 16:27:10 GMT" ] }, - "ResponseBody": "{\r\n \"type\": \"Microsoft.Batch/batchAccounts/applications\",\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/abc/providers/Microsoft.Batch/batchAccounts/prodtest6/applications/updateApplicationPackage\",\r\n \"name\": \"updateApplicationPackage\",\r\n \"etag\": \"W/\\\"0x8D80CC231B76658\\\"\",\r\n \"properties\": {\r\n \"allowUpdates\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"type\": \"Microsoft.Batch/batchAccounts/applications\",\r\n \"id\": \"/subscriptions/ba2358c2-42f2-4138-88df-7c68cf608bea/resourceGroups/batchportal/providers/Microsoft.Batch/batchAccounts/mikeportal/applications/updateApplicationPackage\",\r\n \"name\": \"updateApplicationPackage\",\r\n \"etag\": \"W/\\\"0x8D9697784F59083\\\"\",\r\n \"properties\": {\r\n \"allowUpdates\": true\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/abc/providers/Microsoft.Batch/batchAccounts/prodtest6/applications/updateApplicationPackage?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2FiYy9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvcHJvZHRlc3Q2L2FwcGxpY2F0aW9ucy91cGRhdGVBcHBsaWNhdGlvblBhY2thZ2U/YXBpLXZlcnNpb249MjAyMC0wNS0wMQ==", + "RequestUri": "/subscriptions/ba2358c2-42f2-4138-88df-7c68cf608bea/resourceGroups/batchportal/providers/Microsoft.Batch/batchAccounts/mikeportal/applications/updateApplicationPackage?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmEyMzU4YzItNDJmMi00MTM4LTg4ZGYtN2M2OGNmNjA4YmVhL3Jlc291cmNlR3JvdXBzL2JhdGNocG9ydGFsL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9taWtlcG9ydGFsL2FwcGxpY2F0aW9ucy91cGRhdGVBcHBsaWNhdGlvblBhY2thZ2U/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c7174d70-cef2-406e-8a3e-fe7243891be5" + "d710c5e2-3540-4b24-8ed1-1d6bd20857c8" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/11.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Batch.BatchManagementClient/14.0.0.0" ] }, "ResponseHeaders": { @@ -165,13 +165,13 @@ "no-cache" ], "ETag": [ - "W/\"0x8D80CC232B6EE83\"" + "W/\"0x8D9697785DE95BC\"" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11978" ], "x-ms-request-id": [ - "9d3dc29f-689a-4811-84c5-e131e75c122c" + "c1b8146f-df20-4cd4-8cac-feae89973d4d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -183,16 +183,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-correlation-request-id": [ - "36e7ca10-cba3-47f3-8670-ac9df4eb7d76" + "e19244d5-4ba5-4c73-8837-7b3ee549a10a" ], "x-ms-routing-request-id": [ - "WESTUS:20200609T221229Z:36e7ca10-cba3-47f3-8670-ac9df4eb7d76" + "NORTHCENTRALUS:20210827T162711Z:e19244d5-4ba5-4c73-8837-7b3ee549a10a" ], "Date": [ - "Tue, 09 Jun 2020 22:12:28 GMT" + "Fri, 27 Aug 2021 16:27:11 GMT" ], "Content-Length": [ - "385" + "394" ], "Content-Type": [ "application/json; charset=utf-8" @@ -201,29 +201,29 @@ "-1" ], "Last-Modified": [ - "Tue, 09 Jun 2020 22:12:28 GMT" + "Fri, 27 Aug 2021 16:27:11 GMT" ] }, - "ResponseBody": "{\r\n \"type\": \"Microsoft.Batch/batchAccounts/applications\",\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/abc/providers/Microsoft.Batch/batchAccounts/prodtest6/applications/updateApplicationPackage\",\r\n \"name\": \"updateApplicationPackage\",\r\n \"etag\": \"W/\\\"0x8D80CC232B6EE83\\\"\",\r\n \"properties\": {\r\n \"displayName\": \"application-display-name\",\r\n \"allowUpdates\": true,\r\n \"defaultVersion\": \"foo\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"type\": \"Microsoft.Batch/batchAccounts/applications\",\r\n \"id\": \"/subscriptions/ba2358c2-42f2-4138-88df-7c68cf608bea/resourceGroups/batchportal/providers/Microsoft.Batch/batchAccounts/mikeportal/applications/updateApplicationPackage\",\r\n \"name\": \"updateApplicationPackage\",\r\n \"etag\": \"W/\\\"0x8D9697785DE95BC\\\"\",\r\n \"properties\": {\r\n \"displayName\": \"application-display-name\",\r\n \"allowUpdates\": true,\r\n \"defaultVersion\": \"foo\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/abc/providers/Microsoft.Batch/batchAccounts/prodtest6/applications/updateApplicationPackage/versions/foo/activate?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2FiYy9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvcHJvZHRlc3Q2L2FwcGxpY2F0aW9ucy91cGRhdGVBcHBsaWNhdGlvblBhY2thZ2UvdmVyc2lvbnMvZm9vL2FjdGl2YXRlP2FwaS12ZXJzaW9uPTIwMjAtMDUtMDE=", + "RequestUri": "/subscriptions/ba2358c2-42f2-4138-88df-7c68cf608bea/resourceGroups/batchportal/providers/Microsoft.Batch/batchAccounts/mikeportal/applications/updateApplicationPackage/versions/foo/activate?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmEyMzU4YzItNDJmMi00MTM4LTg4ZGYtN2M2OGNmNjA4YmVhL3Jlc291cmNlR3JvdXBzL2JhdGNocG9ydGFsL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9taWtlcG9ydGFsL2FwcGxpY2F0aW9ucy91cGRhdGVBcHBsaWNhdGlvblBhY2thZ2UvdmVyc2lvbnMvZm9vL2FjdGl2YXRlP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", "RequestMethod": "POST", "RequestBody": "{\r\n \"format\": \"zip\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "a4948a7f-2f33-48c0-8fe7-1a0731d7819e" + "ddbebfe6-115b-4588-91d3-2a879564c076" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/11.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Batch.BatchManagementClient/14.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -240,13 +240,13 @@ "no-cache" ], "ETag": [ - "W/\"0x8D80CC232614508\"" + "W/\"0x8D9697785A30924\"" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], "x-ms-request-id": [ - "4f44540c-cae4-45d8-bbf6-f1234e6bf3ec" + "4285bb7f-547c-44e2-810b-5290ecc5599f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -258,16 +258,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-correlation-request-id": [ - "3faeed7a-f824-4061-985a-c3df46cf9023" + "f3af0449-e6af-4e9b-8e42-90934f77b02c" ], "x-ms-routing-request-id": [ - "WESTUS:20200609T221228Z:3faeed7a-f824-4061-985a-c3df46cf9023" + "NORTHCENTRALUS:20210827T162711Z:f3af0449-e6af-4e9b-8e42-90934f77b02c" ], "Date": [ - "Tue, 09 Jun 2020 22:12:27 GMT" + "Fri, 27 Aug 2021 16:27:11 GMT" ], "Content-Length": [ - "695" + "705" ], "Content-Type": [ "application/json; charset=utf-8" @@ -276,29 +276,29 @@ "-1" ], "Last-Modified": [ - "Tue, 09 Jun 2020 22:12:28 GMT" + "Fri, 27 Aug 2021 16:27:11 GMT" ] }, - "ResponseBody": "{\r\n \"type\": \"Microsoft.Batch/batchAccounts/applications/versions\",\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/abc/providers/Microsoft.Batch/batchAccounts/prodtest6/applications/updateApplicationPackage/versions/foo\",\r\n \"name\": \"foo\",\r\n \"etag\": \"W/\\\"0x8D80CC232614508\\\"\",\r\n \"properties\": {\r\n \"storageUrl\": \"https://prodtest6.blob.core.windows.net/app-updateapplicationpackage-8569eeb16c46473faa4f198ba909ceda/foo?sv=2018-03-28&sr=b&sig=FsLfSl2Jaw%2By0nHCVi7VYyaML60%2FmS7R1y4OlFN%2FaVE%3D&st=2020-06-09T22%3A07%3A28Z&se=2020-06-10T02%3A12%3A28Z&sp=rw\",\r\n \"storageUrlExpiry\": \"2020-06-10T02:12:28.1611848Z\",\r\n \"state\": \"Active\",\r\n \"format\": \"zip\",\r\n \"lastActivationTime\": \"2020-06-09T22:12:28.1288669Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"type\": \"Microsoft.Batch/batchAccounts/applications/versions\",\r\n \"id\": \"/subscriptions/ba2358c2-42f2-4138-88df-7c68cf608bea/resourceGroups/batchportal/providers/Microsoft.Batch/batchAccounts/mikeportal/applications/updateApplicationPackage/versions/foo\",\r\n \"name\": \"foo\",\r\n \"etag\": \"W/\\\"0x8D9697785A30924\\\"\",\r\n \"properties\": {\r\n \"storageUrl\": \"https://mikebatchstorage.blob.core.windows.net/app-updateapplicationpackage-3f7abba7016842f78f8dc3e920118134/foo?sv=2018-03-28&sr=b&sig=rzvH1PpZgQcuzFDPi7ab4vUgkwCaRoHGsPveJB3zZlE%3D&st=2021-08-27T16%3A22%3A11Z&se=2021-08-27T20%3A27%3A11Z&sp=rw\",\r\n \"storageUrlExpiry\": \"2021-08-27T20:27:11.3927914Z\",\r\n \"state\": \"Active\",\r\n \"format\": \"zip\",\r\n \"lastActivationTime\": \"2021-08-27T16:27:11.3623626Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/abc/providers/Microsoft.Batch/batchAccounts/prodtest6/applications/updateApplicationPackage/versions/foo?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2FiYy9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvcHJvZHRlc3Q2L2FwcGxpY2F0aW9ucy91cGRhdGVBcHBsaWNhdGlvblBhY2thZ2UvdmVyc2lvbnMvZm9vP2FwaS12ZXJzaW9uPTIwMjAtMDUtMDE=", + "RequestUri": "/subscriptions/ba2358c2-42f2-4138-88df-7c68cf608bea/resourceGroups/batchportal/providers/Microsoft.Batch/batchAccounts/mikeportal/applications/updateApplicationPackage/versions/foo?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmEyMzU4YzItNDJmMi00MTM4LTg4ZGYtN2M2OGNmNjA4YmVhL3Jlc291cmNlR3JvdXBzL2JhdGNocG9ydGFsL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9taWtlcG9ydGFsL2FwcGxpY2F0aW9ucy91cGRhdGVBcHBsaWNhdGlvblBhY2thZ2UvdmVyc2lvbnMvZm9vP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6ae8dd81-2c2a-4449-b796-05825267d008" + "ddbebfe6-115b-4588-91d3-2a879564c076" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/11.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Batch.BatchManagementClient/14.0.0.0" ] }, "ResponseHeaders": { @@ -309,13 +309,13 @@ "no-cache" ], "ETag": [ - "W/\"0x8D80CC232614508\"" + "W/\"0x8D9697785A30924\"" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11979" ], "x-ms-request-id": [ - "e1b72eee-34c5-407e-85e1-ba8c806ce914" + "d338d298-4b4a-44e2-b95b-2f61b9cc5466" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -327,16 +327,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-correlation-request-id": [ - "d0b05072-82c5-4e62-8ba8-4284da6ca7f6" + "35bc4c43-84aa-49fb-bf28-da6fcd523df4" ], "x-ms-routing-request-id": [ - "WESTUS:20200609T221228Z:d0b05072-82c5-4e62-8ba8-4284da6ca7f6" + "NORTHCENTRALUS:20210827T162711Z:35bc4c43-84aa-49fb-bf28-da6fcd523df4" ], "Date": [ - "Tue, 09 Jun 2020 22:12:27 GMT" + "Fri, 27 Aug 2021 16:27:11 GMT" ], "Content-Length": [ - "695" + "705" ], "Content-Type": [ "application/json; charset=utf-8" @@ -345,29 +345,29 @@ "-1" ], "Last-Modified": [ - "Tue, 09 Jun 2020 22:12:28 GMT" + "Fri, 27 Aug 2021 16:27:11 GMT" ] }, - "ResponseBody": "{\r\n \"type\": \"Microsoft.Batch/batchAccounts/applications/versions\",\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/abc/providers/Microsoft.Batch/batchAccounts/prodtest6/applications/updateApplicationPackage/versions/foo\",\r\n \"name\": \"foo\",\r\n \"etag\": \"W/\\\"0x8D80CC232614508\\\"\",\r\n \"properties\": {\r\n \"storageUrl\": \"https://prodtest6.blob.core.windows.net/app-updateapplicationpackage-8569eeb16c46473faa4f198ba909ceda/foo?sv=2018-03-28&sr=b&sig=FsLfSl2Jaw%2By0nHCVi7VYyaML60%2FmS7R1y4OlFN%2FaVE%3D&st=2020-06-09T22%3A07%3A28Z&se=2020-06-10T02%3A12%3A28Z&sp=rw\",\r\n \"storageUrlExpiry\": \"2020-06-10T02:12:28.3682698Z\",\r\n \"state\": \"Active\",\r\n \"format\": \"zip\",\r\n \"lastActivationTime\": \"2020-06-09T22:12:28.1288669Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"type\": \"Microsoft.Batch/batchAccounts/applications/versions\",\r\n \"id\": \"/subscriptions/ba2358c2-42f2-4138-88df-7c68cf608bea/resourceGroups/batchportal/providers/Microsoft.Batch/batchAccounts/mikeportal/applications/updateApplicationPackage/versions/foo\",\r\n \"name\": \"foo\",\r\n \"etag\": \"W/\\\"0x8D9697785A30924\\\"\",\r\n \"properties\": {\r\n \"storageUrl\": \"https://mikebatchstorage.blob.core.windows.net/app-updateapplicationpackage-3f7abba7016842f78f8dc3e920118134/foo?sv=2018-03-28&sr=b&sig=rzvH1PpZgQcuzFDPi7ab4vUgkwCaRoHGsPveJB3zZlE%3D&st=2021-08-27T16%3A22%3A11Z&se=2021-08-27T20%3A27%3A11Z&sp=rw\",\r\n \"storageUrlExpiry\": \"2021-08-27T20:27:11.5077969Z\",\r\n \"state\": \"Active\",\r\n \"format\": \"zip\",\r\n \"lastActivationTime\": \"2021-08-27T16:27:11.3623626Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/abc/providers/Microsoft.Batch/batchAccounts/prodtest6/applications/updateApplicationPackage?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2FiYy9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvcHJvZHRlc3Q2L2FwcGxpY2F0aW9ucy91cGRhdGVBcHBsaWNhdGlvblBhY2thZ2U/YXBpLXZlcnNpb249MjAyMC0wNS0wMQ==", + "RequestUri": "/subscriptions/ba2358c2-42f2-4138-88df-7c68cf608bea/resourceGroups/batchportal/providers/Microsoft.Batch/batchAccounts/mikeportal/applications/updateApplicationPackage?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmEyMzU4YzItNDJmMi00MTM4LTg4ZGYtN2M2OGNmNjA4YmVhL3Jlc291cmNlR3JvdXBzL2JhdGNocG9ydGFsL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9taWtlcG9ydGFsL2FwcGxpY2F0aW9ucy91cGRhdGVBcHBsaWNhdGlvblBhY2thZ2U/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", "RequestMethod": "PATCH", "RequestBody": "{\r\n \"properties\": {\r\n \"displayName\": \"application-display-name\",\r\n \"defaultVersion\": \"foo\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "75506150-233f-4574-91ad-284db9712172" + "56684150-5911-4746-982a-c689fa122885" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/11.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Batch.BatchManagementClient/14.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -384,13 +384,13 @@ "no-cache" ], "ETag": [ - "W/\"0x8D80CC232B6EE83\"" + "W/\"0x8D9697785DE95BC\"" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1195" ], "x-ms-request-id": [ - "baec6921-b230-4772-b468-6cec57153007" + "db2b65f2-e712-4f7e-8268-f7b726118108" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -402,16 +402,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-correlation-request-id": [ - "4db183f6-942c-4b0e-a7db-e56cbc6bc6d6" + "ee46b8c1-6b48-4bf5-9b95-bc8f2d2fe487" ], "x-ms-routing-request-id": [ - "WESTUS:20200609T221228Z:4db183f6-942c-4b0e-a7db-e56cbc6bc6d6" + "NORTHCENTRALUS:20210827T162711Z:ee46b8c1-6b48-4bf5-9b95-bc8f2d2fe487" ], "Date": [ - "Tue, 09 Jun 2020 22:12:28 GMT" + "Fri, 27 Aug 2021 16:27:11 GMT" ], "Content-Length": [ - "385" + "394" ], "Content-Type": [ "application/json; charset=utf-8" @@ -420,29 +420,29 @@ "-1" ], "Last-Modified": [ - "Tue, 09 Jun 2020 22:12:28 GMT" + "Fri, 27 Aug 2021 16:27:11 GMT" ] }, - "ResponseBody": "{\r\n \"type\": \"Microsoft.Batch/batchAccounts/applications\",\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/abc/providers/Microsoft.Batch/batchAccounts/prodtest6/applications/updateApplicationPackage\",\r\n \"name\": \"updateApplicationPackage\",\r\n \"etag\": \"W/\\\"0x8D80CC232B6EE83\\\"\",\r\n \"properties\": {\r\n \"displayName\": \"application-display-name\",\r\n \"allowUpdates\": true,\r\n \"defaultVersion\": \"foo\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"type\": \"Microsoft.Batch/batchAccounts/applications\",\r\n \"id\": \"/subscriptions/ba2358c2-42f2-4138-88df-7c68cf608bea/resourceGroups/batchportal/providers/Microsoft.Batch/batchAccounts/mikeportal/applications/updateApplicationPackage\",\r\n \"name\": \"updateApplicationPackage\",\r\n \"etag\": \"W/\\\"0x8D9697785DE95BC\\\"\",\r\n \"properties\": {\r\n \"displayName\": \"application-display-name\",\r\n \"allowUpdates\": true,\r\n \"defaultVersion\": \"foo\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/abc/providers/Microsoft.Batch/batchAccounts/prodtest6/applications/updateApplicationPackage/versions/foo?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2FiYy9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvcHJvZHRlc3Q2L2FwcGxpY2F0aW9ucy91cGRhdGVBcHBsaWNhdGlvblBhY2thZ2UvdmVyc2lvbnMvZm9vP2FwaS12ZXJzaW9uPTIwMjAtMDUtMDE=", + "RequestUri": "/subscriptions/ba2358c2-42f2-4138-88df-7c68cf608bea/resourceGroups/batchportal/providers/Microsoft.Batch/batchAccounts/mikeportal/applications/updateApplicationPackage/versions/foo?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmEyMzU4YzItNDJmMi00MTM4LTg4ZGYtN2M2OGNmNjA4YmVhL3Jlc291cmNlR3JvdXBzL2JhdGNocG9ydGFsL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9taWtlcG9ydGFsL2FwcGxpY2F0aW9ucy91cGRhdGVBcHBsaWNhdGlvblBhY2thZ2UvdmVyc2lvbnMvZm9vP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2d232023-89b2-4aa5-8ed4-3274f50ec16f" + "0fc08a54-abc7-4f1f-a9b9-e95759e715cf" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/11.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Batch.BatchManagementClient/14.0.0.0" ] }, "ResponseHeaders": { @@ -453,7 +453,7 @@ "no-cache" ], "x-ms-request-id": [ - "b4fb5496-6d90-4676-b615-ba1c72d392e0" + "fb86e9eb-4879-472a-ac9a-42a4cbe027d5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -465,16 +465,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" + "14998" ], "x-ms-correlation-request-id": [ - "f8773175-5504-4b86-a4eb-a6d622160961" + "11a23ea0-8e73-4898-a3db-81b72b8587af" ], "x-ms-routing-request-id": [ - "WESTUS:20200609T221229Z:f8773175-5504-4b86-a4eb-a6d622160961" + "NORTHCENTRALUS:20210827T162712Z:11a23ea0-8e73-4898-a3db-81b72b8587af" ], "Date": [ - "Tue, 09 Jun 2020 22:12:28 GMT" + "Fri, 27 Aug 2021 16:27:12 GMT" ], "Expires": [ "-1" @@ -487,22 +487,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/abc/providers/Microsoft.Batch/batchAccounts/prodtest6/applications/updateApplicationPackage?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2FiYy9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvcHJvZHRlc3Q2L2FwcGxpY2F0aW9ucy91cGRhdGVBcHBsaWNhdGlvblBhY2thZ2U/YXBpLXZlcnNpb249MjAyMC0wNS0wMQ==", + "RequestUri": "/subscriptions/ba2358c2-42f2-4138-88df-7c68cf608bea/resourceGroups/batchportal/providers/Microsoft.Batch/batchAccounts/mikeportal/applications/updateApplicationPackage?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmEyMzU4YzItNDJmMi00MTM4LTg4ZGYtN2M2OGNmNjA4YmVhL3Jlc291cmNlR3JvdXBzL2JhdGNocG9ydGFsL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9taWtlcG9ydGFsL2FwcGxpY2F0aW9ucy91cGRhdGVBcHBsaWNhdGlvblBhY2thZ2U/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d8845d9a-60cf-44f1-80ec-2c29b5ece958" + "5425dda2-aae4-4455-b802-e6009ec2b1fb" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/11.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Batch.BatchManagementClient/14.0.0.0" ] }, "ResponseHeaders": { @@ -513,7 +513,7 @@ "no-cache" ], "x-ms-request-id": [ - "553e33fc-7086-4fd9-a15f-6bb09c5c599e" + "f491ce39-f56d-4c10-9c8f-d505ecc77678" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -525,16 +525,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14998" + "14997" ], "x-ms-correlation-request-id": [ - "6da9b7c1-3328-42a4-b109-630e6dd650f9" + "58cafdb3-5ed5-46c8-8dfa-b30f2c5c514b" ], "x-ms-routing-request-id": [ - "WESTUS:20200609T221229Z:6da9b7c1-3328-42a4-b109-630e6dd650f9" + "NORTHCENTRALUS:20210827T162712Z:58cafdb3-5ed5-46c8-8dfa-b30f2c5c514b" ], "Date": [ - "Tue, 09 Jun 2020 22:12:28 GMT" + "Fri, 27 Aug 2021 16:27:12 GMT" ], "Expires": [ "-1" @@ -549,9 +549,9 @@ ], "Names": {}, "Variables": { - "SubscriptionId": "21abd678-18c5-4660-9fdd-8c5ba6b6fe1f", - "AZURE_BATCH_ACCOUNT": "prodtest6", - "AZURE_BATCH_ENDPOINT": "https://prodtest6.francecentral.batch.azure.com", - "AZURE_BATCH_RESOURCE_GROUP": "abc" + "SubscriptionId": "ba2358c2-42f2-4138-88df-7c68cf608bea", + "AZURE_BATCH_ACCOUNT": "mikeportal", + "AZURE_BATCH_ENDPOINT": "https://mikeportal.eastus.batch.azure.com", + "AZURE_BATCH_RESOURCE_GROUP": "batchportal" } } \ No newline at end of file diff --git a/src/Batch/Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.BatchApplicationPackageTests/TestUpdatePoolWithApplicationPackage.json b/src/Batch/Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.BatchApplicationPackageTests/TestUpdatePoolWithApplicationPackage.json index 9f9e8b9d3fb2..d678809e48d9 100644 --- a/src/Batch/Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.BatchApplicationPackageTests/TestUpdatePoolWithApplicationPackage.json +++ b/src/Batch/Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.BatchApplicationPackageTests/TestUpdatePoolWithApplicationPackage.json @@ -1,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/abc/providers/Microsoft.Batch/batchAccounts/prodtest6/applications/updatePoolWithApplicationPackage/versions/foo?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2FiYy9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvcHJvZHRlc3Q2L2FwcGxpY2F0aW9ucy91cGRhdGVQb29sV2l0aEFwcGxpY2F0aW9uUGFja2FnZS92ZXJzaW9ucy9mb28/YXBpLXZlcnNpb249MjAyMC0wNS0wMQ==", + "RequestUri": "/subscriptions/ba2358c2-42f2-4138-88df-7c68cf608bea/resourceGroups/batchportal/providers/Microsoft.Batch/batchAccounts/mikeportal/applications/updatePoolWithApplicationPackage/versions/foo?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmEyMzU4YzItNDJmMi00MTM4LTg4ZGYtN2M2OGNmNjA4YmVhL3Jlc291cmNlR3JvdXBzL2JhdGNocG9ydGFsL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9taWtlcG9ydGFsL2FwcGxpY2F0aW9ucy91cGRhdGVQb29sV2l0aEFwcGxpY2F0aW9uUGFja2FnZS92ZXJzaW9ucy9mb28/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", "RequestMethod": "PUT", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1a87dfef-ca0c-41e1-a04e-a06f94fcac49" + "a48327b2-729d-46bf-b453-3bab11502e58" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/11.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Batch.BatchManagementClient/14.0.0.0" ] }, "ResponseHeaders": { @@ -27,13 +27,13 @@ "no-cache" ], "ETag": [ - "W/\"0x8D80CC2380B9135\"" + "W/\"0x8D9697789F2AF26\"" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], "x-ms-request-id": [ - "bfc7a8c3-24c0-4bca-991e-0b3c8afc3249" + "7d797a92-75fd-420d-a542-caf2df4a223e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -45,16 +45,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-correlation-request-id": [ - "8cd4c1b7-92d4-4291-b7e3-45cc51a21d13" + "306f87ab-dbfb-4ab6-ba6a-c0518942ee5d" ], "x-ms-routing-request-id": [ - "WESTUS:20200609T221237Z:8cd4c1b7-92d4-4291-b7e3-45cc51a21d13" + "NORTHCENTRALUS:20210827T162718Z:306f87ab-dbfb-4ab6-ba6a-c0518942ee5d" ], "Date": [ - "Tue, 09 Jun 2020 22:12:37 GMT" + "Fri, 27 Aug 2021 16:27:17 GMT" ], "Content-Length": [ - "636" + "655" ], "Content-Type": [ "application/json; charset=utf-8" @@ -63,39 +63,39 @@ "-1" ], "Last-Modified": [ - "Tue, 09 Jun 2020 22:12:37 GMT" + "Fri, 27 Aug 2021 16:27:18 GMT" ] }, - "ResponseBody": "{\r\n \"type\": \"Microsoft.Batch/batchAccounts/applications/versions\",\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/abc/providers/Microsoft.Batch/batchAccounts/prodtest6/applications/updatePoolWithApplicationPackage/versions/foo\",\r\n \"name\": \"foo\",\r\n \"etag\": \"W/\\\"0x8D80CC2380B9135\\\"\",\r\n \"properties\": {\r\n \"storageUrl\": \"https://prodtest6.blob.core.windows.net/app-updatepoolwithapplicationp-fce4a7259b94495289b98697f38fe49e/foo?sv=2018-03-28&sr=b&sig=Li1zpoJUxJaIYxfEl%2Fr15TjmEAtr1T%2BUWNBhlxuvw0g%3D&st=2020-06-09T22%3A07%3A37Z&se=2020-06-10T02%3A12%3A37Z&sp=rw\",\r\n \"storageUrlExpiry\": \"2020-06-10T02:12:37.675842Z\",\r\n \"state\": \"Pending\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"type\": \"Microsoft.Batch/batchAccounts/applications/versions\",\r\n \"id\": \"/subscriptions/ba2358c2-42f2-4138-88df-7c68cf608bea/resourceGroups/batchportal/providers/Microsoft.Batch/batchAccounts/mikeportal/applications/updatePoolWithApplicationPackage/versions/foo\",\r\n \"name\": \"foo\",\r\n \"etag\": \"W/\\\"0x8D9697789F2AF26\\\"\",\r\n \"properties\": {\r\n \"storageUrl\": \"https://mikebatchstorage.blob.core.windows.net/app-updatepoolwithapplicationp-693f87d870c94d1dae7e132e59efc8cf/foo?sv=2018-03-28&sr=b&sig=GtfRW%2BeX9bmIGCGe0UPGx6RXPu5ehOruk2GiEV%2BVY%2FI%3D&st=2021-08-27T16%3A22%3A18Z&se=2021-08-27T20%3A27%3A18Z&sp=rw\",\r\n \"storageUrlExpiry\": \"2021-08-27T20:27:18.6126944Z\",\r\n \"state\": \"Pending\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/pools?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L3Bvb2xzP2FwaS12ZXJzaW9uPTIwMjAtMDMtMDEuMTEuMA==", + "RequestUri": "/pools?api-version=2021-06-01.14.0", + "EncodedRequestUri": "L3Bvb2xzP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDEuMTQuMA==", "RequestMethod": "POST", - "RequestBody": "{\r\n \"id\": \"testUpdatePoolWithAppPackages\",\r\n \"vmSize\": \"small\",\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"osVersion\": \"*\"\r\n },\r\n \"targetDedicatedNodes\": 1,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableInterNodeCommunication\": true\r\n}", + "RequestBody": "{\r\n \"id\": \"testUpdatePoolWithAppPackages\",\r\n \"vmSize\": \"standard_d1_v2\",\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"osVersion\": \"*\"\r\n },\r\n \"targetDedicatedNodes\": 1,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableInterNodeCommunication\": true\r\n}", "RequestHeaders": { "client-request-id": [ - "c5c4a798-f59d-4deb-9c99-3f1eae080bf2" + "6ecf2d55-30a9-4ea5-8ea1-6e7f423589dd" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:12:37 GMT" + "Fri, 27 Aug 2021 16:27:19 GMT" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/13.0.20.15503", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", "AzurePowershell/Az1.0.0" ], "Content-Type": [ "application/json; odata=minimalmetadata; charset=utf-8" ], "Content-Length": [ - "254" + "263" ] }, "ResponseHeaders": { @@ -103,16 +103,16 @@ "chunked" ], "ETag": [ - "0x8D80CC2452E72E3" + "0x8D969778A21939A" ], "Location": [ - "https://prodtest6.francecentral.batch.azure.com/pools/testUpdatePoolWithAppPackages" + "https://mikeportal.eastus.batch.azure.com/pools/testUpdatePoolWithAppPackages" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "bd344103-86b7-4aa1-871a-6ac4fa456430" + "b1ef33b1-8aca-44db-a17b-bed0de1ff168" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -124,35 +124,35 @@ "3.0" ], "DataServiceId": [ - "https://prodtest6.francecentral.batch.azure.com/pools/testUpdatePoolWithAppPackages" + "https://mikeportal.eastus.batch.azure.com/pools/testUpdatePoolWithAppPackages" ], "Date": [ - "Tue, 09 Jun 2020 22:12:59 GMT" + "Fri, 27 Aug 2021 16:27:18 GMT" ], "Last-Modified": [ - "Tue, 09 Jun 2020 22:12:59 GMT" + "Fri, 27 Aug 2021 16:27:18 GMT" ] }, "ResponseBody": "", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/abc/providers/Microsoft.Batch/batchAccounts/prodtest6/applications/updatePoolWithApplicationPackage/versions/foo/activate?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2FiYy9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvcHJvZHRlc3Q2L2FwcGxpY2F0aW9ucy91cGRhdGVQb29sV2l0aEFwcGxpY2F0aW9uUGFja2FnZS92ZXJzaW9ucy9mb28vYWN0aXZhdGU/YXBpLXZlcnNpb249MjAyMC0wNS0wMQ==", + "RequestUri": "/subscriptions/ba2358c2-42f2-4138-88df-7c68cf608bea/resourceGroups/batchportal/providers/Microsoft.Batch/batchAccounts/mikeportal/applications/updatePoolWithApplicationPackage/versions/foo/activate?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmEyMzU4YzItNDJmMi00MTM4LTg4ZGYtN2M2OGNmNjA4YmVhL3Jlc291cmNlR3JvdXBzL2JhdGNocG9ydGFsL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9taWtlcG9ydGFsL2FwcGxpY2F0aW9ucy91cGRhdGVQb29sV2l0aEFwcGxpY2F0aW9uUGFja2FnZS92ZXJzaW9ucy9mb28vYWN0aXZhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", "RequestMethod": "POST", "RequestBody": "{\r\n \"format\": \"zip\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "7dd60b94-c64f-44da-afa6-d3d6173d6c75" + "9681b8c6-02a7-40ba-9a58-9959b230758d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/11.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Batch.BatchManagementClient/14.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -169,13 +169,13 @@ "no-cache" ], "ETag": [ - "W/\"0x8D80CC245A88694\"" + "W/\"0x8D969778AA13591\"" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], "x-ms-request-id": [ - "52dd30f0-9fd8-4096-a3a3-ce22964f6a10" + "52095983-a10c-4d0f-bb82-c2f832cc2e23" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -187,16 +187,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-correlation-request-id": [ - "bdb5b574-0efe-4749-bfe7-a859a859c624" + "091e92bb-3c57-4a18-9e77-4c924669f239" ], "x-ms-routing-request-id": [ - "WESTUS:20200609T221300Z:bdb5b574-0efe-4749-bfe7-a859a859c624" + "NORTHCENTRALUS:20210827T162719Z:091e92bb-3c57-4a18-9e77-4c924669f239" ], "Date": [ - "Tue, 09 Jun 2020 22:12:59 GMT" + "Fri, 27 Aug 2021 16:27:19 GMT" ], "Content-Length": [ - "699" + "716" ], "Content-Type": [ "application/json; charset=utf-8" @@ -205,29 +205,29 @@ "-1" ], "Last-Modified": [ - "Tue, 09 Jun 2020 22:13:00 GMT" + "Fri, 27 Aug 2021 16:27:19 GMT" ] }, - "ResponseBody": "{\r\n \"type\": \"Microsoft.Batch/batchAccounts/applications/versions\",\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/abc/providers/Microsoft.Batch/batchAccounts/prodtest6/applications/updatePoolWithApplicationPackage/versions/foo\",\r\n \"name\": \"foo\",\r\n \"etag\": \"W/\\\"0x8D80CC245A88694\\\"\",\r\n \"properties\": {\r\n \"storageUrl\": \"https://prodtest6.blob.core.windows.net/app-updatepoolwithapplicationp-fce4a7259b94495289b98697f38fe49e/foo?sv=2018-03-28&sr=b&sig=Jigu24OeaTWjy6PkSAK5kRjFvuxvqEybgK1cjLIZ2II%3D&st=2020-06-09T22%3A08%3A00Z&se=2020-06-10T02%3A13%3A00Z&sp=rw\",\r\n \"storageUrlExpiry\": \"2020-06-10T02:13:00.5258366Z\",\r\n \"state\": \"Active\",\r\n \"format\": \"zip\",\r\n \"lastActivationTime\": \"2020-06-09T22:13:00.4576242Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"type\": \"Microsoft.Batch/batchAccounts/applications/versions\",\r\n \"id\": \"/subscriptions/ba2358c2-42f2-4138-88df-7c68cf608bea/resourceGroups/batchportal/providers/Microsoft.Batch/batchAccounts/mikeportal/applications/updatePoolWithApplicationPackage/versions/foo\",\r\n \"name\": \"foo\",\r\n \"etag\": \"W/\\\"0x8D969778AA13591\\\"\",\r\n \"properties\": {\r\n \"storageUrl\": \"https://mikebatchstorage.blob.core.windows.net/app-updatepoolwithapplicationp-693f87d870c94d1dae7e132e59efc8cf/foo?sv=2018-03-28&sr=b&sig=8osGmSpQwUiLBnqUQ%2FvkP2gH4sGSEwirMM33FZFQcKg%3D&st=2021-08-27T16%3A22%3A19Z&se=2021-08-27T20%3A27%3A19Z&sp=rw\",\r\n \"storageUrlExpiry\": \"2021-08-27T20:27:19.774731Z\",\r\n \"state\": \"Active\",\r\n \"format\": \"zip\",\r\n \"lastActivationTime\": \"2021-08-27T16:27:19.7390407Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/abc/providers/Microsoft.Batch/batchAccounts/prodtest6/applications/updatePoolWithApplicationPackage/versions/foo?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2FiYy9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvcHJvZHRlc3Q2L2FwcGxpY2F0aW9ucy91cGRhdGVQb29sV2l0aEFwcGxpY2F0aW9uUGFja2FnZS92ZXJzaW9ucy9mb28/YXBpLXZlcnNpb249MjAyMC0wNS0wMQ==", + "RequestUri": "/subscriptions/ba2358c2-42f2-4138-88df-7c68cf608bea/resourceGroups/batchportal/providers/Microsoft.Batch/batchAccounts/mikeportal/applications/updatePoolWithApplicationPackage/versions/foo?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmEyMzU4YzItNDJmMi00MTM4LTg4ZGYtN2M2OGNmNjA4YmVhL3Jlc291cmNlR3JvdXBzL2JhdGNocG9ydGFsL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9taWtlcG9ydGFsL2FwcGxpY2F0aW9ucy91cGRhdGVQb29sV2l0aEFwcGxpY2F0aW9uUGFja2FnZS92ZXJzaW9ucy9mb28/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "33715840-a477-4a3c-97e3-9a5164ecb245" + "9681b8c6-02a7-40ba-9a58-9959b230758d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/11.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Batch.BatchManagementClient/14.0.0.0" ] }, "ResponseHeaders": { @@ -238,13 +238,13 @@ "no-cache" ], "ETag": [ - "W/\"0x8D80CC245A88694\"" + "W/\"0x8D969778AA13591\"" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11998" ], "x-ms-request-id": [ - "a82f3e84-1153-42a9-bbab-79c5c93c2e22" + "1b0a92fe-29d0-4364-a7f8-726b4349561c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -256,16 +256,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-correlation-request-id": [ - "10a30834-025b-4487-9ece-7f8d5d13d167" + "49596043-3f67-4778-bf29-e60bd4c0ae80" ], "x-ms-routing-request-id": [ - "WESTUS:20200609T221300Z:10a30834-025b-4487-9ece-7f8d5d13d167" + "NORTHCENTRALUS:20210827T162719Z:49596043-3f67-4778-bf29-e60bd4c0ae80" ], "Date": [ - "Tue, 09 Jun 2020 22:13:00 GMT" + "Fri, 27 Aug 2021 16:27:19 GMT" ], "Content-Length": [ - "699" + "717" ], "Content-Type": [ "application/json; charset=utf-8" @@ -274,32 +274,35 @@ "-1" ], "Last-Modified": [ - "Tue, 09 Jun 2020 22:13:00 GMT" + "Fri, 27 Aug 2021 16:27:19 GMT" ] }, - "ResponseBody": "{\r\n \"type\": \"Microsoft.Batch/batchAccounts/applications/versions\",\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/abc/providers/Microsoft.Batch/batchAccounts/prodtest6/applications/updatePoolWithApplicationPackage/versions/foo\",\r\n \"name\": \"foo\",\r\n \"etag\": \"W/\\\"0x8D80CC245A88694\\\"\",\r\n \"properties\": {\r\n \"storageUrl\": \"https://prodtest6.blob.core.windows.net/app-updatepoolwithapplicationp-fce4a7259b94495289b98697f38fe49e/foo?sv=2018-03-28&sr=b&sig=Jigu24OeaTWjy6PkSAK5kRjFvuxvqEybgK1cjLIZ2II%3D&st=2020-06-09T22%3A08%3A00Z&se=2020-06-10T02%3A13%3A00Z&sp=rw\",\r\n \"storageUrlExpiry\": \"2020-06-10T02:13:00.7528002Z\",\r\n \"state\": \"Active\",\r\n \"format\": \"zip\",\r\n \"lastActivationTime\": \"2020-06-09T22:13:00.4576242Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"type\": \"Microsoft.Batch/batchAccounts/applications/versions\",\r\n \"id\": \"/subscriptions/ba2358c2-42f2-4138-88df-7c68cf608bea/resourceGroups/batchportal/providers/Microsoft.Batch/batchAccounts/mikeportal/applications/updatePoolWithApplicationPackage/versions/foo\",\r\n \"name\": \"foo\",\r\n \"etag\": \"W/\\\"0x8D969778AA13591\\\"\",\r\n \"properties\": {\r\n \"storageUrl\": \"https://mikebatchstorage.blob.core.windows.net/app-updatepoolwithapplicationp-693f87d870c94d1dae7e132e59efc8cf/foo?sv=2018-03-28&sr=b&sig=8osGmSpQwUiLBnqUQ%2FvkP2gH4sGSEwirMM33FZFQcKg%3D&st=2021-08-27T16%3A22%3A19Z&se=2021-08-27T20%3A27%3A19Z&sp=rw\",\r\n \"storageUrlExpiry\": \"2021-08-27T20:27:19.8887313Z\",\r\n \"state\": \"Active\",\r\n \"format\": \"zip\",\r\n \"lastActivationTime\": \"2021-08-27T16:27:19.7390407Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/pools/testUpdatePoolWithAppPackages?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RVcGRhdGVQb29sV2l0aEFwcFBhY2thZ2VzP2FwaS12ZXJzaW9uPTIwMjAtMDMtMDEuMTEuMA==", + "RequestUri": "/pools/testUpdatePoolWithAppPackages?api-version=2021-06-01.14.0", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RVcGRhdGVQb29sV2l0aEFwcFBhY2thZ2VzP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDEuMTQuMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "d1df2bf3-cd53-4322-85ce-12076543878d" + "f9ad704f-1ea2-491d-950e-879e156c3a6c" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:13:00 GMT" + "Fri, 27 Aug 2021 16:27:20 GMT" + ], + "x-ms-client-request-id": [ + "c063dae5-1ed3-43b1-9809-6a6883d6a709" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/13.0.20.15503", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", "AzurePowershell/Az1.0.0" ] }, @@ -308,13 +311,13 @@ "chunked" ], "ETag": [ - "0x8D80CC2452E72E3" + "0x8D969778A21939A" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "ca8c3a98-b1a4-4d2e-bafa-a60a968ffd66" + "8d3e3625-2adb-4a35-8866-499f3acd8543" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -326,38 +329,41 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 22:13:22 GMT" + "Fri, 27 Aug 2021 16:27:19 GMT" ], "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Tue, 09 Jun 2020 22:12:59 GMT" + "Fri, 27 Aug 2021 16:27:18 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://prodtest6.francecentral.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testUpdatePoolWithAppPackages\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/pools/testUpdatePoolWithAppPackages\",\r\n \"eTag\": \"0x8D80CC2452E72E3\",\r\n \"lastModified\": \"2020-06-09T22:12:59.6785891Z\",\r\n \"creationTime\": \"2020-06-09T22:12:59.6785891Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2020-06-09T22:12:59.6785891Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2020-06-09T22:12:59.6785891Z\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT15M\",\r\n \"currentDedicatedNodes\": 0,\r\n \"targetDedicatedNodes\": 1,\r\n \"currentLowPriorityNodes\": 0,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": true,\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"osVersion\": \"*\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testUpdatePoolWithAppPackages\",\r\n \"url\": \"https://mikeportal.eastus.batch.azure.com/pools/testUpdatePoolWithAppPackages\",\r\n \"eTag\": \"0x8D969778A21939A\",\r\n \"lastModified\": \"2021-08-27T16:27:18.9116826Z\",\r\n \"creationTime\": \"2021-08-27T16:27:18.9116826Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2021-08-27T16:27:18.9116826Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2021-08-27T16:27:18.9116826Z\",\r\n \"vmSize\": \"standard_d1_v2\",\r\n \"resizeTimeout\": \"PT15M\",\r\n \"currentDedicatedNodes\": 0,\r\n \"targetDedicatedNodes\": 1,\r\n \"currentLowPriorityNodes\": 0,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": true,\r\n \"taskSlotsPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"osVersion\": \"*\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/pools/testUpdatePoolWithAppPackages?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RVcGRhdGVQb29sV2l0aEFwcFBhY2thZ2VzP2FwaS12ZXJzaW9uPTIwMjAtMDMtMDEuMTEuMA==", + "RequestUri": "/pools/testUpdatePoolWithAppPackages?api-version=2021-06-01.14.0", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RVcGRhdGVQb29sV2l0aEFwcFBhY2thZ2VzP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDEuMTQuMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "1ba6a450-7750-4bae-b1db-bdb2b845d629" + "50daeadf-5ac4-4edc-8828-f89f883d685a" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:13:22 GMT" + "Fri, 27 Aug 2021 16:27:21 GMT" + ], + "x-ms-client-request-id": [ + "0ca1ac47-0ec4-48a6-972c-0504faa669cc" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/13.0.20.15503", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", "AzurePowershell/Az1.0.0" ] }, @@ -366,13 +372,13 @@ "chunked" ], "ETag": [ - "0x8D80CC252E74359" + "0x8D969778AFC15A8" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "bb021e5e-e699-4a81-aed3-2628806604a1" + "1c92e725-758b-4766-9665-755b2475ab70" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -384,38 +390,41 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 22:13:22 GMT" + "Fri, 27 Aug 2021 16:27:19 GMT" ], "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Tue, 09 Jun 2020 22:13:22 GMT" + "Fri, 27 Aug 2021 16:27:20 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://prodtest6.francecentral.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testUpdatePoolWithAppPackages\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/pools/testUpdatePoolWithAppPackages\",\r\n \"eTag\": \"0x8D80CC252E74359\",\r\n \"lastModified\": \"2020-06-09T22:13:22.7001689Z\",\r\n \"creationTime\": \"2020-06-09T22:12:59.6785891Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2020-06-09T22:12:59.6785891Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2020-06-09T22:12:59.6785891Z\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT15M\",\r\n \"currentDedicatedNodes\": 0,\r\n \"targetDedicatedNodes\": 1,\r\n \"currentLowPriorityNodes\": 0,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": true,\r\n \"certificateReferences\": [],\r\n \"applicationPackageReferences\": [\r\n {\r\n \"applicationId\": \"updatepoolwithapplicationpackage\",\r\n \"version\": \"foo\"\r\n }\r\n ],\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"osVersion\": \"*\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"testUpdatePoolWithAppPackages\",\r\n \"url\": \"https://mikeportal.eastus.batch.azure.com/pools/testUpdatePoolWithAppPackages\",\r\n \"eTag\": \"0x8D969778AFC15A8\",\r\n \"lastModified\": \"2021-08-27T16:27:20.3436968Z\",\r\n \"creationTime\": \"2021-08-27T16:27:18.9116826Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2021-08-27T16:27:18.9116826Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2021-08-27T16:27:18.9116826Z\",\r\n \"vmSize\": \"standard_d1_v2\",\r\n \"resizeTimeout\": \"PT15M\",\r\n \"currentDedicatedNodes\": 0,\r\n \"targetDedicatedNodes\": 1,\r\n \"currentLowPriorityNodes\": 0,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": true,\r\n \"certificateReferences\": [],\r\n \"applicationPackageReferences\": [\r\n {\r\n \"applicationId\": \"updatepoolwithapplicationpackage\",\r\n \"version\": \"foo\"\r\n }\r\n ],\r\n \"taskSlotsPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"osVersion\": \"*\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/pools/testUpdatePoolWithAppPackages/updateproperties?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RVcGRhdGVQb29sV2l0aEFwcFBhY2thZ2VzL3VwZGF0ZXByb3BlcnRpZXM/YXBpLXZlcnNpb249MjAyMC0wMy0wMS4xMS4w", + "RequestUri": "/pools/testUpdatePoolWithAppPackages/updateproperties?api-version=2021-06-01.14.0", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RVcGRhdGVQb29sV2l0aEFwcFBhY2thZ2VzL3VwZGF0ZXByb3BlcnRpZXM/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4w", "RequestMethod": "POST", "RequestBody": "{\r\n \"certificateReferences\": [],\r\n \"applicationPackageReferences\": [\r\n {\r\n \"applicationId\": \"updatePoolWithApplicationPackage\",\r\n \"version\": \"foo\"\r\n }\r\n ],\r\n \"metadata\": []\r\n}", "RequestHeaders": { "client-request-id": [ - "a1e22080-f504-47a8-9ba6-412e90120c56" + "e9a7950b-6aca-4bf1-b395-21cb30eada94" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:13:22 GMT" + "Fri, 27 Aug 2021 16:27:21 GMT" + ], + "x-ms-client-request-id": [ + "cd36f118-1d1a-4648-835f-8de3aafafbd5" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/13.0.20.15503", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", "AzurePowershell/Az1.0.0" ], "Content-Type": [ @@ -427,13 +436,13 @@ }, "ResponseHeaders": { "ETag": [ - "0x8D80CC252E74359" + "0x8D969778AFC15A8" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "8b1fd394-1d9b-42d6-bb23-58683cfcd180" + "0ac975a3-f66f-46f2-983b-2b030dc5ef13" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -445,38 +454,38 @@ "3.0" ], "DataServiceId": [ - "https://prodtest6.francecentral.batch.azure.com/pools/testUpdatePoolWithAppPackages/updateproperties" + "https://mikeportal.eastus.batch.azure.com/pools/testUpdatePoolWithAppPackages/updateproperties" ], "Date": [ - "Tue, 09 Jun 2020 22:13:22 GMT" + "Fri, 27 Aug 2021 16:27:19 GMT" ], "Content-Length": [ "0" ], "Last-Modified": [ - "Tue, 09 Jun 2020 22:13:22 GMT" + "Fri, 27 Aug 2021 16:27:20 GMT" ] }, "ResponseBody": "", "StatusCode": 204 }, { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/abc/providers/Microsoft.Batch/batchAccounts/prodtest6/applications/updatePoolWithApplicationPackage/versions/foo?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2FiYy9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvcHJvZHRlc3Q2L2FwcGxpY2F0aW9ucy91cGRhdGVQb29sV2l0aEFwcGxpY2F0aW9uUGFja2FnZS92ZXJzaW9ucy9mb28/YXBpLXZlcnNpb249MjAyMC0wNS0wMQ==", + "RequestUri": "/subscriptions/ba2358c2-42f2-4138-88df-7c68cf608bea/resourceGroups/batchportal/providers/Microsoft.Batch/batchAccounts/mikeportal/applications/updatePoolWithApplicationPackage/versions/foo?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmEyMzU4YzItNDJmMi00MTM4LTg4ZGYtN2M2OGNmNjA4YmVhL3Jlc291cmNlR3JvdXBzL2JhdGNocG9ydGFsL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9taWtlcG9ydGFsL2FwcGxpY2F0aW9ucy91cGRhdGVQb29sV2l0aEFwcGxpY2F0aW9uUGFja2FnZS92ZXJzaW9ucy9mb28/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d723ec26-5c68-4848-a1de-b32524a2906a" + "494a9ade-4aa8-4deb-88f2-f411dc4f20ec" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/11.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Batch.BatchManagementClient/14.0.0.0" ] }, "ResponseHeaders": { @@ -487,7 +496,7 @@ "no-cache" ], "x-ms-request-id": [ - "d103eb4a-81a8-46fa-9a18-aa48805baa81" + "a9f0df00-eb1f-4bcd-828b-736e33a395bd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -502,13 +511,13 @@ "14999" ], "x-ms-correlation-request-id": [ - "3ea8cc7d-3093-4b0c-8564-407159b411a7" + "544b1cf0-540a-44a4-abd5-55c1e3637233" ], "x-ms-routing-request-id": [ - "WESTUS:20200609T221323Z:3ea8cc7d-3093-4b0c-8564-407159b411a7" + "NORTHCENTRALUS:20210827T162720Z:544b1cf0-540a-44a4-abd5-55c1e3637233" ], "Date": [ - "Tue, 09 Jun 2020 22:13:23 GMT" + "Fri, 27 Aug 2021 16:27:19 GMT" ], "Expires": [ "-1" @@ -521,22 +530,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/abc/providers/Microsoft.Batch/batchAccounts/prodtest6/applications/updatePoolWithApplicationPackage?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2FiYy9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvcHJvZHRlc3Q2L2FwcGxpY2F0aW9ucy91cGRhdGVQb29sV2l0aEFwcGxpY2F0aW9uUGFja2FnZT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/ba2358c2-42f2-4138-88df-7c68cf608bea/resourceGroups/batchportal/providers/Microsoft.Batch/batchAccounts/mikeportal/applications/updatePoolWithApplicationPackage?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmEyMzU4YzItNDJmMi00MTM4LTg4ZGYtN2M2OGNmNjA4YmVhL3Jlc291cmNlR3JvdXBzL2JhdGNocG9ydGFsL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9taWtlcG9ydGFsL2FwcGxpY2F0aW9ucy91cGRhdGVQb29sV2l0aEFwcGxpY2F0aW9uUGFja2FnZT9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "feab0546-7748-4c4e-9198-3ecaa3ce280b" + "886cc00c-a4c6-4b6b-ac32-8cba04d1bf02" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/11.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Batch.BatchManagementClient/14.0.0.0" ] }, "ResponseHeaders": { @@ -547,7 +556,7 @@ "no-cache" ], "x-ms-request-id": [ - "0a940dc8-7fa5-41d8-b017-14a1c6177aef" + "710946ea-b81e-476c-a17d-860c650a7028" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -562,13 +571,13 @@ "14998" ], "x-ms-correlation-request-id": [ - "3e6a53fe-c5cb-4028-ac30-995203f796b5" + "feabf09c-7628-427d-8764-2fb3e85430b4" ], "x-ms-routing-request-id": [ - "WESTUS:20200609T221323Z:3e6a53fe-c5cb-4028-ac30-995203f796b5" + "NORTHCENTRALUS:20210827T162720Z:feabf09c-7628-427d-8764-2fb3e85430b4" ], "Date": [ - "Tue, 09 Jun 2020 22:13:23 GMT" + "Fri, 27 Aug 2021 16:27:19 GMT" ], "Expires": [ "-1" @@ -581,25 +590,25 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testUpdatePoolWithAppPackages?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RVcGRhdGVQb29sV2l0aEFwcFBhY2thZ2VzP2FwaS12ZXJzaW9uPTIwMjAtMDMtMDEuMTEuMA==", + "RequestUri": "/pools/testUpdatePoolWithAppPackages?api-version=2021-06-01.14.0", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RVcGRhdGVQb29sV2l0aEFwcFBhY2thZ2VzP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDEuMTQuMA==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "1ad99870-a073-42ed-9210-0689ec6032f9" + "21571fcc-8e8a-4ecd-aa6e-38ca6254a4b8" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:13:23 GMT" + "Fri, 27 Aug 2021 16:27:21 GMT" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/13.0.20.15503", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", "AzurePowershell/Az1.0.0" ], "Content-Length": [ @@ -614,7 +623,7 @@ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "be596277-4c5d-4512-a10a-86de214118da" + "ea4bc722-43ba-43f9-b682-af60bc2d0722" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -626,7 +635,7 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 22:13:23 GMT" + "Fri, 27 Aug 2021 16:27:28 GMT" ] }, "ResponseBody": "", @@ -635,9 +644,9 @@ ], "Names": {}, "Variables": { - "SubscriptionId": "21abd678-18c5-4660-9fdd-8c5ba6b6fe1f", - "AZURE_BATCH_ACCOUNT": "prodtest6", - "AZURE_BATCH_ENDPOINT": "https://prodtest6.francecentral.batch.azure.com", - "AZURE_BATCH_RESOURCE_GROUP": "abc" + "SubscriptionId": "ba2358c2-42f2-4138-88df-7c68cf608bea", + "AZURE_BATCH_ACCOUNT": "mikeportal", + "AZURE_BATCH_ENDPOINT": "https://mikeportal.eastus.batch.azure.com", + "AZURE_BATCH_RESOURCE_GROUP": "batchportal" } } \ No newline at end of file diff --git a/src/Batch/Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.BatchApplicationPackageTests/TestUploadApplicationPackage.json b/src/Batch/Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.BatchApplicationPackageTests/TestUploadApplicationPackage.json index 5afc7f107d90..eb9dff013930 100644 --- a/src/Batch/Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.BatchApplicationPackageTests/TestUploadApplicationPackage.json +++ b/src/Batch/Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.BatchApplicationPackageTests/TestUploadApplicationPackage.json @@ -1,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/abc/providers/Microsoft.Batch/batchAccounts/prodtest6/applications/newApplicationPackage/versions/foo?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2FiYy9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvcHJvZHRlc3Q2L2FwcGxpY2F0aW9ucy9uZXdBcHBsaWNhdGlvblBhY2thZ2UvdmVyc2lvbnMvZm9vP2FwaS12ZXJzaW9uPTIwMjAtMDUtMDE=", + "RequestUri": "/subscriptions/ba2358c2-42f2-4138-88df-7c68cf608bea/resourceGroups/batchportal/providers/Microsoft.Batch/batchAccounts/mikeportal/applications/newApplicationPackage/versions/foo?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmEyMzU4YzItNDJmMi00MTM4LTg4ZGYtN2M2OGNmNjA4YmVhL3Jlc291cmNlR3JvdXBzL2JhdGNocG9ydGFsL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9taWtlcG9ydGFsL2FwcGxpY2F0aW9ucy9uZXdBcHBsaWNhdGlvblBhY2thZ2UvdmVyc2lvbnMvZm9vP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", "RequestMethod": "PUT", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "be5036fb-d75a-40a2-b8a4-01c7442de982" + "95a1b11e-cfd9-4fd0-98e0-3025c1e28ac9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/11.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Batch.BatchManagementClient/14.0.0.0" ] }, "ResponseHeaders": { @@ -27,13 +27,13 @@ "no-cache" ], "ETag": [ - "W/\"0x8D80CC235145DFA\"" + "W/\"0x8D9697787C1D9C9\"" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], "x-ms-request-id": [ - "c387cf0e-2e84-4751-9ebe-760e4ce4dda5" + "588afb5e-ac5b-48c5-bae1-01ad10703a2c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -45,16 +45,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-correlation-request-id": [ - "15d5fa40-7e0e-4297-905f-394603081b57" + "5a81143f-ade2-4621-8ede-86be3f498a49" ], "x-ms-routing-request-id": [ - "WESTUS:20200609T221232Z:15d5fa40-7e0e-4297-905f-394603081b57" + "NORTHCENTRALUS:20210827T162714Z:5a81143f-ade2-4621-8ede-86be3f498a49" ], "Date": [ - "Tue, 09 Jun 2020 22:12:32 GMT" + "Fri, 27 Aug 2021 16:27:14 GMT" ], "Content-Length": [ - "617" + "637" ], "Content-Type": [ "application/json; charset=utf-8" @@ -63,29 +63,29 @@ "-1" ], "Last-Modified": [ - "Tue, 09 Jun 2020 22:12:32 GMT" + "Fri, 27 Aug 2021 16:27:14 GMT" ] }, - "ResponseBody": "{\r\n \"type\": \"Microsoft.Batch/batchAccounts/applications/versions\",\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/abc/providers/Microsoft.Batch/batchAccounts/prodtest6/applications/newApplicationPackage/versions/foo\",\r\n \"name\": \"foo\",\r\n \"etag\": \"W/\\\"0x8D80CC235145DFA\\\"\",\r\n \"properties\": {\r\n \"storageUrl\": \"https://prodtest6.blob.core.windows.net/app-newapplicationpackage-5b1e069aefa444da926e1a90bb0c237e/foo?sv=2018-03-28&sr=b&sig=1JNwrvwG0QOQVJpEo1dKzK76R41xv9TqspLkgX0PWag%3D&st=2020-06-09T22%3A07%3A32Z&se=2020-06-10T02%3A12%3A32Z&sp=rw\",\r\n \"storageUrlExpiry\": \"2020-06-10T02:12:32.6702142Z\",\r\n \"state\": \"Pending\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"type\": \"Microsoft.Batch/batchAccounts/applications/versions\",\r\n \"id\": \"/subscriptions/ba2358c2-42f2-4138-88df-7c68cf608bea/resourceGroups/batchportal/providers/Microsoft.Batch/batchAccounts/mikeportal/applications/newApplicationPackage/versions/foo\",\r\n \"name\": \"foo\",\r\n \"etag\": \"W/\\\"0x8D9697787C1D9C9\\\"\",\r\n \"properties\": {\r\n \"storageUrl\": \"https://mikebatchstorage.blob.core.windows.net/app-newapplicationpackage-67c03a9c4ba84036809f80b72d2cd25e/foo?sv=2018-03-28&sr=b&sig=v2Q1O%2FrS7QscFmPb6F%2BvDSbXdJWjvTaujTI6wKxLYRI%3D&st=2021-08-27T16%3A22%3A14Z&se=2021-08-27T20%3A27%3A14Z&sp=rw\",\r\n \"storageUrlExpiry\": \"2021-08-27T20:27:14.9373501Z\",\r\n \"state\": \"Pending\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/abc/providers/Microsoft.Batch/batchAccounts/prodtest6/applications/newApplicationPackage/versions/foo/activate?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2FiYy9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvcHJvZHRlc3Q2L2FwcGxpY2F0aW9ucy9uZXdBcHBsaWNhdGlvblBhY2thZ2UvdmVyc2lvbnMvZm9vL2FjdGl2YXRlP2FwaS12ZXJzaW9uPTIwMjAtMDUtMDE=", + "RequestUri": "/subscriptions/ba2358c2-42f2-4138-88df-7c68cf608bea/resourceGroups/batchportal/providers/Microsoft.Batch/batchAccounts/mikeportal/applications/newApplicationPackage/versions/foo/activate?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmEyMzU4YzItNDJmMi00MTM4LTg4ZGYtN2M2OGNmNjA4YmVhL3Jlc291cmNlR3JvdXBzL2JhdGNocG9ydGFsL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9taWtlcG9ydGFsL2FwcGxpY2F0aW9ucy9uZXdBcHBsaWNhdGlvblBhY2thZ2UvdmVyc2lvbnMvZm9vL2FjdGl2YXRlP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", "RequestMethod": "POST", "RequestBody": "{\r\n \"format\": \"zip\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "21eb70ae-c350-40cf-a126-34c3a39f6ae0" + "f17b8d42-c5e3-4c24-a686-e02bdc20f719" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/11.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Batch.BatchManagementClient/14.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -102,13 +102,13 @@ "no-cache" ], "ETag": [ - "W/\"0x8D80CC235990F22\"" + "W/\"0x8D969778848AD66\"" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], "x-ms-request-id": [ - "424575d1-56c6-45d1-bc1d-f8c6e41b09d1" + "02a42f09-f80d-42e7-93de-71982b18d5e0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -120,16 +120,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-correlation-request-id": [ - "335a58c7-0eac-49d3-a4e3-93365d502f34" + "9ede8e17-51d5-48b4-8e7c-b05c75077c61" ], "x-ms-routing-request-id": [ - "WESTUS:20200609T221233Z:335a58c7-0eac-49d3-a4e3-93365d502f34" + "NORTHCENTRALUS:20210827T162715Z:9ede8e17-51d5-48b4-8e7c-b05c75077c61" ], "Date": [ - "Tue, 09 Jun 2020 22:12:33 GMT" + "Fri, 27 Aug 2021 16:27:15 GMT" ], "Content-Length": [ - "684" + "702" ], "Content-Type": [ "application/json; charset=utf-8" @@ -138,29 +138,29 @@ "-1" ], "Last-Modified": [ - "Tue, 09 Jun 2020 22:12:33 GMT" + "Fri, 27 Aug 2021 16:27:15 GMT" ] }, - "ResponseBody": "{\r\n \"type\": \"Microsoft.Batch/batchAccounts/applications/versions\",\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/abc/providers/Microsoft.Batch/batchAccounts/prodtest6/applications/newApplicationPackage/versions/foo\",\r\n \"name\": \"foo\",\r\n \"etag\": \"W/\\\"0x8D80CC235990F22\\\"\",\r\n \"properties\": {\r\n \"storageUrl\": \"https://prodtest6.blob.core.windows.net/app-newapplicationpackage-5b1e069aefa444da926e1a90bb0c237e/foo?sv=2018-03-28&sr=b&sig=jKREPjq6YasAdKPSbP%2FjGzLlZdLpwiJ4FPW5AH8MYoY%3D&st=2020-06-09T22%3A07%3A33Z&se=2020-06-10T02%3A12%3A33Z&sp=rw\",\r\n \"storageUrlExpiry\": \"2020-06-10T02:12:33.554584Z\",\r\n \"state\": \"Active\",\r\n \"format\": \"zip\",\r\n \"lastActivationTime\": \"2020-06-09T22:12:33.5286696Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"type\": \"Microsoft.Batch/batchAccounts/applications/versions\",\r\n \"id\": \"/subscriptions/ba2358c2-42f2-4138-88df-7c68cf608bea/resourceGroups/batchportal/providers/Microsoft.Batch/batchAccounts/mikeportal/applications/newApplicationPackage/versions/foo\",\r\n \"name\": \"foo\",\r\n \"etag\": \"W/\\\"0x8D969778848AD66\\\"\",\r\n \"properties\": {\r\n \"storageUrl\": \"https://mikebatchstorage.blob.core.windows.net/app-newapplicationpackage-67c03a9c4ba84036809f80b72d2cd25e/foo?sv=2018-03-28&sr=b&sig=ok5Mbp%2Bvg07dKaFYyX%2FhEnuXPUYxCPhOQZRpCoyjmbY%3D&st=2021-08-27T16%3A22%3A15Z&se=2021-08-27T20%3A27%3A15Z&sp=rw\",\r\n \"storageUrlExpiry\": \"2021-08-27T20:27:15.8477308Z\",\r\n \"state\": \"Active\",\r\n \"format\": \"zip\",\r\n \"lastActivationTime\": \"2021-08-27T16:27:15.801371Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/abc/providers/Microsoft.Batch/batchAccounts/prodtest6/applications/newApplicationPackage/versions/foo?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2FiYy9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvcHJvZHRlc3Q2L2FwcGxpY2F0aW9ucy9uZXdBcHBsaWNhdGlvblBhY2thZ2UvdmVyc2lvbnMvZm9vP2FwaS12ZXJzaW9uPTIwMjAtMDUtMDE=", + "RequestUri": "/subscriptions/ba2358c2-42f2-4138-88df-7c68cf608bea/resourceGroups/batchportal/providers/Microsoft.Batch/batchAccounts/mikeportal/applications/newApplicationPackage/versions/foo?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmEyMzU4YzItNDJmMi00MTM4LTg4ZGYtN2M2OGNmNjA4YmVhL3Jlc291cmNlR3JvdXBzL2JhdGNocG9ydGFsL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9taWtlcG9ydGFsL2FwcGxpY2F0aW9ucy9uZXdBcHBsaWNhdGlvblBhY2thZ2UvdmVyc2lvbnMvZm9vP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "77edf802-9fcd-44eb-ab05-28ac21b26beb" + "f17b8d42-c5e3-4c24-a686-e02bdc20f719" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/11.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Batch.BatchManagementClient/14.0.0.0" ] }, "ResponseHeaders": { @@ -171,13 +171,13 @@ "no-cache" ], "ETag": [ - "W/\"0x8D80CC235990F22\"" + "W/\"0x8D969778848AD66\"" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11999" ], "x-ms-request-id": [ - "99fad165-0ced-418f-8e5e-f527a7b169dc" + "d9527b13-70e7-4b91-a53a-b241e700be55" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -189,16 +189,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-correlation-request-id": [ - "5ef665b3-3953-4167-acb7-bac8eb2afe76" + "51a8786f-dbc8-40d6-b40a-9839331891ff" ], "x-ms-routing-request-id": [ - "WESTUS:20200609T221233Z:5ef665b3-3953-4167-acb7-bac8eb2afe76" + "NORTHCENTRALUS:20210827T162715Z:51a8786f-dbc8-40d6-b40a-9839331891ff" ], "Date": [ - "Tue, 09 Jun 2020 22:12:33 GMT" + "Fri, 27 Aug 2021 16:27:15 GMT" ], "Content-Length": [ - "685" + "702" ], "Content-Type": [ "application/json; charset=utf-8" @@ -207,29 +207,29 @@ "-1" ], "Last-Modified": [ - "Tue, 09 Jun 2020 22:12:33 GMT" + "Fri, 27 Aug 2021 16:27:15 GMT" ] }, - "ResponseBody": "{\r\n \"type\": \"Microsoft.Batch/batchAccounts/applications/versions\",\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/abc/providers/Microsoft.Batch/batchAccounts/prodtest6/applications/newApplicationPackage/versions/foo\",\r\n \"name\": \"foo\",\r\n \"etag\": \"W/\\\"0x8D80CC235990F22\\\"\",\r\n \"properties\": {\r\n \"storageUrl\": \"https://prodtest6.blob.core.windows.net/app-newapplicationpackage-5b1e069aefa444da926e1a90bb0c237e/foo?sv=2018-03-28&sr=b&sig=jKREPjq6YasAdKPSbP%2FjGzLlZdLpwiJ4FPW5AH8MYoY%3D&st=2020-06-09T22%3A07%3A33Z&se=2020-06-10T02%3A12%3A33Z&sp=rw\",\r\n \"storageUrlExpiry\": \"2020-06-10T02:12:33.7546832Z\",\r\n \"state\": \"Active\",\r\n \"format\": \"zip\",\r\n \"lastActivationTime\": \"2020-06-09T22:12:33.5286696Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"type\": \"Microsoft.Batch/batchAccounts/applications/versions\",\r\n \"id\": \"/subscriptions/ba2358c2-42f2-4138-88df-7c68cf608bea/resourceGroups/batchportal/providers/Microsoft.Batch/batchAccounts/mikeportal/applications/newApplicationPackage/versions/foo\",\r\n \"name\": \"foo\",\r\n \"etag\": \"W/\\\"0x8D969778848AD66\\\"\",\r\n \"properties\": {\r\n \"storageUrl\": \"https://mikebatchstorage.blob.core.windows.net/app-newapplicationpackage-67c03a9c4ba84036809f80b72d2cd25e/foo?sv=2018-03-28&sr=b&sig=ok5Mbp%2Bvg07dKaFYyX%2FhEnuXPUYxCPhOQZRpCoyjmbY%3D&st=2021-08-27T16%3A22%3A15Z&se=2021-08-27T20%3A27%3A15Z&sp=rw\",\r\n \"storageUrlExpiry\": \"2021-08-27T20:27:15.9627311Z\",\r\n \"state\": \"Active\",\r\n \"format\": \"zip\",\r\n \"lastActivationTime\": \"2021-08-27T16:27:15.801371Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/abc/providers/Microsoft.Batch/batchAccounts/prodtest6/applications/newApplicationPackage/versions/foo?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2FiYy9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvcHJvZHRlc3Q2L2FwcGxpY2F0aW9ucy9uZXdBcHBsaWNhdGlvblBhY2thZ2UvdmVyc2lvbnMvZm9vP2FwaS12ZXJzaW9uPTIwMjAtMDUtMDE=", + "RequestUri": "/subscriptions/ba2358c2-42f2-4138-88df-7c68cf608bea/resourceGroups/batchportal/providers/Microsoft.Batch/batchAccounts/mikeportal/applications/newApplicationPackage/versions/foo?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmEyMzU4YzItNDJmMi00MTM4LTg4ZGYtN2M2OGNmNjA4YmVhL3Jlc291cmNlR3JvdXBzL2JhdGNocG9ydGFsL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9taWtlcG9ydGFsL2FwcGxpY2F0aW9ucy9uZXdBcHBsaWNhdGlvblBhY2thZ2UvdmVyc2lvbnMvZm9vP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c067121b-e7b2-4378-a73b-2efe2b394c50" + "5b7731e3-026f-4a5a-90a2-4e0339626c2f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/11.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Batch.BatchManagementClient/14.0.0.0" ] }, "ResponseHeaders": { @@ -240,7 +240,7 @@ "no-cache" ], "x-ms-request-id": [ - "f57620d4-67d5-49bf-a4b1-ab7b9f5ce730" + "f3a75eb6-6d4d-4839-b579-c39a7a5116e6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -255,13 +255,13 @@ "14999" ], "x-ms-correlation-request-id": [ - "3e74ab42-f52e-4136-897d-8d8bc5cf6368" + "2d220b9e-52f1-4ff0-b637-b2513eee1e93" ], "x-ms-routing-request-id": [ - "WESTUS:20200609T221234Z:3e74ab42-f52e-4136-897d-8d8bc5cf6368" + "NORTHCENTRALUS:20210827T162716Z:2d220b9e-52f1-4ff0-b637-b2513eee1e93" ], "Date": [ - "Tue, 09 Jun 2020 22:12:33 GMT" + "Fri, 27 Aug 2021 16:27:15 GMT" ], "Expires": [ "-1" @@ -274,22 +274,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/abc/providers/Microsoft.Batch/batchAccounts/prodtest6/applications/newApplicationPackage?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2FiYy9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvcHJvZHRlc3Q2L2FwcGxpY2F0aW9ucy9uZXdBcHBsaWNhdGlvblBhY2thZ2U/YXBpLXZlcnNpb249MjAyMC0wNS0wMQ==", + "RequestUri": "/subscriptions/ba2358c2-42f2-4138-88df-7c68cf608bea/resourceGroups/batchportal/providers/Microsoft.Batch/batchAccounts/mikeportal/applications/newApplicationPackage?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmEyMzU4YzItNDJmMi00MTM4LTg4ZGYtN2M2OGNmNjA4YmVhL3Jlc291cmNlR3JvdXBzL2JhdGNocG9ydGFsL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9taWtlcG9ydGFsL2FwcGxpY2F0aW9ucy9uZXdBcHBsaWNhdGlvblBhY2thZ2U/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a5d2e1e8-427e-464f-8c5c-69f67f4394ba" + "8fad78a7-083a-4241-9979-67707068b065" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/11.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Batch.BatchManagementClient/14.0.0.0" ] }, "ResponseHeaders": { @@ -300,7 +300,7 @@ "no-cache" ], "x-ms-request-id": [ - "2cc49a12-b15a-4b46-8030-d827ceb724f6" + "2b06a2d0-e0e9-40a2-bf6c-1c86d51192ab" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -315,13 +315,13 @@ "14998" ], "x-ms-correlation-request-id": [ - "2f7f63c7-49b4-43e1-ae71-f37779f67b54" + "fdd55d29-ffd3-4be2-9d76-de18dd14ba4f" ], "x-ms-routing-request-id": [ - "WESTUS:20200609T221234Z:2f7f63c7-49b4-43e1-ae71-f37779f67b54" + "NORTHCENTRALUS:20210827T162716Z:fdd55d29-ffd3-4be2-9d76-de18dd14ba4f" ], "Date": [ - "Tue, 09 Jun 2020 22:12:34 GMT" + "Fri, 27 Aug 2021 16:27:15 GMT" ], "Expires": [ "-1" @@ -336,9 +336,9 @@ ], "Names": {}, "Variables": { - "SubscriptionId": "21abd678-18c5-4660-9fdd-8c5ba6b6fe1f", - "AZURE_BATCH_ACCOUNT": "prodtest6", - "AZURE_BATCH_ENDPOINT": "https://prodtest6.francecentral.batch.azure.com", - "AZURE_BATCH_RESOURCE_GROUP": "abc" + "SubscriptionId": "ba2358c2-42f2-4138-88df-7c68cf608bea", + "AZURE_BATCH_ACCOUNT": "mikeportal", + "AZURE_BATCH_ENDPOINT": "https://mikeportal.eastus.batch.azure.com", + "AZURE_BATCH_RESOURCE_GROUP": "batchportal" } } \ No newline at end of file diff --git a/src/Batch/Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.BatchApplicationTests/TestAddApplication.json b/src/Batch/Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.BatchApplicationTests/TestAddApplication.json index e9b914bd77f4..4459f2d0a789 100644 --- a/src/Batch/Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.BatchApplicationTests/TestAddApplication.json +++ b/src/Batch/Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.BatchApplicationTests/TestAddApplication.json @@ -1,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/abc/providers/Microsoft.Batch/batchAccounts/prodtest6/applications/test?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2FiYy9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvcHJvZHRlc3Q2L2FwcGxpY2F0aW9ucy90ZXN0P2FwaS12ZXJzaW9uPTIwMjAtMDUtMDE=", + "RequestUri": "/subscriptions/ba2358c2-42f2-4138-88df-7c68cf608bea/resourceGroups/batchportal/providers/Microsoft.Batch/batchAccounts/mikeportal/applications/test?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmEyMzU4YzItNDJmMi00MTM4LTg4ZGYtN2M2OGNmNjA4YmVhL3Jlc291cmNlR3JvdXBzL2JhdGNocG9ydGFsL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9taWtlcG9ydGFsL2FwcGxpY2F0aW9ucy90ZXN0P2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", "RequestMethod": "PUT", "RequestBody": "{}", "RequestHeaders": { "x-ms-client-request-id": [ - "f4825f58-e494-477a-95ac-a49d93c1b111" + "91ac9431-4c34-44c3-9bdb-3f790ea3e374" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/11.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Batch.BatchManagementClient/14.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -33,13 +33,13 @@ "no-cache" ], "ETag": [ - "W/\"0x8D80CB682453028\"" + "W/\"0x8D9697791F8ADB4\"" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], "x-ms-request-id": [ - "42d5648b-6a69-4b2a-8144-ebf90c80d319" + "abe99702-209a-4d8b-9f2e-92f6995a95f4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -51,16 +51,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-correlation-request-id": [ - "a965f9fb-5d7e-435e-b192-c683de73fb75" + "d8b06315-b7c4-4b87-b720-568ee14b66e6" ], "x-ms-routing-request-id": [ - "WESTUS:20200609T204848Z:a965f9fb-5d7e-435e-b192-c683de73fb75" + "NORTHCENTRALUS:20210827T162732Z:d8b06315-b7c4-4b87-b720-568ee14b66e6" ], "Date": [ - "Tue, 09 Jun 2020 20:48:48 GMT" + "Fri, 27 Aug 2021 16:27:31 GMT" ], "Content-Length": [ - "281" + "290" ], "Content-Type": [ "application/json; charset=utf-8" @@ -69,29 +69,29 @@ "-1" ], "Last-Modified": [ - "Tue, 09 Jun 2020 20:48:48 GMT" + "Fri, 27 Aug 2021 16:27:32 GMT" ] }, - "ResponseBody": "{\r\n \"type\": \"Microsoft.Batch/batchAccounts/applications\",\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/abc/providers/Microsoft.Batch/batchAccounts/prodtest6/applications/test\",\r\n \"name\": \"test\",\r\n \"etag\": \"W/\\\"0x8D80CB682453028\\\"\",\r\n \"properties\": {\r\n \"allowUpdates\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"type\": \"Microsoft.Batch/batchAccounts/applications\",\r\n \"id\": \"/subscriptions/ba2358c2-42f2-4138-88df-7c68cf608bea/resourceGroups/batchportal/providers/Microsoft.Batch/batchAccounts/mikeportal/applications/test\",\r\n \"name\": \"test\",\r\n \"etag\": \"W/\\\"0x8D9697791F8ADB4\\\"\",\r\n \"properties\": {\r\n \"allowUpdates\": true\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/abc/providers/Microsoft.Batch/batchAccounts/prodtest6/applications/test?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2FiYy9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvcHJvZHRlc3Q2L2FwcGxpY2F0aW9ucy90ZXN0P2FwaS12ZXJzaW9uPTIwMjAtMDUtMDE=", + "RequestUri": "/subscriptions/ba2358c2-42f2-4138-88df-7c68cf608bea/resourceGroups/batchportal/providers/Microsoft.Batch/batchAccounts/mikeportal/applications/test?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmEyMzU4YzItNDJmMi00MTM4LTg4ZGYtN2M2OGNmNjA4YmVhL3Jlc291cmNlR3JvdXBzL2JhdGNocG9ydGFsL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9taWtlcG9ydGFsL2FwcGxpY2F0aW9ucy90ZXN0P2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3e26adea-8d56-496d-926b-2bb0639ba7dc" + "08fec545-89d4-43b5-823d-fd1f17532a19" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/11.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Batch.BatchManagementClient/14.0.0.0" ] }, "ResponseHeaders": { @@ -102,13 +102,13 @@ "no-cache" ], "ETag": [ - "W/\"0x8D80CB682453028\"" + "W/\"0x8D9697791F8ADB4\"" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11999" ], "x-ms-request-id": [ - "3077158e-5fee-44ed-8472-0d3b47d877c4" + "bf64962f-8bae-4908-9c5d-de798afe6694" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -120,16 +120,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-correlation-request-id": [ - "d650650d-806e-418c-8e91-d75009876406" + "6243da41-2c8a-476c-893d-89c35753ec5f" ], "x-ms-routing-request-id": [ - "WESTUS:20200609T204848Z:d650650d-806e-418c-8e91-d75009876406" + "NORTHCENTRALUS:20210827T162732Z:6243da41-2c8a-476c-893d-89c35753ec5f" ], "Date": [ - "Tue, 09 Jun 2020 20:48:48 GMT" + "Fri, 27 Aug 2021 16:27:31 GMT" ], "Content-Length": [ - "281" + "290" ], "Content-Type": [ "application/json; charset=utf-8" @@ -138,29 +138,29 @@ "-1" ], "Last-Modified": [ - "Tue, 09 Jun 2020 20:48:48 GMT" + "Fri, 27 Aug 2021 16:27:32 GMT" ] }, - "ResponseBody": "{\r\n \"type\": \"Microsoft.Batch/batchAccounts/applications\",\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/abc/providers/Microsoft.Batch/batchAccounts/prodtest6/applications/test\",\r\n \"name\": \"test\",\r\n \"etag\": \"W/\\\"0x8D80CB682453028\\\"\",\r\n \"properties\": {\r\n \"allowUpdates\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"type\": \"Microsoft.Batch/batchAccounts/applications\",\r\n \"id\": \"/subscriptions/ba2358c2-42f2-4138-88df-7c68cf608bea/resourceGroups/batchportal/providers/Microsoft.Batch/batchAccounts/mikeportal/applications/test\",\r\n \"name\": \"test\",\r\n \"etag\": \"W/\\\"0x8D9697791F8ADB4\\\"\",\r\n \"properties\": {\r\n \"allowUpdates\": true\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/abc/providers/Microsoft.Batch/batchAccounts/prodtest6/applications/test?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2FiYy9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvcHJvZHRlc3Q2L2FwcGxpY2F0aW9ucy90ZXN0P2FwaS12ZXJzaW9uPTIwMjAtMDUtMDE=", + "RequestUri": "/subscriptions/ba2358c2-42f2-4138-88df-7c68cf608bea/resourceGroups/batchportal/providers/Microsoft.Batch/batchAccounts/mikeportal/applications/test?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmEyMzU4YzItNDJmMi00MTM4LTg4ZGYtN2M2OGNmNjA4YmVhL3Jlc291cmNlR3JvdXBzL2JhdGNocG9ydGFsL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9taWtlcG9ydGFsL2FwcGxpY2F0aW9ucy90ZXN0P2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e65d8e67-613d-43c3-ba2c-e0390d38a0b7" + "446c6860-2a68-4a0e-9d20-80c267844de6" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/11.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Batch.BatchManagementClient/14.0.0.0" ] }, "ResponseHeaders": { @@ -171,7 +171,7 @@ "no-cache" ], "x-ms-request-id": [ - "23741bbf-5a5e-4674-ac2d-aa2da60135ba" + "916a6070-2d9e-4ce5-9864-754787e3c7b4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -186,13 +186,13 @@ "14999" ], "x-ms-correlation-request-id": [ - "5c342b65-0358-49b9-9680-51b4adc64768" + "0d573e25-529e-4764-944e-46fe47807f24" ], "x-ms-routing-request-id": [ - "WESTUS:20200609T204849Z:5c342b65-0358-49b9-9680-51b4adc64768" + "NORTHCENTRALUS:20210827T162732Z:0d573e25-529e-4764-944e-46fe47807f24" ], "Date": [ - "Tue, 09 Jun 2020 20:48:48 GMT" + "Fri, 27 Aug 2021 16:27:32 GMT" ], "Expires": [ "-1" @@ -207,9 +207,9 @@ ], "Names": {}, "Variables": { - "SubscriptionId": "21abd678-18c5-4660-9fdd-8c5ba6b6fe1f", - "AZURE_BATCH_ACCOUNT": "prodtest6", - "AZURE_BATCH_ENDPOINT": "https://prodtest6.francecentral.batch.azure.com", - "AZURE_BATCH_RESOURCE_GROUP": "abc" + "SubscriptionId": "ba2358c2-42f2-4138-88df-7c68cf608bea", + "AZURE_BATCH_ACCOUNT": "mikeportal", + "AZURE_BATCH_ENDPOINT": "https://mikeportal.eastus.batch.azure.com", + "AZURE_BATCH_RESOURCE_GROUP": "batchportal" } } \ No newline at end of file diff --git a/src/Batch/Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.CertificateTests/TestCancelCertificateDelete.json b/src/Batch/Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.CertificateTests/TestCancelCertificateDelete.json index 769b1b52933f..a5f8e8a2e4f5 100644 --- a/src/Batch/Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.CertificateTests/TestCancelCertificateDelete.json +++ b/src/Batch/Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.CertificateTests/TestCancelCertificateDelete.json @@ -1,25 +1,25 @@ { "Entries": [ { - "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)?api-version=2020-03-01.11.0&$select=thumbprint%2Cstate", - "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1DMUU0OTRBNDE1MTQ5QzVGMjExQzQ3NzhCNTJGMkU4MzRBMDcyNDdDKT9hcGktdmVyc2lvbj0yMDIwLTAzLTAxLjExLjAmJHNlbGVjdD10aHVtYnByaW50JTJDc3RhdGU=", + "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)?api-version=2021-06-01.14.0&$select=thumbprint%2Cstate", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1DMUU0OTRBNDE1MTQ5QzVGMjExQzQ3NzhCNTJGMkU4MzRBMDcyNDdDKT9hcGktdmVyc2lvbj0yMDIxLTA2LTAxLjE0LjAmJHNlbGVjdD10aHVtYnByaW50JTJDc3RhdGU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "f58e819f-9afa-474c-924f-93d9e96588ec" + "8168e391-951d-4b90-b61d-e6346bc62ab9" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 20:49:15 GMT" + "Fri, 27 Aug 2021 15:57:04 GMT" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/13.0.20.15503", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", "AzurePowershell/Az1.0.0" ] }, @@ -31,7 +31,7 @@ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "b7db7c3a-a9cc-445e-9503-85bbe38dceb4" + "cb57c544-f734-4f9c-bf88-a7d3f3365552" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -43,35 +43,35 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 20:49:36 GMT" + "Fri, 27 Aug 2021 15:57:03 GMT" ], "Content-Type": [ "application/json; odata=minimalmetadata" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://prodtest6.francecentral.batch.azure.com/$metadata#certificates/@Element\",\r\n \"thumbprint\": \"c1e494a415149c5f211c4778b52f2e834a07247c\",\r\n \"state\": \"deleting\"\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#certificates/@Element\",\r\n \"thumbprint\": \"c1e494a415149c5f211c4778b52f2e834a07247c\",\r\n \"state\": \"deleting\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)?api-version=2020-03-01.11.0&$select=thumbprint%2Cstate", - "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1DMUU0OTRBNDE1MTQ5QzVGMjExQzQ3NzhCNTJGMkU4MzRBMDcyNDdDKT9hcGktdmVyc2lvbj0yMDIwLTAzLTAxLjExLjAmJHNlbGVjdD10aHVtYnByaW50JTJDc3RhdGU=", + "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)?api-version=2021-06-01.14.0&$select=thumbprint%2Cstate", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1DMUU0OTRBNDE1MTQ5QzVGMjExQzQ3NzhCNTJGMkU4MzRBMDcyNDdDKT9hcGktdmVyc2lvbj0yMDIxLTA2LTAxLjE0LjAmJHNlbGVjdD10aHVtYnByaW50JTJDc3RhdGU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "e95b16ee-6b1e-4cbf-9c6f-7a421d3ce41f" + "3d902bb3-98f2-494a-9cbe-d27c30d3b080" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 20:49:41 GMT" + "Fri, 27 Aug 2021 15:57:09 GMT" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/13.0.20.15503", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", "AzurePowershell/Az1.0.0" ] }, @@ -83,7 +83,7 @@ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "7066329a-2659-472c-9e6e-9b11e30fefdf" + "66471693-6556-4da6-a03e-0b52a7bd811d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -95,35 +95,35 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 20:49:41 GMT" + "Fri, 27 Aug 2021 15:57:08 GMT" ], "Content-Type": [ "application/json; odata=minimalmetadata" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://prodtest6.francecentral.batch.azure.com/$metadata#certificates/@Element\",\r\n \"thumbprint\": \"c1e494a415149c5f211c4778b52f2e834a07247c\",\r\n \"state\": \"deleting\"\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#certificates/@Element\",\r\n \"thumbprint\": \"c1e494a415149c5f211c4778b52f2e834a07247c\",\r\n \"state\": \"deleting\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)?api-version=2020-03-01.11.0&$select=thumbprint%2Cstate", - "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1DMUU0OTRBNDE1MTQ5QzVGMjExQzQ3NzhCNTJGMkU4MzRBMDcyNDdDKT9hcGktdmVyc2lvbj0yMDIwLTAzLTAxLjExLjAmJHNlbGVjdD10aHVtYnByaW50JTJDc3RhdGU=", + "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)?api-version=2021-06-01.14.0&$select=thumbprint%2Cstate", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1DMUU0OTRBNDE1MTQ5QzVGMjExQzQ3NzhCNTJGMkU4MzRBMDcyNDdDKT9hcGktdmVyc2lvbj0yMDIxLTA2LTAxLjE0LjAmJHNlbGVjdD10aHVtYnByaW50JTJDc3RhdGU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "8e5c1759-55b8-4182-9859-6fba8cc2f954" + "c5c51bae-3b83-4637-8c29-b5f253cc970a" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 20:49:47 GMT" + "Fri, 27 Aug 2021 15:57:14 GMT" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/13.0.20.15503", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", "AzurePowershell/Az1.0.0" ] }, @@ -135,7 +135,7 @@ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "70bcc395-18bc-4311-931c-acb52a7e21f4" + "846151be-313e-4e55-ac19-232b7bb0d993" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -147,35 +147,35 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 20:49:47 GMT" + "Fri, 27 Aug 2021 15:57:13 GMT" ], "Content-Type": [ "application/json; odata=minimalmetadata" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://prodtest6.francecentral.batch.azure.com/$metadata#certificates/@Element\",\r\n \"thumbprint\": \"c1e494a415149c5f211c4778b52f2e834a07247c\",\r\n \"state\": \"deleting\"\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#certificates/@Element\",\r\n \"thumbprint\": \"c1e494a415149c5f211c4778b52f2e834a07247c\",\r\n \"state\": \"deleting\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)?api-version=2020-03-01.11.0&$select=thumbprint%2Cstate", - "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1DMUU0OTRBNDE1MTQ5QzVGMjExQzQ3NzhCNTJGMkU4MzRBMDcyNDdDKT9hcGktdmVyc2lvbj0yMDIwLTAzLTAxLjExLjAmJHNlbGVjdD10aHVtYnByaW50JTJDc3RhdGU=", + "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)?api-version=2021-06-01.14.0&$select=thumbprint%2Cstate", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1DMUU0OTRBNDE1MTQ5QzVGMjExQzQ3NzhCNTJGMkU4MzRBMDcyNDdDKT9hcGktdmVyc2lvbj0yMDIxLTA2LTAxLjE0LjAmJHNlbGVjdD10aHVtYnByaW50JTJDc3RhdGU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "f19327ad-9f99-44d8-a7d7-6640f5907228" + "99063606-0b56-459a-b837-b3c9febd22ae" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 20:49:52 GMT" + "Fri, 27 Aug 2021 15:57:19 GMT" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/13.0.20.15503", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", "AzurePowershell/Az1.0.0" ] }, @@ -187,7 +187,7 @@ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "86cd3c0a-64cf-4d8d-8eb1-03150ba5d005" + "4a73d68e-6f48-41b8-802b-7559cce44c13" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -199,35 +199,35 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 20:49:52 GMT" + "Fri, 27 Aug 2021 15:57:18 GMT" ], "Content-Type": [ "application/json; odata=minimalmetadata" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://prodtest6.francecentral.batch.azure.com/$metadata#certificates/@Element\",\r\n \"thumbprint\": \"c1e494a415149c5f211c4778b52f2e834a07247c\",\r\n \"state\": \"deleting\"\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#certificates/@Element\",\r\n \"thumbprint\": \"c1e494a415149c5f211c4778b52f2e834a07247c\",\r\n \"state\": \"deleting\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)?api-version=2020-03-01.11.0&$select=thumbprint%2Cstate", - "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1DMUU0OTRBNDE1MTQ5QzVGMjExQzQ3NzhCNTJGMkU4MzRBMDcyNDdDKT9hcGktdmVyc2lvbj0yMDIwLTAzLTAxLjExLjAmJHNlbGVjdD10aHVtYnByaW50JTJDc3RhdGU=", + "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)?api-version=2021-06-01.14.0&$select=thumbprint%2Cstate", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1DMUU0OTRBNDE1MTQ5QzVGMjExQzQ3NzhCNTJGMkU4MzRBMDcyNDdDKT9hcGktdmVyc2lvbj0yMDIxLTA2LTAxLjE0LjAmJHNlbGVjdD10aHVtYnByaW50JTJDc3RhdGU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "17598cf2-10aa-4d62-8525-b76bb14c85ae" + "2c6accae-da68-4113-b19f-232fac2281a6" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 20:49:57 GMT" + "Fri, 27 Aug 2021 15:57:24 GMT" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/13.0.20.15503", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", "AzurePowershell/Az1.0.0" ] }, @@ -239,7 +239,7 @@ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "de138741-7db1-456b-9ec2-cd638d962e00" + "76948fee-1f48-40e1-bf91-5059403f6b27" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -251,35 +251,35 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 20:49:57 GMT" + "Fri, 27 Aug 2021 15:57:23 GMT" ], "Content-Type": [ "application/json; odata=minimalmetadata" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://prodtest6.francecentral.batch.azure.com/$metadata#certificates/@Element\",\r\n \"thumbprint\": \"c1e494a415149c5f211c4778b52f2e834a07247c\",\r\n \"state\": \"deleting\"\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#certificates/@Element\",\r\n \"thumbprint\": \"c1e494a415149c5f211c4778b52f2e834a07247c\",\r\n \"state\": \"deleting\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)?api-version=2020-03-01.11.0&$select=thumbprint%2Cstate", - "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1DMUU0OTRBNDE1MTQ5QzVGMjExQzQ3NzhCNTJGMkU4MzRBMDcyNDdDKT9hcGktdmVyc2lvbj0yMDIwLTAzLTAxLjExLjAmJHNlbGVjdD10aHVtYnByaW50JTJDc3RhdGU=", + "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)?api-version=2021-06-01.14.0&$select=thumbprint%2Cstate", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1DMUU0OTRBNDE1MTQ5QzVGMjExQzQ3NzhCNTJGMkU4MzRBMDcyNDdDKT9hcGktdmVyc2lvbj0yMDIxLTA2LTAxLjE0LjAmJHNlbGVjdD10aHVtYnByaW50JTJDc3RhdGU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "7e21e789-974f-42a0-bf0c-0aa15def5ed2" + "6ea6e540-cb8f-461e-b814-ceb737e7c64d" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 20:50:02 GMT" + "Fri, 27 Aug 2021 15:57:29 GMT" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/13.0.20.15503", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", "AzurePowershell/Az1.0.0" ] }, @@ -291,7 +291,7 @@ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "cf524ee9-b3e1-48be-ab3b-2c17ccddd073" + "f3c70b63-2e1b-4129-8c10-004bdaf12afe" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -303,35 +303,35 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 20:50:02 GMT" + "Fri, 27 Aug 2021 15:57:28 GMT" ], "Content-Type": [ "application/json; odata=minimalmetadata" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://prodtest6.francecentral.batch.azure.com/$metadata#certificates/@Element\",\r\n \"thumbprint\": \"c1e494a415149c5f211c4778b52f2e834a07247c\",\r\n \"state\": \"deleting\"\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#certificates/@Element\",\r\n \"thumbprint\": \"c1e494a415149c5f211c4778b52f2e834a07247c\",\r\n \"state\": \"deleting\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)?api-version=2020-03-01.11.0&$select=thumbprint%2Cstate", - "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1DMUU0OTRBNDE1MTQ5QzVGMjExQzQ3NzhCNTJGMkU4MzRBMDcyNDdDKT9hcGktdmVyc2lvbj0yMDIwLTAzLTAxLjExLjAmJHNlbGVjdD10aHVtYnByaW50JTJDc3RhdGU=", + "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)?api-version=2021-06-01.14.0&$select=thumbprint%2Cstate", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1DMUU0OTRBNDE1MTQ5QzVGMjExQzQ3NzhCNTJGMkU4MzRBMDcyNDdDKT9hcGktdmVyc2lvbj0yMDIxLTA2LTAxLjE0LjAmJHNlbGVjdD10aHVtYnByaW50JTJDc3RhdGU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "6b069e73-1ada-4c85-858a-041be823e813" + "c53b1bd6-1f48-4336-9513-0ca777582da4" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 20:50:07 GMT" + "Fri, 27 Aug 2021 15:57:34 GMT" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/13.0.20.15503", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", "AzurePowershell/Az1.0.0" ] }, @@ -343,7 +343,7 @@ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "e1e5a1c6-a441-4f76-9de4-bfe9dcb42f03" + "104b98a7-2d35-4f9f-a11b-e56f66b10dad" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -355,35 +355,35 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 20:50:07 GMT" + "Fri, 27 Aug 2021 15:57:33 GMT" ], "Content-Type": [ "application/json; odata=minimalmetadata" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://prodtest6.francecentral.batch.azure.com/$metadata#certificates/@Element\",\r\n \"thumbprint\": \"c1e494a415149c5f211c4778b52f2e834a07247c\",\r\n \"state\": \"deleting\"\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#certificates/@Element\",\r\n \"thumbprint\": \"c1e494a415149c5f211c4778b52f2e834a07247c\",\r\n \"state\": \"deleting\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)?api-version=2020-03-01.11.0&$select=thumbprint%2Cstate", - "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1DMUU0OTRBNDE1MTQ5QzVGMjExQzQ3NzhCNTJGMkU4MzRBMDcyNDdDKT9hcGktdmVyc2lvbj0yMDIwLTAzLTAxLjExLjAmJHNlbGVjdD10aHVtYnByaW50JTJDc3RhdGU=", + "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)?api-version=2021-06-01.14.0&$select=thumbprint%2Cstate", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1DMUU0OTRBNDE1MTQ5QzVGMjExQzQ3NzhCNTJGMkU4MzRBMDcyNDdDKT9hcGktdmVyc2lvbj0yMDIxLTA2LTAxLjE0LjAmJHNlbGVjdD10aHVtYnByaW50JTJDc3RhdGU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "c849b694-cb49-49be-a55f-46e5828554b6" + "2d3474e1-08e3-4dfd-aad1-86c0b03f2c7f" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 20:50:12 GMT" + "Fri, 27 Aug 2021 15:57:39 GMT" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/13.0.20.15503", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", "AzurePowershell/Az1.0.0" ] }, @@ -395,7 +395,7 @@ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "3d7e1506-27a9-4c90-86b4-393f8f6ac296" + "ba7f22df-9045-4aa4-a369-c1e0a8dd48d9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -407,44 +407,203 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 20:50:12 GMT" + "Fri, 27 Aug 2021 15:57:38 GMT" ], "Content-Type": [ "application/json; odata=minimalmetadata" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://prodtest6.francecentral.batch.azure.com/$metadata#certificates/@Element\",\r\n \"thumbprint\": \"c1e494a415149c5f211c4778b52f2e834a07247c\",\r\n \"state\": \"deleting\"\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#certificates/@Element\",\r\n \"thumbprint\": \"c1e494a415149c5f211c4778b52f2e834a07247c\",\r\n \"state\": \"deleting\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)?api-version=2020-03-01.11.0&$select=thumbprint%2Cstate", - "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1DMUU0OTRBNDE1MTQ5QzVGMjExQzQ3NzhCNTJGMkU4MzRBMDcyNDdDKT9hcGktdmVyc2lvbj0yMDIwLTAzLTAxLjExLjAmJHNlbGVjdD10aHVtYnByaW50JTJDc3RhdGU=", + "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)?api-version=2021-06-01.14.0&$select=thumbprint%2Cstate", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1DMUU0OTRBNDE1MTQ5QzVGMjExQzQ3NzhCNTJGMkU4MzRBMDcyNDdDKT9hcGktdmVyc2lvbj0yMDIxLTA2LTAxLjE0LjAmJHNlbGVjdD10aHVtYnByaW50JTJDc3RhdGU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "23271913-d857-4ee8-aabe-8a2729115133" + "41f82333-2bf7-4eb1-a615-052b9eafe857" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 20:50:17 GMT" + "Fri, 27 Aug 2021 15:57:45 GMT" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/13.0.20.15503", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", "AzurePowershell/Az1.0.0" ] }, "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "4982f352-5db3-42d0-849e-89274ac7b2dd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Fri, 27 Aug 2021 15:57:43 GMT" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#certificates/@Element\",\r\n \"thumbprint\": \"c1e494a415149c5f211c4778b52f2e834a07247c\",\r\n \"state\": \"deleting\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)?api-version=2021-06-01.14.0&$select=thumbprint%2Cstate", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1DMUU0OTRBNDE1MTQ5QzVGMjExQzQ3NzhCNTJGMkU4MzRBMDcyNDdDKT9hcGktdmVyc2lvbj0yMDIxLTA2LTAxLjE0LjAmJHNlbGVjdD10aHVtYnByaW50JTJDc3RhdGU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "c3c6fb42-89b2-492b-9218-4aa07d66d57f" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Fri, 27 Aug 2021 15:57:50 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "6f6459a2-6f4d-4ecc-9ebf-89e02e1df96c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Fri, 27 Aug 2021 15:57:48 GMT" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#certificates/@Element\",\r\n \"thumbprint\": \"c1e494a415149c5f211c4778b52f2e834a07247c\",\r\n \"state\": \"deleting\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)?api-version=2021-06-01.14.0&$select=thumbprint%2Cstate", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1DMUU0OTRBNDE1MTQ5QzVGMjExQzQ3NzhCNTJGMkU4MzRBMDcyNDdDKT9hcGktdmVyc2lvbj0yMDIxLTA2LTAxLjE0LjAmJHNlbGVjdD10aHVtYnByaW50JTJDc3RhdGU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "e1af1056-249e-45e9-80fa-58a35a011cf4" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Fri, 27 Aug 2021 15:57:55 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "1667c441-60c0-4f23-bb52-d73417acd06b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Fri, 27 Aug 2021 15:57:53 GMT" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#certificates/@Element\",\r\n \"thumbprint\": \"c1e494a415149c5f211c4778b52f2e834a07247c\",\r\n \"state\": \"deleting\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)?api-version=2021-06-01.14.0&$select=thumbprint%2Cstate", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1DMUU0OTRBNDE1MTQ5QzVGMjExQzQ3NzhCNTJGMkU4MzRBMDcyNDdDKT9hcGktdmVyc2lvbj0yMDIxLTA2LTAxLjE0LjAmJHNlbGVjdD10aHVtYnByaW50JTJDc3RhdGU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "58583067-bbd6-4328-b481-527b8500defa" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Fri, 27 Aug 2021 15:58:00 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "70e19565-9939-4a67-8104-81846d510647" + "c0b86ff7-9810-4d81-b668-48e1e30b2dfb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -456,38 +615,87 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 20:50:17 GMT" + "Fri, 27 Aug 2021 15:57:58 GMT" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#certificates/@Element\",\r\n \"thumbprint\": \"c1e494a415149c5f211c4778b52f2e834a07247c\",\r\n \"state\": \"deleting\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)?api-version=2021-06-01.14.0&$select=thumbprint%2Cstate", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1DMUU0OTRBNDE1MTQ5QzVGMjExQzQ3NzhCNTJGMkU4MzRBMDcyNDdDKT9hcGktdmVyc2lvbj0yMDIxLTA2LTAxLjE0LjAmJHNlbGVjdD10aHVtYnByaW50JTJDc3RhdGU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "4d966ac8-c36b-47a6-9a59-56e3bb4a0828" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Fri, 27 Aug 2021 15:58:05 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "bc043b77-1ca6-4fb9-9512-17f874e11d1b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Fri, 27 Aug 2021 15:58:03 GMT" ], "Content-Length": [ - "351" + "345" ], "Content-Type": [ "application/json; odata=minimalmetadata" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://prodtest6.francecentral.batch.azure.com/$metadata#Microsoft.Azure.Batch.Protocol.Entities.Container.errors/@Element\",\r\n \"code\": \"CertificateNotFound\",\r\n \"message\": {\r\n \"lang\": \"en-US\",\r\n \"value\": \"The specified certificate does not exist.\\nRequestId:70e19565-9939-4a67-8104-81846d510647\\nTime:2020-06-09T20:50:18.0747861Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#Microsoft.Azure.Batch.Protocol.Entities.Container.errors/@Element\",\r\n \"code\": \"CertificateNotFound\",\r\n \"message\": {\r\n \"lang\": \"en-US\",\r\n \"value\": \"The specified certificate does not exist.\\nRequestId:bc043b77-1ca6-4fb9-9512-17f874e11d1b\\nTime:2021-08-27T15:58:04.3510944Z\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/certificates?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L2NlcnRpZmljYXRlcz9hcGktdmVyc2lvbj0yMDIwLTAzLTAxLjExLjA=", + "RequestUri": "/certificates?api-version=2021-06-01.14.0", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcz9hcGktdmVyc2lvbj0yMDIxLTA2LTAxLjE0LjA=", "RequestMethod": "POST", "RequestBody": "{\r\n \"thumbprint\": \"c1e494a415149c5f211c4778b52f2e834a07247c\",\r\n \"thumbprintAlgorithm\": \"sha1\",\r\n \"data\": \"MIIB9DCCAWGgAwIBAgIQpUXhwCuAPJRDhl7kY/0PdTAJBgUrDgMCHQUAMBYxFDASBgNVBAMTC0JhdGNoVGVzdDAxMB4XDTE1MTAwMjE2MjkwNVoXDTM5MTIzMTIzNTk1OVowFjEUMBIGA1UEAxMLQmF0Y2hUZXN0MDEwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAM06unpRipn3BmHBM75d0s8w/Wwifci16PoJo4c2V68GwsCCFsNOn5ypo7BBXo1fpBjrnso5w+koaE5LjxkBSVm+TkogwbKlW6WURTM0O5viRVbPnEEU/Y01Pj5cJElFuLEk9Uoe/r/lP8b5A607t1cPjSXkwhEZEYc3LkHDSo0ZAgMBAAGjSzBJMEcGA1UdAQRAMD6AEFRsTAsrvF+FmPuICooZXaKhGDAWMRQwEgYDVQQDEwtCYXRjaFRlc3QwMYIQpUXhwCuAPJRDhl7kY/0PdTAJBgUrDgMCHQUAA4GBALt0F8Ep+8XVE/M2aNtxzlku72gxiOiAo1HmpUaixXx3gl8kdP3xgoKMaq4JskqdLmbJJUnCQ3wmzsdPwjswsW2ycT12zuBddaiS+id98k8U/KYc6FxMgS+H70FYOxARLn7P4FSSBf/QCyign+BherzezdZ5NBdfzbmWxIMP5iFJ\",\r\n \"certificateFormat\": \"cer\"\r\n}", "RequestHeaders": { "client-request-id": [ - "f66829a9-2402-4dcd-93ec-95be4a48c3f8" + "58e06650-280a-41ce-8e69-00f0b73f6c51" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 20:50:18 GMT" + "Fri, 27 Aug 2021 15:58:05 GMT" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/13.0.20.15503", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", "AzurePowershell/Az1.0.0" ], "Content-Type": [ @@ -502,13 +710,13 @@ "chunked" ], "Location": [ - "https://prodtest6.francecentral.batch.azure.com/certificates(ThumbprintAlgorithm=sha1,Thumbprint=c1e494a415149c5f211c4778b52f2e834a07247c)" + "https://mikeportal.eastus.batch.azure.com/certificates(ThumbprintAlgorithm=sha1,Thumbprint=c1e494a415149c5f211c4778b52f2e834a07247c)" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "39cf04fd-5264-4011-92bd-ece19bc3419b" + "ffa70846-3c68-49fe-a098-9bff9582abb1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -520,42 +728,42 @@ "3.0" ], "DataServiceId": [ - "https://prodtest6.francecentral.batch.azure.com/certificates(ThumbprintAlgorithm=sha1,Thumbprint=c1e494a415149c5f211c4778b52f2e834a07247c)" + "https://mikeportal.eastus.batch.azure.com/certificates(ThumbprintAlgorithm=sha1,Thumbprint=c1e494a415149c5f211c4778b52f2e834a07247c)" ], "Date": [ - "Tue, 09 Jun 2020 20:50:17 GMT" + "Fri, 27 Aug 2021 15:58:03 GMT" ] }, "ResponseBody": "", "StatusCode": 201 }, { - "RequestUri": "/pools?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L3Bvb2xzP2FwaS12ZXJzaW9uPTIwMjAtMDMtMDEuMTEuMA==", + "RequestUri": "/pools?api-version=2021-06-01.14.0", + "EncodedRequestUri": "L3Bvb2xzP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDEuMTQuMA==", "RequestMethod": "POST", - "RequestBody": "{\r\n \"id\": \"certPool\",\r\n \"vmSize\": \"small\",\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"osVersion\": \"*\"\r\n },\r\n \"targetDedicatedNodes\": 0,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableInterNodeCommunication\": true,\r\n \"certificateReferences\": [\r\n {\r\n \"thumbprint\": \"c1e494a415149c5f211c4778b52f2e834a07247c\",\r\n \"thumbprintAlgorithm\": \"sha1\",\r\n \"storeLocation\": \"currentuser\",\r\n \"storeName\": \"My\",\r\n \"visibility\": [\r\n \"task\"\r\n ]\r\n }\r\n ]\r\n}", + "RequestBody": "{\r\n \"id\": \"certPool\",\r\n \"vmSize\": \"standard_d1_v2\",\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"osVersion\": \"*\"\r\n },\r\n \"targetDedicatedNodes\": 0,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableInterNodeCommunication\": true,\r\n \"certificateReferences\": [\r\n {\r\n \"thumbprint\": \"c1e494a415149c5f211c4778b52f2e834a07247c\",\r\n \"thumbprintAlgorithm\": \"sha1\",\r\n \"storeLocation\": \"currentuser\",\r\n \"storeName\": \"My\",\r\n \"visibility\": [\r\n \"task\"\r\n ]\r\n }\r\n ]\r\n}", "RequestHeaders": { "client-request-id": [ - "8bfac035-4470-4cb4-9006-25d1397613b3" + "ea54e1bb-0728-411f-91dc-71bd9afab539" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 20:50:18 GMT" + "Fri, 27 Aug 2021 15:58:05 GMT" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/13.0.20.15503", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", "AzurePowershell/Az1.0.0" ], "Content-Type": [ "application/json; odata=minimalmetadata; charset=utf-8" ], "Content-Length": [ - "499" + "508" ] }, "ResponseHeaders": { @@ -563,16 +771,16 @@ "chunked" ], "ETag": [ - "0x8D80CB6B81911CC" + "0x8D9697374863CCC" ], "Location": [ - "https://prodtest6.francecentral.batch.azure.com/pools/certPool" + "https://mikeportal.eastus.batch.azure.com/pools/certPool" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "0a8fdbc6-764b-4c3a-ab3d-9c2da4588ae6" + "c14e2dd8-4f7c-4de5-9484-3d1fe02a86d9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -584,38 +792,38 @@ "3.0" ], "DataServiceId": [ - "https://prodtest6.francecentral.batch.azure.com/pools/certPool" + "https://mikeportal.eastus.batch.azure.com/pools/certPool" ], "Date": [ - "Tue, 09 Jun 2020 20:50:17 GMT" + "Fri, 27 Aug 2021 15:58:03 GMT" ], "Last-Modified": [ - "Tue, 09 Jun 2020 20:50:18 GMT" + "Fri, 27 Aug 2021 15:58:04 GMT" ] }, "ResponseBody": "", "StatusCode": 201 }, { - "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=c1e494a415149c5f211c4778b52f2e834a07247c)?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1jMWU0OTRhNDE1MTQ5YzVmMjExYzQ3NzhiNTJmMmU4MzRhMDcyNDdjKT9hcGktdmVyc2lvbj0yMDIwLTAzLTAxLjExLjA=", + "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=c1e494a415149c5f211c4778b52f2e834a07247c)?api-version=2021-06-01.14.0", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1jMWU0OTRhNDE1MTQ5YzVmMjExYzQ3NzhiNTJmMmU4MzRhMDcyNDdjKT9hcGktdmVyc2lvbj0yMDIxLTA2LTAxLjE0LjA=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "15a2069e-8b47-4d87-b61d-0a58c81d0e55" + "4d583785-6bd1-499d-945c-48e011e99530" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 20:50:18 GMT" + "Fri, 27 Aug 2021 15:58:05 GMT" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/13.0.20.15503", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", "AzurePowershell/Az1.0.0" ], "Content-Length": [ @@ -630,7 +838,7 @@ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "9af57146-7ed4-4191-807d-3e0dbd3e13cb" + "c9385507-f394-442e-9d27-71bed7986c86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -642,32 +850,32 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 20:50:18 GMT" + "Fri, 27 Aug 2021 15:58:03 GMT" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=c1e494a415149c5f211c4778b52f2e834a07247c)?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1jMWU0OTRhNDE1MTQ5YzVmMjExYzQ3NzhiNTJmMmU4MzRhMDcyNDdjKT9hcGktdmVyc2lvbj0yMDIwLTAzLTAxLjExLjA=", + "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=c1e494a415149c5f211c4778b52f2e834a07247c)?api-version=2021-06-01.14.0", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1jMWU0OTRhNDE1MTQ5YzVmMjExYzQ3NzhiNTJmMmU4MzRhMDcyNDdjKT9hcGktdmVyc2lvbj0yMDIxLTA2LTAxLjE0LjA=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "f41b7fb3-acc2-400b-bb78-a8ac97dfab9d" + "40897efa-a523-4735-9afc-8fae9fbc2c35" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 20:51:43 GMT" + "Fri, 27 Aug 2021 15:59:18 GMT" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/13.0.20.15503", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", "AzurePowershell/Az1.0.0" ], "Content-Length": [ @@ -682,7 +890,7 @@ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "f24d0b5f-45e6-4e44-b96e-bbc8a142312c" + "e4bce50b-979d-459e-aa8e-45ec3aa31262" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -694,32 +902,32 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 20:51:43 GMT" + "Fri, 27 Aug 2021 15:59:16 GMT" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=c1e494a415149c5f211c4778b52f2e834a07247c)?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1jMWU0OTRhNDE1MTQ5YzVmMjExYzQ3NzhiNTJmMmU4MzRhMDcyNDdjKT9hcGktdmVyc2lvbj0yMDIwLTAzLTAxLjExLjA=", + "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=c1e494a415149c5f211c4778b52f2e834a07247c)?api-version=2021-06-01.14.0", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1jMWU0OTRhNDE1MTQ5YzVmMjExYzQ3NzhiNTJmMmU4MzRhMDcyNDdjKT9hcGktdmVyc2lvbj0yMDIxLTA2LTAxLjE0LjA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "30633fc3-9055-4fb5-8a26-418ec3201ed9" + "064c0501-432a-4f9b-874d-c1a5b5bd4a2f" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 20:50:18 GMT" + "Fri, 27 Aug 2021 15:58:05 GMT" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/13.0.20.15503", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", "AzurePowershell/Az1.0.0" ] }, @@ -731,7 +939,7 @@ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "d938e699-2385-4c5a-af3c-294b4ecf8754" + "4f2cddfc-0d19-4fe8-a2b1-3d85f4d27d4f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -743,35 +951,35 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 20:50:18 GMT" + "Fri, 27 Aug 2021 15:58:04 GMT" ], "Content-Type": [ "application/json; odata=minimalmetadata" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://prodtest6.francecentral.batch.azure.com/$metadata#certificates/@Element\",\r\n \"thumbprint\": \"c1e494a415149c5f211c4778b52f2e834a07247c\",\r\n \"thumbprintAlgorithm\": \"sha1\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/certificates(thumbprintAlgorithm=sha1,thumbprint=c1e494a415149c5f211c4778b52f2e834a07247c)\",\r\n \"state\": \"deleting\",\r\n \"stateTransitionTime\": \"2020-06-09T20:50:18.7397704Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2020-06-09T20:50:18.2707849Z\",\r\n \"publicData\": \"MIIB9DCCAWGgAwIBAgIQpUXhwCuAPJRDhl7kY/0PdTAJBgUrDgMCHQUAMBYxFDASBgNVBAMTC0JhdGNoVGVzdDAxMB4XDTE1MTAwMjE2MjkwNVoXDTM5MTIzMTIzNTk1OVowFjEUMBIGA1UEAxMLQmF0Y2hUZXN0MDEwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAM06unpRipn3BmHBM75d0s8w/Wwifci16PoJo4c2V68GwsCCFsNOn5ypo7BBXo1fpBjrnso5w+koaE5LjxkBSVm+TkogwbKlW6WURTM0O5viRVbPnEEU/Y01Pj5cJElFuLEk9Uoe/r/lP8b5A607t1cPjSXkwhEZEYc3LkHDSo0ZAgMBAAGjSzBJMEcGA1UdAQRAMD6AEFRsTAsrvF+FmPuICooZXaKhGDAWMRQwEgYDVQQDEwtCYXRjaFRlc3QwMYIQpUXhwCuAPJRDhl7kY/0PdTAJBgUrDgMCHQUAA4GBALt0F8Ep+8XVE/M2aNtxzlku72gxiOiAo1HmpUaixXx3gl8kdP3xgoKMaq4JskqdLmbJJUnCQ3wmzsdPwjswsW2ycT12zuBddaiS+id98k8U/KYc6FxMgS+H70FYOxARLn7P4FSSBf/QCyign+BherzezdZ5NBdfzbmWxIMP5iFJ\"\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#certificates/@Element\",\r\n \"thumbprint\": \"c1e494a415149c5f211c4778b52f2e834a07247c\",\r\n \"thumbprintAlgorithm\": \"sha1\",\r\n \"url\": \"https://mikeportal.eastus.batch.azure.com/certificates(thumbprintAlgorithm=sha1,thumbprint=c1e494a415149c5f211c4778b52f2e834a07247c)\",\r\n \"state\": \"deleting\",\r\n \"stateTransitionTime\": \"2021-08-27T15:58:04.7884064Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2021-08-27T15:58:04.4591779Z\",\r\n \"publicData\": \"MIIB9DCCAWGgAwIBAgIQpUXhwCuAPJRDhl7kY/0PdTAJBgUrDgMCHQUAMBYxFDASBgNVBAMTC0JhdGNoVGVzdDAxMB4XDTE1MTAwMjE2MjkwNVoXDTM5MTIzMTIzNTk1OVowFjEUMBIGA1UEAxMLQmF0Y2hUZXN0MDEwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAM06unpRipn3BmHBM75d0s8w/Wwifci16PoJo4c2V68GwsCCFsNOn5ypo7BBXo1fpBjrnso5w+koaE5LjxkBSVm+TkogwbKlW6WURTM0O5viRVbPnEEU/Y01Pj5cJElFuLEk9Uoe/r/lP8b5A607t1cPjSXkwhEZEYc3LkHDSo0ZAgMBAAGjSzBJMEcGA1UdAQRAMD6AEFRsTAsrvF+FmPuICooZXaKhGDAWMRQwEgYDVQQDEwtCYXRjaFRlc3QwMYIQpUXhwCuAPJRDhl7kY/0PdTAJBgUrDgMCHQUAA4GBALt0F8Ep+8XVE/M2aNtxzlku72gxiOiAo1HmpUaixXx3gl8kdP3xgoKMaq4JskqdLmbJJUnCQ3wmzsdPwjswsW2ycT12zuBddaiS+id98k8U/KYc6FxMgS+H70FYOxARLn7P4FSSBf/QCyign+BherzezdZ5NBdfzbmWxIMP5iFJ\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=c1e494a415149c5f211c4778b52f2e834a07247c)?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1jMWU0OTRhNDE1MTQ5YzVmMjExYzQ3NzhiNTJmMmU4MzRhMDcyNDdjKT9hcGktdmVyc2lvbj0yMDIwLTAzLTAxLjExLjA=", + "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=c1e494a415149c5f211c4778b52f2e834a07247c)?api-version=2021-06-01.14.0", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1jMWU0OTRhNDE1MTQ5YzVmMjExYzQ3NzhiNTJmMmU4MzRhMDcyNDdjKT9hcGktdmVyc2lvbj0yMDIxLTA2LTAxLjE0LjA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "e4b038b3-e559-4c73-bf2a-f047c638704f" + "2327e5c3-96b5-4984-a35f-aca5271c7c82" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 20:50:28 GMT" + "Fri, 27 Aug 2021 15:58:15 GMT" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/13.0.20.15503", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", "AzurePowershell/Az1.0.0" ] }, @@ -783,7 +991,7 @@ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "d422d24d-f4d6-4f8d-9fe7-ab8a1e1f0822" + "934ea1b5-091e-4ebe-91f8-37b3a01bd800" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -795,35 +1003,35 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 20:50:29 GMT" + "Fri, 27 Aug 2021 15:58:14 GMT" ], "Content-Type": [ "application/json; odata=minimalmetadata" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://prodtest6.francecentral.batch.azure.com/$metadata#certificates/@Element\",\r\n \"thumbprint\": \"c1e494a415149c5f211c4778b52f2e834a07247c\",\r\n \"thumbprintAlgorithm\": \"sha1\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/certificates(thumbprintAlgorithm=sha1,thumbprint=c1e494a415149c5f211c4778b52f2e834a07247c)\",\r\n \"state\": \"deleting\",\r\n \"stateTransitionTime\": \"2020-06-09T20:50:18.7397704Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2020-06-09T20:50:18.2707849Z\",\r\n \"publicData\": \"MIIB9DCCAWGgAwIBAgIQpUXhwCuAPJRDhl7kY/0PdTAJBgUrDgMCHQUAMBYxFDASBgNVBAMTC0JhdGNoVGVzdDAxMB4XDTE1MTAwMjE2MjkwNVoXDTM5MTIzMTIzNTk1OVowFjEUMBIGA1UEAxMLQmF0Y2hUZXN0MDEwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAM06unpRipn3BmHBM75d0s8w/Wwifci16PoJo4c2V68GwsCCFsNOn5ypo7BBXo1fpBjrnso5w+koaE5LjxkBSVm+TkogwbKlW6WURTM0O5viRVbPnEEU/Y01Pj5cJElFuLEk9Uoe/r/lP8b5A607t1cPjSXkwhEZEYc3LkHDSo0ZAgMBAAGjSzBJMEcGA1UdAQRAMD6AEFRsTAsrvF+FmPuICooZXaKhGDAWMRQwEgYDVQQDEwtCYXRjaFRlc3QwMYIQpUXhwCuAPJRDhl7kY/0PdTAJBgUrDgMCHQUAA4GBALt0F8Ep+8XVE/M2aNtxzlku72gxiOiAo1HmpUaixXx3gl8kdP3xgoKMaq4JskqdLmbJJUnCQ3wmzsdPwjswsW2ycT12zuBddaiS+id98k8U/KYc6FxMgS+H70FYOxARLn7P4FSSBf/QCyign+BherzezdZ5NBdfzbmWxIMP5iFJ\"\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#certificates/@Element\",\r\n \"thumbprint\": \"c1e494a415149c5f211c4778b52f2e834a07247c\",\r\n \"thumbprintAlgorithm\": \"sha1\",\r\n \"url\": \"https://mikeportal.eastus.batch.azure.com/certificates(thumbprintAlgorithm=sha1,thumbprint=c1e494a415149c5f211c4778b52f2e834a07247c)\",\r\n \"state\": \"deleting\",\r\n \"stateTransitionTime\": \"2021-08-27T15:58:04.7884064Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2021-08-27T15:58:04.4591779Z\",\r\n \"publicData\": \"MIIB9DCCAWGgAwIBAgIQpUXhwCuAPJRDhl7kY/0PdTAJBgUrDgMCHQUAMBYxFDASBgNVBAMTC0JhdGNoVGVzdDAxMB4XDTE1MTAwMjE2MjkwNVoXDTM5MTIzMTIzNTk1OVowFjEUMBIGA1UEAxMLQmF0Y2hUZXN0MDEwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAM06unpRipn3BmHBM75d0s8w/Wwifci16PoJo4c2V68GwsCCFsNOn5ypo7BBXo1fpBjrnso5w+koaE5LjxkBSVm+TkogwbKlW6WURTM0O5viRVbPnEEU/Y01Pj5cJElFuLEk9Uoe/r/lP8b5A607t1cPjSXkwhEZEYc3LkHDSo0ZAgMBAAGjSzBJMEcGA1UdAQRAMD6AEFRsTAsrvF+FmPuICooZXaKhGDAWMRQwEgYDVQQDEwtCYXRjaFRlc3QwMYIQpUXhwCuAPJRDhl7kY/0PdTAJBgUrDgMCHQUAA4GBALt0F8Ep+8XVE/M2aNtxzlku72gxiOiAo1HmpUaixXx3gl8kdP3xgoKMaq4JskqdLmbJJUnCQ3wmzsdPwjswsW2ycT12zuBddaiS+id98k8U/KYc6FxMgS+H70FYOxARLn7P4FSSBf/QCyign+BherzezdZ5NBdfzbmWxIMP5iFJ\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=c1e494a415149c5f211c4778b52f2e834a07247c)?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1jMWU0OTRhNDE1MTQ5YzVmMjExYzQ3NzhiNTJmMmU4MzRhMDcyNDdjKT9hcGktdmVyc2lvbj0yMDIwLTAzLTAxLjExLjA=", + "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=c1e494a415149c5f211c4778b52f2e834a07247c)?api-version=2021-06-01.14.0", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1jMWU0OTRhNDE1MTQ5YzVmMjExYzQ3NzhiNTJmMmU4MzRhMDcyNDdjKT9hcGktdmVyc2lvbj0yMDIxLTA2LTAxLjE0LjA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "fc4bd524-92b8-44c3-b920-eaa58619745c" + "501ef1cf-8cfb-4c70-93c4-9b3726cbbecf" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 20:50:39 GMT" + "Fri, 27 Aug 2021 15:58:25 GMT" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/13.0.20.15503", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", "AzurePowershell/Az1.0.0" ] }, @@ -835,7 +1043,7 @@ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "f42f9929-0cbc-424a-96d3-82c5825b6dd0" + "c9dd9b51-e4c6-4c57-bb19-c866ea9d12ac" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -847,35 +1055,35 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 20:50:39 GMT" + "Fri, 27 Aug 2021 15:58:24 GMT" ], "Content-Type": [ "application/json; odata=minimalmetadata" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://prodtest6.francecentral.batch.azure.com/$metadata#certificates/@Element\",\r\n \"thumbprint\": \"c1e494a415149c5f211c4778b52f2e834a07247c\",\r\n \"thumbprintAlgorithm\": \"sha1\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/certificates(thumbprintAlgorithm=sha1,thumbprint=c1e494a415149c5f211c4778b52f2e834a07247c)\",\r\n \"state\": \"deleting\",\r\n \"stateTransitionTime\": \"2020-06-09T20:50:18.7397704Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2020-06-09T20:50:18.2707849Z\",\r\n \"publicData\": \"MIIB9DCCAWGgAwIBAgIQpUXhwCuAPJRDhl7kY/0PdTAJBgUrDgMCHQUAMBYxFDASBgNVBAMTC0JhdGNoVGVzdDAxMB4XDTE1MTAwMjE2MjkwNVoXDTM5MTIzMTIzNTk1OVowFjEUMBIGA1UEAxMLQmF0Y2hUZXN0MDEwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAM06unpRipn3BmHBM75d0s8w/Wwifci16PoJo4c2V68GwsCCFsNOn5ypo7BBXo1fpBjrnso5w+koaE5LjxkBSVm+TkogwbKlW6WURTM0O5viRVbPnEEU/Y01Pj5cJElFuLEk9Uoe/r/lP8b5A607t1cPjSXkwhEZEYc3LkHDSo0ZAgMBAAGjSzBJMEcGA1UdAQRAMD6AEFRsTAsrvF+FmPuICooZXaKhGDAWMRQwEgYDVQQDEwtCYXRjaFRlc3QwMYIQpUXhwCuAPJRDhl7kY/0PdTAJBgUrDgMCHQUAA4GBALt0F8Ep+8XVE/M2aNtxzlku72gxiOiAo1HmpUaixXx3gl8kdP3xgoKMaq4JskqdLmbJJUnCQ3wmzsdPwjswsW2ycT12zuBddaiS+id98k8U/KYc6FxMgS+H70FYOxARLn7P4FSSBf/QCyign+BherzezdZ5NBdfzbmWxIMP5iFJ\"\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#certificates/@Element\",\r\n \"thumbprint\": \"c1e494a415149c5f211c4778b52f2e834a07247c\",\r\n \"thumbprintAlgorithm\": \"sha1\",\r\n \"url\": \"https://mikeportal.eastus.batch.azure.com/certificates(thumbprintAlgorithm=sha1,thumbprint=c1e494a415149c5f211c4778b52f2e834a07247c)\",\r\n \"state\": \"deleting\",\r\n \"stateTransitionTime\": \"2021-08-27T15:58:04.7884064Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2021-08-27T15:58:04.4591779Z\",\r\n \"publicData\": \"MIIB9DCCAWGgAwIBAgIQpUXhwCuAPJRDhl7kY/0PdTAJBgUrDgMCHQUAMBYxFDASBgNVBAMTC0JhdGNoVGVzdDAxMB4XDTE1MTAwMjE2MjkwNVoXDTM5MTIzMTIzNTk1OVowFjEUMBIGA1UEAxMLQmF0Y2hUZXN0MDEwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAM06unpRipn3BmHBM75d0s8w/Wwifci16PoJo4c2V68GwsCCFsNOn5ypo7BBXo1fpBjrnso5w+koaE5LjxkBSVm+TkogwbKlW6WURTM0O5viRVbPnEEU/Y01Pj5cJElFuLEk9Uoe/r/lP8b5A607t1cPjSXkwhEZEYc3LkHDSo0ZAgMBAAGjSzBJMEcGA1UdAQRAMD6AEFRsTAsrvF+FmPuICooZXaKhGDAWMRQwEgYDVQQDEwtCYXRjaFRlc3QwMYIQpUXhwCuAPJRDhl7kY/0PdTAJBgUrDgMCHQUAA4GBALt0F8Ep+8XVE/M2aNtxzlku72gxiOiAo1HmpUaixXx3gl8kdP3xgoKMaq4JskqdLmbJJUnCQ3wmzsdPwjswsW2ycT12zuBddaiS+id98k8U/KYc6FxMgS+H70FYOxARLn7P4FSSBf/QCyign+BherzezdZ5NBdfzbmWxIMP5iFJ\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=c1e494a415149c5f211c4778b52f2e834a07247c)?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1jMWU0OTRhNDE1MTQ5YzVmMjExYzQ3NzhiNTJmMmU4MzRhMDcyNDdjKT9hcGktdmVyc2lvbj0yMDIwLTAzLTAxLjExLjA=", + "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=c1e494a415149c5f211c4778b52f2e834a07247c)?api-version=2021-06-01.14.0", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1jMWU0OTRhNDE1MTQ5YzVmMjExYzQ3NzhiNTJmMmU4MzRhMDcyNDdjKT9hcGktdmVyc2lvbj0yMDIxLTA2LTAxLjE0LjA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "2e2acd88-f5ab-4c20-b925-86a0d136d1d6" + "d8903d24-907f-4ff0-95d1-8346163add50" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 20:50:49 GMT" + "Fri, 27 Aug 2021 15:58:36 GMT" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/13.0.20.15503", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", "AzurePowershell/Az1.0.0" ] }, @@ -887,7 +1095,7 @@ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "f495862c-cdd4-46ec-b49a-fdcda6c86f24" + "d105c71c-87aa-41af-9c2a-8cc328f4ab2b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -899,35 +1107,35 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 20:50:49 GMT" + "Fri, 27 Aug 2021 15:58:34 GMT" ], "Content-Type": [ "application/json; odata=minimalmetadata" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://prodtest6.francecentral.batch.azure.com/$metadata#certificates/@Element\",\r\n \"thumbprint\": \"c1e494a415149c5f211c4778b52f2e834a07247c\",\r\n \"thumbprintAlgorithm\": \"sha1\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/certificates(thumbprintAlgorithm=sha1,thumbprint=c1e494a415149c5f211c4778b52f2e834a07247c)\",\r\n \"state\": \"deleting\",\r\n \"stateTransitionTime\": \"2020-06-09T20:50:18.7397704Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2020-06-09T20:50:18.2707849Z\",\r\n \"publicData\": \"MIIB9DCCAWGgAwIBAgIQpUXhwCuAPJRDhl7kY/0PdTAJBgUrDgMCHQUAMBYxFDASBgNVBAMTC0JhdGNoVGVzdDAxMB4XDTE1MTAwMjE2MjkwNVoXDTM5MTIzMTIzNTk1OVowFjEUMBIGA1UEAxMLQmF0Y2hUZXN0MDEwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAM06unpRipn3BmHBM75d0s8w/Wwifci16PoJo4c2V68GwsCCFsNOn5ypo7BBXo1fpBjrnso5w+koaE5LjxkBSVm+TkogwbKlW6WURTM0O5viRVbPnEEU/Y01Pj5cJElFuLEk9Uoe/r/lP8b5A607t1cPjSXkwhEZEYc3LkHDSo0ZAgMBAAGjSzBJMEcGA1UdAQRAMD6AEFRsTAsrvF+FmPuICooZXaKhGDAWMRQwEgYDVQQDEwtCYXRjaFRlc3QwMYIQpUXhwCuAPJRDhl7kY/0PdTAJBgUrDgMCHQUAA4GBALt0F8Ep+8XVE/M2aNtxzlku72gxiOiAo1HmpUaixXx3gl8kdP3xgoKMaq4JskqdLmbJJUnCQ3wmzsdPwjswsW2ycT12zuBddaiS+id98k8U/KYc6FxMgS+H70FYOxARLn7P4FSSBf/QCyign+BherzezdZ5NBdfzbmWxIMP5iFJ\"\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#certificates/@Element\",\r\n \"thumbprint\": \"c1e494a415149c5f211c4778b52f2e834a07247c\",\r\n \"thumbprintAlgorithm\": \"sha1\",\r\n \"url\": \"https://mikeportal.eastus.batch.azure.com/certificates(thumbprintAlgorithm=sha1,thumbprint=c1e494a415149c5f211c4778b52f2e834a07247c)\",\r\n \"state\": \"deleting\",\r\n \"stateTransitionTime\": \"2021-08-27T15:58:04.7884064Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2021-08-27T15:58:04.4591779Z\",\r\n \"publicData\": \"MIIB9DCCAWGgAwIBAgIQpUXhwCuAPJRDhl7kY/0PdTAJBgUrDgMCHQUAMBYxFDASBgNVBAMTC0JhdGNoVGVzdDAxMB4XDTE1MTAwMjE2MjkwNVoXDTM5MTIzMTIzNTk1OVowFjEUMBIGA1UEAxMLQmF0Y2hUZXN0MDEwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAM06unpRipn3BmHBM75d0s8w/Wwifci16PoJo4c2V68GwsCCFsNOn5ypo7BBXo1fpBjrnso5w+koaE5LjxkBSVm+TkogwbKlW6WURTM0O5viRVbPnEEU/Y01Pj5cJElFuLEk9Uoe/r/lP8b5A607t1cPjSXkwhEZEYc3LkHDSo0ZAgMBAAGjSzBJMEcGA1UdAQRAMD6AEFRsTAsrvF+FmPuICooZXaKhGDAWMRQwEgYDVQQDEwtCYXRjaFRlc3QwMYIQpUXhwCuAPJRDhl7kY/0PdTAJBgUrDgMCHQUAA4GBALt0F8Ep+8XVE/M2aNtxzlku72gxiOiAo1HmpUaixXx3gl8kdP3xgoKMaq4JskqdLmbJJUnCQ3wmzsdPwjswsW2ycT12zuBddaiS+id98k8U/KYc6FxMgS+H70FYOxARLn7P4FSSBf/QCyign+BherzezdZ5NBdfzbmWxIMP5iFJ\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=c1e494a415149c5f211c4778b52f2e834a07247c)?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1jMWU0OTRhNDE1MTQ5YzVmMjExYzQ3NzhiNTJmMmU4MzRhMDcyNDdjKT9hcGktdmVyc2lvbj0yMDIwLTAzLTAxLjExLjA=", + "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=c1e494a415149c5f211c4778b52f2e834a07247c)?api-version=2021-06-01.14.0", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1jMWU0OTRhNDE1MTQ5YzVmMjExYzQ3NzhiNTJmMmU4MzRhMDcyNDdjKT9hcGktdmVyc2lvbj0yMDIxLTA2LTAxLjE0LjA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "8e06725a-8adc-45bf-bd7d-bc5cd6fcad5e" + "91981acb-168e-4e90-aa8e-56c535ff211a" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 20:50:59 GMT" + "Fri, 27 Aug 2021 15:58:46 GMT" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/13.0.20.15503", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", "AzurePowershell/Az1.0.0" ] }, @@ -939,7 +1147,7 @@ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "37f44c56-c093-4036-b09c-74b88001c6c7" + "b58a866e-1abe-49f0-a204-f18040d7e2e9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -951,35 +1159,35 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 20:50:59 GMT" + "Fri, 27 Aug 2021 15:58:44 GMT" ], "Content-Type": [ "application/json; odata=minimalmetadata" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://prodtest6.francecentral.batch.azure.com/$metadata#certificates/@Element\",\r\n \"thumbprint\": \"c1e494a415149c5f211c4778b52f2e834a07247c\",\r\n \"thumbprintAlgorithm\": \"sha1\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/certificates(thumbprintAlgorithm=sha1,thumbprint=c1e494a415149c5f211c4778b52f2e834a07247c)\",\r\n \"state\": \"deleting\",\r\n \"stateTransitionTime\": \"2020-06-09T20:50:18.7397704Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2020-06-09T20:50:18.2707849Z\",\r\n \"publicData\": \"MIIB9DCCAWGgAwIBAgIQpUXhwCuAPJRDhl7kY/0PdTAJBgUrDgMCHQUAMBYxFDASBgNVBAMTC0JhdGNoVGVzdDAxMB4XDTE1MTAwMjE2MjkwNVoXDTM5MTIzMTIzNTk1OVowFjEUMBIGA1UEAxMLQmF0Y2hUZXN0MDEwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAM06unpRipn3BmHBM75d0s8w/Wwifci16PoJo4c2V68GwsCCFsNOn5ypo7BBXo1fpBjrnso5w+koaE5LjxkBSVm+TkogwbKlW6WURTM0O5viRVbPnEEU/Y01Pj5cJElFuLEk9Uoe/r/lP8b5A607t1cPjSXkwhEZEYc3LkHDSo0ZAgMBAAGjSzBJMEcGA1UdAQRAMD6AEFRsTAsrvF+FmPuICooZXaKhGDAWMRQwEgYDVQQDEwtCYXRjaFRlc3QwMYIQpUXhwCuAPJRDhl7kY/0PdTAJBgUrDgMCHQUAA4GBALt0F8Ep+8XVE/M2aNtxzlku72gxiOiAo1HmpUaixXx3gl8kdP3xgoKMaq4JskqdLmbJJUnCQ3wmzsdPwjswsW2ycT12zuBddaiS+id98k8U/KYc6FxMgS+H70FYOxARLn7P4FSSBf/QCyign+BherzezdZ5NBdfzbmWxIMP5iFJ\"\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#certificates/@Element\",\r\n \"thumbprint\": \"c1e494a415149c5f211c4778b52f2e834a07247c\",\r\n \"thumbprintAlgorithm\": \"sha1\",\r\n \"url\": \"https://mikeportal.eastus.batch.azure.com/certificates(thumbprintAlgorithm=sha1,thumbprint=c1e494a415149c5f211c4778b52f2e834a07247c)\",\r\n \"state\": \"deleting\",\r\n \"stateTransitionTime\": \"2021-08-27T15:58:04.7884064Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2021-08-27T15:58:04.4591779Z\",\r\n \"publicData\": \"MIIB9DCCAWGgAwIBAgIQpUXhwCuAPJRDhl7kY/0PdTAJBgUrDgMCHQUAMBYxFDASBgNVBAMTC0JhdGNoVGVzdDAxMB4XDTE1MTAwMjE2MjkwNVoXDTM5MTIzMTIzNTk1OVowFjEUMBIGA1UEAxMLQmF0Y2hUZXN0MDEwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAM06unpRipn3BmHBM75d0s8w/Wwifci16PoJo4c2V68GwsCCFsNOn5ypo7BBXo1fpBjrnso5w+koaE5LjxkBSVm+TkogwbKlW6WURTM0O5viRVbPnEEU/Y01Pj5cJElFuLEk9Uoe/r/lP8b5A607t1cPjSXkwhEZEYc3LkHDSo0ZAgMBAAGjSzBJMEcGA1UdAQRAMD6AEFRsTAsrvF+FmPuICooZXaKhGDAWMRQwEgYDVQQDEwtCYXRjaFRlc3QwMYIQpUXhwCuAPJRDhl7kY/0PdTAJBgUrDgMCHQUAA4GBALt0F8Ep+8XVE/M2aNtxzlku72gxiOiAo1HmpUaixXx3gl8kdP3xgoKMaq4JskqdLmbJJUnCQ3wmzsdPwjswsW2ycT12zuBddaiS+id98k8U/KYc6FxMgS+H70FYOxARLn7P4FSSBf/QCyign+BherzezdZ5NBdfzbmWxIMP5iFJ\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=c1e494a415149c5f211c4778b52f2e834a07247c)?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1jMWU0OTRhNDE1MTQ5YzVmMjExYzQ3NzhiNTJmMmU4MzRhMDcyNDdjKT9hcGktdmVyc2lvbj0yMDIwLTAzLTAxLjExLjA=", + "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=c1e494a415149c5f211c4778b52f2e834a07247c)?api-version=2021-06-01.14.0", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1jMWU0OTRhNDE1MTQ5YzVmMjExYzQ3NzhiNTJmMmU4MzRhMDcyNDdjKT9hcGktdmVyc2lvbj0yMDIxLTA2LTAxLjE0LjA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "47293c04-5477-4dc0-9df3-894c118703f4" + "816e7df1-c49c-441b-9877-4e821b0fa4be" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 20:51:09 GMT" + "Fri, 27 Aug 2021 15:58:56 GMT" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/13.0.20.15503", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", "AzurePowershell/Az1.0.0" ] }, @@ -991,7 +1199,7 @@ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "404b5db6-4030-44ed-9441-858b7efc0bed" + "1a7f3a73-1961-416d-9dfb-c44f468b5230" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1003,35 +1211,35 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 20:51:09 GMT" + "Fri, 27 Aug 2021 15:58:54 GMT" ], "Content-Type": [ "application/json; odata=minimalmetadata" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://prodtest6.francecentral.batch.azure.com/$metadata#certificates/@Element\",\r\n \"thumbprint\": \"c1e494a415149c5f211c4778b52f2e834a07247c\",\r\n \"thumbprintAlgorithm\": \"sha1\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/certificates(thumbprintAlgorithm=sha1,thumbprint=c1e494a415149c5f211c4778b52f2e834a07247c)\",\r\n \"state\": \"deleting\",\r\n \"stateTransitionTime\": \"2020-06-09T20:50:18.7397704Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2020-06-09T20:50:18.2707849Z\",\r\n \"publicData\": \"MIIB9DCCAWGgAwIBAgIQpUXhwCuAPJRDhl7kY/0PdTAJBgUrDgMCHQUAMBYxFDASBgNVBAMTC0JhdGNoVGVzdDAxMB4XDTE1MTAwMjE2MjkwNVoXDTM5MTIzMTIzNTk1OVowFjEUMBIGA1UEAxMLQmF0Y2hUZXN0MDEwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAM06unpRipn3BmHBM75d0s8w/Wwifci16PoJo4c2V68GwsCCFsNOn5ypo7BBXo1fpBjrnso5w+koaE5LjxkBSVm+TkogwbKlW6WURTM0O5viRVbPnEEU/Y01Pj5cJElFuLEk9Uoe/r/lP8b5A607t1cPjSXkwhEZEYc3LkHDSo0ZAgMBAAGjSzBJMEcGA1UdAQRAMD6AEFRsTAsrvF+FmPuICooZXaKhGDAWMRQwEgYDVQQDEwtCYXRjaFRlc3QwMYIQpUXhwCuAPJRDhl7kY/0PdTAJBgUrDgMCHQUAA4GBALt0F8Ep+8XVE/M2aNtxzlku72gxiOiAo1HmpUaixXx3gl8kdP3xgoKMaq4JskqdLmbJJUnCQ3wmzsdPwjswsW2ycT12zuBddaiS+id98k8U/KYc6FxMgS+H70FYOxARLn7P4FSSBf/QCyign+BherzezdZ5NBdfzbmWxIMP5iFJ\"\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#certificates/@Element\",\r\n \"thumbprint\": \"c1e494a415149c5f211c4778b52f2e834a07247c\",\r\n \"thumbprintAlgorithm\": \"sha1\",\r\n \"url\": \"https://mikeportal.eastus.batch.azure.com/certificates(thumbprintAlgorithm=sha1,thumbprint=c1e494a415149c5f211c4778b52f2e834a07247c)\",\r\n \"state\": \"deleting\",\r\n \"stateTransitionTime\": \"2021-08-27T15:58:04.7884064Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2021-08-27T15:58:04.4591779Z\",\r\n \"publicData\": \"MIIB9DCCAWGgAwIBAgIQpUXhwCuAPJRDhl7kY/0PdTAJBgUrDgMCHQUAMBYxFDASBgNVBAMTC0JhdGNoVGVzdDAxMB4XDTE1MTAwMjE2MjkwNVoXDTM5MTIzMTIzNTk1OVowFjEUMBIGA1UEAxMLQmF0Y2hUZXN0MDEwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAM06unpRipn3BmHBM75d0s8w/Wwifci16PoJo4c2V68GwsCCFsNOn5ypo7BBXo1fpBjrnso5w+koaE5LjxkBSVm+TkogwbKlW6WURTM0O5viRVbPnEEU/Y01Pj5cJElFuLEk9Uoe/r/lP8b5A607t1cPjSXkwhEZEYc3LkHDSo0ZAgMBAAGjSzBJMEcGA1UdAQRAMD6AEFRsTAsrvF+FmPuICooZXaKhGDAWMRQwEgYDVQQDEwtCYXRjaFRlc3QwMYIQpUXhwCuAPJRDhl7kY/0PdTAJBgUrDgMCHQUAA4GBALt0F8Ep+8XVE/M2aNtxzlku72gxiOiAo1HmpUaixXx3gl8kdP3xgoKMaq4JskqdLmbJJUnCQ3wmzsdPwjswsW2ycT12zuBddaiS+id98k8U/KYc6FxMgS+H70FYOxARLn7P4FSSBf/QCyign+BherzezdZ5NBdfzbmWxIMP5iFJ\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=c1e494a415149c5f211c4778b52f2e834a07247c)?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1jMWU0OTRhNDE1MTQ5YzVmMjExYzQ3NzhiNTJmMmU4MzRhMDcyNDdjKT9hcGktdmVyc2lvbj0yMDIwLTAzLTAxLjExLjA=", + "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=c1e494a415149c5f211c4778b52f2e834a07247c)?api-version=2021-06-01.14.0", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1jMWU0OTRhNDE1MTQ5YzVmMjExYzQ3NzhiNTJmMmU4MzRhMDcyNDdjKT9hcGktdmVyc2lvbj0yMDIxLTA2LTAxLjE0LjA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "855b6e59-1647-482e-ad6a-48619b5de63f" + "da908862-2a60-4f0d-9296-f41caa5c2d70" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 20:51:19 GMT" + "Fri, 27 Aug 2021 15:59:06 GMT" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/13.0.20.15503", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", "AzurePowershell/Az1.0.0" ] }, @@ -1043,7 +1251,7 @@ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "d146bde9-975d-4177-8047-f67957ec9104" + "e8fa8ff3-83a8-4fe1-8c20-bb0879b7c896" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1055,35 +1263,35 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 20:51:19 GMT" + "Fri, 27 Aug 2021 15:59:04 GMT" ], "Content-Type": [ "application/json; odata=minimalmetadata" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://prodtest6.francecentral.batch.azure.com/$metadata#certificates/@Element\",\r\n \"thumbprint\": \"c1e494a415149c5f211c4778b52f2e834a07247c\",\r\n \"thumbprintAlgorithm\": \"sha1\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/certificates(thumbprintAlgorithm=sha1,thumbprint=c1e494a415149c5f211c4778b52f2e834a07247c)\",\r\n \"state\": \"deletefailed\",\r\n \"stateTransitionTime\": \"2020-06-09T20:51:19.3546217Z\",\r\n \"previousState\": \"deleting\",\r\n \"previousStateTransitionTime\": \"2020-06-09T20:50:18.7397704Z\",\r\n \"publicData\": \"MIIB9DCCAWGgAwIBAgIQpUXhwCuAPJRDhl7kY/0PdTAJBgUrDgMCHQUAMBYxFDASBgNVBAMTC0JhdGNoVGVzdDAxMB4XDTE1MTAwMjE2MjkwNVoXDTM5MTIzMTIzNTk1OVowFjEUMBIGA1UEAxMLQmF0Y2hUZXN0MDEwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAM06unpRipn3BmHBM75d0s8w/Wwifci16PoJo4c2V68GwsCCFsNOn5ypo7BBXo1fpBjrnso5w+koaE5LjxkBSVm+TkogwbKlW6WURTM0O5viRVbPnEEU/Y01Pj5cJElFuLEk9Uoe/r/lP8b5A607t1cPjSXkwhEZEYc3LkHDSo0ZAgMBAAGjSzBJMEcGA1UdAQRAMD6AEFRsTAsrvF+FmPuICooZXaKhGDAWMRQwEgYDVQQDEwtCYXRjaFRlc3QwMYIQpUXhwCuAPJRDhl7kY/0PdTAJBgUrDgMCHQUAA4GBALt0F8Ep+8XVE/M2aNtxzlku72gxiOiAo1HmpUaixXx3gl8kdP3xgoKMaq4JskqdLmbJJUnCQ3wmzsdPwjswsW2ycT12zuBddaiS+id98k8U/KYc6FxMgS+H70FYOxARLn7P4FSSBf/QCyign+BherzezdZ5NBdfzbmWxIMP5iFJ\",\r\n \"deleteCertificateError\": {\r\n \"code\": \"PoolsReferencingCertificate\",\r\n \"message\": \"The specified certificate is being used by the below mentioned pool(s)\",\r\n \"values\": [\r\n {\r\n \"name\": \"Pools\",\r\n \"value\": \"certPool\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#certificates/@Element\",\r\n \"thumbprint\": \"c1e494a415149c5f211c4778b52f2e834a07247c\",\r\n \"thumbprintAlgorithm\": \"sha1\",\r\n \"url\": \"https://mikeportal.eastus.batch.azure.com/certificates(thumbprintAlgorithm=sha1,thumbprint=c1e494a415149c5f211c4778b52f2e834a07247c)\",\r\n \"state\": \"deleting\",\r\n \"stateTransitionTime\": \"2021-08-27T15:58:04.7884064Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2021-08-27T15:58:04.4591779Z\",\r\n \"publicData\": \"MIIB9DCCAWGgAwIBAgIQpUXhwCuAPJRDhl7kY/0PdTAJBgUrDgMCHQUAMBYxFDASBgNVBAMTC0JhdGNoVGVzdDAxMB4XDTE1MTAwMjE2MjkwNVoXDTM5MTIzMTIzNTk1OVowFjEUMBIGA1UEAxMLQmF0Y2hUZXN0MDEwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAM06unpRipn3BmHBM75d0s8w/Wwifci16PoJo4c2V68GwsCCFsNOn5ypo7BBXo1fpBjrnso5w+koaE5LjxkBSVm+TkogwbKlW6WURTM0O5viRVbPnEEU/Y01Pj5cJElFuLEk9Uoe/r/lP8b5A607t1cPjSXkwhEZEYc3LkHDSo0ZAgMBAAGjSzBJMEcGA1UdAQRAMD6AEFRsTAsrvF+FmPuICooZXaKhGDAWMRQwEgYDVQQDEwtCYXRjaFRlc3QwMYIQpUXhwCuAPJRDhl7kY/0PdTAJBgUrDgMCHQUAA4GBALt0F8Ep+8XVE/M2aNtxzlku72gxiOiAo1HmpUaixXx3gl8kdP3xgoKMaq4JskqdLmbJJUnCQ3wmzsdPwjswsW2ycT12zuBddaiS+id98k8U/KYc6FxMgS+H70FYOxARLn7P4FSSBf/QCyign+BherzezdZ5NBdfzbmWxIMP5iFJ\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=c1e494a415149c5f211c4778b52f2e834a07247c)?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1jMWU0OTRhNDE1MTQ5YzVmMjExYzQ3NzhiNTJmMmU4MzRhMDcyNDdjKT9hcGktdmVyc2lvbj0yMDIwLTAzLTAxLjExLjA=", + "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=c1e494a415149c5f211c4778b52f2e834a07247c)?api-version=2021-06-01.14.0", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1jMWU0OTRhNDE1MTQ5YzVmMjExYzQ3NzhiNTJmMmU4MzRhMDcyNDdjKT9hcGktdmVyc2lvbj0yMDIxLTA2LTAxLjE0LjA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "d0bddb07-f943-4ced-b6f2-b33424eb9652" + "95af77f3-df95-4a65-949b-d7f4d3772a3d" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 20:51:20 GMT" + "Fri, 27 Aug 2021 15:59:16 GMT" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/13.0.20.15503", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", "AzurePowershell/Az1.0.0" ] }, @@ -1095,7 +1303,7 @@ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "cadb67f3-127e-4e2f-9850-67de74063a40" + "e9a6ba11-383d-4c75-8154-14e6928ce2b4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1107,35 +1315,38 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 20:51:42 GMT" + "Fri, 27 Aug 2021 15:59:14 GMT" ], "Content-Type": [ "application/json; odata=minimalmetadata" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://prodtest6.francecentral.batch.azure.com/$metadata#certificates/@Element\",\r\n \"thumbprint\": \"c1e494a415149c5f211c4778b52f2e834a07247c\",\r\n \"thumbprintAlgorithm\": \"sha1\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/certificates(thumbprintAlgorithm=sha1,thumbprint=c1e494a415149c5f211c4778b52f2e834a07247c)\",\r\n \"state\": \"deletefailed\",\r\n \"stateTransitionTime\": \"2020-06-09T20:51:19.3546217Z\",\r\n \"previousState\": \"deleting\",\r\n \"previousStateTransitionTime\": \"2020-06-09T20:50:18.7397704Z\",\r\n \"publicData\": \"MIIB9DCCAWGgAwIBAgIQpUXhwCuAPJRDhl7kY/0PdTAJBgUrDgMCHQUAMBYxFDASBgNVBAMTC0JhdGNoVGVzdDAxMB4XDTE1MTAwMjE2MjkwNVoXDTM5MTIzMTIzNTk1OVowFjEUMBIGA1UEAxMLQmF0Y2hUZXN0MDEwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAM06unpRipn3BmHBM75d0s8w/Wwifci16PoJo4c2V68GwsCCFsNOn5ypo7BBXo1fpBjrnso5w+koaE5LjxkBSVm+TkogwbKlW6WURTM0O5viRVbPnEEU/Y01Pj5cJElFuLEk9Uoe/r/lP8b5A607t1cPjSXkwhEZEYc3LkHDSo0ZAgMBAAGjSzBJMEcGA1UdAQRAMD6AEFRsTAsrvF+FmPuICooZXaKhGDAWMRQwEgYDVQQDEwtCYXRjaFRlc3QwMYIQpUXhwCuAPJRDhl7kY/0PdTAJBgUrDgMCHQUAA4GBALt0F8Ep+8XVE/M2aNtxzlku72gxiOiAo1HmpUaixXx3gl8kdP3xgoKMaq4JskqdLmbJJUnCQ3wmzsdPwjswsW2ycT12zuBddaiS+id98k8U/KYc6FxMgS+H70FYOxARLn7P4FSSBf/QCyign+BherzezdZ5NBdfzbmWxIMP5iFJ\",\r\n \"deleteCertificateError\": {\r\n \"code\": \"PoolsReferencingCertificate\",\r\n \"message\": \"The specified certificate is being used by the below mentioned pool(s)\",\r\n \"values\": [\r\n {\r\n \"name\": \"Pools\",\r\n \"value\": \"certPool\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#certificates/@Element\",\r\n \"thumbprint\": \"c1e494a415149c5f211c4778b52f2e834a07247c\",\r\n \"thumbprintAlgorithm\": \"sha1\",\r\n \"url\": \"https://mikeportal.eastus.batch.azure.com/certificates(thumbprintAlgorithm=sha1,thumbprint=c1e494a415149c5f211c4778b52f2e834a07247c)\",\r\n \"state\": \"deletefailed\",\r\n \"stateTransitionTime\": \"2021-08-27T15:59:06.6596292Z\",\r\n \"previousState\": \"deleting\",\r\n \"previousStateTransitionTime\": \"2021-08-27T15:58:04.7884064Z\",\r\n \"publicData\": \"MIIB9DCCAWGgAwIBAgIQpUXhwCuAPJRDhl7kY/0PdTAJBgUrDgMCHQUAMBYxFDASBgNVBAMTC0JhdGNoVGVzdDAxMB4XDTE1MTAwMjE2MjkwNVoXDTM5MTIzMTIzNTk1OVowFjEUMBIGA1UEAxMLQmF0Y2hUZXN0MDEwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAM06unpRipn3BmHBM75d0s8w/Wwifci16PoJo4c2V68GwsCCFsNOn5ypo7BBXo1fpBjrnso5w+koaE5LjxkBSVm+TkogwbKlW6WURTM0O5viRVbPnEEU/Y01Pj5cJElFuLEk9Uoe/r/lP8b5A607t1cPjSXkwhEZEYc3LkHDSo0ZAgMBAAGjSzBJMEcGA1UdAQRAMD6AEFRsTAsrvF+FmPuICooZXaKhGDAWMRQwEgYDVQQDEwtCYXRjaFRlc3QwMYIQpUXhwCuAPJRDhl7kY/0PdTAJBgUrDgMCHQUAA4GBALt0F8Ep+8XVE/M2aNtxzlku72gxiOiAo1HmpUaixXx3gl8kdP3xgoKMaq4JskqdLmbJJUnCQ3wmzsdPwjswsW2ycT12zuBddaiS+id98k8U/KYc6FxMgS+H70FYOxARLn7P4FSSBf/QCyign+BherzezdZ5NBdfzbmWxIMP5iFJ\",\r\n \"deleteCertificateError\": {\r\n \"code\": \"PoolsReferencingCertificate\",\r\n \"message\": \"The specified certificate is being used by the below mentioned pool(s)\",\r\n \"values\": [\r\n {\r\n \"name\": \"Pools\",\r\n \"value\": \"certPool\"\r\n }\r\n ]\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=c1e494a415149c5f211c4778b52f2e834a07247c)?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1jMWU0OTRhNDE1MTQ5YzVmMjExYzQ3NzhiNTJmMmU4MzRhMDcyNDdjKT9hcGktdmVyc2lvbj0yMDIwLTAzLTAxLjExLjA=", + "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=c1e494a415149c5f211c4778b52f2e834a07247c)?api-version=2021-06-01.14.0", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1jMWU0OTRhNDE1MTQ5YzVmMjExYzQ3NzhiNTJmMmU4MzRhMDcyNDdjKT9hcGktdmVyc2lvbj0yMDIxLTA2LTAxLjE0LjA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "faf00c0a-2ee4-46d2-8284-986b48d4c9f7" + "cd932a6a-b3bf-430a-8bdb-4b7764dd2b72" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 20:51:42 GMT" + "Fri, 27 Aug 2021 15:59:17 GMT" + ], + "x-ms-client-request-id": [ + "cc385d02-3a41-4d70-8ae7-507c27d78aeb" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/13.0.20.15503", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", "AzurePowershell/Az1.0.0" ] }, @@ -1147,7 +1358,7 @@ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "6a2625b8-e2a6-4d96-9cc9-13f112d1009a" + "6c1034eb-fada-4b04-9703-13a6bc429144" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1159,35 +1370,93 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 20:51:42 GMT" + "Fri, 27 Aug 2021 15:59:16 GMT" ], "Content-Type": [ "application/json; odata=minimalmetadata" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://prodtest6.francecentral.batch.azure.com/$metadata#certificates/@Element\",\r\n \"thumbprint\": \"c1e494a415149c5f211c4778b52f2e834a07247c\",\r\n \"thumbprintAlgorithm\": \"sha1\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/certificates(thumbprintAlgorithm=sha1,thumbprint=c1e494a415149c5f211c4778b52f2e834a07247c)\",\r\n \"state\": \"deletefailed\",\r\n \"stateTransitionTime\": \"2020-06-09T20:51:19.3546217Z\",\r\n \"previousState\": \"deleting\",\r\n \"previousStateTransitionTime\": \"2020-06-09T20:50:18.7397704Z\",\r\n \"publicData\": \"MIIB9DCCAWGgAwIBAgIQpUXhwCuAPJRDhl7kY/0PdTAJBgUrDgMCHQUAMBYxFDASBgNVBAMTC0JhdGNoVGVzdDAxMB4XDTE1MTAwMjE2MjkwNVoXDTM5MTIzMTIzNTk1OVowFjEUMBIGA1UEAxMLQmF0Y2hUZXN0MDEwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAM06unpRipn3BmHBM75d0s8w/Wwifci16PoJo4c2V68GwsCCFsNOn5ypo7BBXo1fpBjrnso5w+koaE5LjxkBSVm+TkogwbKlW6WURTM0O5viRVbPnEEU/Y01Pj5cJElFuLEk9Uoe/r/lP8b5A607t1cPjSXkwhEZEYc3LkHDSo0ZAgMBAAGjSzBJMEcGA1UdAQRAMD6AEFRsTAsrvF+FmPuICooZXaKhGDAWMRQwEgYDVQQDEwtCYXRjaFRlc3QwMYIQpUXhwCuAPJRDhl7kY/0PdTAJBgUrDgMCHQUAA4GBALt0F8Ep+8XVE/M2aNtxzlku72gxiOiAo1HmpUaixXx3gl8kdP3xgoKMaq4JskqdLmbJJUnCQ3wmzsdPwjswsW2ycT12zuBddaiS+id98k8U/KYc6FxMgS+H70FYOxARLn7P4FSSBf/QCyign+BherzezdZ5NBdfzbmWxIMP5iFJ\",\r\n \"deleteCertificateError\": {\r\n \"code\": \"PoolsReferencingCertificate\",\r\n \"message\": \"The specified certificate is being used by the below mentioned pool(s)\",\r\n \"values\": [\r\n {\r\n \"name\": \"Pools\",\r\n \"value\": \"certPool\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#certificates/@Element\",\r\n \"thumbprint\": \"c1e494a415149c5f211c4778b52f2e834a07247c\",\r\n \"thumbprintAlgorithm\": \"sha1\",\r\n \"url\": \"https://mikeportal.eastus.batch.azure.com/certificates(thumbprintAlgorithm=sha1,thumbprint=c1e494a415149c5f211c4778b52f2e834a07247c)\",\r\n \"state\": \"deletefailed\",\r\n \"stateTransitionTime\": \"2021-08-27T15:59:06.6596292Z\",\r\n \"previousState\": \"deleting\",\r\n \"previousStateTransitionTime\": \"2021-08-27T15:58:04.7884064Z\",\r\n \"publicData\": \"MIIB9DCCAWGgAwIBAgIQpUXhwCuAPJRDhl7kY/0PdTAJBgUrDgMCHQUAMBYxFDASBgNVBAMTC0JhdGNoVGVzdDAxMB4XDTE1MTAwMjE2MjkwNVoXDTM5MTIzMTIzNTk1OVowFjEUMBIGA1UEAxMLQmF0Y2hUZXN0MDEwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAM06unpRipn3BmHBM75d0s8w/Wwifci16PoJo4c2V68GwsCCFsNOn5ypo7BBXo1fpBjrnso5w+koaE5LjxkBSVm+TkogwbKlW6WURTM0O5viRVbPnEEU/Y01Pj5cJElFuLEk9Uoe/r/lP8b5A607t1cPjSXkwhEZEYc3LkHDSo0ZAgMBAAGjSzBJMEcGA1UdAQRAMD6AEFRsTAsrvF+FmPuICooZXaKhGDAWMRQwEgYDVQQDEwtCYXRjaFRlc3QwMYIQpUXhwCuAPJRDhl7kY/0PdTAJBgUrDgMCHQUAA4GBALt0F8Ep+8XVE/M2aNtxzlku72gxiOiAo1HmpUaixXx3gl8kdP3xgoKMaq4JskqdLmbJJUnCQ3wmzsdPwjswsW2ycT12zuBddaiS+id98k8U/KYc6FxMgS+H70FYOxARLn7P4FSSBf/QCyign+BherzezdZ5NBdfzbmWxIMP5iFJ\",\r\n \"deleteCertificateError\": {\r\n \"code\": \"PoolsReferencingCertificate\",\r\n \"message\": \"The specified certificate is being used by the below mentioned pool(s)\",\r\n \"values\": [\r\n {\r\n \"name\": \"Pools\",\r\n \"value\": \"certPool\"\r\n }\r\n ]\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=c1e494a415149c5f211c4778b52f2e834a07247c)/canceldelete?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1jMWU0OTRhNDE1MTQ5YzVmMjExYzQ3NzhiNTJmMmU4MzRhMDcyNDdjKS9jYW5jZWxkZWxldGU/YXBpLXZlcnNpb249MjAyMC0wMy0wMS4xMS4w", + "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=c1e494a415149c5f211c4778b52f2e834a07247c)?api-version=2021-06-01.14.0", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1jMWU0OTRhNDE1MTQ5YzVmMjExYzQ3NzhiNTJmMmU4MzRhMDcyNDdjKT9hcGktdmVyc2lvbj0yMDIxLTA2LTAxLjE0LjA=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "e7fb2817-0db3-4cab-b295-5fdf9df3174b" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Fri, 27 Aug 2021 15:59:17 GMT" + ], + "x-ms-client-request-id": [ + "ee2951c5-4c70-40fc-afc4-c4a5c3e77777" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "b5c648fa-c9f4-4d47-a122-fe5111e00ab9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Fri, 27 Aug 2021 15:59:16 GMT" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#certificates/@Element\",\r\n \"thumbprint\": \"c1e494a415149c5f211c4778b52f2e834a07247c\",\r\n \"thumbprintAlgorithm\": \"sha1\",\r\n \"url\": \"https://mikeportal.eastus.batch.azure.com/certificates(thumbprintAlgorithm=sha1,thumbprint=c1e494a415149c5f211c4778b52f2e834a07247c)\",\r\n \"state\": \"deletefailed\",\r\n \"stateTransitionTime\": \"2021-08-27T15:59:06.6596292Z\",\r\n \"previousState\": \"deleting\",\r\n \"previousStateTransitionTime\": \"2021-08-27T15:58:04.7884064Z\",\r\n \"publicData\": \"MIIB9DCCAWGgAwIBAgIQpUXhwCuAPJRDhl7kY/0PdTAJBgUrDgMCHQUAMBYxFDASBgNVBAMTC0JhdGNoVGVzdDAxMB4XDTE1MTAwMjE2MjkwNVoXDTM5MTIzMTIzNTk1OVowFjEUMBIGA1UEAxMLQmF0Y2hUZXN0MDEwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAM06unpRipn3BmHBM75d0s8w/Wwifci16PoJo4c2V68GwsCCFsNOn5ypo7BBXo1fpBjrnso5w+koaE5LjxkBSVm+TkogwbKlW6WURTM0O5viRVbPnEEU/Y01Pj5cJElFuLEk9Uoe/r/lP8b5A607t1cPjSXkwhEZEYc3LkHDSo0ZAgMBAAGjSzBJMEcGA1UdAQRAMD6AEFRsTAsrvF+FmPuICooZXaKhGDAWMRQwEgYDVQQDEwtCYXRjaFRlc3QwMYIQpUXhwCuAPJRDhl7kY/0PdTAJBgUrDgMCHQUAA4GBALt0F8Ep+8XVE/M2aNtxzlku72gxiOiAo1HmpUaixXx3gl8kdP3xgoKMaq4JskqdLmbJJUnCQ3wmzsdPwjswsW2ycT12zuBddaiS+id98k8U/KYc6FxMgS+H70FYOxARLn7P4FSSBf/QCyign+BherzezdZ5NBdfzbmWxIMP5iFJ\",\r\n \"deleteCertificateError\": {\r\n \"code\": \"PoolsReferencingCertificate\",\r\n \"message\": \"The specified certificate is being used by the below mentioned pool(s)\",\r\n \"values\": [\r\n {\r\n \"name\": \"Pools\",\r\n \"value\": \"certPool\"\r\n }\r\n ]\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=c1e494a415149c5f211c4778b52f2e834a07247c)/canceldelete?api-version=2021-06-01.14.0", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1jMWU0OTRhNDE1MTQ5YzVmMjExYzQ3NzhiNTJmMmU4MzRhMDcyNDdjKS9jYW5jZWxkZWxldGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4w", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "8f435fa0-cf74-45c0-ab5e-b0e2bdcf135e" + "4a96faa9-56dc-43c2-95a2-109fa884dc1d" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 20:51:42 GMT" + "Fri, 27 Aug 2021 15:59:17 GMT" + ], + "x-ms-client-request-id": [ + "ee2951c5-4c70-40fc-afc4-c4a5c3e77777" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/13.0.20.15503", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", "AzurePowershell/Az1.0.0" ], "Content-Length": [ @@ -1199,7 +1468,7 @@ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "4548f582-09e6-42c5-9eaf-ecc209b6bb8c" + "99a24d73-bbbc-4c76-a350-8f86180849aa" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1211,10 +1480,10 @@ "3.0" ], "DataServiceId": [ - "https://prodtest6.francecentral.batch.azure.com/certificates(thumbprintAlgorithm=sha1,thumbprint=c1e494a415149c5f211c4778b52f2e834a07247c)/canceldelete" + "https://mikeportal.eastus.batch.azure.com/certificates(thumbprintAlgorithm=sha1,thumbprint=c1e494a415149c5f211c4778b52f2e834a07247c)/canceldelete" ], "Date": [ - "Tue, 09 Jun 2020 20:51:42 GMT" + "Fri, 27 Aug 2021 15:59:16 GMT" ], "Content-Length": [ "0" @@ -1224,25 +1493,28 @@ "StatusCode": 204 }, { - "RequestUri": "/certificates?api-version=2020-03-01.11.0&$filter=state%20eq%20%27active%27", - "EncodedRequestUri": "L2NlcnRpZmljYXRlcz9hcGktdmVyc2lvbj0yMDIwLTAzLTAxLjExLjAmJGZpbHRlcj1zdGF0ZSUyMGVxJTIwJTI3YWN0aXZlJTI3", + "RequestUri": "/certificates?api-version=2021-06-01.14.0&$filter=state%20eq%20%27active%27", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcz9hcGktdmVyc2lvbj0yMDIxLTA2LTAxLjE0LjAmJGZpbHRlcj1zdGF0ZSUyMGVxJTIwJTI3YWN0aXZlJTI3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "0889bf99-c215-4d96-b978-b6535568e93c" + "3f8fa5b5-e1d3-494e-97fc-d5c9bbc9cb92" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 20:51:42 GMT" + "Fri, 27 Aug 2021 15:59:17 GMT" + ], + "x-ms-client-request-id": [ + "51202fe3-c924-4e9c-b63b-99c5b220c7a1" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/13.0.20.15503", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", "AzurePowershell/Az1.0.0" ] }, @@ -1254,7 +1526,7 @@ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "7c4cd239-690b-4a1e-bc14-40b0484e2e9f" + "64c23b34-4c24-44d5-80d5-e118b7d91982" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1266,35 +1538,35 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 20:51:42 GMT" + "Fri, 27 Aug 2021 15:59:16 GMT" ], "Content-Type": [ "application/json; odata=minimalmetadata" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://prodtest6.francecentral.batch.azure.com/$metadata#certificates\",\r\n \"value\": [\r\n {\r\n \"thumbprint\": \"c1e494a415149c5f211c4778b52f2e834a07247c\",\r\n \"thumbprintAlgorithm\": \"sha1\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/certificates(thumbprintAlgorithm=sha1,thumbprint=c1e494a415149c5f211c4778b52f2e834a07247c)\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2020-06-09T20:51:42.756848Z\",\r\n \"previousState\": \"deletefailed\",\r\n \"previousStateTransitionTime\": \"2020-06-09T20:51:19.3546217Z\",\r\n \"publicData\": \"MIIB9DCCAWGgAwIBAgIQpUXhwCuAPJRDhl7kY/0PdTAJBgUrDgMCHQUAMBYxFDASBgNVBAMTC0JhdGNoVGVzdDAxMB4XDTE1MTAwMjE2MjkwNVoXDTM5MTIzMTIzNTk1OVowFjEUMBIGA1UEAxMLQmF0Y2hUZXN0MDEwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAM06unpRipn3BmHBM75d0s8w/Wwifci16PoJo4c2V68GwsCCFsNOn5ypo7BBXo1fpBjrnso5w+koaE5LjxkBSVm+TkogwbKlW6WURTM0O5viRVbPnEEU/Y01Pj5cJElFuLEk9Uoe/r/lP8b5A607t1cPjSXkwhEZEYc3LkHDSo0ZAgMBAAGjSzBJMEcGA1UdAQRAMD6AEFRsTAsrvF+FmPuICooZXaKhGDAWMRQwEgYDVQQDEwtCYXRjaFRlc3QwMYIQpUXhwCuAPJRDhl7kY/0PdTAJBgUrDgMCHQUAA4GBALt0F8Ep+8XVE/M2aNtxzlku72gxiOiAo1HmpUaixXx3gl8kdP3xgoKMaq4JskqdLmbJJUnCQ3wmzsdPwjswsW2ycT12zuBddaiS+id98k8U/KYc6FxMgS+H70FYOxARLn7P4FSSBf/QCyign+BherzezdZ5NBdfzbmWxIMP5iFJ\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#certificates\",\r\n \"value\": [\r\n {\r\n \"thumbprint\": \"04c06ba9fe4e26217c0b92e21917a7a2d7822d6d\",\r\n \"thumbprintAlgorithm\": \"sha1\",\r\n \"url\": \"https://mikeportal.eastus.batch.azure.com/certificates(thumbprintAlgorithm=sha1,thumbprint=04c06ba9fe4e26217c0b92e21917a7a2d7822d6d)\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2021-06-07T16:06:36.6109259Z\",\r\n \"publicData\": \"MIICwTCCAamgAwIBAgIRGUm7cuoxK0W9QFVcMdPFfwAwDQYJKoZIhvcNAQEFBQAwDjEMMAoGA1UEAwwDRm9vMB4XDTIxMDYwNzEyMDYzNloXDTIxMDYwNzEyMDYzNlowDjEMMAoGA1UEAwwDRm9vMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAv2wpeW7lr6qZ9ZZPpSQXY9p2zFyHvZzs52zP/2Oi6UhAzxymUqOAu/EqvKnpQuSa3jaYpbk8+sndh5vWeQTADg6I5Fu8jHI6uZqrR7TR4hnKehhaDmWF8xRWVPwnEbC29Y1lP9HdFV19FQaYhD+m0jaFn5IWzCYqaieHMQxe2JzUq959+IGR20fhZr0Pu/Iys4uoIOJz7VGJdjg1P459WAFGlVjkKX9TrcxGUeqREjOo9ADS7GUbGz5UdKXcvUcYTwDTb2k8ZVdZQGyCHky+f61BNfZuOLurwcrRQhPnxd9MOEDF6fYmV5sZxR5OMEP8dq4kkd9dKL0i+q7vc/0NOQIDAQABoxowGDAWBgNVHSUBAf8EDDAKBggrBgEFBQcDATANBgkqhkiG9w0BAQUFAAOCAQEARNlI4wthcHeIols7RQEKTjahU0Xx+uiNeTLxKCtCI/u1otYN2MUN4wVWZ+WYDB/IHXhkBu0VO60K5xIQaWkp37qvPV2Bchzojw8Hy74W6p3Y/o84yL+O6X4qYmMgjqGzI7IX7ntqKLAn18UbIbTi1bGTOi7iZn0EIlnBFQbierz8P998DqEi1Q8wq9nDA5OAMSl16cZ5S6uS/Cs9E05EDTNQEnisDNxXuBoO1NU9jrLzTGSi5cZKRjk4dzNDVcoxzWjott4E7J/mBjLR5VjSqER788yOrjYEZVrAEn/0YuYCqmLfl4EvNb4ioV0n8fp67NFiLPoVMQKXg8WpephKcQ==\"\r\n },\r\n {\r\n \"thumbprint\": \"80d625615ebca1cb49f439116ed7edd67da2cd5b\",\r\n \"thumbprintAlgorithm\": \"sha1\",\r\n \"url\": \"https://mikeportal.eastus.batch.azure.com/certificates(thumbprintAlgorithm=sha1,thumbprint=80d625615ebca1cb49f439116ed7edd67da2cd5b)\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2020-10-05T19:58:13.3160263Z\",\r\n \"publicData\": \"MIICwTCCAamgAwIBAgIRLrjPmJKbzkuRTbdXDS/eqQAwDQYJKoZIhvcNAQEFBQAwDjEMMAoGA1UEAwwDRm9vMB4XDTIwMTAwNTE1NTgxMloXDTIwMTAwNTE1NTgxMlowDjEMMAoGA1UEAwwDRm9vMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAp1h9L5ix2IbOCbNuxYjayHYaJh3PoDUQlNGwz75g2+igtvgDVIqgmpEk9FmZH2hJgAyWiaAwm/l3Irk/17MvrHEkCsh7FZ1/femWSOhy9dcxhIn0r5DJubJREcoy8JAfjRXFKuupTKRcAjJXPMNp6+LsYYNp1DfYflxGqiGJ3uylM22XiqXRJJG3aaw6sApW/MhE+/AoPzrXrEi/2hpE/Zao6nuX0JftvWjeF3SG9+uem4eovZzQHqo4FhiS+eIN9mlPUctht/jzsBa96EDAxmE7m1dZGyGbXtOVdTwdo7injclOATByY/iLYKvk4f6Flk39pVUk9zeQOK8yeJ/GnwIDAQABoxowGDAWBgNVHSUBAf8EDDAKBggrBgEFBQcDATANBgkqhkiG9w0BAQUFAAOCAQEAB0kZ4VM8pxrMFvALuaVVpjXWYG/5juCmw7NzQPZpcnS6ecyrUBfGSU5RlRUFu0JQjO8qt9OyTyS+frRqiXfij3l8dA0R+Nd1aLjLxdTKY73D6xTjgzH6ERqhSmwofqIHZBX+Plta2YOk/pjQdGBBgoaDpcO+1Zxn5NSaAUJ4GkRRfaLAaY4g8gW5KqIHYOtE0YtuQpp9ZQZl24RevYyR58lsEVnUxMdCuztnn73EZjEeq503eBvsKFL45Dw3scnApcI2ZuX0Aynwazr0s2vaXfSfj3uB/4m5IQ3LiprM52Zl5MVYgmAzHurRuq70EuoDXPQokrzsRwPGqwkBGd6EKA==\"\r\n },\r\n {\r\n \"thumbprint\": \"c1e494a415149c5f211c4778b52f2e834a07247c\",\r\n \"thumbprintAlgorithm\": \"sha1\",\r\n \"url\": \"https://mikeportal.eastus.batch.azure.com/certificates(thumbprintAlgorithm=sha1,thumbprint=c1e494a415149c5f211c4778b52f2e834a07247c)\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2021-08-27T15:59:16.9655228Z\",\r\n \"previousState\": \"deletefailed\",\r\n \"previousStateTransitionTime\": \"2021-08-27T15:59:06.6596292Z\",\r\n \"publicData\": \"MIIB9DCCAWGgAwIBAgIQpUXhwCuAPJRDhl7kY/0PdTAJBgUrDgMCHQUAMBYxFDASBgNVBAMTC0JhdGNoVGVzdDAxMB4XDTE1MTAwMjE2MjkwNVoXDTM5MTIzMTIzNTk1OVowFjEUMBIGA1UEAxMLQmF0Y2hUZXN0MDEwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAM06unpRipn3BmHBM75d0s8w/Wwifci16PoJo4c2V68GwsCCFsNOn5ypo7BBXo1fpBjrnso5w+koaE5LjxkBSVm+TkogwbKlW6WURTM0O5viRVbPnEEU/Y01Pj5cJElFuLEk9Uoe/r/lP8b5A607t1cPjSXkwhEZEYc3LkHDSo0ZAgMBAAGjSzBJMEcGA1UdAQRAMD6AEFRsTAsrvF+FmPuICooZXaKhGDAWMRQwEgYDVQQDEwtCYXRjaFRlc3QwMYIQpUXhwCuAPJRDhl7kY/0PdTAJBgUrDgMCHQUAA4GBALt0F8Ep+8XVE/M2aNtxzlku72gxiOiAo1HmpUaixXx3gl8kdP3xgoKMaq4JskqdLmbJJUnCQ3wmzsdPwjswsW2ycT12zuBddaiS+id98k8U/KYc6FxMgS+H70FYOxARLn7P4FSSBf/QCyign+BherzezdZ5NBdfzbmWxIMP5iFJ\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/pools/certPool?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L3Bvb2xzL2NlcnRQb29sP2FwaS12ZXJzaW9uPTIwMjAtMDMtMDEuMTEuMA==", + "RequestUri": "/pools/certPool?api-version=2021-06-01.14.0", + "EncodedRequestUri": "L3Bvb2xzL2NlcnRQb29sP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDEuMTQuMA==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "3f4ce38d-2c15-4e5e-af0b-6e18536dbbf4" + "b73d4888-bf8b-4668-b2c0-f9e0eb8cfc25" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 20:51:43 GMT" + "Fri, 27 Aug 2021 15:59:18 GMT" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/13.0.20.15503", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", "AzurePowershell/Az1.0.0" ], "Content-Length": [ @@ -1309,7 +1581,7 @@ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "df94540e-de89-460e-b253-0f026eeb651a" + "3ebded40-e010-4a5a-9dd9-a6fb9e22e232" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1321,7 +1593,7 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 20:51:43 GMT" + "Fri, 27 Aug 2021 15:59:16 GMT" ] }, "ResponseBody": "", @@ -1330,9 +1602,9 @@ ], "Names": {}, "Variables": { - "SubscriptionId": "21abd678-18c5-4660-9fdd-8c5ba6b6fe1f", - "AZURE_BATCH_ACCOUNT": "prodtest6", - "AZURE_BATCH_ENDPOINT": "https://prodtest6.francecentral.batch.azure.com", - "AZURE_BATCH_RESOURCE_GROUP": "abc" + "SubscriptionId": "ba2358c2-42f2-4138-88df-7c68cf608bea", + "AZURE_BATCH_ACCOUNT": "mikeportal", + "AZURE_BATCH_ENDPOINT": "https://mikeportal.eastus.batch.azure.com", + "AZURE_BATCH_RESOURCE_GROUP": "batchportal" } } \ No newline at end of file diff --git a/src/Batch/Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.CertificateTests/TestCertificateCrudOperations.json b/src/Batch/Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.CertificateTests/TestCertificateCrudOperations.json index 0d82d200fad5..46a43464f284 100644 --- a/src/Batch/Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.CertificateTests/TestCertificateCrudOperations.json +++ b/src/Batch/Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.CertificateTests/TestCertificateCrudOperations.json @@ -1,25 +1,28 @@ { "Entries": [ { - "RequestUri": "/certificates?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L2NlcnRpZmljYXRlcz9hcGktdmVyc2lvbj0yMDIwLTAzLTAxLjExLjA=", + "RequestUri": "/certificates?api-version=2021-06-01.14.0", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcz9hcGktdmVyc2lvbj0yMDIxLTA2LTAxLjE0LjA=", "RequestMethod": "POST", "RequestBody": "{\r\n \"thumbprint\": \"c1e494a415149c5f211c4778b52f2e834a07247c\",\r\n \"thumbprintAlgorithm\": \"sha1\",\r\n \"data\": \"MIIB9DCCAWGgAwIBAgIQpUXhwCuAPJRDhl7kY/0PdTAJBgUrDgMCHQUAMBYxFDASBgNVBAMTC0JhdGNoVGVzdDAxMB4XDTE1MTAwMjE2MjkwNVoXDTM5MTIzMTIzNTk1OVowFjEUMBIGA1UEAxMLQmF0Y2hUZXN0MDEwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAM06unpRipn3BmHBM75d0s8w/Wwifci16PoJo4c2V68GwsCCFsNOn5ypo7BBXo1fpBjrnso5w+koaE5LjxkBSVm+TkogwbKlW6WURTM0O5viRVbPnEEU/Y01Pj5cJElFuLEk9Uoe/r/lP8b5A607t1cPjSXkwhEZEYc3LkHDSo0ZAgMBAAGjSzBJMEcGA1UdAQRAMD6AEFRsTAsrvF+FmPuICooZXaKhGDAWMRQwEgYDVQQDEwtCYXRjaFRlc3QwMYIQpUXhwCuAPJRDhl7kY/0PdTAJBgUrDgMCHQUAA4GBALt0F8Ep+8XVE/M2aNtxzlku72gxiOiAo1HmpUaixXx3gl8kdP3xgoKMaq4JskqdLmbJJUnCQ3wmzsdPwjswsW2ycT12zuBddaiS+id98k8U/KYc6FxMgS+H70FYOxARLn7P4FSSBf/QCyign+BherzezdZ5NBdfzbmWxIMP5iFJ\",\r\n \"certificateFormat\": \"cer\"\r\n}", "RequestHeaders": { "client-request-id": [ - "63112827-39dd-4c5e-b6c0-0c79ff5f1249" + "dc81a859-f0a5-4ea5-afff-f502e5de61b7" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 20:48:51 GMT" + "Fri, 27 Aug 2021 15:57:00 GMT" + ], + "x-ms-client-request-id": [ + "11eb0066-6cdd-4306-88e6-eaf1c579e1aa" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/13.0.20.15503", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", "AzurePowershell/Az1.0.0" ], "Content-Type": [ @@ -34,13 +37,13 @@ "chunked" ], "Location": [ - "https://prodtest6.francecentral.batch.azure.com/certificates(ThumbprintAlgorithm=sha1,Thumbprint=c1e494a415149c5f211c4778b52f2e834a07247c)" + "https://mikeportal.eastus.batch.azure.com/certificates(ThumbprintAlgorithm=sha1,Thumbprint=c1e494a415149c5f211c4778b52f2e834a07247c)" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "36344b32-ea7b-41b4-8b1f-780871418386" + "660f4204-49f9-44e8-b262-13f828567290" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -52,35 +55,38 @@ "3.0" ], "DataServiceId": [ - "https://prodtest6.francecentral.batch.azure.com/certificates(ThumbprintAlgorithm=sha1,Thumbprint=c1e494a415149c5f211c4778b52f2e834a07247c)" + "https://mikeportal.eastus.batch.azure.com/certificates(ThumbprintAlgorithm=sha1,Thumbprint=c1e494a415149c5f211c4778b52f2e834a07247c)" ], "Date": [ - "Tue, 09 Jun 2020 20:49:12 GMT" + "Fri, 27 Aug 2021 15:56:59 GMT" ] }, "ResponseBody": "", "StatusCode": 201 }, { - "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1DMUU0OTRBNDE1MTQ5QzVGMjExQzQ3NzhCNTJGMkU4MzRBMDcyNDdDKT9hcGktdmVyc2lvbj0yMDIwLTAzLTAxLjExLjA=", + "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)?api-version=2021-06-01.14.0", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1DMUU0OTRBNDE1MTQ5QzVGMjExQzQ3NzhCNTJGMkU4MzRBMDcyNDdDKT9hcGktdmVyc2lvbj0yMDIxLTA2LTAxLjE0LjA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "a70fd750-6e76-434e-bd0c-3fd9a87a311b" + "69f771f3-ea70-4e25-86e9-2dcce0819552" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 20:49:13 GMT" + "Fri, 27 Aug 2021 15:57:01 GMT" + ], + "x-ms-client-request-id": [ + "e2abc640-38de-4b7b-a266-74fcd23f5dd8" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/13.0.20.15503", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", "AzurePowershell/Az1.0.0" ] }, @@ -92,7 +98,7 @@ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "b13fbbb6-3e5d-4eb5-9d6a-b3e10150971d" + "e9a435a1-c041-472e-b799-d5abe6a5e661" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -104,35 +110,38 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 20:49:12 GMT" + "Fri, 27 Aug 2021 15:56:59 GMT" ], "Content-Type": [ "application/json; odata=minimalmetadata" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://prodtest6.francecentral.batch.azure.com/$metadata#certificates/@Element\",\r\n \"thumbprint\": \"c1e494a415149c5f211c4778b52f2e834a07247c\",\r\n \"thumbprintAlgorithm\": \"sha1\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2020-06-09T20:49:12.9314653Z\",\r\n \"publicData\": \"MIIB9DCCAWGgAwIBAgIQpUXhwCuAPJRDhl7kY/0PdTAJBgUrDgMCHQUAMBYxFDASBgNVBAMTC0JhdGNoVGVzdDAxMB4XDTE1MTAwMjE2MjkwNVoXDTM5MTIzMTIzNTk1OVowFjEUMBIGA1UEAxMLQmF0Y2hUZXN0MDEwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAM06unpRipn3BmHBM75d0s8w/Wwifci16PoJo4c2V68GwsCCFsNOn5ypo7BBXo1fpBjrnso5w+koaE5LjxkBSVm+TkogwbKlW6WURTM0O5viRVbPnEEU/Y01Pj5cJElFuLEk9Uoe/r/lP8b5A607t1cPjSXkwhEZEYc3LkHDSo0ZAgMBAAGjSzBJMEcGA1UdAQRAMD6AEFRsTAsrvF+FmPuICooZXaKhGDAWMRQwEgYDVQQDEwtCYXRjaFRlc3QwMYIQpUXhwCuAPJRDhl7kY/0PdTAJBgUrDgMCHQUAA4GBALt0F8Ep+8XVE/M2aNtxzlku72gxiOiAo1HmpUaixXx3gl8kdP3xgoKMaq4JskqdLmbJJUnCQ3wmzsdPwjswsW2ycT12zuBddaiS+id98k8U/KYc6FxMgS+H70FYOxARLn7P4FSSBf/QCyign+BherzezdZ5NBdfzbmWxIMP5iFJ\"\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#certificates/@Element\",\r\n \"thumbprint\": \"c1e494a415149c5f211c4778b52f2e834a07247c\",\r\n \"thumbprintAlgorithm\": \"sha1\",\r\n \"url\": \"https://mikeportal.eastus.batch.azure.com/certificates(thumbprintAlgorithm=sha1,thumbprint=C1E494A415149C5F211C4778B52F2E834A07247C)\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2021-08-27T15:57:00.2869239Z\",\r\n \"publicData\": \"MIIB9DCCAWGgAwIBAgIQpUXhwCuAPJRDhl7kY/0PdTAJBgUrDgMCHQUAMBYxFDASBgNVBAMTC0JhdGNoVGVzdDAxMB4XDTE1MTAwMjE2MjkwNVoXDTM5MTIzMTIzNTk1OVowFjEUMBIGA1UEAxMLQmF0Y2hUZXN0MDEwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAM06unpRipn3BmHBM75d0s8w/Wwifci16PoJo4c2V68GwsCCFsNOn5ypo7BBXo1fpBjrnso5w+koaE5LjxkBSVm+TkogwbKlW6WURTM0O5viRVbPnEEU/Y01Pj5cJElFuLEk9Uoe/r/lP8b5A607t1cPjSXkwhEZEYc3LkHDSo0ZAgMBAAGjSzBJMEcGA1UdAQRAMD6AEFRsTAsrvF+FmPuICooZXaKhGDAWMRQwEgYDVQQDEwtCYXRjaFRlc3QwMYIQpUXhwCuAPJRDhl7kY/0PdTAJBgUrDgMCHQUAA4GBALt0F8Ep+8XVE/M2aNtxzlku72gxiOiAo1HmpUaixXx3gl8kdP3xgoKMaq4JskqdLmbJJUnCQ3wmzsdPwjswsW2ycT12zuBddaiS+id98k8U/KYc6FxMgS+H70FYOxARLn7P4FSSBf/QCyign+BherzezdZ5NBdfzbmWxIMP5iFJ\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=c1e494a415149c5f211c4778b52f2e834a07247c)?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1jMWU0OTRhNDE1MTQ5YzVmMjExYzQ3NzhiNTJmMmU4MzRhMDcyNDdjKT9hcGktdmVyc2lvbj0yMDIwLTAzLTAxLjExLjA=", + "RequestUri": "/certificates(thumbprintAlgorithm=sha1,thumbprint=c1e494a415149c5f211c4778b52f2e834a07247c)?api-version=2021-06-01.14.0", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1jMWU0OTRhNDE1MTQ5YzVmMjExYzQ3NzhiNTJmMmU4MzRhMDcyNDdjKT9hcGktdmVyc2lvbj0yMDIxLTA2LTAxLjE0LjA=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "5b904004-fd35-4468-9463-0b309a4a121d" + "6cbc62e1-aab3-43ac-8adc-4b58e356b9b4" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 20:49:13 GMT" + "Fri, 27 Aug 2021 15:57:01 GMT" + ], + "x-ms-client-request-id": [ + "915dd6d4-50ad-452b-869c-555f1a6027aa" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/13.0.20.15503", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", "AzurePowershell/Az1.0.0" ], "Content-Length": [ @@ -147,7 +156,7 @@ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "602dea36-745c-4e8b-8768-22116a7669b6" + "96638200-6212-4397-8e52-7fbbbc056293" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -159,32 +168,35 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 20:49:12 GMT" + "Fri, 27 Aug 2021 15:57:00 GMT" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/certificates?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L2NlcnRpZmljYXRlcz9hcGktdmVyc2lvbj0yMDIwLTAzLTAxLjExLjA=", + "RequestUri": "/certificates?api-version=2021-06-01.14.0", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcz9hcGktdmVyc2lvbj0yMDIxLTA2LTAxLjE0LjA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "64ccee37-c74d-438d-b46b-d57b4c31c508" + "0a9621de-935e-43f5-aa9b-8453c6449036" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 20:49:13 GMT" + "Fri, 27 Aug 2021 15:57:01 GMT" + ], + "x-ms-client-request-id": [ + "efd17b25-6d59-4446-9be3-4c92060d1d10" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/13.0.20.15503", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", "AzurePowershell/Az1.0.0" ] }, @@ -196,7 +208,7 @@ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "91e7b1e1-5cf3-4804-8224-0b0b71327275" + "3c969c27-5f93-4ba3-a72c-65a8dacdad69" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -208,21 +220,21 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 20:49:12 GMT" + "Fri, 27 Aug 2021 15:57:00 GMT" ], "Content-Type": [ "application/json; odata=minimalmetadata" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://prodtest6.francecentral.batch.azure.com/$metadata#certificates\",\r\n \"value\": [\r\n {\r\n \"thumbprint\": \"c1e494a415149c5f211c4778b52f2e834a07247c\",\r\n \"thumbprintAlgorithm\": \"sha1\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/certificates(thumbprintAlgorithm=sha1,thumbprint=c1e494a415149c5f211c4778b52f2e834a07247c)\",\r\n \"state\": \"deleting\",\r\n \"stateTransitionTime\": \"2020-06-09T20:49:13.4716944Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2020-06-09T20:49:12.9314653Z\",\r\n \"publicData\": \"MIIB9DCCAWGgAwIBAgIQpUXhwCuAPJRDhl7kY/0PdTAJBgUrDgMCHQUAMBYxFDASBgNVBAMTC0JhdGNoVGVzdDAxMB4XDTE1MTAwMjE2MjkwNVoXDTM5MTIzMTIzNTk1OVowFjEUMBIGA1UEAxMLQmF0Y2hUZXN0MDEwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAM06unpRipn3BmHBM75d0s8w/Wwifci16PoJo4c2V68GwsCCFsNOn5ypo7BBXo1fpBjrnso5w+koaE5LjxkBSVm+TkogwbKlW6WURTM0O5viRVbPnEEU/Y01Pj5cJElFuLEk9Uoe/r/lP8b5A607t1cPjSXkwhEZEYc3LkHDSo0ZAgMBAAGjSzBJMEcGA1UdAQRAMD6AEFRsTAsrvF+FmPuICooZXaKhGDAWMRQwEgYDVQQDEwtCYXRjaFRlc3QwMYIQpUXhwCuAPJRDhl7kY/0PdTAJBgUrDgMCHQUAA4GBALt0F8Ep+8XVE/M2aNtxzlku72gxiOiAo1HmpUaixXx3gl8kdP3xgoKMaq4JskqdLmbJJUnCQ3wmzsdPwjswsW2ycT12zuBddaiS+id98k8U/KYc6FxMgS+H70FYOxARLn7P4FSSBf/QCyign+BherzezdZ5NBdfzbmWxIMP5iFJ\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#certificates\",\r\n \"value\": [\r\n {\r\n \"thumbprint\": \"04c06ba9fe4e26217c0b92e21917a7a2d7822d6d\",\r\n \"thumbprintAlgorithm\": \"sha1\",\r\n \"url\": \"https://mikeportal.eastus.batch.azure.com/certificates(thumbprintAlgorithm=sha1,thumbprint=04c06ba9fe4e26217c0b92e21917a7a2d7822d6d)\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2021-06-07T16:06:36.6109259Z\",\r\n \"publicData\": \"MIICwTCCAamgAwIBAgIRGUm7cuoxK0W9QFVcMdPFfwAwDQYJKoZIhvcNAQEFBQAwDjEMMAoGA1UEAwwDRm9vMB4XDTIxMDYwNzEyMDYzNloXDTIxMDYwNzEyMDYzNlowDjEMMAoGA1UEAwwDRm9vMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAv2wpeW7lr6qZ9ZZPpSQXY9p2zFyHvZzs52zP/2Oi6UhAzxymUqOAu/EqvKnpQuSa3jaYpbk8+sndh5vWeQTADg6I5Fu8jHI6uZqrR7TR4hnKehhaDmWF8xRWVPwnEbC29Y1lP9HdFV19FQaYhD+m0jaFn5IWzCYqaieHMQxe2JzUq959+IGR20fhZr0Pu/Iys4uoIOJz7VGJdjg1P459WAFGlVjkKX9TrcxGUeqREjOo9ADS7GUbGz5UdKXcvUcYTwDTb2k8ZVdZQGyCHky+f61BNfZuOLurwcrRQhPnxd9MOEDF6fYmV5sZxR5OMEP8dq4kkd9dKL0i+q7vc/0NOQIDAQABoxowGDAWBgNVHSUBAf8EDDAKBggrBgEFBQcDATANBgkqhkiG9w0BAQUFAAOCAQEARNlI4wthcHeIols7RQEKTjahU0Xx+uiNeTLxKCtCI/u1otYN2MUN4wVWZ+WYDB/IHXhkBu0VO60K5xIQaWkp37qvPV2Bchzojw8Hy74W6p3Y/o84yL+O6X4qYmMgjqGzI7IX7ntqKLAn18UbIbTi1bGTOi7iZn0EIlnBFQbierz8P998DqEi1Q8wq9nDA5OAMSl16cZ5S6uS/Cs9E05EDTNQEnisDNxXuBoO1NU9jrLzTGSi5cZKRjk4dzNDVcoxzWjott4E7J/mBjLR5VjSqER788yOrjYEZVrAEn/0YuYCqmLfl4EvNb4ioV0n8fp67NFiLPoVMQKXg8WpephKcQ==\"\r\n },\r\n {\r\n \"thumbprint\": \"38c26cf94f7317cbfae4506b761daf61de4ecd4b\",\r\n \"thumbprintAlgorithm\": \"sha1\",\r\n \"url\": \"https://mikeportal.eastus.batch.azure.com/certificates(thumbprintAlgorithm=sha1,thumbprint=38c26cf94f7317cbfae4506b761daf61de4ecd4b)\",\r\n \"state\": \"deletefailed\",\r\n \"stateTransitionTime\": \"2020-10-05T20:00:23.2441549Z\",\r\n \"previousState\": \"deleting\",\r\n \"previousStateTransitionTime\": \"2020-10-05T19:59:20.3197512Z\",\r\n \"publicData\": \"MIICwTCCAamgAwIBAgIRZswwMvQfTEG4TB8ipilmggAwDQYJKoZIhvcNAQEFBQAwDjEMMAoGA1UEAwwDRm9vMB4XDTIwMTAwNTE1NTgxMFoXDTIwMTAwNTE1NTgxMFowDjEMMAoGA1UEAwwDRm9vMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3/2lribH6LufX7pwFms00eNSO08StmHJoMBOFVoUZb5a0mn+BJkzzDnEwpHbTagv3eIVnM9rCwO/QZLwe0GxAc8th//mMJS9H+aKUXeu3bhccsJOKAKKKpNX0/SRUA3GLLU1ITIUiuFY1fqQUQWpw6iTcNj90zWjruWXnjCqJm9KyTDTdTl1A4fNG7YcZ7Q+cWU3CD54gybA82BcZMojjTmCmssCecJtnMAC5qWnlAomXtpGqEYa6Ol7An/JcOgWvlTwEbfWiXNIsMNnzgH5jEVYWS+EERQhpVp3w1wOH0AWwIx/6Sfh6PqlYGaRPOkHwOlHB1YFYUnW3cxHsfZ9GQIDAQABoxowGDAWBgNVHSUBAf8EDDAKBggrBgEFBQcDATANBgkqhkiG9w0BAQUFAAOCAQEATjbVxuWSzrXNX8Syc7NbEQenkoczUolVHPxJOmgZP5kNxGjy7tzHAabk0QcwW95wKaHfSFbi5ENGc1YUkHEZJO8V3SujWcdpxcJMJ1ooXKCF+Qs5G1pLAnwvfxiV2qDEMf1YKwPLSHyju76Q3UFOtvKwWIZ7+tdpL2K4ht12Mp/Y9IjCg5pUjpbEhqY9N36e0Fw3f/aTAU3zdyPC9DJXahAXi7V4zD2JXBcp4niMp3Q5oEyQ3k/cgddMoCtGCMXIpD0xJHbEHLnZYWblrOU5uBAMR7KLFqDA2Qe0ujs5EZSanaKYrDCAZ6ECBKiLC7PLNXBVxIVqcLAyyKFV+2uujg==\",\r\n \"deleteCertificateError\": {\r\n \"code\": \"PoolsReferencingCertificate\",\r\n \"message\": \"The specified certificate is being used by the below mentioned pool(s)\",\r\n \"values\": [\r\n {\r\n \"name\": \"Pools\",\r\n \"value\": \"CancelDeleteCert-mipatera\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"thumbprint\": \"7bcab01ddd0004317fcba75bb446f59fea8bc79b\",\r\n \"thumbprintAlgorithm\": \"sha1\",\r\n \"url\": \"https://mikeportal.eastus.batch.azure.com/certificates(thumbprintAlgorithm=sha1,thumbprint=7bcab01ddd0004317fcba75bb446f59fea8bc79b)\",\r\n \"state\": \"deletefailed\",\r\n \"stateTransitionTime\": \"2021-06-07T16:07:37.149386Z\",\r\n \"previousState\": \"deleting\",\r\n \"previousStateTransitionTime\": \"2021-06-07T16:06:37.0703745Z\",\r\n \"publicData\": \"MIICwTCCAamgAwIBAgIRNJt3FreH30aAEo83v5pNTAAwDQYJKoZIhvcNAQEFBQAwDjEMMAoGA1UEAwwDRm9vMB4XDTIxMDYwNzEyMDYzNVoXDTIxMDYwNzEyMDYzNVowDjEMMAoGA1UEAwwDRm9vMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAs4WkINfkYczceNN4bop0K1OYwWsUYqVxNuV+lGWRujKybdwGn3mhZsVe4EBqFu2yvgpLd22jtdgmtx+iAJKPq7LfeEV36NQvDd/u9/z3ef6dV8mgOYN0y12Rp6lFJ7+JoLDzLgkKkJPmRQ1bNSy/5bI5VeAUfJN3Nl1Auioy4HpwzqawqwbWAm70P8nO0itUrjxuUktJk9fbvwvnJeU6FuCQ/XMkO2XTSal+u86itfUWmI2hH0V4J9ckXJjbg2LcjS+RfTsjugcKvLUYeGSsJbTeTKXffJ0/UZX36E9eq/UbpB5+GWrwhOgsBbyjNFPPqgkIT0+FZ36zCvgwPbxXBQIDAQABoxowGDAWBgNVHSUBAf8EDDAKBggrBgEFBQcDATANBgkqhkiG9w0BAQUFAAOCAQEAGgl2sQns0U/Q5CdvTczml4+0aanuckHvZZua3b5fPOt0Mw6ESm69YeGtugoQDTe7RDfa2IhU0xf2e6xenc+AqeOFDhtx3s4NTyZnv+MZiN9Ud1KCfLQoxlskhEJZmY+DcbfFlIQlLeo23eLqoeHKfUk6/kQaiHpwa329/Fj8nNGa764l8i9WqH5/sda1Jl9URZ5zmypWwzgzmQphCXwNv4xqR6oMYm7o1Z/3XAqClCDeyUPYCnz19inaEU4+XR4bcZYCWKoh+ghx1fccjyBX/NPgNTTEKrmii8iAmoMJeNJYqp13hBO6TUJDnKq5ijJWWDz3hRehBFv6HrUDBfU/FQ==\",\r\n \"deleteCertificateError\": {\r\n \"code\": \"PoolsReferencingCertificate\",\r\n \"message\": \"The specified certificate is being used by the below mentioned pool(s)\",\r\n \"values\": [\r\n {\r\n \"name\": \"Pools\",\r\n \"value\": \"CancelDeleteCert-mipatera\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"thumbprint\": \"80d625615ebca1cb49f439116ed7edd67da2cd5b\",\r\n \"thumbprintAlgorithm\": \"sha1\",\r\n \"url\": \"https://mikeportal.eastus.batch.azure.com/certificates(thumbprintAlgorithm=sha1,thumbprint=80d625615ebca1cb49f439116ed7edd67da2cd5b)\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2020-10-05T19:58:13.3160263Z\",\r\n \"publicData\": \"MIICwTCCAamgAwIBAgIRLrjPmJKbzkuRTbdXDS/eqQAwDQYJKoZIhvcNAQEFBQAwDjEMMAoGA1UEAwwDRm9vMB4XDTIwMTAwNTE1NTgxMloXDTIwMTAwNTE1NTgxMlowDjEMMAoGA1UEAwwDRm9vMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAp1h9L5ix2IbOCbNuxYjayHYaJh3PoDUQlNGwz75g2+igtvgDVIqgmpEk9FmZH2hJgAyWiaAwm/l3Irk/17MvrHEkCsh7FZ1/femWSOhy9dcxhIn0r5DJubJREcoy8JAfjRXFKuupTKRcAjJXPMNp6+LsYYNp1DfYflxGqiGJ3uylM22XiqXRJJG3aaw6sApW/MhE+/AoPzrXrEi/2hpE/Zao6nuX0JftvWjeF3SG9+uem4eovZzQHqo4FhiS+eIN9mlPUctht/jzsBa96EDAxmE7m1dZGyGbXtOVdTwdo7injclOATByY/iLYKvk4f6Flk39pVUk9zeQOK8yeJ/GnwIDAQABoxowGDAWBgNVHSUBAf8EDDAKBggrBgEFBQcDATANBgkqhkiG9w0BAQUFAAOCAQEAB0kZ4VM8pxrMFvALuaVVpjXWYG/5juCmw7NzQPZpcnS6ecyrUBfGSU5RlRUFu0JQjO8qt9OyTyS+frRqiXfij3l8dA0R+Nd1aLjLxdTKY73D6xTjgzH6ERqhSmwofqIHZBX+Plta2YOk/pjQdGBBgoaDpcO+1Zxn5NSaAUJ4GkRRfaLAaY4g8gW5KqIHYOtE0YtuQpp9ZQZl24RevYyR58lsEVnUxMdCuztnn73EZjEeq503eBvsKFL45Dw3scnApcI2ZuX0Aynwazr0s2vaXfSfj3uB/4m5IQ3LiprM52Zl5MVYgmAzHurRuq70EuoDXPQokrzsRwPGqwkBGd6EKA==\"\r\n },\r\n {\r\n \"thumbprint\": \"aecad2c43c876591a3a5a7cb10d82dfc3b884075\",\r\n \"thumbprintAlgorithm\": \"sha1\",\r\n \"url\": \"https://mikeportal.eastus.batch.azure.com/certificates(thumbprintAlgorithm=sha1,thumbprint=aecad2c43c876591a3a5a7cb10d82dfc3b884075)\",\r\n \"state\": \"deletefailed\",\r\n \"stateTransitionTime\": \"2020-09-28T19:27:15.6938587Z\",\r\n \"previousState\": \"deleting\",\r\n \"previousStateTransitionTime\": \"2020-09-28T19:26:12.7494494Z\",\r\n \"publicData\": \"MIICwTCCAamgAwIBAgIRZLjc+Kh940a3M1igbNQU5QAwDQYJKoZIhvcNAQEFBQAwDjEMMAoGA1UEAwwDRm9vMB4XDTIwMDkyODE1MjYwOVoXDTIwMDkyODE1MjYwOVowDjEMMAoGA1UEAwwDRm9vMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAgOICkxDccl50ZViZIaa2DWT7DKrlV/qbY8V8aWTj+SA3ydpI6ABf+x8HMcCREK3S5/L2c5+r6frds5n5TGmLTNdwwY1dgiPcFvh3cmHsZX/NbrF2gW5YcjiFjARJO+EqNF6sIFlCpXh4o2j96eI/h+dHD68QEC5RRZwXIRAaTd63yhrIsmALmwvNh06cNlB4adMryULy3k6rbgzfcz6muEU0zRP+iFeQJ8gXpc5vEpmAdmPcu8+wRyXPv3Ni1n9K/pMwc5BNEfyA6J3Pg1qs6s82v4vTV8NE+/GHbPuv7X/C4bJKkVLC2xDgVkkUqnhDdKrJBWf9nS60VQKpyNhjMwIDAQABoxowGDAWBgNVHSUBAf8EDDAKBggrBgEFBQcDATANBgkqhkiG9w0BAQUFAAOCAQEAbClmcMUBaXDS78vssVzKAl0Zst0rIVx7X42prRnRmL8KoEmQboKjx6L6hBZjSJkTJBvFlfhl4UcfX9DrRXnvCR6qEoFN+KJ+g4r6l+tB+frMuWmeY6kpzJLcLT5EJLV734GFDEpjDl9+xwFjJg++Im9QeB/3IGNXAbACzX+OgxtdH17avdPxf1Sfu2jM6X6aBDOCkfSS0+Fu/qlQCMZtGVcEQvfze08JQZWzoeqL5ArALJdYtK9pArV53bQj6yzAhXEUvOPSv8C/R3dk9BLFfoF6YpkWOmDTuH12/tlLDKdDSbK4kD+7QHDwQRrl/+fdfAKkIYs1sixc6dOsDI1iFw==\",\r\n \"deleteCertificateError\": {\r\n \"code\": \"PoolsReferencingCertificate\",\r\n \"message\": \"The specified certificate is being used by the below mentioned pool(s)\",\r\n \"values\": [\r\n {\r\n \"name\": \"Pools\",\r\n \"value\": \"mipatera_DB638163-7F2D-4C32-9941-E3F6A6877842\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"thumbprint\": \"c1e494a415149c5f211c4778b52f2e834a07247c\",\r\n \"thumbprintAlgorithm\": \"sha1\",\r\n \"url\": \"https://mikeportal.eastus.batch.azure.com/certificates(thumbprintAlgorithm=sha1,thumbprint=c1e494a415149c5f211c4778b52f2e834a07247c)\",\r\n \"state\": \"deleting\",\r\n \"stateTransitionTime\": \"2021-08-27T15:57:00.5982491Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2021-08-27T15:57:00.2869239Z\",\r\n \"publicData\": \"MIIB9DCCAWGgAwIBAgIQpUXhwCuAPJRDhl7kY/0PdTAJBgUrDgMCHQUAMBYxFDASBgNVBAMTC0JhdGNoVGVzdDAxMB4XDTE1MTAwMjE2MjkwNVoXDTM5MTIzMTIzNTk1OVowFjEUMBIGA1UEAxMLQmF0Y2hUZXN0MDEwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAM06unpRipn3BmHBM75d0s8w/Wwifci16PoJo4c2V68GwsCCFsNOn5ypo7BBXo1fpBjrnso5w+koaE5LjxkBSVm+TkogwbKlW6WURTM0O5viRVbPnEEU/Y01Pj5cJElFuLEk9Uoe/r/lP8b5A607t1cPjSXkwhEZEYc3LkHDSo0ZAgMBAAGjSzBJMEcGA1UdAQRAMD6AEFRsTAsrvF+FmPuICooZXaKhGDAWMRQwEgYDVQQDEwtCYXRjaFRlc3QwMYIQpUXhwCuAPJRDhl7kY/0PdTAJBgUrDgMCHQUAA4GBALt0F8Ep+8XVE/M2aNtxzlku72gxiOiAo1HmpUaixXx3gl8kdP3xgoKMaq4JskqdLmbJJUnCQ3wmzsdPwjswsW2ycT12zuBddaiS+id98k8U/KYc6FxMgS+H70FYOxARLn7P4FSSBf/QCyign+BherzezdZ5NBdfzbmWxIMP5iFJ\"\r\n },\r\n {\r\n \"thumbprint\": \"e88c8fe843310afa172dfb3d736e05f5d898ce8a\",\r\n \"thumbprintAlgorithm\": \"sha1\",\r\n \"url\": \"https://mikeportal.eastus.batch.azure.com/certificates(thumbprintAlgorithm=sha1,thumbprint=e88c8fe843310afa172dfb3d736e05f5d898ce8a)\",\r\n \"state\": \"deletefailed\",\r\n \"stateTransitionTime\": \"2020-09-28T19:27:15.6388586Z\",\r\n \"previousState\": \"deleting\",\r\n \"previousStateTransitionTime\": \"2020-09-28T19:26:12.6525095Z\",\r\n \"publicData\": \"MIICwTCCAamgAwIBAgIRLvuawndKrke4c7wvnVvZXwAwDQYJKoZIhvcNAQEFBQAwDjEMMAoGA1UEAwwDRm9vMB4XDTIwMDkyODE1MjYwOFoXDTIwMDkyODE1MjYwOFowDjEMMAoGA1UEAwwDRm9vMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAivbctq93RbaeiN+L/Ide1ebKawuq+eSM8E+iKp3OuzYWUdLyRGf2t9ZyUSehTOhlYBzfjm4LYF1h2UGiuG/oTuONx/Ic7S1Q+Fjxdhd7rQjnI2jDNn5oandQnxLGwjI04rcs2T43u91k+4rnQWJSD00W4cS0QcJfDTETZ6E/rVIhqX7MHiVHmg+v0CgFzN2vRlyQ4ogylmRIhzkxc7eMT1NellF6aHicXWzK3IKNgoZ8jpAFqTT+Y4ahpvKuYvFhj0/bEMON90uBclH4JqrBse2lNH/Az+e1t2BRCfo5uF3Woh1CTPQ7iphDAimN4F8K7IsUrEw/2RdnreLFILMlLwIDAQABoxowGDAWBgNVHSUBAf8EDDAKBggrBgEFBQcDATANBgkqhkiG9w0BAQUFAAOCAQEAQR3m8jKArikm3OuhGWVIJMGBk8tIDzTwZ+fJNhuerjToQF4VekVQgW/suHgW/ZwV5/hMySrxysnjzMRqnmEvzW7LLKT1fbFZQUidp7MDgnmRI+oTCywfduU33q6aj4CnzZGXe+UVF+R4ZOqR8WusM5RwEnDUaybb5oHsEEQwj2fRKCaOc+ngak/Q6ev83TZXf8XtUsK/DKkHdqF96BtB8bpMBtTq3OjapcL6vYSzWlFFYLGh2cThiyMlqM7AA+J+Y/+ilonYB/f8SeO772HyoXodelsTMjkP9iSW1g7EX4ak49okK9UqCM1polvEtWBERpg188K9Y2fIAcukZrXrrQ==\",\r\n \"deleteCertificateError\": {\r\n \"code\": \"PoolsReferencingCertificate\",\r\n \"message\": \"The specified certificate is being used by the below mentioned pool(s)\",\r\n \"values\": [\r\n {\r\n \"name\": \"Pools\",\r\n \"value\": \"mipatera_DB638163-7F2D-4C32-9941-E3F6A6877842\"\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 } ], "Names": {}, "Variables": { - "SubscriptionId": "21abd678-18c5-4660-9fdd-8c5ba6b6fe1f", - "AZURE_BATCH_ACCOUNT": "prodtest6", - "AZURE_BATCH_ENDPOINT": "https://prodtest6.francecentral.batch.azure.com", - "AZURE_BATCH_RESOURCE_GROUP": "abc" + "SubscriptionId": "ba2358c2-42f2-4138-88df-7c68cf608bea", + "AZURE_BATCH_ACCOUNT": "mikeportal", + "AZURE_BATCH_ENDPOINT": "https://mikeportal.eastus.batch.azure.com", + "AZURE_BATCH_RESOURCE_GROUP": "batchportal" } } \ No newline at end of file diff --git a/src/Batch/Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.ComputeNodeTests/TestDisableAndEnableComputeNodeScheduling.json b/src/Batch/Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.ComputeNodeTests/TestDisableAndEnableComputeNodeScheduling.json index cfd6e125ca96..2d0855d2eda5 100644 --- a/src/Batch/Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.ComputeNodeTests/TestDisableAndEnableComputeNodeScheduling.json +++ b/src/Batch/Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.ComputeNodeTests/TestDisableAndEnableComputeNodeScheduling.json @@ -1,25 +1,25 @@ { "Entries": [ { - "RequestUri": "/pools/testPool/nodes?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzP2FwaS12ZXJzaW9uPTIwMjAtMDMtMDEuMTEuMA==", + "RequestUri": "/pools/testPool/nodes?api-version=2021-06-01.14.0", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDEuMTQuMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "92fc6903-08e9-474a-8bfb-8f9708ff04b8" + "cd543d69-39ec-4d19-9e61-43a5e4175629" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Wed, 10 Jun 2020 20:32:03 GMT" + "Fri, 27 Aug 2021 16:22:42 GMT" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/13.0.20.15503", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", "AzurePowershell/Az1.0.0" ] }, @@ -31,7 +31,7 @@ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "137e37ab-c527-479d-a291-1ad35e44f084" + "30607e54-10fd-4477-9917-c536b8bf59a4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -43,35 +43,35 @@ "3.0" ], "Date": [ - "Wed, 10 Jun 2020 20:32:25 GMT" + "Fri, 27 Aug 2021 16:22:41 GMT" ], "Content-Type": [ "application/json; odata=minimalmetadata" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://prodtest6.francecentral.batch.azure.com/$metadata#nodes\",\r\n \"value\": [\r\n {\r\n \"id\": \"tvmps_67c7cd533daccf422807a8e72192afe6b3bd035d859dc2b1b0844ccd2331aaba_d\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/pools/testPool/nodes/tvmps_67c7cd533daccf422807a8e72192afe6b3bd035d859dc2b1b0844ccd2331aaba_d\",\r\n \"state\": \"idle\",\r\n \"schedulingState\": \"enabled\",\r\n \"stateTransitionTime\": \"2020-06-09T22:34:41.401662Z\",\r\n \"lastBootTime\": \"2020-06-09T22:20:57.944544Z\",\r\n \"allocationTime\": \"2020-06-09T16:25:12.7257784Z\",\r\n \"ipAddress\": \"10.218.0.5\",\r\n \"affinityId\": \"TVM:tvmps_67c7cd533daccf422807a8e72192afe6b3bd035d859dc2b1b0844ccd2331aaba_d\",\r\n \"vmSize\": \"standard_d2_v3\",\r\n \"totalTasksRun\": 4,\r\n \"totalTasksSucceeded\": 2,\r\n \"runningTasksCount\": 0,\r\n \"recentTasks\": [\r\n {\r\n \"taskUrl\": \"https://prodtest6.francecentral.batch.azure.com/jobs/testTerminateTaskJob/tasks/testTask1\",\r\n \"jobId\": \"testTerminateTaskJob\",\r\n \"taskId\": \"testTask1\",\r\n \"taskState\": \"completed\",\r\n \"executionInfo\": {\r\n \"startTime\": \"2020-06-09T22:34:20.159567Z\",\r\n \"endTime\": \"2020-06-09T22:34:41.354785Z\",\r\n \"exitCode\": -1073741510,\r\n \"failureInfo\": {\r\n \"category\": \"UserError\",\r\n \"code\": \"TaskEnded\",\r\n \"message\": \"Task Was Ended by User Request\",\r\n \"details\": [\r\n {\r\n \"name\": \"AdditionalErrorCode\",\r\n \"value\": \"FailureExitCode\"\r\n }\r\n ]\r\n },\r\n \"result\": \"failure\",\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n }\r\n }\r\n ],\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c \\\"echo hello\\\"\",\r\n \"userIdentity\": {\r\n \"autoUser\": {\r\n \"scope\": \"pool\",\r\n \"elevationLevel\": \"nonadmin\"\r\n }\r\n },\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": true\r\n },\r\n \"startTaskInfo\": {\r\n \"state\": \"completed\",\r\n \"startTime\": \"2020-06-09T22:21:00.444565Z\",\r\n \"endTime\": \"2020-06-09T22:21:00.569566Z\",\r\n \"exitCode\": 0,\r\n \"result\": \"success\",\r\n \"retryCount\": 0\r\n },\r\n \"certificateReferences\": [],\r\n \"isDedicated\": true,\r\n \"endpointConfiguration\": {\r\n \"inboundEndpoints\": [\r\n {\r\n \"name\": \"Microsoft.WindowsAzure.Plugins.RemoteForwarder.RdpInput\",\r\n \"protocol\": \"tcp\",\r\n \"publicIPAddress\": \"20.43.39.67\",\r\n \"frontendPort\": 3389,\r\n \"backendPort\": 20000\r\n }\r\n ]\r\n },\r\n \"nodeAgentInfo\": {\r\n \"lastUpdateTime\": \"2020-06-09T16:28:51.733507Z\",\r\n \"version\": \"1.8.2\"\r\n }\r\n },\r\n {\r\n \"id\": \"tvmps_b2261f234552ed255528c67c79ef395bf203c82862dc376e9005a0b9bf93c10d_d\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/pools/testPool/nodes/tvmps_b2261f234552ed255528c67c79ef395bf203c82862dc376e9005a0b9bf93c10d_d\",\r\n \"state\": \"idle\",\r\n \"schedulingState\": \"enabled\",\r\n \"stateTransitionTime\": \"2020-06-10T20:18:50.374645Z\",\r\n \"lastBootTime\": \"2020-06-10T20:18:47.608852Z\",\r\n \"allocationTime\": \"2020-06-10T20:15:03.3327466Z\",\r\n \"ipAddress\": \"10.218.0.4\",\r\n \"affinityId\": \"TVM:tvmps_b2261f234552ed255528c67c79ef395bf203c82862dc376e9005a0b9bf93c10d_d\",\r\n \"vmSize\": \"standard_d2_v3\",\r\n \"totalTasksRun\": 0,\r\n \"totalTasksSucceeded\": 0,\r\n \"runningTasksCount\": 0,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c \\\"echo hello\\\"\",\r\n \"userIdentity\": {\r\n \"autoUser\": {\r\n \"scope\": \"pool\",\r\n \"elevationLevel\": \"nonadmin\"\r\n }\r\n },\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": true\r\n },\r\n \"startTaskInfo\": {\r\n \"state\": \"completed\",\r\n \"startTime\": \"2020-06-10T20:18:50.249643Z\",\r\n \"endTime\": \"2020-06-10T20:18:50.359019Z\",\r\n \"exitCode\": 0,\r\n \"result\": \"success\",\r\n \"retryCount\": 0\r\n },\r\n \"certificateReferences\": [],\r\n \"isDedicated\": true,\r\n \"endpointConfiguration\": {\r\n \"inboundEndpoints\": [\r\n {\r\n \"name\": \"Microsoft.WindowsAzure.Plugins.RemoteForwarder.RdpInput\",\r\n \"protocol\": \"tcp\",\r\n \"publicIPAddress\": \"20.43.39.67\",\r\n \"frontendPort\": 3389,\r\n \"backendPort\": 20000\r\n }\r\n ]\r\n },\r\n \"nodeAgentInfo\": {\r\n \"lastUpdateTime\": \"2020-06-10T20:18:47.608852Z\",\r\n \"version\": \"1.8.2\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#nodes\",\r\n \"value\": [\r\n {\r\n \"id\": \"tvmps_06e333efaab6a295eddf31ab64af1beb132de30da2619fab68431dcc2a5e0c4f_d\",\r\n \"url\": \"https://mikeportal.eastus.batch.azure.com/pools/testPool/nodes/tvmps_06e333efaab6a295eddf31ab64af1beb132de30da2619fab68431dcc2a5e0c4f_d\",\r\n \"state\": \"rebooting\",\r\n \"schedulingState\": \"enabled\",\r\n \"stateTransitionTime\": \"2021-08-27T16:22:38.7947452Z\",\r\n \"lastBootTime\": \"2021-08-27T01:31:49.00627Z\",\r\n \"allocationTime\": \"2021-08-27T01:30:23.4794868Z\",\r\n \"ipAddress\": \"10.218.0.4\",\r\n \"affinityId\": \"TVM:tvmps_06e333efaab6a295eddf31ab64af1beb132de30da2619fab68431dcc2a5e0c4f_d\",\r\n \"vmSize\": \"standard_d1_v2\",\r\n \"totalTasksRun\": 1,\r\n \"totalTasksSucceeded\": 1,\r\n \"runningTasksCount\": 0,\r\n \"runningTaskSlotsCount\": 0,\r\n \"recentTasks\": [\r\n {\r\n \"taskUrl\": \"https://mikeportal.eastus.batch.azure.com/jobs/createTaskCollectionJob/tasks/simple1\",\r\n \"jobId\": \"createTaskCollectionJob\",\r\n \"taskId\": \"simple1\",\r\n \"taskState\": \"completed\",\r\n \"executionInfo\": {\r\n \"startTime\": \"2021-08-27T16:08:33.02231Z\",\r\n \"endTime\": \"2021-08-27T16:08:33.069198Z\",\r\n \"exitCode\": 0,\r\n \"result\": \"success\",\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n }\r\n }\r\n ],\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"userIdentity\": {\r\n \"autoUser\": {\r\n \"scope\": \"pool\",\r\n \"elevationLevel\": \"nonadmin\"\r\n }\r\n },\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": true\r\n },\r\n \"startTaskInfo\": {\r\n \"state\": \"completed\",\r\n \"startTime\": \"2021-08-27T01:31:49.459393Z\",\r\n \"endTime\": \"2021-08-27T01:31:49.521897Z\",\r\n \"exitCode\": 0,\r\n \"result\": \"success\",\r\n \"retryCount\": 0\r\n },\r\n \"certificateReferences\": [],\r\n \"isDedicated\": true,\r\n \"endpointConfiguration\": {\r\n \"inboundEndpoints\": [\r\n {\r\n \"name\": \"Microsoft.WindowsAzure.Plugins.RemoteForwarder.RdpInput\",\r\n \"protocol\": \"tcp\",\r\n \"frontendPort\": 3389,\r\n \"backendPort\": 20000\r\n }\r\n ]\r\n },\r\n \"nodeAgentInfo\": {\r\n \"lastUpdateTime\": \"2021-08-27T01:31:49.00627Z\",\r\n \"version\": \"1.9.14\"\r\n },\r\n \"virtualMachineInfo\": {}\r\n },\r\n {\r\n \"id\": \"tvmps_4109062b0e8548c8f8e8341010d95a7f915aa2dbcbf46cd71183db0d156bec9b_d\",\r\n \"url\": \"https://mikeportal.eastus.batch.azure.com/pools/testPool/nodes/tvmps_4109062b0e8548c8f8e8341010d95a7f915aa2dbcbf46cd71183db0d156bec9b_d\",\r\n \"state\": \"reimaging\",\r\n \"schedulingState\": \"enabled\",\r\n \"stateTransitionTime\": \"2021-08-27T16:22:39.0627482Z\",\r\n \"lastBootTime\": \"2021-08-27T01:31:49.004852Z\",\r\n \"allocationTime\": \"2021-08-27T01:30:23.4794868Z\",\r\n \"ipAddress\": \"10.218.0.6\",\r\n \"affinityId\": \"TVM:tvmps_4109062b0e8548c8f8e8341010d95a7f915aa2dbcbf46cd71183db0d156bec9b_d\",\r\n \"vmSize\": \"standard_d1_v2\",\r\n \"totalTasksRun\": 0,\r\n \"totalTasksSucceeded\": 0,\r\n \"runningTasksCount\": 0,\r\n \"runningTaskSlotsCount\": 0,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"userIdentity\": {\r\n \"autoUser\": {\r\n \"scope\": \"pool\",\r\n \"elevationLevel\": \"nonadmin\"\r\n }\r\n },\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": true\r\n },\r\n \"startTaskInfo\": {\r\n \"state\": \"completed\",\r\n \"startTime\": \"2021-08-27T01:31:49.413766Z\",\r\n \"endTime\": \"2021-08-27T01:31:49.476266Z\",\r\n \"exitCode\": 0,\r\n \"result\": \"success\",\r\n \"retryCount\": 0\r\n },\r\n \"certificateReferences\": [],\r\n \"isDedicated\": true,\r\n \"endpointConfiguration\": {\r\n \"inboundEndpoints\": [\r\n {\r\n \"name\": \"Microsoft.WindowsAzure.Plugins.RemoteForwarder.RdpInput\",\r\n \"protocol\": \"tcp\",\r\n \"frontendPort\": 3389,\r\n \"backendPort\": 20000\r\n }\r\n ]\r\n },\r\n \"nodeAgentInfo\": {\r\n \"lastUpdateTime\": \"2021-08-27T01:31:49.004852Z\",\r\n \"version\": \"1.9.14\"\r\n },\r\n \"virtualMachineInfo\": {}\r\n },\r\n {\r\n \"id\": \"tvmps_c05b99b79b9007429d25b6be89631ca2778f46762979e27e83ebe323eb0de497_d\",\r\n \"url\": \"https://mikeportal.eastus.batch.azure.com/pools/testPool/nodes/tvmps_c05b99b79b9007429d25b6be89631ca2778f46762979e27e83ebe323eb0de497_d\",\r\n \"state\": \"idle\",\r\n \"schedulingState\": \"enabled\",\r\n \"stateTransitionTime\": \"2021-08-27T16:15:28.865336Z\",\r\n \"lastBootTime\": \"2021-08-27T01:31:49.018049Z\",\r\n \"allocationTime\": \"2021-08-27T01:30:23.4794868Z\",\r\n \"ipAddress\": \"10.218.0.5\",\r\n \"affinityId\": \"TVM:tvmps_c05b99b79b9007429d25b6be89631ca2778f46762979e27e83ebe323eb0de497_d\",\r\n \"vmSize\": \"standard_d1_v2\",\r\n \"totalTasksRun\": 2,\r\n \"totalTasksSucceeded\": 1,\r\n \"runningTasksCount\": 0,\r\n \"runningTaskSlotsCount\": 0,\r\n \"recentTasks\": [\r\n {\r\n \"taskUrl\": \"https://mikeportal.eastus.batch.azure.com/jobs/testTerminateTaskJob/tasks/testTask2\",\r\n \"jobId\": \"testTerminateTaskJob\",\r\n \"taskId\": \"testTask2\",\r\n \"taskState\": \"completed\",\r\n \"executionInfo\": {\r\n \"startTime\": \"2021-08-27T16:15:28.740332Z\",\r\n \"endTime\": \"2021-08-27T16:15:28.818458Z\",\r\n \"exitCode\": -1073741510,\r\n \"failureInfo\": {\r\n \"category\": \"UserError\",\r\n \"code\": \"TaskEnded\",\r\n \"message\": \"Task Was Ended by User Request\",\r\n \"details\": [\r\n {\r\n \"name\": \"AdditionalErrorCode\",\r\n \"value\": \"FailureExitCode\"\r\n }\r\n ]\r\n },\r\n \"result\": \"failure\",\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n }\r\n }\r\n ],\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"userIdentity\": {\r\n \"autoUser\": {\r\n \"scope\": \"pool\",\r\n \"elevationLevel\": \"nonadmin\"\r\n }\r\n },\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": true\r\n },\r\n \"startTaskInfo\": {\r\n \"state\": \"completed\",\r\n \"startTime\": \"2021-08-27T01:31:49.519546Z\",\r\n \"endTime\": \"2021-08-27T01:31:49.582959Z\",\r\n \"exitCode\": 0,\r\n \"result\": \"success\",\r\n \"retryCount\": 0\r\n },\r\n \"certificateReferences\": [],\r\n \"isDedicated\": true,\r\n \"endpointConfiguration\": {\r\n \"inboundEndpoints\": [\r\n {\r\n \"name\": \"Microsoft.WindowsAzure.Plugins.RemoteForwarder.RdpInput\",\r\n \"protocol\": \"tcp\",\r\n \"frontendPort\": 3389,\r\n \"backendPort\": 20000\r\n }\r\n ]\r\n },\r\n \"nodeAgentInfo\": {\r\n \"lastUpdateTime\": \"2021-08-27T01:31:49.018049Z\",\r\n \"version\": \"1.9.14\"\r\n },\r\n \"virtualMachineInfo\": {}\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/pools/testPool/nodes/tvmps_67c7cd533daccf422807a8e72192afe6b3bd035d859dc2b1b0844ccd2331aaba_d?api-version=2020-03-01.11.0&$select=id%2Cstate", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bXBzXzY3YzdjZDUzM2RhY2NmNDIyODA3YThlNzIxOTJhZmU2YjNiZDAzNWQ4NTlkYzJiMWIwODQ0Y2NkMjMzMWFhYmFfZD9hcGktdmVyc2lvbj0yMDIwLTAzLTAxLjExLjAmJHNlbGVjdD1pZCUyQ3N0YXRl", + "RequestUri": "/pools/testPool/nodes/tvmps_06e333efaab6a295eddf31ab64af1beb132de30da2619fab68431dcc2a5e0c4f_d?api-version=2021-06-01.14.0&$select=id%2Cstate", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bXBzXzA2ZTMzM2VmYWFiNmEyOTVlZGRmMzFhYjY0YWYxYmViMTMyZGUzMGRhMjYxOWZhYjY4NDMxZGNjMmE1ZTBjNGZfZD9hcGktdmVyc2lvbj0yMDIxLTA2LTAxLjE0LjAmJHNlbGVjdD1pZCUyQ3N0YXRl", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "f7ebab99-8fb7-422d-b111-4da878e500c1" + "0f143637-b42c-4a50-9f98-9d93ed67a8ab" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Wed, 10 Jun 2020 20:32:25 GMT" + "Fri, 27 Aug 2021 16:22:42 GMT" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/13.0.20.15503", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", "AzurePowershell/Az1.0.0" ] }, @@ -83,7 +83,7 @@ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "56cd7dce-d683-4607-9c76-7c6af14e77b4" + "2dcfa185-5f74-4702-89c2-46b505548118" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -95,35 +95,35 @@ "3.0" ], "Date": [ - "Wed, 10 Jun 2020 20:32:25 GMT" + "Fri, 27 Aug 2021 16:22:41 GMT" ], "Content-Type": [ "application/json; odata=minimalmetadata" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://prodtest6.francecentral.batch.azure.com/$metadata#nodes/@Element\",\r\n \"id\": \"tvmps_67c7cd533daccf422807a8e72192afe6b3bd035d859dc2b1b0844ccd2331aaba_d\",\r\n \"state\": \"idle\"\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#nodes/@Element\",\r\n \"id\": \"tvmps_06e333efaab6a295eddf31ab64af1beb132de30da2619fab68431dcc2a5e0c4f_d\",\r\n \"state\": \"rebooting\",\r\n \"virtualMachineInfo\": {}\r\n}", "StatusCode": 200 }, { - "RequestUri": "/pools/testPool/nodes/tvmps_67c7cd533daccf422807a8e72192afe6b3bd035d859dc2b1b0844ccd2331aaba_d?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bXBzXzY3YzdjZDUzM2RhY2NmNDIyODA3YThlNzIxOTJhZmU2YjNiZDAzNWQ4NTlkYzJiMWIwODQ0Y2NkMjMzMWFhYmFfZD9hcGktdmVyc2lvbj0yMDIwLTAzLTAxLjExLjA=", + "RequestUri": "/pools/testPool/nodes/tvmps_06e333efaab6a295eddf31ab64af1beb132de30da2619fab68431dcc2a5e0c4f_d?api-version=2021-06-01.14.0&$select=id%2Cstate", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bXBzXzA2ZTMzM2VmYWFiNmEyOTVlZGRmMzFhYjY0YWYxYmViMTMyZGUzMGRhMjYxOWZhYjY4NDMxZGNjMmE1ZTBjNGZfZD9hcGktdmVyc2lvbj0yMDIxLTA2LTAxLjE0LjAmJHNlbGVjdD1pZCUyQ3N0YXRl", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "e58ddfa3-9bb6-4835-806c-e521f9e498a9" + "eff3fe04-b66d-42a4-8268-004072467e86" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Wed, 10 Jun 2020 20:32:27 GMT" + "Fri, 27 Aug 2021 16:22:47 GMT" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/13.0.20.15503", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", "AzurePowershell/Az1.0.0" ] }, @@ -135,7 +135,7 @@ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "9bb88868-aa71-4ece-8308-94ec7afb164c" + "b6fa6ee4-0a80-473c-a219-3829ecd4ff71" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -147,35 +147,1289 @@ "3.0" ], "Date": [ - "Wed, 10 Jun 2020 20:32:48 GMT" + "Fri, 27 Aug 2021 16:22:46 GMT" ], "Content-Type": [ "application/json; odata=minimalmetadata" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://prodtest6.francecentral.batch.azure.com/$metadata#nodes/@Element\",\r\n \"id\": \"tvmps_67c7cd533daccf422807a8e72192afe6b3bd035d859dc2b1b0844ccd2331aaba_d\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/pools/testPool/nodes/tvmps_67c7cd533daccf422807a8e72192afe6b3bd035d859dc2b1b0844ccd2331aaba_d\",\r\n \"state\": \"idle\",\r\n \"schedulingState\": \"enabled\",\r\n \"stateTransitionTime\": \"2020-06-09T22:34:41.401662Z\",\r\n \"lastBootTime\": \"2020-06-09T22:20:57.944544Z\",\r\n \"allocationTime\": \"2020-06-09T16:25:12.7257784Z\",\r\n \"ipAddress\": \"10.218.0.5\",\r\n \"affinityId\": \"TVM:tvmps_67c7cd533daccf422807a8e72192afe6b3bd035d859dc2b1b0844ccd2331aaba_d\",\r\n \"vmSize\": \"standard_d2_v3\",\r\n \"totalTasksRun\": 4,\r\n \"totalTasksSucceeded\": 2,\r\n \"runningTasksCount\": 0,\r\n \"recentTasks\": [\r\n {\r\n \"taskUrl\": \"https://prodtest6.francecentral.batch.azure.com/jobs/testTerminateTaskJob/tasks/testTask1\",\r\n \"jobId\": \"testTerminateTaskJob\",\r\n \"taskId\": \"testTask1\",\r\n \"taskState\": \"completed\",\r\n \"executionInfo\": {\r\n \"startTime\": \"2020-06-09T22:34:20.159567Z\",\r\n \"endTime\": \"2020-06-09T22:34:41.354785Z\",\r\n \"exitCode\": -1073741510,\r\n \"failureInfo\": {\r\n \"category\": \"UserError\",\r\n \"code\": \"TaskEnded\",\r\n \"message\": \"Task Was Ended by User Request\",\r\n \"details\": [\r\n {\r\n \"name\": \"AdditionalErrorCode\",\r\n \"value\": \"FailureExitCode\"\r\n }\r\n ]\r\n },\r\n \"result\": \"failure\",\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n }\r\n }\r\n ],\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c \\\"echo hello\\\"\",\r\n \"userIdentity\": {\r\n \"autoUser\": {\r\n \"scope\": \"pool\",\r\n \"elevationLevel\": \"nonadmin\"\r\n }\r\n },\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": true\r\n },\r\n \"startTaskInfo\": {\r\n \"state\": \"completed\",\r\n \"startTime\": \"2020-06-09T22:21:00.444565Z\",\r\n \"endTime\": \"2020-06-09T22:21:00.569566Z\",\r\n \"exitCode\": 0,\r\n \"result\": \"success\",\r\n \"retryCount\": 0\r\n },\r\n \"certificateReferences\": [],\r\n \"isDedicated\": true,\r\n \"endpointConfiguration\": {\r\n \"inboundEndpoints\": [\r\n {\r\n \"name\": \"Microsoft.WindowsAzure.Plugins.RemoteForwarder.RdpInput\",\r\n \"protocol\": \"tcp\",\r\n \"publicIPAddress\": \"20.43.39.67\",\r\n \"frontendPort\": 3389,\r\n \"backendPort\": 20000\r\n }\r\n ]\r\n },\r\n \"nodeAgentInfo\": {\r\n \"lastUpdateTime\": \"2020-06-09T16:28:51.733507Z\",\r\n \"version\": \"1.8.2\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#nodes/@Element\",\r\n \"id\": \"tvmps_06e333efaab6a295eddf31ab64af1beb132de30da2619fab68431dcc2a5e0c4f_d\",\r\n \"state\": \"rebooting\",\r\n \"virtualMachineInfo\": {}\r\n}", "StatusCode": 200 }, { - "RequestUri": "/pools/testPool/nodes/tvmps_67c7cd533daccf422807a8e72192afe6b3bd035d859dc2b1b0844ccd2331aaba_d/disablescheduling?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bXBzXzY3YzdjZDUzM2RhY2NmNDIyODA3YThlNzIxOTJhZmU2YjNiZDAzNWQ4NTlkYzJiMWIwODQ0Y2NkMjMzMWFhYmFfZC9kaXNhYmxlc2NoZWR1bGluZz9hcGktdmVyc2lvbj0yMDIwLTAzLTAxLjExLjA=", + "RequestUri": "/pools/testPool/nodes/tvmps_06e333efaab6a295eddf31ab64af1beb132de30da2619fab68431dcc2a5e0c4f_d?api-version=2021-06-01.14.0&$select=id%2Cstate", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bXBzXzA2ZTMzM2VmYWFiNmEyOTVlZGRmMzFhYjY0YWYxYmViMTMyZGUzMGRhMjYxOWZhYjY4NDMxZGNjMmE1ZTBjNGZfZD9hcGktdmVyc2lvbj0yMDIxLTA2LTAxLjE0LjAmJHNlbGVjdD1pZCUyQ3N0YXRl", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "7e4a229d-ca00-4c48-a886-81ac78baf1a6" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Fri, 27 Aug 2021 16:22:52 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "e711be35-66f7-411d-9d61-070abe8dc09e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Fri, 27 Aug 2021 16:22:51 GMT" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#nodes/@Element\",\r\n \"id\": \"tvmps_06e333efaab6a295eddf31ab64af1beb132de30da2619fab68431dcc2a5e0c4f_d\",\r\n \"state\": \"rebooting\",\r\n \"virtualMachineInfo\": {}\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/pools/testPool/nodes/tvmps_06e333efaab6a295eddf31ab64af1beb132de30da2619fab68431dcc2a5e0c4f_d?api-version=2021-06-01.14.0&$select=id%2Cstate", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bXBzXzA2ZTMzM2VmYWFiNmEyOTVlZGRmMzFhYjY0YWYxYmViMTMyZGUzMGRhMjYxOWZhYjY4NDMxZGNjMmE1ZTBjNGZfZD9hcGktdmVyc2lvbj0yMDIxLTA2LTAxLjE0LjAmJHNlbGVjdD1pZCUyQ3N0YXRl", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "8bc0dc12-62b1-4a51-a9c2-32c4a60fe754" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Fri, 27 Aug 2021 16:22:57 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "0c5b87b8-50f6-4b17-9769-f453bf1f17cf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Fri, 27 Aug 2021 16:22:56 GMT" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#nodes/@Element\",\r\n \"id\": \"tvmps_06e333efaab6a295eddf31ab64af1beb132de30da2619fab68431dcc2a5e0c4f_d\",\r\n \"state\": \"rebooting\",\r\n \"virtualMachineInfo\": {}\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/pools/testPool/nodes/tvmps_06e333efaab6a295eddf31ab64af1beb132de30da2619fab68431dcc2a5e0c4f_d?api-version=2021-06-01.14.0&$select=id%2Cstate", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bXBzXzA2ZTMzM2VmYWFiNmEyOTVlZGRmMzFhYjY0YWYxYmViMTMyZGUzMGRhMjYxOWZhYjY4NDMxZGNjMmE1ZTBjNGZfZD9hcGktdmVyc2lvbj0yMDIxLTA2LTAxLjE0LjAmJHNlbGVjdD1pZCUyQ3N0YXRl", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "9b8a5c68-bac5-425d-bba5-27c4f261cfd1" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Fri, 27 Aug 2021 16:23:02 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "b9501373-9365-4879-9118-353105797344" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Fri, 27 Aug 2021 16:23:01 GMT" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#nodes/@Element\",\r\n \"id\": \"tvmps_06e333efaab6a295eddf31ab64af1beb132de30da2619fab68431dcc2a5e0c4f_d\",\r\n \"state\": \"rebooting\",\r\n \"virtualMachineInfo\": {}\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/pools/testPool/nodes/tvmps_06e333efaab6a295eddf31ab64af1beb132de30da2619fab68431dcc2a5e0c4f_d?api-version=2021-06-01.14.0&$select=id%2Cstate", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bXBzXzA2ZTMzM2VmYWFiNmEyOTVlZGRmMzFhYjY0YWYxYmViMTMyZGUzMGRhMjYxOWZhYjY4NDMxZGNjMmE1ZTBjNGZfZD9hcGktdmVyc2lvbj0yMDIxLTA2LTAxLjE0LjAmJHNlbGVjdD1pZCUyQ3N0YXRl", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "41ea7612-cc4d-4c3b-9a89-28fd2db3a450" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Fri, 27 Aug 2021 16:23:07 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "06114388-6369-431a-ac0e-1534f0462019" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Fri, 27 Aug 2021 16:23:06 GMT" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#nodes/@Element\",\r\n \"id\": \"tvmps_06e333efaab6a295eddf31ab64af1beb132de30da2619fab68431dcc2a5e0c4f_d\",\r\n \"state\": \"rebooting\",\r\n \"virtualMachineInfo\": {}\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/pools/testPool/nodes/tvmps_06e333efaab6a295eddf31ab64af1beb132de30da2619fab68431dcc2a5e0c4f_d?api-version=2021-06-01.14.0&$select=id%2Cstate", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bXBzXzA2ZTMzM2VmYWFiNmEyOTVlZGRmMzFhYjY0YWYxYmViMTMyZGUzMGRhMjYxOWZhYjY4NDMxZGNjMmE1ZTBjNGZfZD9hcGktdmVyc2lvbj0yMDIxLTA2LTAxLjE0LjAmJHNlbGVjdD1pZCUyQ3N0YXRl", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "a91c0275-8d0f-4b88-b4eb-b5c0d857fd9a" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Fri, 27 Aug 2021 16:23:12 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "3948be66-d290-42ec-af82-5a656f40446c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Fri, 27 Aug 2021 16:23:11 GMT" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#nodes/@Element\",\r\n \"id\": \"tvmps_06e333efaab6a295eddf31ab64af1beb132de30da2619fab68431dcc2a5e0c4f_d\",\r\n \"state\": \"rebooting\",\r\n \"virtualMachineInfo\": {}\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/pools/testPool/nodes/tvmps_06e333efaab6a295eddf31ab64af1beb132de30da2619fab68431dcc2a5e0c4f_d?api-version=2021-06-01.14.0&$select=id%2Cstate", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bXBzXzA2ZTMzM2VmYWFiNmEyOTVlZGRmMzFhYjY0YWYxYmViMTMyZGUzMGRhMjYxOWZhYjY4NDMxZGNjMmE1ZTBjNGZfZD9hcGktdmVyc2lvbj0yMDIxLTA2LTAxLjE0LjAmJHNlbGVjdD1pZCUyQ3N0YXRl", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "8f6f03bf-cdf0-4899-a4dd-ffe203588e63" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Fri, 27 Aug 2021 16:23:18 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "b53ecef2-1160-4abb-b823-f2bd14ac97cc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Fri, 27 Aug 2021 16:23:16 GMT" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#nodes/@Element\",\r\n \"id\": \"tvmps_06e333efaab6a295eddf31ab64af1beb132de30da2619fab68431dcc2a5e0c4f_d\",\r\n \"state\": \"rebooting\",\r\n \"virtualMachineInfo\": {}\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/pools/testPool/nodes/tvmps_06e333efaab6a295eddf31ab64af1beb132de30da2619fab68431dcc2a5e0c4f_d?api-version=2021-06-01.14.0&$select=id%2Cstate", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bXBzXzA2ZTMzM2VmYWFiNmEyOTVlZGRmMzFhYjY0YWYxYmViMTMyZGUzMGRhMjYxOWZhYjY4NDMxZGNjMmE1ZTBjNGZfZD9hcGktdmVyc2lvbj0yMDIxLTA2LTAxLjE0LjAmJHNlbGVjdD1pZCUyQ3N0YXRl", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "d7a65705-df11-418c-a636-759e138166e9" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Fri, 27 Aug 2021 16:23:23 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "cbe50628-ba99-4f73-bfaf-dc584932c4db" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Fri, 27 Aug 2021 16:23:21 GMT" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#nodes/@Element\",\r\n \"id\": \"tvmps_06e333efaab6a295eddf31ab64af1beb132de30da2619fab68431dcc2a5e0c4f_d\",\r\n \"state\": \"rebooting\",\r\n \"virtualMachineInfo\": {}\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/pools/testPool/nodes/tvmps_06e333efaab6a295eddf31ab64af1beb132de30da2619fab68431dcc2a5e0c4f_d?api-version=2021-06-01.14.0&$select=id%2Cstate", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bXBzXzA2ZTMzM2VmYWFiNmEyOTVlZGRmMzFhYjY0YWYxYmViMTMyZGUzMGRhMjYxOWZhYjY4NDMxZGNjMmE1ZTBjNGZfZD9hcGktdmVyc2lvbj0yMDIxLTA2LTAxLjE0LjAmJHNlbGVjdD1pZCUyQ3N0YXRl", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "8becf1d9-f847-4e38-941a-e3fdb5021709" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Fri, 27 Aug 2021 16:23:28 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "e529bc2c-c4bb-41ed-83c6-c80bbb2ea20f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Fri, 27 Aug 2021 16:23:26 GMT" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#nodes/@Element\",\r\n \"id\": \"tvmps_06e333efaab6a295eddf31ab64af1beb132de30da2619fab68431dcc2a5e0c4f_d\",\r\n \"state\": \"rebooting\",\r\n \"virtualMachineInfo\": {}\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/pools/testPool/nodes/tvmps_06e333efaab6a295eddf31ab64af1beb132de30da2619fab68431dcc2a5e0c4f_d?api-version=2021-06-01.14.0&$select=id%2Cstate", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bXBzXzA2ZTMzM2VmYWFiNmEyOTVlZGRmMzFhYjY0YWYxYmViMTMyZGUzMGRhMjYxOWZhYjY4NDMxZGNjMmE1ZTBjNGZfZD9hcGktdmVyc2lvbj0yMDIxLTA2LTAxLjE0LjAmJHNlbGVjdD1pZCUyQ3N0YXRl", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "9a0cfabb-4a27-46a7-8ba0-10c623c10afc" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Fri, 27 Aug 2021 16:23:33 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "fa31b6b4-f230-4eab-933d-c863168028df" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Fri, 27 Aug 2021 16:23:31 GMT" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#nodes/@Element\",\r\n \"id\": \"tvmps_06e333efaab6a295eddf31ab64af1beb132de30da2619fab68431dcc2a5e0c4f_d\",\r\n \"state\": \"rebooting\",\r\n \"virtualMachineInfo\": {}\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/pools/testPool/nodes/tvmps_06e333efaab6a295eddf31ab64af1beb132de30da2619fab68431dcc2a5e0c4f_d?api-version=2021-06-01.14.0&$select=id%2Cstate", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bXBzXzA2ZTMzM2VmYWFiNmEyOTVlZGRmMzFhYjY0YWYxYmViMTMyZGUzMGRhMjYxOWZhYjY4NDMxZGNjMmE1ZTBjNGZfZD9hcGktdmVyc2lvbj0yMDIxLTA2LTAxLjE0LjAmJHNlbGVjdD1pZCUyQ3N0YXRl", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "b9d012dc-1428-4323-92b1-17e17f4cf80a" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Fri, 27 Aug 2021 16:23:38 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "36e1a49f-9e8b-49fe-94b3-4b0b291f5f81" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Fri, 27 Aug 2021 16:23:36 GMT" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#nodes/@Element\",\r\n \"id\": \"tvmps_06e333efaab6a295eddf31ab64af1beb132de30da2619fab68431dcc2a5e0c4f_d\",\r\n \"state\": \"rebooting\",\r\n \"virtualMachineInfo\": {}\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/pools/testPool/nodes/tvmps_06e333efaab6a295eddf31ab64af1beb132de30da2619fab68431dcc2a5e0c4f_d?api-version=2021-06-01.14.0&$select=id%2Cstate", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bXBzXzA2ZTMzM2VmYWFiNmEyOTVlZGRmMzFhYjY0YWYxYmViMTMyZGUzMGRhMjYxOWZhYjY4NDMxZGNjMmE1ZTBjNGZfZD9hcGktdmVyc2lvbj0yMDIxLTA2LTAxLjE0LjAmJHNlbGVjdD1pZCUyQ3N0YXRl", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "12cc0456-adc4-4a7e-b55c-cdce8b369b91" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Fri, 27 Aug 2021 16:23:43 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "7249dc1d-4f6d-489e-b8c3-e20ed9ec6f90" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Fri, 27 Aug 2021 16:23:41 GMT" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#nodes/@Element\",\r\n \"id\": \"tvmps_06e333efaab6a295eddf31ab64af1beb132de30da2619fab68431dcc2a5e0c4f_d\",\r\n \"state\": \"rebooting\",\r\n \"virtualMachineInfo\": {}\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/pools/testPool/nodes/tvmps_06e333efaab6a295eddf31ab64af1beb132de30da2619fab68431dcc2a5e0c4f_d?api-version=2021-06-01.14.0&$select=id%2Cstate", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bXBzXzA2ZTMzM2VmYWFiNmEyOTVlZGRmMzFhYjY0YWYxYmViMTMyZGUzMGRhMjYxOWZhYjY4NDMxZGNjMmE1ZTBjNGZfZD9hcGktdmVyc2lvbj0yMDIxLTA2LTAxLjE0LjAmJHNlbGVjdD1pZCUyQ3N0YXRl", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "39200ee3-bb9b-4e1d-a201-680ee3144d6e" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Fri, 27 Aug 2021 16:23:48 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "7612d570-6817-431f-afc9-41f5deb3bb95" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Fri, 27 Aug 2021 16:23:46 GMT" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#nodes/@Element\",\r\n \"id\": \"tvmps_06e333efaab6a295eddf31ab64af1beb132de30da2619fab68431dcc2a5e0c4f_d\",\r\n \"state\": \"rebooting\",\r\n \"virtualMachineInfo\": {}\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/pools/testPool/nodes/tvmps_06e333efaab6a295eddf31ab64af1beb132de30da2619fab68431dcc2a5e0c4f_d?api-version=2021-06-01.14.0&$select=id%2Cstate", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bXBzXzA2ZTMzM2VmYWFiNmEyOTVlZGRmMzFhYjY0YWYxYmViMTMyZGUzMGRhMjYxOWZhYjY4NDMxZGNjMmE1ZTBjNGZfZD9hcGktdmVyc2lvbj0yMDIxLTA2LTAxLjE0LjAmJHNlbGVjdD1pZCUyQ3N0YXRl", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "c2fe6e33-6a6b-4366-97da-136fae95390c" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Fri, 27 Aug 2021 16:23:53 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "a05497c1-95ff-4397-b850-005f3da781a7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Fri, 27 Aug 2021 16:23:51 GMT" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#nodes/@Element\",\r\n \"id\": \"tvmps_06e333efaab6a295eddf31ab64af1beb132de30da2619fab68431dcc2a5e0c4f_d\",\r\n \"state\": \"rebooting\",\r\n \"virtualMachineInfo\": {}\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/pools/testPool/nodes/tvmps_06e333efaab6a295eddf31ab64af1beb132de30da2619fab68431dcc2a5e0c4f_d?api-version=2021-06-01.14.0&$select=id%2Cstate", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bXBzXzA2ZTMzM2VmYWFiNmEyOTVlZGRmMzFhYjY0YWYxYmViMTMyZGUzMGRhMjYxOWZhYjY4NDMxZGNjMmE1ZTBjNGZfZD9hcGktdmVyc2lvbj0yMDIxLTA2LTAxLjE0LjAmJHNlbGVjdD1pZCUyQ3N0YXRl", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "348f63ad-4830-40c1-9bb2-4b6fb4fbe8e3" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Fri, 27 Aug 2021 16:23:58 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "5ba7df79-2229-42d9-9f32-79b3790e3123" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Fri, 27 Aug 2021 16:23:56 GMT" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#nodes/@Element\",\r\n \"id\": \"tvmps_06e333efaab6a295eddf31ab64af1beb132de30da2619fab68431dcc2a5e0c4f_d\",\r\n \"state\": \"rebooting\",\r\n \"virtualMachineInfo\": {}\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/pools/testPool/nodes/tvmps_06e333efaab6a295eddf31ab64af1beb132de30da2619fab68431dcc2a5e0c4f_d?api-version=2021-06-01.14.0&$select=id%2Cstate", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bXBzXzA2ZTMzM2VmYWFiNmEyOTVlZGRmMzFhYjY0YWYxYmViMTMyZGUzMGRhMjYxOWZhYjY4NDMxZGNjMmE1ZTBjNGZfZD9hcGktdmVyc2lvbj0yMDIxLTA2LTAxLjE0LjAmJHNlbGVjdD1pZCUyQ3N0YXRl", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "5a54aa04-a8f5-4354-a4f8-a9eeda437240" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Fri, 27 Aug 2021 16:24:03 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "f1fcd6a6-ef29-460e-a0ab-7254778c032f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Fri, 27 Aug 2021 16:24:01 GMT" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#nodes/@Element\",\r\n \"id\": \"tvmps_06e333efaab6a295eddf31ab64af1beb132de30da2619fab68431dcc2a5e0c4f_d\",\r\n \"state\": \"rebooting\",\r\n \"virtualMachineInfo\": {}\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/pools/testPool/nodes/tvmps_06e333efaab6a295eddf31ab64af1beb132de30da2619fab68431dcc2a5e0c4f_d?api-version=2021-06-01.14.0&$select=id%2Cstate", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bXBzXzA2ZTMzM2VmYWFiNmEyOTVlZGRmMzFhYjY0YWYxYmViMTMyZGUzMGRhMjYxOWZhYjY4NDMxZGNjMmE1ZTBjNGZfZD9hcGktdmVyc2lvbj0yMDIxLTA2LTAxLjE0LjAmJHNlbGVjdD1pZCUyQ3N0YXRl", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "44b97358-36f9-435c-bfd4-380cfdac4a9c" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Fri, 27 Aug 2021 16:24:08 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "79b8d3dc-129f-4245-82bf-be0ed5301ab4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Fri, 27 Aug 2021 16:24:06 GMT" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#nodes/@Element\",\r\n \"id\": \"tvmps_06e333efaab6a295eddf31ab64af1beb132de30da2619fab68431dcc2a5e0c4f_d\",\r\n \"state\": \"rebooting\",\r\n \"virtualMachineInfo\": {}\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/pools/testPool/nodes/tvmps_06e333efaab6a295eddf31ab64af1beb132de30da2619fab68431dcc2a5e0c4f_d?api-version=2021-06-01.14.0&$select=id%2Cstate", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bXBzXzA2ZTMzM2VmYWFiNmEyOTVlZGRmMzFhYjY0YWYxYmViMTMyZGUzMGRhMjYxOWZhYjY4NDMxZGNjMmE1ZTBjNGZfZD9hcGktdmVyc2lvbj0yMDIxLTA2LTAxLjE0LjAmJHNlbGVjdD1pZCUyQ3N0YXRl", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "9c57b1b9-8931-4dfd-9d8d-b4b8e027d51b" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Fri, 27 Aug 2021 16:24:13 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "586fda0a-38f6-4aa1-adf6-83b28a0de754" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Fri, 27 Aug 2021 16:24:11 GMT" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#nodes/@Element\",\r\n \"id\": \"tvmps_06e333efaab6a295eddf31ab64af1beb132de30da2619fab68431dcc2a5e0c4f_d\",\r\n \"state\": \"rebooting\",\r\n \"virtualMachineInfo\": {}\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/pools/testPool/nodes/tvmps_06e333efaab6a295eddf31ab64af1beb132de30da2619fab68431dcc2a5e0c4f_d?api-version=2021-06-01.14.0&$select=id%2Cstate", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bXBzXzA2ZTMzM2VmYWFiNmEyOTVlZGRmMzFhYjY0YWYxYmViMTMyZGUzMGRhMjYxOWZhYjY4NDMxZGNjMmE1ZTBjNGZfZD9hcGktdmVyc2lvbj0yMDIxLTA2LTAxLjE0LjAmJHNlbGVjdD1pZCUyQ3N0YXRl", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "d14c1009-7bfa-4daa-90f6-8beda274eb7c" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Fri, 27 Aug 2021 16:24:18 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "1502f33b-0d1e-434b-938e-e0fee972633c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Fri, 27 Aug 2021 16:24:16 GMT" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#nodes/@Element\",\r\n \"id\": \"tvmps_06e333efaab6a295eddf31ab64af1beb132de30da2619fab68431dcc2a5e0c4f_d\",\r\n \"state\": \"rebooting\",\r\n \"virtualMachineInfo\": {}\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/pools/testPool/nodes/tvmps_06e333efaab6a295eddf31ab64af1beb132de30da2619fab68431dcc2a5e0c4f_d?api-version=2021-06-01.14.0&$select=id%2Cstate", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bXBzXzA2ZTMzM2VmYWFiNmEyOTVlZGRmMzFhYjY0YWYxYmViMTMyZGUzMGRhMjYxOWZhYjY4NDMxZGNjMmE1ZTBjNGZfZD9hcGktdmVyc2lvbj0yMDIxLTA2LTAxLjE0LjAmJHNlbGVjdD1pZCUyQ3N0YXRl", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "9f376059-e492-47e7-8ea4-1cb561edac0a" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Fri, 27 Aug 2021 16:24:23 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "8ccdc373-4ca4-4d89-81ca-b95d47cffe7b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Fri, 27 Aug 2021 16:24:21 GMT" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#nodes/@Element\",\r\n \"id\": \"tvmps_06e333efaab6a295eddf31ab64af1beb132de30da2619fab68431dcc2a5e0c4f_d\",\r\n \"state\": \"rebooting\",\r\n \"virtualMachineInfo\": {}\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/pools/testPool/nodes/tvmps_06e333efaab6a295eddf31ab64af1beb132de30da2619fab68431dcc2a5e0c4f_d?api-version=2021-06-01.14.0&$select=id%2Cstate", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bXBzXzA2ZTMzM2VmYWFiNmEyOTVlZGRmMzFhYjY0YWYxYmViMTMyZGUzMGRhMjYxOWZhYjY4NDMxZGNjMmE1ZTBjNGZfZD9hcGktdmVyc2lvbj0yMDIxLTA2LTAxLjE0LjAmJHNlbGVjdD1pZCUyQ3N0YXRl", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "78da4bf1-98ce-4b68-9a55-a307c0e388d2" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Fri, 27 Aug 2021 16:24:29 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "d6833343-3803-48a1-b5c9-9e094733b25a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Fri, 27 Aug 2021 16:24:28 GMT" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#nodes/@Element\",\r\n \"id\": \"tvmps_06e333efaab6a295eddf31ab64af1beb132de30da2619fab68431dcc2a5e0c4f_d\",\r\n \"state\": \"rebooting\",\r\n \"virtualMachineInfo\": {}\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/pools/testPool/nodes/tvmps_06e333efaab6a295eddf31ab64af1beb132de30da2619fab68431dcc2a5e0c4f_d?api-version=2021-06-01.14.0&$select=id%2Cstate", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bXBzXzA2ZTMzM2VmYWFiNmEyOTVlZGRmMzFhYjY0YWYxYmViMTMyZGUzMGRhMjYxOWZhYjY4NDMxZGNjMmE1ZTBjNGZfZD9hcGktdmVyc2lvbj0yMDIxLTA2LTAxLjE0LjAmJHNlbGVjdD1pZCUyQ3N0YXRl", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "c913b54e-4409-4129-b10f-193898466b07" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Fri, 27 Aug 2021 16:24:34 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "ce536d4f-4b0f-49a0-a8e7-a67206996da4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Fri, 27 Aug 2021 16:24:33 GMT" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#nodes/@Element\",\r\n \"id\": \"tvmps_06e333efaab6a295eddf31ab64af1beb132de30da2619fab68431dcc2a5e0c4f_d\",\r\n \"state\": \"rebooting\",\r\n \"virtualMachineInfo\": {}\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/pools/testPool/nodes/tvmps_06e333efaab6a295eddf31ab64af1beb132de30da2619fab68431dcc2a5e0c4f_d?api-version=2021-06-01.14.0&$select=id%2Cstate", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bXBzXzA2ZTMzM2VmYWFiNmEyOTVlZGRmMzFhYjY0YWYxYmViMTMyZGUzMGRhMjYxOWZhYjY4NDMxZGNjMmE1ZTBjNGZfZD9hcGktdmVyc2lvbj0yMDIxLTA2LTAxLjE0LjAmJHNlbGVjdD1pZCUyQ3N0YXRl", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "31eef5a5-259b-4545-8fc0-d5852d1a535b" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Fri, 27 Aug 2021 16:24:39 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "a4a92c67-3c1d-4379-b5b0-0e293291d789" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Fri, 27 Aug 2021 16:24:38 GMT" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#nodes/@Element\",\r\n \"id\": \"tvmps_06e333efaab6a295eddf31ab64af1beb132de30da2619fab68431dcc2a5e0c4f_d\",\r\n \"state\": \"rebooting\",\r\n \"virtualMachineInfo\": {}\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/pools/testPool/nodes/tvmps_06e333efaab6a295eddf31ab64af1beb132de30da2619fab68431dcc2a5e0c4f_d?api-version=2021-06-01.14.0&$select=id%2Cstate", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bXBzXzA2ZTMzM2VmYWFiNmEyOTVlZGRmMzFhYjY0YWYxYmViMTMyZGUzMGRhMjYxOWZhYjY4NDMxZGNjMmE1ZTBjNGZfZD9hcGktdmVyc2lvbj0yMDIxLTA2LTAxLjE0LjAmJHNlbGVjdD1pZCUyQ3N0YXRl", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "2eacbd18-d681-41cf-850f-5675c71af16a" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Fri, 27 Aug 2021 16:24:44 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "15702138-e154-484e-9be0-6fb4acdb7b36" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Fri, 27 Aug 2021 16:24:43 GMT" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#nodes/@Element\",\r\n \"id\": \"tvmps_06e333efaab6a295eddf31ab64af1beb132de30da2619fab68431dcc2a5e0c4f_d\",\r\n \"state\": \"idle\",\r\n \"virtualMachineInfo\": {}\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/pools/testPool/nodes/tvmps_06e333efaab6a295eddf31ab64af1beb132de30da2619fab68431dcc2a5e0c4f_d?api-version=2021-06-01.14.0", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bXBzXzA2ZTMzM2VmYWFiNmEyOTVlZGRmMzFhYjY0YWYxYmViMTMyZGUzMGRhMjYxOWZhYjY4NDMxZGNjMmE1ZTBjNGZfZD9hcGktdmVyc2lvbj0yMDIxLTA2LTAxLjE0LjA=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "3607cd32-5334-4648-bdcf-fad90253e2f2" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Fri, 27 Aug 2021 16:24:45 GMT" + ], + "x-ms-client-request-id": [ + "fcd2b9a3-c40e-418c-a6c3-e4258e0b1054" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "125d1e8e-a2e5-4f25-9669-cbe4ca92b7e8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Fri, 27 Aug 2021 16:24:44 GMT" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#nodes/@Element\",\r\n \"id\": \"tvmps_06e333efaab6a295eddf31ab64af1beb132de30da2619fab68431dcc2a5e0c4f_d\",\r\n \"url\": \"https://mikeportal.eastus.batch.azure.com/pools/testPool/nodes/tvmps_06e333efaab6a295eddf31ab64af1beb132de30da2619fab68431dcc2a5e0c4f_d\",\r\n \"state\": \"idle\",\r\n \"schedulingState\": \"enabled\",\r\n \"stateTransitionTime\": \"2021-08-27T16:24:39.713319Z\",\r\n \"lastBootTime\": \"2021-08-27T16:24:39.539541Z\",\r\n \"allocationTime\": \"2021-08-27T01:30:23.4794868Z\",\r\n \"ipAddress\": \"10.218.0.4\",\r\n \"affinityId\": \"TVM:tvmps_06e333efaab6a295eddf31ab64af1beb132de30da2619fab68431dcc2a5e0c4f_d\",\r\n \"vmSize\": \"standard_d1_v2\",\r\n \"totalTasksRun\": 1,\r\n \"totalTasksSucceeded\": 1,\r\n \"runningTasksCount\": 0,\r\n \"runningTaskSlotsCount\": 0,\r\n \"recentTasks\": [],\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"userIdentity\": {\r\n \"autoUser\": {\r\n \"scope\": \"pool\",\r\n \"elevationLevel\": \"nonadmin\"\r\n }\r\n },\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": true\r\n },\r\n \"startTaskInfo\": {\r\n \"state\": \"completed\",\r\n \"startTime\": \"2021-08-27T16:24:39.664495Z\",\r\n \"endTime\": \"2021-08-27T16:24:39.713319Z\",\r\n \"exitCode\": 0,\r\n \"result\": \"success\",\r\n \"retryCount\": 0\r\n },\r\n \"certificateReferences\": [],\r\n \"isDedicated\": true,\r\n \"endpointConfiguration\": {\r\n \"inboundEndpoints\": [\r\n {\r\n \"name\": \"Microsoft.WindowsAzure.Plugins.RemoteForwarder.RdpInput\",\r\n \"protocol\": \"tcp\",\r\n \"frontendPort\": 3389,\r\n \"backendPort\": 20000\r\n }\r\n ]\r\n },\r\n \"nodeAgentInfo\": {\r\n \"lastUpdateTime\": \"2021-08-27T01:31:49.00627Z\",\r\n \"version\": \"1.9.14\"\r\n },\r\n \"virtualMachineInfo\": {}\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/pools/testPool/nodes/tvmps_06e333efaab6a295eddf31ab64af1beb132de30da2619fab68431dcc2a5e0c4f_d/disablescheduling?api-version=2021-06-01.14.0", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bXBzXzA2ZTMzM2VmYWFiNmEyOTVlZGRmMzFhYjY0YWYxYmViMTMyZGUzMGRhMjYxOWZhYjY4NDMxZGNjMmE1ZTBjNGZfZC9kaXNhYmxlc2NoZWR1bGluZz9hcGktdmVyc2lvbj0yMDIxLTA2LTAxLjE0LjA=", "RequestMethod": "POST", "RequestBody": "{\r\n \"nodeDisableSchedulingOption\": \"terminate\"\r\n}", "RequestHeaders": { "client-request-id": [ - "4a91a1c1-5e1e-47ec-8a77-f503409720f0" + "0eea8f1f-ae9b-403f-bcd0-8cbd75379971" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Wed, 10 Jun 2020 20:32:48 GMT" + "Fri, 27 Aug 2021 16:24:45 GMT" + ], + "x-ms-client-request-id": [ + "fcd2b9a3-c40e-418c-a6c3-e4258e0b1054" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/13.0.20.15503", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", "AzurePowershell/Az1.0.0" ], "Content-Type": [ @@ -193,7 +1447,7 @@ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "cd0ad0b1-2360-476d-bbdc-e160a7bc2ba4" + "a3d054fd-4498-48e9-97c5-58ba3fd3d678" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -205,35 +1459,38 @@ "3.0" ], "DataServiceId": [ - "https://prodtest6.francecentral.batch.azure.com/pools/testPool/nodes/tvmps_67c7cd533daccf422807a8e72192afe6b3bd035d859dc2b1b0844ccd2331aaba_d/disablescheduling" + "https://mikeportal.eastus.batch.azure.com/pools/testPool/nodes/tvmps_06e333efaab6a295eddf31ab64af1beb132de30da2619fab68431dcc2a5e0c4f_d/disablescheduling" ], "Date": [ - "Wed, 10 Jun 2020 20:32:48 GMT" + "Fri, 27 Aug 2021 16:24:44 GMT" ] }, "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/pools/testPool/nodes/tvmps_67c7cd533daccf422807a8e72192afe6b3bd035d859dc2b1b0844ccd2331aaba_d?api-version=2020-03-01.11.0&$select=id%2CschedulingState", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bXBzXzY3YzdjZDUzM2RhY2NmNDIyODA3YThlNzIxOTJhZmU2YjNiZDAzNWQ4NTlkYzJiMWIwODQ0Y2NkMjMzMWFhYmFfZD9hcGktdmVyc2lvbj0yMDIwLTAzLTAxLjExLjAmJHNlbGVjdD1pZCUyQ3NjaGVkdWxpbmdTdGF0ZQ==", + "RequestUri": "/pools/testPool/nodes/tvmps_06e333efaab6a295eddf31ab64af1beb132de30da2619fab68431dcc2a5e0c4f_d?api-version=2021-06-01.14.0&$select=id%2CschedulingState", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bXBzXzA2ZTMzM2VmYWFiNmEyOTVlZGRmMzFhYjY0YWYxYmViMTMyZGUzMGRhMjYxOWZhYjY4NDMxZGNjMmE1ZTBjNGZfZD9hcGktdmVyc2lvbj0yMDIxLTA2LTAxLjE0LjAmJHNlbGVjdD1pZCUyQ3NjaGVkdWxpbmdTdGF0ZQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "eee064cd-98af-471f-8c16-59f78ec4635a" + "185e5fc5-ec02-4c45-80e7-c13ca27391f7" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Wed, 10 Jun 2020 20:32:49 GMT" + "Fri, 27 Aug 2021 16:24:45 GMT" + ], + "x-ms-client-request-id": [ + "c3203cd0-fac5-4022-8bc5-61e13a855d44" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/13.0.20.15503", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", "AzurePowershell/Az1.0.0" ] }, @@ -245,7 +1502,7 @@ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "21aeefd2-05a0-45dc-a8b4-9d6bffff8fd8" + "e215ccff-7629-42e9-a5d6-1ea09603e99c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -257,35 +1514,38 @@ "3.0" ], "Date": [ - "Wed, 10 Jun 2020 20:32:48 GMT" + "Fri, 27 Aug 2021 16:24:44 GMT" ], "Content-Type": [ "application/json; odata=minimalmetadata" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://prodtest6.francecentral.batch.azure.com/$metadata#nodes/@Element\",\r\n \"id\": \"tvmps_67c7cd533daccf422807a8e72192afe6b3bd035d859dc2b1b0844ccd2331aaba_d\",\r\n \"schedulingState\": \"disabled\"\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#nodes/@Element\",\r\n \"id\": \"tvmps_06e333efaab6a295eddf31ab64af1beb132de30da2619fab68431dcc2a5e0c4f_d\",\r\n \"schedulingState\": \"disabled\",\r\n \"virtualMachineInfo\": {}\r\n}", "StatusCode": 200 }, { - "RequestUri": "/pools/testPool/nodes/tvmps_67c7cd533daccf422807a8e72192afe6b3bd035d859dc2b1b0844ccd2331aaba_d?api-version=2020-03-01.11.0&$select=id%2CschedulingState", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bXBzXzY3YzdjZDUzM2RhY2NmNDIyODA3YThlNzIxOTJhZmU2YjNiZDAzNWQ4NTlkYzJiMWIwODQ0Y2NkMjMzMWFhYmFfZD9hcGktdmVyc2lvbj0yMDIwLTAzLTAxLjExLjAmJHNlbGVjdD1pZCUyQ3NjaGVkdWxpbmdTdGF0ZQ==", + "RequestUri": "/pools/testPool/nodes/tvmps_06e333efaab6a295eddf31ab64af1beb132de30da2619fab68431dcc2a5e0c4f_d?api-version=2021-06-01.14.0&$select=id%2CschedulingState", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bXBzXzA2ZTMzM2VmYWFiNmEyOTVlZGRmMzFhYjY0YWYxYmViMTMyZGUzMGRhMjYxOWZhYjY4NDMxZGNjMmE1ZTBjNGZfZD9hcGktdmVyc2lvbj0yMDIxLTA2LTAxLjE0LjAmJHNlbGVjdD1pZCUyQ3NjaGVkdWxpbmdTdGF0ZQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "cf48553c-ff7b-4ff7-b4db-e3bf27f6c0d0" + "77417dba-c0d2-467f-b64f-c47e6d1149d3" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Wed, 10 Jun 2020 20:32:49 GMT" + "Fri, 27 Aug 2021 16:24:45 GMT" + ], + "x-ms-client-request-id": [ + "bac6cf7b-beee-43be-af5f-07446203e5ab" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/13.0.20.15503", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", "AzurePowershell/Az1.0.0" ] }, @@ -297,7 +1557,7 @@ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "6614d39c-7bcb-421d-a7ca-fef9b73f2e1b" + "a2a6563e-ad0b-4a4c-8d92-948b49423438" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -309,35 +1569,38 @@ "3.0" ], "Date": [ - "Wed, 10 Jun 2020 20:32:48 GMT" + "Fri, 27 Aug 2021 16:24:44 GMT" ], "Content-Type": [ "application/json; odata=minimalmetadata" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://prodtest6.francecentral.batch.azure.com/$metadata#nodes/@Element\",\r\n \"id\": \"tvmps_67c7cd533daccf422807a8e72192afe6b3bd035d859dc2b1b0844ccd2331aaba_d\",\r\n \"schedulingState\": \"enabled\"\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#nodes/@Element\",\r\n \"id\": \"tvmps_06e333efaab6a295eddf31ab64af1beb132de30da2619fab68431dcc2a5e0c4f_d\",\r\n \"schedulingState\": \"enabled\",\r\n \"virtualMachineInfo\": {}\r\n}", "StatusCode": 200 }, { - "RequestUri": "/pools/testPool/nodes/tvmps_67c7cd533daccf422807a8e72192afe6b3bd035d859dc2b1b0844ccd2331aaba_d/enablescheduling?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bXBzXzY3YzdjZDUzM2RhY2NmNDIyODA3YThlNzIxOTJhZmU2YjNiZDAzNWQ4NTlkYzJiMWIwODQ0Y2NkMjMzMWFhYmFfZC9lbmFibGVzY2hlZHVsaW5nP2FwaS12ZXJzaW9uPTIwMjAtMDMtMDEuMTEuMA==", + "RequestUri": "/pools/testPool/nodes/tvmps_06e333efaab6a295eddf31ab64af1beb132de30da2619fab68431dcc2a5e0c4f_d/enablescheduling?api-version=2021-06-01.14.0", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bXBzXzA2ZTMzM2VmYWFiNmEyOTVlZGRmMzFhYjY0YWYxYmViMTMyZGUzMGRhMjYxOWZhYjY4NDMxZGNjMmE1ZTBjNGZfZC9lbmFibGVzY2hlZHVsaW5nP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDEuMTQuMA==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "76b5f0a4-2511-4c8b-93fc-d223c427ab5c" + "bb4b6e6e-9547-4e99-af96-dc5708eb11ab" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Wed, 10 Jun 2020 20:32:49 GMT" + "Fri, 27 Aug 2021 16:24:45 GMT" + ], + "x-ms-client-request-id": [ + "041c3535-d982-41d4-9a1f-bfcac183d1bf" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/13.0.20.15503", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", "AzurePowershell/Az1.0.0" ], "Content-Length": [ @@ -352,7 +1615,7 @@ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "c01e8fba-3c53-4f78-956f-04ca13c2aea3" + "9d401deb-88d0-4e37-8298-aa19cb89fa2b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -364,10 +1627,10 @@ "3.0" ], "DataServiceId": [ - "https://prodtest6.francecentral.batch.azure.com/pools/testPool/nodes/tvmps_67c7cd533daccf422807a8e72192afe6b3bd035d859dc2b1b0844ccd2331aaba_d/enablescheduling" + "https://mikeportal.eastus.batch.azure.com/pools/testPool/nodes/tvmps_06e333efaab6a295eddf31ab64af1beb132de30da2619fab68431dcc2a5e0c4f_d/enablescheduling" ], "Date": [ - "Wed, 10 Jun 2020 20:32:48 GMT" + "Fri, 27 Aug 2021 16:24:44 GMT" ] }, "ResponseBody": "", @@ -376,9 +1639,9 @@ ], "Names": {}, "Variables": { - "SubscriptionId": "21abd678-18c5-4660-9fdd-8c5ba6b6fe1f", - "AZURE_BATCH_ACCOUNT": "prodtest6", - "AZURE_BATCH_ENDPOINT": "https://prodtest6.francecentral.batch.azure.com", - "AZURE_BATCH_RESOURCE_GROUP": "abc" + "SubscriptionId": "ba2358c2-42f2-4138-88df-7c68cf608bea", + "AZURE_BATCH_ACCOUNT": "mikeportal", + "AZURE_BATCH_ENDPOINT": "https://mikeportal.eastus.batch.azure.com", + "AZURE_BATCH_RESOURCE_GROUP": "batchportal" } } \ No newline at end of file diff --git a/src/Batch/Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.ComputeNodeTests/TestGetComputeNodeRemoteLoginSettings.json b/src/Batch/Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.ComputeNodeTests/TestGetComputeNodeRemoteLoginSettings.json index abab39e67bf0..049dd2ad9a85 100644 --- a/src/Batch/Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.ComputeNodeTests/TestGetComputeNodeRemoteLoginSettings.json +++ b/src/Batch/Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.ComputeNodeTests/TestGetComputeNodeRemoteLoginSettings.json @@ -1,25 +1,25 @@ { "Entries": [ { - "RequestUri": "/pools/testIaasPool/nodes?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RJYWFzUG9vbC9ub2Rlcz9hcGktdmVyc2lvbj0yMDIwLTAzLTAxLjExLjA=", + "RequestUri": "/pools/testIaasPool/nodes?api-version=2021-06-01.14.0", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RJYWFzUG9vbC9ub2Rlcz9hcGktdmVyc2lvbj0yMDIxLTA2LTAxLjE0LjA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "78436500-031d-4c12-8d60-08d86cf1caa7" + "af8c2192-248f-4e0b-acd4-d16b7de2f3c0" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:14:14 GMT" + "Fri, 27 Aug 2021 16:22:34 GMT" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/13.0.20.15503", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", "AzurePowershell/Az1.0.0" ] }, @@ -31,7 +31,7 @@ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "2bca7450-3476-4891-97c7-6941284c4fb9" + "4e1c6efa-6925-424d-afe3-4915329ab49d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -43,35 +43,38 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 22:14:35 GMT" + "Fri, 27 Aug 2021 16:22:33 GMT" ], "Content-Type": [ "application/json; odata=minimalmetadata" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://prodtest6.francecentral.batch.azure.com/$metadata#nodes\",\r\n \"value\": [\r\n {\r\n \"id\": \"tvmps_31497306144445317358e0cbf24e973b4f029f81492aeb3c0341627e7abde3ee_d\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/pools/testIaasPool/nodes/tvmps_31497306144445317358e0cbf24e973b4f029f81492aeb3c0341627e7abde3ee_d\",\r\n \"state\": \"idle\",\r\n \"schedulingState\": \"enabled\",\r\n \"stateTransitionTime\": \"2020-06-09T16:33:47.414158Z\",\r\n \"lastBootTime\": \"2020-06-09T16:33:47.284122Z\",\r\n \"allocationTime\": \"2020-06-09T16:33:02.8452129Z\",\r\n \"ipAddress\": \"10.0.0.4\",\r\n \"affinityId\": \"TVM:tvmps_31497306144445317358e0cbf24e973b4f029f81492aeb3c0341627e7abde3ee_d\",\r\n \"vmSize\": \"standard_d2_v3\",\r\n \"totalTasksRun\": 0,\r\n \"totalTasksSucceeded\": 0,\r\n \"runningTasksCount\": 0,\r\n \"certificateReferences\": [],\r\n \"isDedicated\": true,\r\n \"endpointConfiguration\": {\r\n \"inboundEndpoints\": [\r\n {\r\n \"name\": \"SSHRule.0\",\r\n \"protocol\": \"tcp\",\r\n \"publicIPAddress\": \"20.40.144.97\",\r\n \"publicFQDN\": \"dnsb99480c8-2851-423d-9b57-8134a27c4e3e-azurebatch-cloudservice.francecentral.cloudapp.azure.com\",\r\n \"frontendPort\": 50000,\r\n \"backendPort\": 22\r\n }\r\n ]\r\n },\r\n \"nodeAgentInfo\": {\r\n \"lastUpdateTime\": \"2020-06-09T16:33:47.284122Z\",\r\n \"version\": \"1.8.2\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#nodes\",\r\n \"value\": [\r\n {\r\n \"id\": \"tvmps_7ff99415edb43b75ddf8180c9d013b96df6eee1bd7f56e96c16814fac6d7878a_d\",\r\n \"url\": \"https://mikeportal.eastus.batch.azure.com/pools/testIaasPool/nodes/tvmps_7ff99415edb43b75ddf8180c9d013b96df6eee1bd7f56e96c16814fac6d7878a_d\",\r\n \"state\": \"idle\",\r\n \"schedulingState\": \"enabled\",\r\n \"stateTransitionTime\": \"2021-08-27T01:30:48.853814Z\",\r\n \"lastBootTime\": \"2021-08-27T01:30:48.771764Z\",\r\n \"allocationTime\": \"2021-08-27T01:28:47.3918216Z\",\r\n \"ipAddress\": \"10.0.0.4\",\r\n \"affinityId\": \"TVM:tvmps_7ff99415edb43b75ddf8180c9d013b96df6eee1bd7f56e96c16814fac6d7878a_d\",\r\n \"vmSize\": \"standard_d1_v2\",\r\n \"totalTasksRun\": 0,\r\n \"totalTasksSucceeded\": 0,\r\n \"runningTasksCount\": 0,\r\n \"runningTaskSlotsCount\": 0,\r\n \"certificateReferences\": [],\r\n \"isDedicated\": true,\r\n \"endpointConfiguration\": {\r\n \"inboundEndpoints\": [\r\n {\r\n \"name\": \"SSHRule.0\",\r\n \"protocol\": \"tcp\",\r\n \"publicIPAddress\": \"52.191.227.115\",\r\n \"publicFQDN\": \"dns4bbf7224-1a06-451b-9c13-d2a8b45e8191-azurebatch-cloudservice.eastus.cloudapp.azure.com\",\r\n \"frontendPort\": 50000,\r\n \"backendPort\": 22\r\n }\r\n ]\r\n },\r\n \"nodeAgentInfo\": {\r\n \"lastUpdateTime\": \"2021-08-27T01:30:48.771764Z\",\r\n \"version\": \"1.9.14\"\r\n },\r\n \"virtualMachineInfo\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"16.04.202106110\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/pools/testIaasPool/nodes/tvmps_31497306144445317358e0cbf24e973b4f029f81492aeb3c0341627e7abde3ee_d?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RJYWFzUG9vbC9ub2Rlcy90dm1wc18zMTQ5NzMwNjE0NDQ0NTMxNzM1OGUwY2JmMjRlOTczYjRmMDI5ZjgxNDkyYWViM2MwMzQxNjI3ZTdhYmRlM2VlX2Q/YXBpLXZlcnNpb249MjAyMC0wMy0wMS4xMS4w", + "RequestUri": "/pools/testIaasPool/nodes/tvmps_7ff99415edb43b75ddf8180c9d013b96df6eee1bd7f56e96c16814fac6d7878a_d?api-version=2021-06-01.14.0", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RJYWFzUG9vbC9ub2Rlcy90dm1wc183ZmY5OTQxNWVkYjQzYjc1ZGRmODE4MGM5ZDAxM2I5NmRmNmVlZTFiZDdmNTZlOTZjMTY4MTRmYWM2ZDc4NzhhX2Q/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4w", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "7b6f7570-e87c-446b-a61c-3df8fc9a7eb7" + "0677f141-8aa6-472e-bdc2-b14ac1414a5a" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:14:36 GMT" + "Fri, 27 Aug 2021 16:22:35 GMT" + ], + "x-ms-client-request-id": [ + "426e5f2e-02f3-4ccf-9801-99e7c07dfb5e" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/13.0.20.15503", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", "AzurePowershell/Az1.0.0" ] }, @@ -83,7 +86,7 @@ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "13a0c1a2-603c-45ae-81d0-00f395580501" + "66843882-7f9f-4e15-a60f-adbb9344cb30" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -95,35 +98,38 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 22:14:57 GMT" + "Fri, 27 Aug 2021 16:22:34 GMT" ], "Content-Type": [ "application/json; odata=minimalmetadata" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://prodtest6.francecentral.batch.azure.com/$metadata#nodes/@Element\",\r\n \"id\": \"tvmps_31497306144445317358e0cbf24e973b4f029f81492aeb3c0341627e7abde3ee_d\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/pools/testIaasPool/nodes/tvmps_31497306144445317358e0cbf24e973b4f029f81492aeb3c0341627e7abde3ee_d\",\r\n \"state\": \"idle\",\r\n \"schedulingState\": \"enabled\",\r\n \"stateTransitionTime\": \"2020-06-09T16:33:47.414158Z\",\r\n \"lastBootTime\": \"2020-06-09T16:33:47.284122Z\",\r\n \"allocationTime\": \"2020-06-09T16:33:02.8452129Z\",\r\n \"ipAddress\": \"10.0.0.4\",\r\n \"affinityId\": \"TVM:tvmps_31497306144445317358e0cbf24e973b4f029f81492aeb3c0341627e7abde3ee_d\",\r\n \"vmSize\": \"standard_d2_v3\",\r\n \"totalTasksRun\": 0,\r\n \"totalTasksSucceeded\": 0,\r\n \"runningTasksCount\": 0,\r\n \"certificateReferences\": [],\r\n \"isDedicated\": true,\r\n \"endpointConfiguration\": {\r\n \"inboundEndpoints\": [\r\n {\r\n \"name\": \"SSHRule.0\",\r\n \"protocol\": \"tcp\",\r\n \"publicIPAddress\": \"20.40.144.97\",\r\n \"publicFQDN\": \"dnsb99480c8-2851-423d-9b57-8134a27c4e3e-azurebatch-cloudservice.francecentral.cloudapp.azure.com\",\r\n \"frontendPort\": 50000,\r\n \"backendPort\": 22\r\n }\r\n ]\r\n },\r\n \"nodeAgentInfo\": {\r\n \"lastUpdateTime\": \"2020-06-09T16:33:47.284122Z\",\r\n \"version\": \"1.8.2\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#nodes/@Element\",\r\n \"id\": \"tvmps_7ff99415edb43b75ddf8180c9d013b96df6eee1bd7f56e96c16814fac6d7878a_d\",\r\n \"url\": \"https://mikeportal.eastus.batch.azure.com/pools/testIaasPool/nodes/tvmps_7ff99415edb43b75ddf8180c9d013b96df6eee1bd7f56e96c16814fac6d7878a_d\",\r\n \"state\": \"idle\",\r\n \"schedulingState\": \"enabled\",\r\n \"stateTransitionTime\": \"2021-08-27T01:30:48.853814Z\",\r\n \"lastBootTime\": \"2021-08-27T01:30:48.771764Z\",\r\n \"allocationTime\": \"2021-08-27T01:28:47.3918216Z\",\r\n \"ipAddress\": \"10.0.0.4\",\r\n \"affinityId\": \"TVM:tvmps_7ff99415edb43b75ddf8180c9d013b96df6eee1bd7f56e96c16814fac6d7878a_d\",\r\n \"vmSize\": \"standard_d1_v2\",\r\n \"totalTasksRun\": 0,\r\n \"totalTasksSucceeded\": 0,\r\n \"runningTasksCount\": 0,\r\n \"runningTaskSlotsCount\": 0,\r\n \"certificateReferences\": [],\r\n \"isDedicated\": true,\r\n \"endpointConfiguration\": {\r\n \"inboundEndpoints\": [\r\n {\r\n \"name\": \"SSHRule.0\",\r\n \"protocol\": \"tcp\",\r\n \"publicIPAddress\": \"52.191.227.115\",\r\n \"publicFQDN\": \"dns4bbf7224-1a06-451b-9c13-d2a8b45e8191-azurebatch-cloudservice.eastus.cloudapp.azure.com\",\r\n \"frontendPort\": 50000,\r\n \"backendPort\": 22\r\n }\r\n ]\r\n },\r\n \"nodeAgentInfo\": {\r\n \"lastUpdateTime\": \"2021-08-27T01:30:48.771764Z\",\r\n \"version\": \"1.9.14\"\r\n },\r\n \"virtualMachineInfo\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"16.04.202106110\"\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/pools/testIaasPool/nodes/tvmps_31497306144445317358e0cbf24e973b4f029f81492aeb3c0341627e7abde3ee_d/remoteloginsettings?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RJYWFzUG9vbC9ub2Rlcy90dm1wc18zMTQ5NzMwNjE0NDQ0NTMxNzM1OGUwY2JmMjRlOTczYjRmMDI5ZjgxNDkyYWViM2MwMzQxNjI3ZTdhYmRlM2VlX2QvcmVtb3RlbG9naW5zZXR0aW5ncz9hcGktdmVyc2lvbj0yMDIwLTAzLTAxLjExLjA=", + "RequestUri": "/pools/testIaasPool/nodes/tvmps_7ff99415edb43b75ddf8180c9d013b96df6eee1bd7f56e96c16814fac6d7878a_d/remoteloginsettings?api-version=2021-06-01.14.0", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RJYWFzUG9vbC9ub2Rlcy90dm1wc183ZmY5OTQxNWVkYjQzYjc1ZGRmODE4MGM5ZDAxM2I5NmRmNmVlZTFiZDdmNTZlOTZjMTY4MTRmYWM2ZDc4NzhhX2QvcmVtb3RlbG9naW5zZXR0aW5ncz9hcGktdmVyc2lvbj0yMDIxLTA2LTAxLjE0LjA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "94d86846-54cc-4714-b6b8-c037e9c6cf6a" + "a87dce82-1fe5-4456-804b-4a449f5d1860" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:14:58 GMT" + "Fri, 27 Aug 2021 16:22:36 GMT" + ], + "x-ms-client-request-id": [ + "426e5f2e-02f3-4ccf-9801-99e7c07dfb5e" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/13.0.20.15503", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", "AzurePowershell/Az1.0.0" ] }, @@ -135,7 +141,7 @@ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "9def4b81-7277-4fa5-952f-1a04bb180107" + "93adf2f0-1e55-487e-a8bc-a7970dda0124" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -147,24 +153,24 @@ "3.0" ], "DataServiceId": [ - "https://prodtest6.francecentral.batch.azure.com/pools/testIaasPool/nodes/tvmps_31497306144445317358e0cbf24e973b4f029f81492aeb3c0341627e7abde3ee_d/remoteloginsettings" + "https://mikeportal.eastus.batch.azure.com/pools/testIaasPool/nodes/tvmps_7ff99415edb43b75ddf8180c9d013b96df6eee1bd7f56e96c16814fac6d7878a_d/remoteloginsettings" ], "Date": [ - "Tue, 09 Jun 2020 22:14:57 GMT" + "Fri, 27 Aug 2021 16:22:34 GMT" ], "Content-Type": [ "application/json; odata=minimalmetadata" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://prodtest6.francecentral.batch.azure.com/$metadata#Microsoft.Azure.Batch.Protocol.Entities.RemoteLoginSettings\",\r\n \"remoteLoginIPAddress\": \"20.40.144.97\",\r\n \"remoteLoginPort\": 50000\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#Microsoft.Azure.Batch.Protocol.Entities.RemoteLoginSettings\",\r\n \"remoteLoginIPAddress\": \"52.191.227.115\",\r\n \"remoteLoginPort\": 50000\r\n}", "StatusCode": 200 } ], "Names": {}, "Variables": { - "SubscriptionId": "21abd678-18c5-4660-9fdd-8c5ba6b6fe1f", - "AZURE_BATCH_ACCOUNT": "prodtest6", - "AZURE_BATCH_ENDPOINT": "https://prodtest6.francecentral.batch.azure.com", - "AZURE_BATCH_RESOURCE_GROUP": "abc" + "SubscriptionId": "ba2358c2-42f2-4138-88df-7c68cf608bea", + "AZURE_BATCH_ACCOUNT": "mikeportal", + "AZURE_BATCH_ENDPOINT": "https://mikeportal.eastus.batch.azure.com", + "AZURE_BATCH_RESOURCE_GROUP": "batchportal" } } \ No newline at end of file diff --git a/src/Batch/Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.ComputeNodeTests/TestRebootAndReimageComputeNode.json b/src/Batch/Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.ComputeNodeTests/TestRebootAndReimageComputeNode.json index b3c8cb530427..162067a58be8 100644 --- a/src/Batch/Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.ComputeNodeTests/TestRebootAndReimageComputeNode.json +++ b/src/Batch/Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.ComputeNodeTests/TestRebootAndReimageComputeNode.json @@ -1,25 +1,25 @@ { "Entries": [ { - "RequestUri": "/pools/testPool/nodes?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzP2FwaS12ZXJzaW9uPTIwMjAtMDMtMDEuMTEuMA==", + "RequestUri": "/pools/testPool/nodes?api-version=2021-06-01.14.0", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDEuMTQuMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "8e85a8b1-9004-4ab6-a960-3f3ac0f3f96b" + "b3419aeb-0510-46ed-97ab-4fab11e3f7ff" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:14:59 GMT" + "Fri, 27 Aug 2021 16:22:38 GMT" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/13.0.20.15503", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", "AzurePowershell/Az1.0.0" ] }, @@ -31,7 +31,7 @@ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "cb4737b7-7ec6-4e1a-8387-f4a511b4b415" + "b7e937aa-bcbb-41ed-9c5b-31cad335f8f9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -43,35 +43,35 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 22:15:21 GMT" + "Fri, 27 Aug 2021 16:22:36 GMT" ], "Content-Type": [ "application/json; odata=minimalmetadata" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://prodtest6.francecentral.batch.azure.com/$metadata#nodes\",\r\n \"value\": [\r\n {\r\n \"id\": \"tvmps_5588b2c9db0df4d8fcf672ea8dd42c28027e22241536de49d696c8540a826215_d\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/pools/testPool/nodes/tvmps_5588b2c9db0df4d8fcf672ea8dd42c28027e22241536de49d696c8540a826215_d\",\r\n \"state\": \"idle\",\r\n \"schedulingState\": \"enabled\",\r\n \"stateTransitionTime\": \"2020-06-09T17:11:36.058121Z\",\r\n \"lastBootTime\": \"2020-06-09T17:11:33.25425Z\",\r\n \"allocationTime\": \"2020-06-09T17:08:18.9130671Z\",\r\n \"ipAddress\": \"10.218.0.4\",\r\n \"affinityId\": \"TVM:tvmps_5588b2c9db0df4d8fcf672ea8dd42c28027e22241536de49d696c8540a826215_d\",\r\n \"vmSize\": \"standard_d2_v3\",\r\n \"totalTasksRun\": 0,\r\n \"totalTasksSucceeded\": 0,\r\n \"runningTasksCount\": 0,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c \\\"echo hello\\\"\",\r\n \"userIdentity\": {\r\n \"autoUser\": {\r\n \"scope\": \"pool\",\r\n \"elevationLevel\": \"nonadmin\"\r\n }\r\n },\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": true\r\n },\r\n \"startTaskInfo\": {\r\n \"state\": \"completed\",\r\n \"startTime\": \"2020-06-09T17:11:35.948758Z\",\r\n \"endTime\": \"2020-06-09T17:11:36.042491Z\",\r\n \"exitCode\": 0,\r\n \"result\": \"success\",\r\n \"retryCount\": 0\r\n },\r\n \"certificateReferences\": [],\r\n \"isDedicated\": true,\r\n \"endpointConfiguration\": {\r\n \"inboundEndpoints\": [\r\n {\r\n \"name\": \"Microsoft.WindowsAzure.Plugins.RemoteForwarder.RdpInput\",\r\n \"protocol\": \"tcp\",\r\n \"publicIPAddress\": \"20.43.39.67\",\r\n \"frontendPort\": 3389,\r\n \"backendPort\": 20000\r\n }\r\n ]\r\n },\r\n \"nodeAgentInfo\": {\r\n \"lastUpdateTime\": \"2020-06-09T17:11:33.25425Z\",\r\n \"version\": \"1.8.2\"\r\n }\r\n },\r\n {\r\n \"id\": \"tvmps_67c7cd533daccf422807a8e72192afe6b3bd035d859dc2b1b0844ccd2331aaba_d\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/pools/testPool/nodes/tvmps_67c7cd533daccf422807a8e72192afe6b3bd035d859dc2b1b0844ccd2331aaba_d\",\r\n \"state\": \"idle\",\r\n \"schedulingState\": \"enabled\",\r\n \"stateTransitionTime\": \"2020-06-09T16:57:43.09548Z\",\r\n \"lastBootTime\": \"2020-06-09T16:57:40.492514Z\",\r\n \"allocationTime\": \"2020-06-09T16:25:12.7257784Z\",\r\n \"ipAddress\": \"10.218.0.5\",\r\n \"affinityId\": \"TVM:tvmps_67c7cd533daccf422807a8e72192afe6b3bd035d859dc2b1b0844ccd2331aaba_d\",\r\n \"vmSize\": \"standard_d2_v3\",\r\n \"totalTasksRun\": 2,\r\n \"totalTasksSucceeded\": 1,\r\n \"runningTasksCount\": 0,\r\n \"recentTasks\": [],\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c \\\"echo hello\\\"\",\r\n \"userIdentity\": {\r\n \"autoUser\": {\r\n \"scope\": \"pool\",\r\n \"elevationLevel\": \"nonadmin\"\r\n }\r\n },\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": true\r\n },\r\n \"startTaskInfo\": {\r\n \"state\": \"completed\",\r\n \"startTime\": \"2020-06-09T16:57:42.986109Z\",\r\n \"endTime\": \"2020-06-09T16:57:43.09548Z\",\r\n \"exitCode\": 0,\r\n \"result\": \"success\",\r\n \"retryCount\": 0\r\n },\r\n \"certificateReferences\": [],\r\n \"isDedicated\": true,\r\n \"endpointConfiguration\": {\r\n \"inboundEndpoints\": [\r\n {\r\n \"name\": \"Microsoft.WindowsAzure.Plugins.RemoteForwarder.RdpInput\",\r\n \"protocol\": \"tcp\",\r\n \"publicIPAddress\": \"20.43.39.67\",\r\n \"frontendPort\": 3389,\r\n \"backendPort\": 20000\r\n }\r\n ]\r\n },\r\n \"nodeAgentInfo\": {\r\n \"lastUpdateTime\": \"2020-06-09T16:28:51.733507Z\",\r\n \"version\": \"1.8.2\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#nodes\",\r\n \"value\": [\r\n {\r\n \"id\": \"tvmps_06e333efaab6a295eddf31ab64af1beb132de30da2619fab68431dcc2a5e0c4f_d\",\r\n \"url\": \"https://mikeportal.eastus.batch.azure.com/pools/testPool/nodes/tvmps_06e333efaab6a295eddf31ab64af1beb132de30da2619fab68431dcc2a5e0c4f_d\",\r\n \"state\": \"idle\",\r\n \"schedulingState\": \"enabled\",\r\n \"stateTransitionTime\": \"2021-08-27T16:08:33.089447Z\",\r\n \"lastBootTime\": \"2021-08-27T01:31:49.00627Z\",\r\n \"allocationTime\": \"2021-08-27T01:30:23.4794868Z\",\r\n \"ipAddress\": \"10.218.0.4\",\r\n \"affinityId\": \"TVM:tvmps_06e333efaab6a295eddf31ab64af1beb132de30da2619fab68431dcc2a5e0c4f_d\",\r\n \"vmSize\": \"standard_d1_v2\",\r\n \"totalTasksRun\": 1,\r\n \"totalTasksSucceeded\": 1,\r\n \"runningTasksCount\": 0,\r\n \"runningTaskSlotsCount\": 0,\r\n \"recentTasks\": [\r\n {\r\n \"taskUrl\": \"https://mikeportal.eastus.batch.azure.com/jobs/createTaskCollectionJob/tasks/simple1\",\r\n \"jobId\": \"createTaskCollectionJob\",\r\n \"taskId\": \"simple1\",\r\n \"taskState\": \"completed\",\r\n \"executionInfo\": {\r\n \"startTime\": \"2021-08-27T16:08:33.02231Z\",\r\n \"endTime\": \"2021-08-27T16:08:33.069198Z\",\r\n \"exitCode\": 0,\r\n \"result\": \"success\",\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n }\r\n }\r\n ],\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"userIdentity\": {\r\n \"autoUser\": {\r\n \"scope\": \"pool\",\r\n \"elevationLevel\": \"nonadmin\"\r\n }\r\n },\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": true\r\n },\r\n \"startTaskInfo\": {\r\n \"state\": \"completed\",\r\n \"startTime\": \"2021-08-27T01:31:49.459393Z\",\r\n \"endTime\": \"2021-08-27T01:31:49.521897Z\",\r\n \"exitCode\": 0,\r\n \"result\": \"success\",\r\n \"retryCount\": 0\r\n },\r\n \"certificateReferences\": [],\r\n \"isDedicated\": true,\r\n \"endpointConfiguration\": {\r\n \"inboundEndpoints\": [\r\n {\r\n \"name\": \"Microsoft.WindowsAzure.Plugins.RemoteForwarder.RdpInput\",\r\n \"protocol\": \"tcp\",\r\n \"frontendPort\": 3389,\r\n \"backendPort\": 20000\r\n }\r\n ]\r\n },\r\n \"nodeAgentInfo\": {\r\n \"lastUpdateTime\": \"2021-08-27T01:31:49.00627Z\",\r\n \"version\": \"1.9.14\"\r\n },\r\n \"virtualMachineInfo\": {}\r\n },\r\n {\r\n \"id\": \"tvmps_4109062b0e8548c8f8e8341010d95a7f915aa2dbcbf46cd71183db0d156bec9b_d\",\r\n \"url\": \"https://mikeportal.eastus.batch.azure.com/pools/testPool/nodes/tvmps_4109062b0e8548c8f8e8341010d95a7f915aa2dbcbf46cd71183db0d156bec9b_d\",\r\n \"state\": \"idle\",\r\n \"schedulingState\": \"enabled\",\r\n \"stateTransitionTime\": \"2021-08-27T01:31:49.476266Z\",\r\n \"lastBootTime\": \"2021-08-27T01:31:49.004852Z\",\r\n \"allocationTime\": \"2021-08-27T01:30:23.4794868Z\",\r\n \"ipAddress\": \"10.218.0.6\",\r\n \"affinityId\": \"TVM:tvmps_4109062b0e8548c8f8e8341010d95a7f915aa2dbcbf46cd71183db0d156bec9b_d\",\r\n \"vmSize\": \"standard_d1_v2\",\r\n \"totalTasksRun\": 0,\r\n \"totalTasksSucceeded\": 0,\r\n \"runningTasksCount\": 0,\r\n \"runningTaskSlotsCount\": 0,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"userIdentity\": {\r\n \"autoUser\": {\r\n \"scope\": \"pool\",\r\n \"elevationLevel\": \"nonadmin\"\r\n }\r\n },\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": true\r\n },\r\n \"startTaskInfo\": {\r\n \"state\": \"completed\",\r\n \"startTime\": \"2021-08-27T01:31:49.413766Z\",\r\n \"endTime\": \"2021-08-27T01:31:49.476266Z\",\r\n \"exitCode\": 0,\r\n \"result\": \"success\",\r\n \"retryCount\": 0\r\n },\r\n \"certificateReferences\": [],\r\n \"isDedicated\": true,\r\n \"endpointConfiguration\": {\r\n \"inboundEndpoints\": [\r\n {\r\n \"name\": \"Microsoft.WindowsAzure.Plugins.RemoteForwarder.RdpInput\",\r\n \"protocol\": \"tcp\",\r\n \"frontendPort\": 3389,\r\n \"backendPort\": 20000\r\n }\r\n ]\r\n },\r\n \"nodeAgentInfo\": {\r\n \"lastUpdateTime\": \"2021-08-27T01:31:49.004852Z\",\r\n \"version\": \"1.9.14\"\r\n },\r\n \"virtualMachineInfo\": {}\r\n },\r\n {\r\n \"id\": \"tvmps_c05b99b79b9007429d25b6be89631ca2778f46762979e27e83ebe323eb0de497_d\",\r\n \"url\": \"https://mikeportal.eastus.batch.azure.com/pools/testPool/nodes/tvmps_c05b99b79b9007429d25b6be89631ca2778f46762979e27e83ebe323eb0de497_d\",\r\n \"state\": \"idle\",\r\n \"schedulingState\": \"enabled\",\r\n \"stateTransitionTime\": \"2021-08-27T16:15:28.865336Z\",\r\n \"lastBootTime\": \"2021-08-27T01:31:49.018049Z\",\r\n \"allocationTime\": \"2021-08-27T01:30:23.4794868Z\",\r\n \"ipAddress\": \"10.218.0.5\",\r\n \"affinityId\": \"TVM:tvmps_c05b99b79b9007429d25b6be89631ca2778f46762979e27e83ebe323eb0de497_d\",\r\n \"vmSize\": \"standard_d1_v2\",\r\n \"totalTasksRun\": 2,\r\n \"totalTasksSucceeded\": 1,\r\n \"runningTasksCount\": 0,\r\n \"runningTaskSlotsCount\": 0,\r\n \"recentTasks\": [\r\n {\r\n \"taskUrl\": \"https://mikeportal.eastus.batch.azure.com/jobs/testTerminateTaskJob/tasks/testTask2\",\r\n \"jobId\": \"testTerminateTaskJob\",\r\n \"taskId\": \"testTask2\",\r\n \"taskState\": \"completed\",\r\n \"executionInfo\": {\r\n \"startTime\": \"2021-08-27T16:15:28.740332Z\",\r\n \"endTime\": \"2021-08-27T16:15:28.818458Z\",\r\n \"exitCode\": -1073741510,\r\n \"failureInfo\": {\r\n \"category\": \"UserError\",\r\n \"code\": \"TaskEnded\",\r\n \"message\": \"Task Was Ended by User Request\",\r\n \"details\": [\r\n {\r\n \"name\": \"AdditionalErrorCode\",\r\n \"value\": \"FailureExitCode\"\r\n }\r\n ]\r\n },\r\n \"result\": \"failure\",\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n }\r\n }\r\n ],\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"userIdentity\": {\r\n \"autoUser\": {\r\n \"scope\": \"pool\",\r\n \"elevationLevel\": \"nonadmin\"\r\n }\r\n },\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": true\r\n },\r\n \"startTaskInfo\": {\r\n \"state\": \"completed\",\r\n \"startTime\": \"2021-08-27T01:31:49.519546Z\",\r\n \"endTime\": \"2021-08-27T01:31:49.582959Z\",\r\n \"exitCode\": 0,\r\n \"result\": \"success\",\r\n \"retryCount\": 0\r\n },\r\n \"certificateReferences\": [],\r\n \"isDedicated\": true,\r\n \"endpointConfiguration\": {\r\n \"inboundEndpoints\": [\r\n {\r\n \"name\": \"Microsoft.WindowsAzure.Plugins.RemoteForwarder.RdpInput\",\r\n \"protocol\": \"tcp\",\r\n \"frontendPort\": 3389,\r\n \"backendPort\": 20000\r\n }\r\n ]\r\n },\r\n \"nodeAgentInfo\": {\r\n \"lastUpdateTime\": \"2021-08-27T01:31:49.018049Z\",\r\n \"version\": \"1.9.14\"\r\n },\r\n \"virtualMachineInfo\": {}\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/pools/testPool/nodes?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzP2FwaS12ZXJzaW9uPTIwMjAtMDMtMDEuMTEuMA==", + "RequestUri": "/pools/testPool/nodes?api-version=2021-06-01.14.0", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDEuMTQuMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "8f1df77c-9ee9-4ac4-bcad-3455e37c7f2b" + "2eb6c798-1542-4b08-ae8f-9ea95e8a0b58" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:15:21 GMT" + "Fri, 27 Aug 2021 16:22:38 GMT" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/13.0.20.15503", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", "AzurePowershell/Az1.0.0" ] }, @@ -83,7 +83,7 @@ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "64ad56fa-ba23-4414-9e41-1e5c73b9cc2e" + "77b5f51a-c1ae-4090-afde-3fb46d2e2ffd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -95,35 +95,35 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 22:15:21 GMT" + "Fri, 27 Aug 2021 16:22:36 GMT" ], "Content-Type": [ "application/json; odata=minimalmetadata" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://prodtest6.francecentral.batch.azure.com/$metadata#nodes\",\r\n \"value\": [\r\n {\r\n \"id\": \"tvmps_5588b2c9db0df4d8fcf672ea8dd42c28027e22241536de49d696c8540a826215_d\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/pools/testPool/nodes/tvmps_5588b2c9db0df4d8fcf672ea8dd42c28027e22241536de49d696c8540a826215_d\",\r\n \"state\": \"idle\",\r\n \"schedulingState\": \"enabled\",\r\n \"stateTransitionTime\": \"2020-06-09T17:11:36.058121Z\",\r\n \"lastBootTime\": \"2020-06-09T17:11:33.25425Z\",\r\n \"allocationTime\": \"2020-06-09T17:08:18.9130671Z\",\r\n \"ipAddress\": \"10.218.0.4\",\r\n \"affinityId\": \"TVM:tvmps_5588b2c9db0df4d8fcf672ea8dd42c28027e22241536de49d696c8540a826215_d\",\r\n \"vmSize\": \"standard_d2_v3\",\r\n \"totalTasksRun\": 0,\r\n \"totalTasksSucceeded\": 0,\r\n \"runningTasksCount\": 0,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c \\\"echo hello\\\"\",\r\n \"userIdentity\": {\r\n \"autoUser\": {\r\n \"scope\": \"pool\",\r\n \"elevationLevel\": \"nonadmin\"\r\n }\r\n },\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": true\r\n },\r\n \"startTaskInfo\": {\r\n \"state\": \"completed\",\r\n \"startTime\": \"2020-06-09T17:11:35.948758Z\",\r\n \"endTime\": \"2020-06-09T17:11:36.042491Z\",\r\n \"exitCode\": 0,\r\n \"result\": \"success\",\r\n \"retryCount\": 0\r\n },\r\n \"certificateReferences\": [],\r\n \"isDedicated\": true,\r\n \"endpointConfiguration\": {\r\n \"inboundEndpoints\": [\r\n {\r\n \"name\": \"Microsoft.WindowsAzure.Plugins.RemoteForwarder.RdpInput\",\r\n \"protocol\": \"tcp\",\r\n \"publicIPAddress\": \"20.43.39.67\",\r\n \"frontendPort\": 3389,\r\n \"backendPort\": 20000\r\n }\r\n ]\r\n },\r\n \"nodeAgentInfo\": {\r\n \"lastUpdateTime\": \"2020-06-09T17:11:33.25425Z\",\r\n \"version\": \"1.8.2\"\r\n }\r\n },\r\n {\r\n \"id\": \"tvmps_67c7cd533daccf422807a8e72192afe6b3bd035d859dc2b1b0844ccd2331aaba_d\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/pools/testPool/nodes/tvmps_67c7cd533daccf422807a8e72192afe6b3bd035d859dc2b1b0844ccd2331aaba_d\",\r\n \"state\": \"idle\",\r\n \"schedulingState\": \"enabled\",\r\n \"stateTransitionTime\": \"2020-06-09T16:57:43.09548Z\",\r\n \"lastBootTime\": \"2020-06-09T16:57:40.492514Z\",\r\n \"allocationTime\": \"2020-06-09T16:25:12.7257784Z\",\r\n \"ipAddress\": \"10.218.0.5\",\r\n \"affinityId\": \"TVM:tvmps_67c7cd533daccf422807a8e72192afe6b3bd035d859dc2b1b0844ccd2331aaba_d\",\r\n \"vmSize\": \"standard_d2_v3\",\r\n \"totalTasksRun\": 2,\r\n \"totalTasksSucceeded\": 1,\r\n \"runningTasksCount\": 0,\r\n \"recentTasks\": [],\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c \\\"echo hello\\\"\",\r\n \"userIdentity\": {\r\n \"autoUser\": {\r\n \"scope\": \"pool\",\r\n \"elevationLevel\": \"nonadmin\"\r\n }\r\n },\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": true\r\n },\r\n \"startTaskInfo\": {\r\n \"state\": \"completed\",\r\n \"startTime\": \"2020-06-09T16:57:42.986109Z\",\r\n \"endTime\": \"2020-06-09T16:57:43.09548Z\",\r\n \"exitCode\": 0,\r\n \"result\": \"success\",\r\n \"retryCount\": 0\r\n },\r\n \"certificateReferences\": [],\r\n \"isDedicated\": true,\r\n \"endpointConfiguration\": {\r\n \"inboundEndpoints\": [\r\n {\r\n \"name\": \"Microsoft.WindowsAzure.Plugins.RemoteForwarder.RdpInput\",\r\n \"protocol\": \"tcp\",\r\n \"publicIPAddress\": \"20.43.39.67\",\r\n \"frontendPort\": 3389,\r\n \"backendPort\": 20000\r\n }\r\n ]\r\n },\r\n \"nodeAgentInfo\": {\r\n \"lastUpdateTime\": \"2020-06-09T16:28:51.733507Z\",\r\n \"version\": \"1.8.2\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#nodes\",\r\n \"value\": [\r\n {\r\n \"id\": \"tvmps_06e333efaab6a295eddf31ab64af1beb132de30da2619fab68431dcc2a5e0c4f_d\",\r\n \"url\": \"https://mikeportal.eastus.batch.azure.com/pools/testPool/nodes/tvmps_06e333efaab6a295eddf31ab64af1beb132de30da2619fab68431dcc2a5e0c4f_d\",\r\n \"state\": \"idle\",\r\n \"schedulingState\": \"enabled\",\r\n \"stateTransitionTime\": \"2021-08-27T16:08:33.089447Z\",\r\n \"lastBootTime\": \"2021-08-27T01:31:49.00627Z\",\r\n \"allocationTime\": \"2021-08-27T01:30:23.4794868Z\",\r\n \"ipAddress\": \"10.218.0.4\",\r\n \"affinityId\": \"TVM:tvmps_06e333efaab6a295eddf31ab64af1beb132de30da2619fab68431dcc2a5e0c4f_d\",\r\n \"vmSize\": \"standard_d1_v2\",\r\n \"totalTasksRun\": 1,\r\n \"totalTasksSucceeded\": 1,\r\n \"runningTasksCount\": 0,\r\n \"runningTaskSlotsCount\": 0,\r\n \"recentTasks\": [\r\n {\r\n \"taskUrl\": \"https://mikeportal.eastus.batch.azure.com/jobs/createTaskCollectionJob/tasks/simple1\",\r\n \"jobId\": \"createTaskCollectionJob\",\r\n \"taskId\": \"simple1\",\r\n \"taskState\": \"completed\",\r\n \"executionInfo\": {\r\n \"startTime\": \"2021-08-27T16:08:33.02231Z\",\r\n \"endTime\": \"2021-08-27T16:08:33.069198Z\",\r\n \"exitCode\": 0,\r\n \"result\": \"success\",\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n }\r\n }\r\n ],\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"userIdentity\": {\r\n \"autoUser\": {\r\n \"scope\": \"pool\",\r\n \"elevationLevel\": \"nonadmin\"\r\n }\r\n },\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": true\r\n },\r\n \"startTaskInfo\": {\r\n \"state\": \"completed\",\r\n \"startTime\": \"2021-08-27T01:31:49.459393Z\",\r\n \"endTime\": \"2021-08-27T01:31:49.521897Z\",\r\n \"exitCode\": 0,\r\n \"result\": \"success\",\r\n \"retryCount\": 0\r\n },\r\n \"certificateReferences\": [],\r\n \"isDedicated\": true,\r\n \"endpointConfiguration\": {\r\n \"inboundEndpoints\": [\r\n {\r\n \"name\": \"Microsoft.WindowsAzure.Plugins.RemoteForwarder.RdpInput\",\r\n \"protocol\": \"tcp\",\r\n \"frontendPort\": 3389,\r\n \"backendPort\": 20000\r\n }\r\n ]\r\n },\r\n \"nodeAgentInfo\": {\r\n \"lastUpdateTime\": \"2021-08-27T01:31:49.00627Z\",\r\n \"version\": \"1.9.14\"\r\n },\r\n \"virtualMachineInfo\": {}\r\n },\r\n {\r\n \"id\": \"tvmps_4109062b0e8548c8f8e8341010d95a7f915aa2dbcbf46cd71183db0d156bec9b_d\",\r\n \"url\": \"https://mikeportal.eastus.batch.azure.com/pools/testPool/nodes/tvmps_4109062b0e8548c8f8e8341010d95a7f915aa2dbcbf46cd71183db0d156bec9b_d\",\r\n \"state\": \"idle\",\r\n \"schedulingState\": \"enabled\",\r\n \"stateTransitionTime\": \"2021-08-27T01:31:49.476266Z\",\r\n \"lastBootTime\": \"2021-08-27T01:31:49.004852Z\",\r\n \"allocationTime\": \"2021-08-27T01:30:23.4794868Z\",\r\n \"ipAddress\": \"10.218.0.6\",\r\n \"affinityId\": \"TVM:tvmps_4109062b0e8548c8f8e8341010d95a7f915aa2dbcbf46cd71183db0d156bec9b_d\",\r\n \"vmSize\": \"standard_d1_v2\",\r\n \"totalTasksRun\": 0,\r\n \"totalTasksSucceeded\": 0,\r\n \"runningTasksCount\": 0,\r\n \"runningTaskSlotsCount\": 0,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"userIdentity\": {\r\n \"autoUser\": {\r\n \"scope\": \"pool\",\r\n \"elevationLevel\": \"nonadmin\"\r\n }\r\n },\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": true\r\n },\r\n \"startTaskInfo\": {\r\n \"state\": \"completed\",\r\n \"startTime\": \"2021-08-27T01:31:49.413766Z\",\r\n \"endTime\": \"2021-08-27T01:31:49.476266Z\",\r\n \"exitCode\": 0,\r\n \"result\": \"success\",\r\n \"retryCount\": 0\r\n },\r\n \"certificateReferences\": [],\r\n \"isDedicated\": true,\r\n \"endpointConfiguration\": {\r\n \"inboundEndpoints\": [\r\n {\r\n \"name\": \"Microsoft.WindowsAzure.Plugins.RemoteForwarder.RdpInput\",\r\n \"protocol\": \"tcp\",\r\n \"frontendPort\": 3389,\r\n \"backendPort\": 20000\r\n }\r\n ]\r\n },\r\n \"nodeAgentInfo\": {\r\n \"lastUpdateTime\": \"2021-08-27T01:31:49.004852Z\",\r\n \"version\": \"1.9.14\"\r\n },\r\n \"virtualMachineInfo\": {}\r\n },\r\n {\r\n \"id\": \"tvmps_c05b99b79b9007429d25b6be89631ca2778f46762979e27e83ebe323eb0de497_d\",\r\n \"url\": \"https://mikeportal.eastus.batch.azure.com/pools/testPool/nodes/tvmps_c05b99b79b9007429d25b6be89631ca2778f46762979e27e83ebe323eb0de497_d\",\r\n \"state\": \"idle\",\r\n \"schedulingState\": \"enabled\",\r\n \"stateTransitionTime\": \"2021-08-27T16:15:28.865336Z\",\r\n \"lastBootTime\": \"2021-08-27T01:31:49.018049Z\",\r\n \"allocationTime\": \"2021-08-27T01:30:23.4794868Z\",\r\n \"ipAddress\": \"10.218.0.5\",\r\n \"affinityId\": \"TVM:tvmps_c05b99b79b9007429d25b6be89631ca2778f46762979e27e83ebe323eb0de497_d\",\r\n \"vmSize\": \"standard_d1_v2\",\r\n \"totalTasksRun\": 2,\r\n \"totalTasksSucceeded\": 1,\r\n \"runningTasksCount\": 0,\r\n \"runningTaskSlotsCount\": 0,\r\n \"recentTasks\": [\r\n {\r\n \"taskUrl\": \"https://mikeportal.eastus.batch.azure.com/jobs/testTerminateTaskJob/tasks/testTask2\",\r\n \"jobId\": \"testTerminateTaskJob\",\r\n \"taskId\": \"testTask2\",\r\n \"taskState\": \"completed\",\r\n \"executionInfo\": {\r\n \"startTime\": \"2021-08-27T16:15:28.740332Z\",\r\n \"endTime\": \"2021-08-27T16:15:28.818458Z\",\r\n \"exitCode\": -1073741510,\r\n \"failureInfo\": {\r\n \"category\": \"UserError\",\r\n \"code\": \"TaskEnded\",\r\n \"message\": \"Task Was Ended by User Request\",\r\n \"details\": [\r\n {\r\n \"name\": \"AdditionalErrorCode\",\r\n \"value\": \"FailureExitCode\"\r\n }\r\n ]\r\n },\r\n \"result\": \"failure\",\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n }\r\n }\r\n ],\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"userIdentity\": {\r\n \"autoUser\": {\r\n \"scope\": \"pool\",\r\n \"elevationLevel\": \"nonadmin\"\r\n }\r\n },\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": true\r\n },\r\n \"startTaskInfo\": {\r\n \"state\": \"completed\",\r\n \"startTime\": \"2021-08-27T01:31:49.519546Z\",\r\n \"endTime\": \"2021-08-27T01:31:49.582959Z\",\r\n \"exitCode\": 0,\r\n \"result\": \"success\",\r\n \"retryCount\": 0\r\n },\r\n \"certificateReferences\": [],\r\n \"isDedicated\": true,\r\n \"endpointConfiguration\": {\r\n \"inboundEndpoints\": [\r\n {\r\n \"name\": \"Microsoft.WindowsAzure.Plugins.RemoteForwarder.RdpInput\",\r\n \"protocol\": \"tcp\",\r\n \"frontendPort\": 3389,\r\n \"backendPort\": 20000\r\n }\r\n ]\r\n },\r\n \"nodeAgentInfo\": {\r\n \"lastUpdateTime\": \"2021-08-27T01:31:49.018049Z\",\r\n \"version\": \"1.9.14\"\r\n },\r\n \"virtualMachineInfo\": {}\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/pools/testPool/nodes/tvmps_5588b2c9db0df4d8fcf672ea8dd42c28027e22241536de49d696c8540a826215_d?api-version=2020-03-01.11.0&$select=id%2Cstate", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bXBzXzU1ODhiMmM5ZGIwZGY0ZDhmY2Y2NzJlYThkZDQyYzI4MDI3ZTIyMjQxNTM2ZGU0OWQ2OTZjODU0MGE4MjYyMTVfZD9hcGktdmVyc2lvbj0yMDIwLTAzLTAxLjExLjAmJHNlbGVjdD1pZCUyQ3N0YXRl", + "RequestUri": "/pools/testPool/nodes/tvmps_06e333efaab6a295eddf31ab64af1beb132de30da2619fab68431dcc2a5e0c4f_d?api-version=2021-06-01.14.0&$select=id%2Cstate", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bXBzXzA2ZTMzM2VmYWFiNmEyOTVlZGRmMzFhYjY0YWYxYmViMTMyZGUzMGRhMjYxOWZhYjY4NDMxZGNjMmE1ZTBjNGZfZD9hcGktdmVyc2lvbj0yMDIxLTA2LTAxLjE0LjAmJHNlbGVjdD1pZCUyQ3N0YXRl", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "603e80b5-d206-4008-9f35-350b08253fd1" + "bde9cad1-f2ad-4e8b-a426-c770803b0ee7" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:15:21 GMT" + "Fri, 27 Aug 2021 16:22:38 GMT" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/13.0.20.15503", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", "AzurePowershell/Az1.0.0" ] }, @@ -135,7 +135,7 @@ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "7f89d7d5-abf6-417a-9384-4c540ecf5c3b" + "b1d3605c-d3f0-4d2d-a225-2d0a41e30d19" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -147,35 +147,35 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 22:15:21 GMT" + "Fri, 27 Aug 2021 16:22:36 GMT" ], "Content-Type": [ "application/json; odata=minimalmetadata" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://prodtest6.francecentral.batch.azure.com/$metadata#nodes/@Element\",\r\n \"id\": \"tvmps_5588b2c9db0df4d8fcf672ea8dd42c28027e22241536de49d696c8540a826215_d\",\r\n \"state\": \"idle\"\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#nodes/@Element\",\r\n \"id\": \"tvmps_06e333efaab6a295eddf31ab64af1beb132de30da2619fab68431dcc2a5e0c4f_d\",\r\n \"state\": \"idle\",\r\n \"virtualMachineInfo\": {}\r\n}", "StatusCode": 200 }, { - "RequestUri": "/pools/testPool/nodes/tvmps_67c7cd533daccf422807a8e72192afe6b3bd035d859dc2b1b0844ccd2331aaba_d?api-version=2020-03-01.11.0&$select=id%2Cstate", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bXBzXzY3YzdjZDUzM2RhY2NmNDIyODA3YThlNzIxOTJhZmU2YjNiZDAzNWQ4NTlkYzJiMWIwODQ0Y2NkMjMzMWFhYmFfZD9hcGktdmVyc2lvbj0yMDIwLTAzLTAxLjExLjAmJHNlbGVjdD1pZCUyQ3N0YXRl", + "RequestUri": "/pools/testPool/nodes/tvmps_4109062b0e8548c8f8e8341010d95a7f915aa2dbcbf46cd71183db0d156bec9b_d?api-version=2021-06-01.14.0&$select=id%2Cstate", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bXBzXzQxMDkwNjJiMGU4NTQ4YzhmOGU4MzQxMDEwZDk1YTdmOTE1YWEyZGJjYmY0NmNkNzExODNkYjBkMTU2YmVjOWJfZD9hcGktdmVyc2lvbj0yMDIxLTA2LTAxLjE0LjAmJHNlbGVjdD1pZCUyQ3N0YXRl", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "5708ca52-0a47-4d4f-af1b-5ff4b30c2b64" + "ee8d6161-8941-458b-a593-7a869aa90dca" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:15:21 GMT" + "Fri, 27 Aug 2021 16:22:38 GMT" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/13.0.20.15503", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", "AzurePowershell/Az1.0.0" ] }, @@ -187,7 +187,7 @@ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "ecbc5ef4-d069-4c43-b0ae-310f35e1aae7" + "81a70e39-3993-4387-8ae7-8d1b61eb82a1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -199,35 +199,38 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 22:15:21 GMT" + "Fri, 27 Aug 2021 16:22:36 GMT" ], "Content-Type": [ "application/json; odata=minimalmetadata" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://prodtest6.francecentral.batch.azure.com/$metadata#nodes/@Element\",\r\n \"id\": \"tvmps_67c7cd533daccf422807a8e72192afe6b3bd035d859dc2b1b0844ccd2331aaba_d\",\r\n \"state\": \"idle\"\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#nodes/@Element\",\r\n \"id\": \"tvmps_4109062b0e8548c8f8e8341010d95a7f915aa2dbcbf46cd71183db0d156bec9b_d\",\r\n \"state\": \"idle\",\r\n \"virtualMachineInfo\": {}\r\n}", "StatusCode": 200 }, { - "RequestUri": "/pools/testPool/nodes/tvmps_5588b2c9db0df4d8fcf672ea8dd42c28027e22241536de49d696c8540a826215_d?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bXBzXzU1ODhiMmM5ZGIwZGY0ZDhmY2Y2NzJlYThkZDQyYzI4MDI3ZTIyMjQxNTM2ZGU0OWQ2OTZjODU0MGE4MjYyMTVfZD9hcGktdmVyc2lvbj0yMDIwLTAzLTAxLjExLjA=", + "RequestUri": "/pools/testPool/nodes/tvmps_06e333efaab6a295eddf31ab64af1beb132de30da2619fab68431dcc2a5e0c4f_d?api-version=2021-06-01.14.0", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bXBzXzA2ZTMzM2VmYWFiNmEyOTVlZGRmMzFhYjY0YWYxYmViMTMyZGUzMGRhMjYxOWZhYjY4NDMxZGNjMmE1ZTBjNGZfZD9hcGktdmVyc2lvbj0yMDIxLTA2LTAxLjE0LjA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "fc0312a9-4298-4b25-8b22-85daff811d34" + "8ece3b85-9905-491b-b4ea-c1b29403fea4" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:15:22 GMT" + "Fri, 27 Aug 2021 16:22:39 GMT" + ], + "x-ms-client-request-id": [ + "04df4b65-e104-40cf-ac28-67ca3cbb39d5" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/13.0.20.15503", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", "AzurePowershell/Az1.0.0" ] }, @@ -239,7 +242,7 @@ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "2c7e7d55-a66c-4a2e-864b-6f47234891ea" + "c476fab3-83fa-4559-ac8c-f91ce20124cc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -251,35 +254,38 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 22:15:43 GMT" + "Fri, 27 Aug 2021 16:22:37 GMT" ], "Content-Type": [ "application/json; odata=minimalmetadata" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://prodtest6.francecentral.batch.azure.com/$metadata#nodes/@Element\",\r\n \"id\": \"tvmps_5588b2c9db0df4d8fcf672ea8dd42c28027e22241536de49d696c8540a826215_d\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/pools/testPool/nodes/tvmps_5588b2c9db0df4d8fcf672ea8dd42c28027e22241536de49d696c8540a826215_d\",\r\n \"state\": \"idle\",\r\n \"schedulingState\": \"enabled\",\r\n \"stateTransitionTime\": \"2020-06-09T17:11:36.058121Z\",\r\n \"lastBootTime\": \"2020-06-09T17:11:33.25425Z\",\r\n \"allocationTime\": \"2020-06-09T17:08:18.9130671Z\",\r\n \"ipAddress\": \"10.218.0.4\",\r\n \"affinityId\": \"TVM:tvmps_5588b2c9db0df4d8fcf672ea8dd42c28027e22241536de49d696c8540a826215_d\",\r\n \"vmSize\": \"standard_d2_v3\",\r\n \"totalTasksRun\": 0,\r\n \"totalTasksSucceeded\": 0,\r\n \"runningTasksCount\": 0,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c \\\"echo hello\\\"\",\r\n \"userIdentity\": {\r\n \"autoUser\": {\r\n \"scope\": \"pool\",\r\n \"elevationLevel\": \"nonadmin\"\r\n }\r\n },\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": true\r\n },\r\n \"startTaskInfo\": {\r\n \"state\": \"completed\",\r\n \"startTime\": \"2020-06-09T17:11:35.948758Z\",\r\n \"endTime\": \"2020-06-09T17:11:36.042491Z\",\r\n \"exitCode\": 0,\r\n \"result\": \"success\",\r\n \"retryCount\": 0\r\n },\r\n \"certificateReferences\": [],\r\n \"isDedicated\": true,\r\n \"endpointConfiguration\": {\r\n \"inboundEndpoints\": [\r\n {\r\n \"name\": \"Microsoft.WindowsAzure.Plugins.RemoteForwarder.RdpInput\",\r\n \"protocol\": \"tcp\",\r\n \"publicIPAddress\": \"20.43.39.67\",\r\n \"frontendPort\": 3389,\r\n \"backendPort\": 20000\r\n }\r\n ]\r\n },\r\n \"nodeAgentInfo\": {\r\n \"lastUpdateTime\": \"2020-06-09T17:11:33.25425Z\",\r\n \"version\": \"1.8.2\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#nodes/@Element\",\r\n \"id\": \"tvmps_06e333efaab6a295eddf31ab64af1beb132de30da2619fab68431dcc2a5e0c4f_d\",\r\n \"url\": \"https://mikeportal.eastus.batch.azure.com/pools/testPool/nodes/tvmps_06e333efaab6a295eddf31ab64af1beb132de30da2619fab68431dcc2a5e0c4f_d\",\r\n \"state\": \"idle\",\r\n \"schedulingState\": \"enabled\",\r\n \"stateTransitionTime\": \"2021-08-27T16:08:33.089447Z\",\r\n \"lastBootTime\": \"2021-08-27T01:31:49.00627Z\",\r\n \"allocationTime\": \"2021-08-27T01:30:23.4794868Z\",\r\n \"ipAddress\": \"10.218.0.4\",\r\n \"affinityId\": \"TVM:tvmps_06e333efaab6a295eddf31ab64af1beb132de30da2619fab68431dcc2a5e0c4f_d\",\r\n \"vmSize\": \"standard_d1_v2\",\r\n \"totalTasksRun\": 1,\r\n \"totalTasksSucceeded\": 1,\r\n \"runningTasksCount\": 0,\r\n \"runningTaskSlotsCount\": 0,\r\n \"recentTasks\": [\r\n {\r\n \"taskUrl\": \"https://mikeportal.eastus.batch.azure.com/jobs/createTaskCollectionJob/tasks/simple1\",\r\n \"jobId\": \"createTaskCollectionJob\",\r\n \"taskId\": \"simple1\",\r\n \"taskState\": \"completed\",\r\n \"executionInfo\": {\r\n \"startTime\": \"2021-08-27T16:08:33.02231Z\",\r\n \"endTime\": \"2021-08-27T16:08:33.069198Z\",\r\n \"exitCode\": 0,\r\n \"result\": \"success\",\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n }\r\n }\r\n ],\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"userIdentity\": {\r\n \"autoUser\": {\r\n \"scope\": \"pool\",\r\n \"elevationLevel\": \"nonadmin\"\r\n }\r\n },\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": true\r\n },\r\n \"startTaskInfo\": {\r\n \"state\": \"completed\",\r\n \"startTime\": \"2021-08-27T01:31:49.459393Z\",\r\n \"endTime\": \"2021-08-27T01:31:49.521897Z\",\r\n \"exitCode\": 0,\r\n \"result\": \"success\",\r\n \"retryCount\": 0\r\n },\r\n \"certificateReferences\": [],\r\n \"isDedicated\": true,\r\n \"endpointConfiguration\": {\r\n \"inboundEndpoints\": [\r\n {\r\n \"name\": \"Microsoft.WindowsAzure.Plugins.RemoteForwarder.RdpInput\",\r\n \"protocol\": \"tcp\",\r\n \"frontendPort\": 3389,\r\n \"backendPort\": 20000\r\n }\r\n ]\r\n },\r\n \"nodeAgentInfo\": {\r\n \"lastUpdateTime\": \"2021-08-27T01:31:49.00627Z\",\r\n \"version\": \"1.9.14\"\r\n },\r\n \"virtualMachineInfo\": {}\r\n}", "StatusCode": 200 }, { - "RequestUri": "/pools/testPool/nodes/tvmps_5588b2c9db0df4d8fcf672ea8dd42c28027e22241536de49d696c8540a826215_d?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bXBzXzU1ODhiMmM5ZGIwZGY0ZDhmY2Y2NzJlYThkZDQyYzI4MDI3ZTIyMjQxNTM2ZGU0OWQ2OTZjODU0MGE4MjYyMTVfZD9hcGktdmVyc2lvbj0yMDIwLTAzLTAxLjExLjA=", + "RequestUri": "/pools/testPool/nodes/tvmps_06e333efaab6a295eddf31ab64af1beb132de30da2619fab68431dcc2a5e0c4f_d?api-version=2021-06-01.14.0", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bXBzXzA2ZTMzM2VmYWFiNmEyOTVlZGRmMzFhYjY0YWYxYmViMTMyZGUzMGRhMjYxOWZhYjY4NDMxZGNjMmE1ZTBjNGZfZD9hcGktdmVyc2lvbj0yMDIxLTA2LTAxLjE0LjA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "2cbce5bf-98f4-4d73-99a4-c48ba6d9991a" + "6c0437b1-7aa9-4ef4-9d79-4465f0bd18e3" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:15:44 GMT" + "Fri, 27 Aug 2021 16:22:39 GMT" + ], + "x-ms-client-request-id": [ + "e55195c5-a2b2-4a20-97e8-6fff8d11bbd9" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/13.0.20.15503", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", "AzurePowershell/Az1.0.0" ] }, @@ -291,7 +297,7 @@ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "7bf74d11-6bb3-4771-9aac-0016037fe700" + "f54e7fd7-2f53-4a6b-89be-aa411f4d28e6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -303,35 +309,38 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 22:15:43 GMT" + "Fri, 27 Aug 2021 16:22:38 GMT" ], "Content-Type": [ "application/json; odata=minimalmetadata" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://prodtest6.francecentral.batch.azure.com/$metadata#nodes/@Element\",\r\n \"id\": \"tvmps_5588b2c9db0df4d8fcf672ea8dd42c28027e22241536de49d696c8540a826215_d\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/pools/testPool/nodes/tvmps_5588b2c9db0df4d8fcf672ea8dd42c28027e22241536de49d696c8540a826215_d\",\r\n \"state\": \"rebooting\",\r\n \"schedulingState\": \"enabled\",\r\n \"stateTransitionTime\": \"2020-06-09T22:15:44.2565816Z\",\r\n \"lastBootTime\": \"2020-06-09T17:11:33.25425Z\",\r\n \"allocationTime\": \"2020-06-09T17:08:18.9130671Z\",\r\n \"ipAddress\": \"10.218.0.4\",\r\n \"affinityId\": \"TVM:tvmps_5588b2c9db0df4d8fcf672ea8dd42c28027e22241536de49d696c8540a826215_d\",\r\n \"vmSize\": \"standard_d2_v3\",\r\n \"totalTasksRun\": 0,\r\n \"totalTasksSucceeded\": 0,\r\n \"runningTasksCount\": 0,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c \\\"echo hello\\\"\",\r\n \"userIdentity\": {\r\n \"autoUser\": {\r\n \"scope\": \"pool\",\r\n \"elevationLevel\": \"nonadmin\"\r\n }\r\n },\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": true\r\n },\r\n \"startTaskInfo\": {\r\n \"state\": \"completed\",\r\n \"startTime\": \"2020-06-09T17:11:35.948758Z\",\r\n \"endTime\": \"2020-06-09T17:11:36.042491Z\",\r\n \"exitCode\": 0,\r\n \"result\": \"success\",\r\n \"retryCount\": 0\r\n },\r\n \"certificateReferences\": [],\r\n \"isDedicated\": true,\r\n \"endpointConfiguration\": {\r\n \"inboundEndpoints\": [\r\n {\r\n \"name\": \"Microsoft.WindowsAzure.Plugins.RemoteForwarder.RdpInput\",\r\n \"protocol\": \"tcp\",\r\n \"publicIPAddress\": \"20.43.39.67\",\r\n \"frontendPort\": 3389,\r\n \"backendPort\": 20000\r\n }\r\n ]\r\n },\r\n \"nodeAgentInfo\": {\r\n \"lastUpdateTime\": \"2020-06-09T17:11:33.25425Z\",\r\n \"version\": \"1.8.2\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#nodes/@Element\",\r\n \"id\": \"tvmps_06e333efaab6a295eddf31ab64af1beb132de30da2619fab68431dcc2a5e0c4f_d\",\r\n \"url\": \"https://mikeportal.eastus.batch.azure.com/pools/testPool/nodes/tvmps_06e333efaab6a295eddf31ab64af1beb132de30da2619fab68431dcc2a5e0c4f_d\",\r\n \"state\": \"rebooting\",\r\n \"schedulingState\": \"enabled\",\r\n \"stateTransitionTime\": \"2021-08-27T16:22:38.7947452Z\",\r\n \"lastBootTime\": \"2021-08-27T01:31:49.00627Z\",\r\n \"allocationTime\": \"2021-08-27T01:30:23.4794868Z\",\r\n \"ipAddress\": \"10.218.0.4\",\r\n \"affinityId\": \"TVM:tvmps_06e333efaab6a295eddf31ab64af1beb132de30da2619fab68431dcc2a5e0c4f_d\",\r\n \"vmSize\": \"standard_d1_v2\",\r\n \"totalTasksRun\": 1,\r\n \"totalTasksSucceeded\": 1,\r\n \"runningTasksCount\": 0,\r\n \"runningTaskSlotsCount\": 0,\r\n \"recentTasks\": [\r\n {\r\n \"taskUrl\": \"https://mikeportal.eastus.batch.azure.com/jobs/createTaskCollectionJob/tasks/simple1\",\r\n \"jobId\": \"createTaskCollectionJob\",\r\n \"taskId\": \"simple1\",\r\n \"taskState\": \"completed\",\r\n \"executionInfo\": {\r\n \"startTime\": \"2021-08-27T16:08:33.02231Z\",\r\n \"endTime\": \"2021-08-27T16:08:33.069198Z\",\r\n \"exitCode\": 0,\r\n \"result\": \"success\",\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n }\r\n }\r\n ],\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"userIdentity\": {\r\n \"autoUser\": {\r\n \"scope\": \"pool\",\r\n \"elevationLevel\": \"nonadmin\"\r\n }\r\n },\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": true\r\n },\r\n \"startTaskInfo\": {\r\n \"state\": \"completed\",\r\n \"startTime\": \"2021-08-27T01:31:49.459393Z\",\r\n \"endTime\": \"2021-08-27T01:31:49.521897Z\",\r\n \"exitCode\": 0,\r\n \"result\": \"success\",\r\n \"retryCount\": 0\r\n },\r\n \"certificateReferences\": [],\r\n \"isDedicated\": true,\r\n \"endpointConfiguration\": {\r\n \"inboundEndpoints\": [\r\n {\r\n \"name\": \"Microsoft.WindowsAzure.Plugins.RemoteForwarder.RdpInput\",\r\n \"protocol\": \"tcp\",\r\n \"frontendPort\": 3389,\r\n \"backendPort\": 20000\r\n }\r\n ]\r\n },\r\n \"nodeAgentInfo\": {\r\n \"lastUpdateTime\": \"2021-08-27T01:31:49.00627Z\",\r\n \"version\": \"1.9.14\"\r\n },\r\n \"virtualMachineInfo\": {}\r\n}", "StatusCode": 200 }, { - "RequestUri": "/pools/testPool/nodes/tvmps_5588b2c9db0df4d8fcf672ea8dd42c28027e22241536de49d696c8540a826215_d/reboot?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bXBzXzU1ODhiMmM5ZGIwZGY0ZDhmY2Y2NzJlYThkZDQyYzI4MDI3ZTIyMjQxNTM2ZGU0OWQ2OTZjODU0MGE4MjYyMTVfZC9yZWJvb3Q/YXBpLXZlcnNpb249MjAyMC0wMy0wMS4xMS4w", + "RequestUri": "/pools/testPool/nodes/tvmps_06e333efaab6a295eddf31ab64af1beb132de30da2619fab68431dcc2a5e0c4f_d/reboot?api-version=2021-06-01.14.0", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bXBzXzA2ZTMzM2VmYWFiNmEyOTVlZGRmMzFhYjY0YWYxYmViMTMyZGUzMGRhMjYxOWZhYjY4NDMxZGNjMmE1ZTBjNGZfZC9yZWJvb3Q/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4w", "RequestMethod": "POST", "RequestBody": "{\r\n \"nodeRebootOption\": \"terminate\"\r\n}", "RequestHeaders": { "client-request-id": [ - "752dc30a-9874-4454-b168-ce6dae3af2de" + "328f7c4d-94fd-4574-95c6-f2fd95c5da36" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:15:43 GMT" + "Fri, 27 Aug 2021 16:22:39 GMT" + ], + "x-ms-client-request-id": [ + "04df4b65-e104-40cf-ac28-67ca3cbb39d5" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/13.0.20.15503", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", "AzurePowershell/Az1.0.0" ], "Content-Type": [ @@ -349,7 +358,7 @@ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "26572393-eb41-4419-ba1f-0f1dacbf06ab" + "8d41ca33-8e7b-40ff-9294-fb6316e6852a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -361,35 +370,38 @@ "3.0" ], "DataServiceId": [ - "https://prodtest6.francecentral.batch.azure.com/pools/testPool/nodes/tvmps_5588b2c9db0df4d8fcf672ea8dd42c28027e22241536de49d696c8540a826215_d/reboot" + "https://mikeportal.eastus.batch.azure.com/pools/testPool/nodes/tvmps_06e333efaab6a295eddf31ab64af1beb132de30da2619fab68431dcc2a5e0c4f_d/reboot" ], "Date": [ - "Tue, 09 Jun 2020 22:15:43 GMT" + "Fri, 27 Aug 2021 16:22:38 GMT" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/pools/testPool/nodes/tvmps_67c7cd533daccf422807a8e72192afe6b3bd035d859dc2b1b0844ccd2331aaba_d?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bXBzXzY3YzdjZDUzM2RhY2NmNDIyODA3YThlNzIxOTJhZmU2YjNiZDAzNWQ4NTlkYzJiMWIwODQ0Y2NkMjMzMWFhYmFfZD9hcGktdmVyc2lvbj0yMDIwLTAzLTAxLjExLjA=", + "RequestUri": "/pools/testPool/nodes/tvmps_4109062b0e8548c8f8e8341010d95a7f915aa2dbcbf46cd71183db0d156bec9b_d?api-version=2021-06-01.14.0", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bXBzXzQxMDkwNjJiMGU4NTQ4YzhmOGU4MzQxMDEwZDk1YTdmOTE1YWEyZGJjYmY0NmNkNzExODNkYjBkMTU2YmVjOWJfZD9hcGktdmVyc2lvbj0yMDIxLTA2LTAxLjE0LjA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "f178affe-e346-418c-b2a2-f14f7cb57139" + "b4702414-da9b-438f-8362-39a1318e37e3" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:15:44 GMT" + "Fri, 27 Aug 2021 16:22:39 GMT" + ], + "x-ms-client-request-id": [ + "329a46fb-07d0-47c2-930c-ee37204715e0" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/13.0.20.15503", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", "AzurePowershell/Az1.0.0" ] }, @@ -401,7 +413,7 @@ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "06e9e887-a337-4e85-84c0-1e3d9ad7c225" + "4239c05c-7d3d-4eb1-badd-2478e7af3aba" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -413,35 +425,38 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 22:15:43 GMT" + "Fri, 27 Aug 2021 16:22:38 GMT" ], "Content-Type": [ "application/json; odata=minimalmetadata" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://prodtest6.francecentral.batch.azure.com/$metadata#nodes/@Element\",\r\n \"id\": \"tvmps_67c7cd533daccf422807a8e72192afe6b3bd035d859dc2b1b0844ccd2331aaba_d\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/pools/testPool/nodes/tvmps_67c7cd533daccf422807a8e72192afe6b3bd035d859dc2b1b0844ccd2331aaba_d\",\r\n \"state\": \"idle\",\r\n \"schedulingState\": \"enabled\",\r\n \"stateTransitionTime\": \"2020-06-09T16:57:43.09548Z\",\r\n \"lastBootTime\": \"2020-06-09T16:57:40.492514Z\",\r\n \"allocationTime\": \"2020-06-09T16:25:12.7257784Z\",\r\n \"ipAddress\": \"10.218.0.5\",\r\n \"affinityId\": \"TVM:tvmps_67c7cd533daccf422807a8e72192afe6b3bd035d859dc2b1b0844ccd2331aaba_d\",\r\n \"vmSize\": \"standard_d2_v3\",\r\n \"totalTasksRun\": 2,\r\n \"totalTasksSucceeded\": 1,\r\n \"runningTasksCount\": 0,\r\n \"recentTasks\": [],\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c \\\"echo hello\\\"\",\r\n \"userIdentity\": {\r\n \"autoUser\": {\r\n \"scope\": \"pool\",\r\n \"elevationLevel\": \"nonadmin\"\r\n }\r\n },\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": true\r\n },\r\n \"startTaskInfo\": {\r\n \"state\": \"completed\",\r\n \"startTime\": \"2020-06-09T16:57:42.986109Z\",\r\n \"endTime\": \"2020-06-09T16:57:43.09548Z\",\r\n \"exitCode\": 0,\r\n \"result\": \"success\",\r\n \"retryCount\": 0\r\n },\r\n \"certificateReferences\": [],\r\n \"isDedicated\": true,\r\n \"endpointConfiguration\": {\r\n \"inboundEndpoints\": [\r\n {\r\n \"name\": \"Microsoft.WindowsAzure.Plugins.RemoteForwarder.RdpInput\",\r\n \"protocol\": \"tcp\",\r\n \"publicIPAddress\": \"20.43.39.67\",\r\n \"frontendPort\": 3389,\r\n \"backendPort\": 20000\r\n }\r\n ]\r\n },\r\n \"nodeAgentInfo\": {\r\n \"lastUpdateTime\": \"2020-06-09T16:28:51.733507Z\",\r\n \"version\": \"1.8.2\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#nodes/@Element\",\r\n \"id\": \"tvmps_4109062b0e8548c8f8e8341010d95a7f915aa2dbcbf46cd71183db0d156bec9b_d\",\r\n \"url\": \"https://mikeportal.eastus.batch.azure.com/pools/testPool/nodes/tvmps_4109062b0e8548c8f8e8341010d95a7f915aa2dbcbf46cd71183db0d156bec9b_d\",\r\n \"state\": \"idle\",\r\n \"schedulingState\": \"enabled\",\r\n \"stateTransitionTime\": \"2021-08-27T01:31:49.476266Z\",\r\n \"lastBootTime\": \"2021-08-27T01:31:49.004852Z\",\r\n \"allocationTime\": \"2021-08-27T01:30:23.4794868Z\",\r\n \"ipAddress\": \"10.218.0.6\",\r\n \"affinityId\": \"TVM:tvmps_4109062b0e8548c8f8e8341010d95a7f915aa2dbcbf46cd71183db0d156bec9b_d\",\r\n \"vmSize\": \"standard_d1_v2\",\r\n \"totalTasksRun\": 0,\r\n \"totalTasksSucceeded\": 0,\r\n \"runningTasksCount\": 0,\r\n \"runningTaskSlotsCount\": 0,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"userIdentity\": {\r\n \"autoUser\": {\r\n \"scope\": \"pool\",\r\n \"elevationLevel\": \"nonadmin\"\r\n }\r\n },\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": true\r\n },\r\n \"startTaskInfo\": {\r\n \"state\": \"completed\",\r\n \"startTime\": \"2021-08-27T01:31:49.413766Z\",\r\n \"endTime\": \"2021-08-27T01:31:49.476266Z\",\r\n \"exitCode\": 0,\r\n \"result\": \"success\",\r\n \"retryCount\": 0\r\n },\r\n \"certificateReferences\": [],\r\n \"isDedicated\": true,\r\n \"endpointConfiguration\": {\r\n \"inboundEndpoints\": [\r\n {\r\n \"name\": \"Microsoft.WindowsAzure.Plugins.RemoteForwarder.RdpInput\",\r\n \"protocol\": \"tcp\",\r\n \"frontendPort\": 3389,\r\n \"backendPort\": 20000\r\n }\r\n ]\r\n },\r\n \"nodeAgentInfo\": {\r\n \"lastUpdateTime\": \"2021-08-27T01:31:49.004852Z\",\r\n \"version\": \"1.9.14\"\r\n },\r\n \"virtualMachineInfo\": {}\r\n}", "StatusCode": 200 }, { - "RequestUri": "/pools/testPool/nodes/tvmps_67c7cd533daccf422807a8e72192afe6b3bd035d859dc2b1b0844ccd2331aaba_d?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bXBzXzY3YzdjZDUzM2RhY2NmNDIyODA3YThlNzIxOTJhZmU2YjNiZDAzNWQ4NTlkYzJiMWIwODQ0Y2NkMjMzMWFhYmFfZD9hcGktdmVyc2lvbj0yMDIwLTAzLTAxLjExLjA=", + "RequestUri": "/pools/testPool/nodes/tvmps_4109062b0e8548c8f8e8341010d95a7f915aa2dbcbf46cd71183db0d156bec9b_d?api-version=2021-06-01.14.0", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bXBzXzQxMDkwNjJiMGU4NTQ4YzhmOGU4MzQxMDEwZDk1YTdmOTE1YWEyZGJjYmY0NmNkNzExODNkYjBkMTU2YmVjOWJfZD9hcGktdmVyc2lvbj0yMDIxLTA2LTAxLjE0LjA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "50d9a79d-cd8d-4d04-bb36-36ed2ec3d400" + "7aa3242d-8636-489b-b891-2fb0f62aff2a" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:15:44 GMT" + "Fri, 27 Aug 2021 16:22:40 GMT" + ], + "x-ms-client-request-id": [ + "c0aa3afd-2b42-4fc5-8e20-20b351a767f4" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/13.0.20.15503", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", "AzurePowershell/Az1.0.0" ] }, @@ -453,7 +468,7 @@ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "0b93d85d-2c26-44af-997c-a09ca83f2ba4" + "30c291b9-af4a-48d4-aae3-341846a8f28e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -465,35 +480,38 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 22:15:44 GMT" + "Fri, 27 Aug 2021 16:22:38 GMT" ], "Content-Type": [ "application/json; odata=minimalmetadata" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://prodtest6.francecentral.batch.azure.com/$metadata#nodes/@Element\",\r\n \"id\": \"tvmps_67c7cd533daccf422807a8e72192afe6b3bd035d859dc2b1b0844ccd2331aaba_d\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/pools/testPool/nodes/tvmps_67c7cd533daccf422807a8e72192afe6b3bd035d859dc2b1b0844ccd2331aaba_d\",\r\n \"state\": \"reimaging\",\r\n \"schedulingState\": \"enabled\",\r\n \"stateTransitionTime\": \"2020-06-09T22:15:44.8077439Z\",\r\n \"lastBootTime\": \"2020-06-09T16:57:40.492514Z\",\r\n \"allocationTime\": \"2020-06-09T16:25:12.7257784Z\",\r\n \"ipAddress\": \"10.218.0.5\",\r\n \"affinityId\": \"TVM:tvmps_67c7cd533daccf422807a8e72192afe6b3bd035d859dc2b1b0844ccd2331aaba_d\",\r\n \"vmSize\": \"standard_d2_v3\",\r\n \"totalTasksRun\": 2,\r\n \"totalTasksSucceeded\": 1,\r\n \"runningTasksCount\": 0,\r\n \"recentTasks\": [],\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c \\\"echo hello\\\"\",\r\n \"userIdentity\": {\r\n \"autoUser\": {\r\n \"scope\": \"pool\",\r\n \"elevationLevel\": \"nonadmin\"\r\n }\r\n },\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": true\r\n },\r\n \"startTaskInfo\": {\r\n \"state\": \"completed\",\r\n \"startTime\": \"2020-06-09T16:57:42.986109Z\",\r\n \"endTime\": \"2020-06-09T16:57:43.09548Z\",\r\n \"exitCode\": 0,\r\n \"result\": \"success\",\r\n \"retryCount\": 0\r\n },\r\n \"certificateReferences\": [],\r\n \"isDedicated\": true,\r\n \"endpointConfiguration\": {\r\n \"inboundEndpoints\": [\r\n {\r\n \"name\": \"Microsoft.WindowsAzure.Plugins.RemoteForwarder.RdpInput\",\r\n \"protocol\": \"tcp\",\r\n \"publicIPAddress\": \"20.43.39.67\",\r\n \"frontendPort\": 3389,\r\n \"backendPort\": 20000\r\n }\r\n ]\r\n },\r\n \"nodeAgentInfo\": {\r\n \"lastUpdateTime\": \"2020-06-09T16:28:51.733507Z\",\r\n \"version\": \"1.8.2\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#nodes/@Element\",\r\n \"id\": \"tvmps_4109062b0e8548c8f8e8341010d95a7f915aa2dbcbf46cd71183db0d156bec9b_d\",\r\n \"url\": \"https://mikeportal.eastus.batch.azure.com/pools/testPool/nodes/tvmps_4109062b0e8548c8f8e8341010d95a7f915aa2dbcbf46cd71183db0d156bec9b_d\",\r\n \"state\": \"reimaging\",\r\n \"schedulingState\": \"enabled\",\r\n \"stateTransitionTime\": \"2021-08-27T16:22:39.0627482Z\",\r\n \"lastBootTime\": \"2021-08-27T01:31:49.004852Z\",\r\n \"allocationTime\": \"2021-08-27T01:30:23.4794868Z\",\r\n \"ipAddress\": \"10.218.0.6\",\r\n \"affinityId\": \"TVM:tvmps_4109062b0e8548c8f8e8341010d95a7f915aa2dbcbf46cd71183db0d156bec9b_d\",\r\n \"vmSize\": \"standard_d1_v2\",\r\n \"totalTasksRun\": 0,\r\n \"totalTasksSucceeded\": 0,\r\n \"runningTasksCount\": 0,\r\n \"runningTaskSlotsCount\": 0,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"userIdentity\": {\r\n \"autoUser\": {\r\n \"scope\": \"pool\",\r\n \"elevationLevel\": \"nonadmin\"\r\n }\r\n },\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": true\r\n },\r\n \"startTaskInfo\": {\r\n \"state\": \"completed\",\r\n \"startTime\": \"2021-08-27T01:31:49.413766Z\",\r\n \"endTime\": \"2021-08-27T01:31:49.476266Z\",\r\n \"exitCode\": 0,\r\n \"result\": \"success\",\r\n \"retryCount\": 0\r\n },\r\n \"certificateReferences\": [],\r\n \"isDedicated\": true,\r\n \"endpointConfiguration\": {\r\n \"inboundEndpoints\": [\r\n {\r\n \"name\": \"Microsoft.WindowsAzure.Plugins.RemoteForwarder.RdpInput\",\r\n \"protocol\": \"tcp\",\r\n \"frontendPort\": 3389,\r\n \"backendPort\": 20000\r\n }\r\n ]\r\n },\r\n \"nodeAgentInfo\": {\r\n \"lastUpdateTime\": \"2021-08-27T01:31:49.004852Z\",\r\n \"version\": \"1.9.14\"\r\n },\r\n \"virtualMachineInfo\": {}\r\n}", "StatusCode": 200 }, { - "RequestUri": "/pools/testPool/nodes/tvmps_67c7cd533daccf422807a8e72192afe6b3bd035d859dc2b1b0844ccd2331aaba_d/reimage?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bXBzXzY3YzdjZDUzM2RhY2NmNDIyODA3YThlNzIxOTJhZmU2YjNiZDAzNWQ4NTlkYzJiMWIwODQ0Y2NkMjMzMWFhYmFfZC9yZWltYWdlP2FwaS12ZXJzaW9uPTIwMjAtMDMtMDEuMTEuMA==", + "RequestUri": "/pools/testPool/nodes/tvmps_4109062b0e8548c8f8e8341010d95a7f915aa2dbcbf46cd71183db0d156bec9b_d/reimage?api-version=2021-06-01.14.0", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bXBzXzQxMDkwNjJiMGU4NTQ4YzhmOGU4MzQxMDEwZDk1YTdmOTE1YWEyZGJjYmY0NmNkNzExODNkYjBkMTU2YmVjOWJfZC9yZWltYWdlP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDEuMTQuMA==", "RequestMethod": "POST", "RequestBody": "{\r\n \"nodeReimageOption\": \"terminate\"\r\n}", "RequestHeaders": { "client-request-id": [ - "f06de758-218c-421a-b0bf-a8436f30ae0e" + "8f72e324-9d69-429b-901d-0eba0507abba" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:15:44 GMT" + "Fri, 27 Aug 2021 16:22:39 GMT" + ], + "x-ms-client-request-id": [ + "329a46fb-07d0-47c2-930c-ee37204715e0" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/13.0.20.15503", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", "AzurePowershell/Az1.0.0" ], "Content-Type": [ @@ -511,7 +529,7 @@ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "63fe8275-1004-44e4-aa7d-5524c2ad1858" + "d701711c-86f7-4f06-bda4-07c7ff500400" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -523,10 +541,10 @@ "3.0" ], "DataServiceId": [ - "https://prodtest6.francecentral.batch.azure.com/pools/testPool/nodes/tvmps_67c7cd533daccf422807a8e72192afe6b3bd035d859dc2b1b0844ccd2331aaba_d/reimage" + "https://mikeportal.eastus.batch.azure.com/pools/testPool/nodes/tvmps_4109062b0e8548c8f8e8341010d95a7f915aa2dbcbf46cd71183db0d156bec9b_d/reimage" ], "Date": [ - "Tue, 09 Jun 2020 22:15:43 GMT" + "Fri, 27 Aug 2021 16:22:38 GMT" ] }, "ResponseBody": "", @@ -535,9 +553,9 @@ ], "Names": {}, "Variables": { - "SubscriptionId": "21abd678-18c5-4660-9fdd-8c5ba6b6fe1f", - "AZURE_BATCH_ACCOUNT": "prodtest6", - "AZURE_BATCH_ENDPOINT": "https://prodtest6.francecentral.batch.azure.com", - "AZURE_BATCH_RESOURCE_GROUP": "abc" + "SubscriptionId": "ba2358c2-42f2-4138-88df-7c68cf608bea", + "AZURE_BATCH_ACCOUNT": "mikeportal", + "AZURE_BATCH_ENDPOINT": "https://mikeportal.eastus.batch.azure.com", + "AZURE_BATCH_RESOURCE_GROUP": "batchportal" } } \ No newline at end of file diff --git a/src/Batch/Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.ComputeNodeTests/TestRemoveComputeNodes.json b/src/Batch/Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.ComputeNodeTests/TestRemoveComputeNodes.json index 1684b2ea4787..0aabf38050c3 100644 --- a/src/Batch/Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.ComputeNodeTests/TestRemoveComputeNodes.json +++ b/src/Batch/Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.ComputeNodeTests/TestRemoveComputeNodes.json @@ -1,32 +1,32 @@ { "Entries": [ { - "RequestUri": "/pools?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L3Bvb2xzP2FwaS12ZXJzaW9uPTIwMjAtMDMtMDEuMTEuMA==", + "RequestUri": "/pools?api-version=2021-06-01.14.0", + "EncodedRequestUri": "L3Bvb2xzP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDEuMTQuMA==", "RequestMethod": "POST", - "RequestBody": "{\r\n \"id\": \"removenodepool\",\r\n \"vmSize\": \"small\",\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"osVersion\": \"*\"\r\n },\r\n \"targetDedicatedNodes\": 2,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableInterNodeCommunication\": true\r\n}", + "RequestBody": "{\r\n \"id\": \"removenodepool\",\r\n \"vmSize\": \"standard_d1_v2\",\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"osVersion\": \"*\"\r\n },\r\n \"targetDedicatedNodes\": 2,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableInterNodeCommunication\": true\r\n}", "RequestHeaders": { "client-request-id": [ - "e4f401b5-213f-411f-828a-969d5dd13e6c" + "bb5c39bd-09e2-4909-9f3b-f8f7bf2e0f32" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:26:13 GMT" + "Fri, 27 Aug 2021 16:24:48 GMT" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/13.0.20.15503", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", "AzurePowershell/Az1.0.0" ], "Content-Type": [ "application/json; odata=minimalmetadata; charset=utf-8" ], "Content-Length": [ - "239" + "248" ] }, "ResponseHeaders": { @@ -34,16 +34,16 @@ "chunked" ], "ETag": [ - "0x8D80CC42B3DAAC8" + "0x8D969772FE80CC3" ], "Location": [ - "https://prodtest6.francecentral.batch.azure.com/pools/removenodepool" + "https://mikeportal.eastus.batch.azure.com/pools/removenodepool" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "78598a65-2815-43d0-861a-fa39d6d860c1" + "066b2d28-18a0-447d-937f-c8bcbd686453" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -55,38 +55,38 @@ "3.0" ], "DataServiceId": [ - "https://prodtest6.francecentral.batch.azure.com/pools/removenodepool" + "https://mikeportal.eastus.batch.azure.com/pools/removenodepool" ], "Date": [ - "Tue, 09 Jun 2020 22:26:35 GMT" + "Fri, 27 Aug 2021 16:24:46 GMT" ], "Last-Modified": [ - "Tue, 09 Jun 2020 22:26:35 GMT" + "Fri, 27 Aug 2021 16:24:47 GMT" ] }, "ResponseBody": "", "StatusCode": 201 }, { - "RequestUri": "/pools/removenodepool?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L3Bvb2xzL3JlbW92ZW5vZGVwb29sP2FwaS12ZXJzaW9uPTIwMjAtMDMtMDEuMTEuMA==", + "RequestUri": "/pools/removenodepool?api-version=2021-06-01.14.0", + "EncodedRequestUri": "L3Bvb2xzL3JlbW92ZW5vZGVwb29sP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDEuMTQuMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "f94de672-284c-4eca-b6b0-2add013fcaad" + "324e4a19-6e14-4804-9eee-8ada6e14b05e" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:26:35 GMT" + "Fri, 27 Aug 2021 16:24:48 GMT" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/13.0.20.15503", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", "AzurePowershell/Az1.0.0" ] }, @@ -95,13 +95,13 @@ "chunked" ], "ETag": [ - "0x8D80CC42B3DAAC8" + "0x8D969772FE80CC3" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "a688d7ac-d448-49ae-b2a6-71970cb10295" + "3c317fc5-a44f-4da4-8059-da3e1ebd8246" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -113,38 +113,38 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 22:26:35 GMT" + "Fri, 27 Aug 2021 16:24:46 GMT" ], "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Tue, 09 Jun 2020 22:26:35 GMT" + "Fri, 27 Aug 2021 16:24:47 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://prodtest6.francecentral.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"removenodepool\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/pools/removenodepool\",\r\n \"eTag\": \"0x8D80CC42B3DAAC8\",\r\n \"lastModified\": \"2020-06-09T22:26:35.1510216Z\",\r\n \"creationTime\": \"2020-06-09T22:26:35.1510216Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2020-06-09T22:26:35.1510216Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2020-06-09T22:26:35.1510216Z\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT15M\",\r\n \"currentDedicatedNodes\": 0,\r\n \"targetDedicatedNodes\": 2,\r\n \"currentLowPriorityNodes\": 0,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": true,\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"osVersion\": \"*\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"removenodepool\",\r\n \"url\": \"https://mikeportal.eastus.batch.azure.com/pools/removenodepool\",\r\n \"eTag\": \"0x8D969772FE80CC3\",\r\n \"lastModified\": \"2021-08-27T16:24:47.5397315Z\",\r\n \"creationTime\": \"2021-08-27T16:24:47.5397315Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2021-08-27T16:24:47.5397315Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2021-08-27T16:24:47.5397315Z\",\r\n \"vmSize\": \"standard_d1_v2\",\r\n \"resizeTimeout\": \"PT15M\",\r\n \"currentDedicatedNodes\": 0,\r\n \"targetDedicatedNodes\": 2,\r\n \"currentLowPriorityNodes\": 0,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": true,\r\n \"taskSlotsPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"osVersion\": \"*\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/pools/removenodepool?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L3Bvb2xzL3JlbW92ZW5vZGVwb29sP2FwaS12ZXJzaW9uPTIwMjAtMDMtMDEuMTEuMA==", + "RequestUri": "/pools/removenodepool?api-version=2021-06-01.14.0", + "EncodedRequestUri": "L3Bvb2xzL3JlbW92ZW5vZGVwb29sP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDEuMTQuMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "0396fffd-9c91-4297-9910-f9c2b8f79306" + "ce5c002a-415b-4628-aef6-db8f5a603df3" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:26:40 GMT" + "Fri, 27 Aug 2021 16:24:53 GMT" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/13.0.20.15503", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", "AzurePowershell/Az1.0.0" ] }, @@ -153,13 +153,13 @@ "chunked" ], "ETag": [ - "0x8D80CC42B3DAAC8" + "0x8D969772FE80CC3" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "fba39a9f-c2da-471b-acb4-9dd863a51faa" + "575c435f-54aa-4a60-8b75-c5d209c7421c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -171,38 +171,38 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 22:26:40 GMT" + "Fri, 27 Aug 2021 16:24:52 GMT" ], "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Tue, 09 Jun 2020 22:26:35 GMT" + "Fri, 27 Aug 2021 16:24:47 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://prodtest6.francecentral.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"removenodepool\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/pools/removenodepool\",\r\n \"eTag\": \"0x8D80CC42B3DAAC8\",\r\n \"lastModified\": \"2020-06-09T22:26:35.1510216Z\",\r\n \"creationTime\": \"2020-06-09T22:26:35.1510216Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2020-06-09T22:26:35.1510216Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2020-06-09T22:26:35.1510216Z\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT15M\",\r\n \"currentDedicatedNodes\": 0,\r\n \"targetDedicatedNodes\": 2,\r\n \"currentLowPriorityNodes\": 0,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": true,\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"osVersion\": \"*\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"removenodepool\",\r\n \"url\": \"https://mikeportal.eastus.batch.azure.com/pools/removenodepool\",\r\n \"eTag\": \"0x8D969772FE80CC3\",\r\n \"lastModified\": \"2021-08-27T16:24:47.5397315Z\",\r\n \"creationTime\": \"2021-08-27T16:24:47.5397315Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2021-08-27T16:24:47.5397315Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2021-08-27T16:24:47.5397315Z\",\r\n \"vmSize\": \"standard_d1_v2\",\r\n \"resizeTimeout\": \"PT15M\",\r\n \"currentDedicatedNodes\": 0,\r\n \"targetDedicatedNodes\": 2,\r\n \"currentLowPriorityNodes\": 0,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": true,\r\n \"taskSlotsPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"osVersion\": \"*\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/pools/removenodepool?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L3Bvb2xzL3JlbW92ZW5vZGVwb29sP2FwaS12ZXJzaW9uPTIwMjAtMDMtMDEuMTEuMA==", + "RequestUri": "/pools/removenodepool?api-version=2021-06-01.14.0", + "EncodedRequestUri": "L3Bvb2xzL3JlbW92ZW5vZGVwb29sP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDEuMTQuMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "3774c774-7fbb-4113-949c-cbbbedb04bb0" + "67eb151c-4771-4987-8222-51fd5b591153" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:26:45 GMT" + "Fri, 27 Aug 2021 16:24:58 GMT" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/13.0.20.15503", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", "AzurePowershell/Az1.0.0" ] }, @@ -211,13 +211,13 @@ "chunked" ], "ETag": [ - "0x8D80CC42B3DAAC8" + "0x8D969772FE80CC3" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "21f7a776-6011-4b69-95c4-2fccd1c479c1" + "066587a1-b7b9-4179-a75e-7acebc716b4c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -229,38 +229,38 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 22:26:45 GMT" + "Fri, 27 Aug 2021 16:24:57 GMT" ], "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Tue, 09 Jun 2020 22:26:35 GMT" + "Fri, 27 Aug 2021 16:24:47 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://prodtest6.francecentral.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"removenodepool\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/pools/removenodepool\",\r\n \"eTag\": \"0x8D80CC42B3DAAC8\",\r\n \"lastModified\": \"2020-06-09T22:26:35.1510216Z\",\r\n \"creationTime\": \"2020-06-09T22:26:35.1510216Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2020-06-09T22:26:35.1510216Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2020-06-09T22:26:35.1510216Z\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT15M\",\r\n \"currentDedicatedNodes\": 0,\r\n \"targetDedicatedNodes\": 2,\r\n \"currentLowPriorityNodes\": 0,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": true,\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"osVersion\": \"*\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"removenodepool\",\r\n \"url\": \"https://mikeportal.eastus.batch.azure.com/pools/removenodepool\",\r\n \"eTag\": \"0x8D969772FE80CC3\",\r\n \"lastModified\": \"2021-08-27T16:24:47.5397315Z\",\r\n \"creationTime\": \"2021-08-27T16:24:47.5397315Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2021-08-27T16:24:47.5397315Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2021-08-27T16:24:47.5397315Z\",\r\n \"vmSize\": \"standard_d1_v2\",\r\n \"resizeTimeout\": \"PT15M\",\r\n \"currentDedicatedNodes\": 0,\r\n \"targetDedicatedNodes\": 2,\r\n \"currentLowPriorityNodes\": 0,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": true,\r\n \"taskSlotsPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"osVersion\": \"*\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/pools/removenodepool?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L3Bvb2xzL3JlbW92ZW5vZGVwb29sP2FwaS12ZXJzaW9uPTIwMjAtMDMtMDEuMTEuMA==", + "RequestUri": "/pools/removenodepool?api-version=2021-06-01.14.0", + "EncodedRequestUri": "L3Bvb2xzL3JlbW92ZW5vZGVwb29sP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDEuMTQuMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "a74107d0-125c-4b34-9d53-393293cf6851" + "829f32d0-e506-40d3-a658-1b70d4174ed3" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:26:50 GMT" + "Fri, 27 Aug 2021 16:25:03 GMT" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/13.0.20.15503", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", "AzurePowershell/Az1.0.0" ] }, @@ -269,13 +269,13 @@ "chunked" ], "ETag": [ - "0x8D80CC42B3DAAC8" + "0x8D969772FE80CC3" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "02d698f9-fa05-49ce-baf1-f94a35b1e754" + "9b25afc4-b883-4e86-9ffb-0d8a21bbeb6b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -287,38 +287,38 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 22:26:49 GMT" + "Fri, 27 Aug 2021 16:25:02 GMT" ], "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Tue, 09 Jun 2020 22:26:35 GMT" + "Fri, 27 Aug 2021 16:24:47 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://prodtest6.francecentral.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"removenodepool\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/pools/removenodepool\",\r\n \"eTag\": \"0x8D80CC42B3DAAC8\",\r\n \"lastModified\": \"2020-06-09T22:26:35.1510216Z\",\r\n \"creationTime\": \"2020-06-09T22:26:35.1510216Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2020-06-09T22:26:35.1510216Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2020-06-09T22:26:35.1510216Z\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT15M\",\r\n \"currentDedicatedNodes\": 0,\r\n \"targetDedicatedNodes\": 2,\r\n \"currentLowPriorityNodes\": 0,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": true,\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"osVersion\": \"*\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"removenodepool\",\r\n \"url\": \"https://mikeportal.eastus.batch.azure.com/pools/removenodepool\",\r\n \"eTag\": \"0x8D969772FE80CC3\",\r\n \"lastModified\": \"2021-08-27T16:24:47.5397315Z\",\r\n \"creationTime\": \"2021-08-27T16:24:47.5397315Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2021-08-27T16:24:47.5397315Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2021-08-27T16:24:47.5397315Z\",\r\n \"vmSize\": \"standard_d1_v2\",\r\n \"resizeTimeout\": \"PT15M\",\r\n \"currentDedicatedNodes\": 0,\r\n \"targetDedicatedNodes\": 2,\r\n \"currentLowPriorityNodes\": 0,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": true,\r\n \"taskSlotsPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"osVersion\": \"*\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/pools/removenodepool?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L3Bvb2xzL3JlbW92ZW5vZGVwb29sP2FwaS12ZXJzaW9uPTIwMjAtMDMtMDEuMTEuMA==", + "RequestUri": "/pools/removenodepool?api-version=2021-06-01.14.0", + "EncodedRequestUri": "L3Bvb2xzL3JlbW92ZW5vZGVwb29sP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDEuMTQuMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "380a4731-2da0-41af-a903-6e16e3ca0698" + "8683c055-5005-4e7b-bfe7-41de5b64ebb3" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:26:55 GMT" + "Fri, 27 Aug 2021 16:25:08 GMT" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/13.0.20.15503", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", "AzurePowershell/Az1.0.0" ] }, @@ -327,13 +327,13 @@ "chunked" ], "ETag": [ - "0x8D80CC42B3DAAC8" + "0x8D969772FE80CC3" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "9abb8f15-2273-4b16-a494-0aa612b68ed4" + "7d373512-6902-4644-bce3-02ef65e7b9f4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -345,38 +345,38 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 22:26:56 GMT" + "Fri, 27 Aug 2021 16:25:07 GMT" ], "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Tue, 09 Jun 2020 22:26:35 GMT" + "Fri, 27 Aug 2021 16:24:47 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://prodtest6.francecentral.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"removenodepool\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/pools/removenodepool\",\r\n \"eTag\": \"0x8D80CC42B3DAAC8\",\r\n \"lastModified\": \"2020-06-09T22:26:35.1510216Z\",\r\n \"creationTime\": \"2020-06-09T22:26:35.1510216Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2020-06-09T22:26:35.1510216Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2020-06-09T22:26:35.1510216Z\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT15M\",\r\n \"currentDedicatedNodes\": 0,\r\n \"targetDedicatedNodes\": 2,\r\n \"currentLowPriorityNodes\": 0,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": true,\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"osVersion\": \"*\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"removenodepool\",\r\n \"url\": \"https://mikeportal.eastus.batch.azure.com/pools/removenodepool\",\r\n \"eTag\": \"0x8D969772FE80CC3\",\r\n \"lastModified\": \"2021-08-27T16:24:47.5397315Z\",\r\n \"creationTime\": \"2021-08-27T16:24:47.5397315Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2021-08-27T16:24:47.5397315Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2021-08-27T16:24:47.5397315Z\",\r\n \"vmSize\": \"standard_d1_v2\",\r\n \"resizeTimeout\": \"PT15M\",\r\n \"currentDedicatedNodes\": 0,\r\n \"targetDedicatedNodes\": 2,\r\n \"currentLowPriorityNodes\": 0,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": true,\r\n \"taskSlotsPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"osVersion\": \"*\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/pools/removenodepool?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L3Bvb2xzL3JlbW92ZW5vZGVwb29sP2FwaS12ZXJzaW9uPTIwMjAtMDMtMDEuMTEuMA==", + "RequestUri": "/pools/removenodepool?api-version=2021-06-01.14.0", + "EncodedRequestUri": "L3Bvb2xzL3JlbW92ZW5vZGVwb29sP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDEuMTQuMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "43b34b01-127d-42ff-aa9b-e13443001364" + "85a233e6-35ff-44af-9bec-b4a56162244f" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:27:01 GMT" + "Fri, 27 Aug 2021 16:25:13 GMT" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/13.0.20.15503", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", "AzurePowershell/Az1.0.0" ] }, @@ -385,13 +385,13 @@ "chunked" ], "ETag": [ - "0x8D80CC42B3DAAC8" + "0x8D969772FE80CC3" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "b35d166e-bdba-41ef-97e0-f0facd2f75c2" + "fc13d2a3-0cde-41b8-8e1a-3de935174743" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -403,38 +403,38 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 22:27:01 GMT" + "Fri, 27 Aug 2021 16:25:12 GMT" ], "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Tue, 09 Jun 2020 22:26:35 GMT" + "Fri, 27 Aug 2021 16:24:47 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://prodtest6.francecentral.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"removenodepool\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/pools/removenodepool\",\r\n \"eTag\": \"0x8D80CC42B3DAAC8\",\r\n \"lastModified\": \"2020-06-09T22:26:35.1510216Z\",\r\n \"creationTime\": \"2020-06-09T22:26:35.1510216Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2020-06-09T22:26:35.1510216Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2020-06-09T22:26:35.1510216Z\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT15M\",\r\n \"currentDedicatedNodes\": 0,\r\n \"targetDedicatedNodes\": 2,\r\n \"currentLowPriorityNodes\": 0,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": true,\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"osVersion\": \"*\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"removenodepool\",\r\n \"url\": \"https://mikeportal.eastus.batch.azure.com/pools/removenodepool\",\r\n \"eTag\": \"0x8D969772FE80CC3\",\r\n \"lastModified\": \"2021-08-27T16:24:47.5397315Z\",\r\n \"creationTime\": \"2021-08-27T16:24:47.5397315Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2021-08-27T16:24:47.5397315Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2021-08-27T16:24:47.5397315Z\",\r\n \"vmSize\": \"standard_d1_v2\",\r\n \"resizeTimeout\": \"PT15M\",\r\n \"currentDedicatedNodes\": 0,\r\n \"targetDedicatedNodes\": 2,\r\n \"currentLowPriorityNodes\": 0,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": true,\r\n \"taskSlotsPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"osVersion\": \"*\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/pools/removenodepool?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L3Bvb2xzL3JlbW92ZW5vZGVwb29sP2FwaS12ZXJzaW9uPTIwMjAtMDMtMDEuMTEuMA==", + "RequestUri": "/pools/removenodepool?api-version=2021-06-01.14.0", + "EncodedRequestUri": "L3Bvb2xzL3JlbW92ZW5vZGVwb29sP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDEuMTQuMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "96bde0ac-829e-4847-9baf-cda66ddc099e" + "536745bb-c86e-4172-931b-1fa5701d127d" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:27:06 GMT" + "Fri, 27 Aug 2021 16:25:19 GMT" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/13.0.20.15503", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", "AzurePowershell/Az1.0.0" ] }, @@ -443,13 +443,13 @@ "chunked" ], "ETag": [ - "0x8D80CC42B3DAAC8" + "0x8D969772FE80CC3" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "46682991-9baf-428e-819a-69f59c83c672" + "00ff50c9-2123-4583-ba66-624bffcf320f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -461,38 +461,38 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 22:27:05 GMT" + "Fri, 27 Aug 2021 16:25:17 GMT" ], "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Tue, 09 Jun 2020 22:26:35 GMT" + "Fri, 27 Aug 2021 16:24:47 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://prodtest6.francecentral.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"removenodepool\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/pools/removenodepool\",\r\n \"eTag\": \"0x8D80CC42B3DAAC8\",\r\n \"lastModified\": \"2020-06-09T22:26:35.1510216Z\",\r\n \"creationTime\": \"2020-06-09T22:26:35.1510216Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2020-06-09T22:26:35.1510216Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2020-06-09T22:26:35.1510216Z\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT15M\",\r\n \"currentDedicatedNodes\": 0,\r\n \"targetDedicatedNodes\": 2,\r\n \"currentLowPriorityNodes\": 0,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": true,\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"osVersion\": \"*\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"removenodepool\",\r\n \"url\": \"https://mikeportal.eastus.batch.azure.com/pools/removenodepool\",\r\n \"eTag\": \"0x8D969772FE80CC3\",\r\n \"lastModified\": \"2021-08-27T16:24:47.5397315Z\",\r\n \"creationTime\": \"2021-08-27T16:24:47.5397315Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2021-08-27T16:24:47.5397315Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2021-08-27T16:24:47.5397315Z\",\r\n \"vmSize\": \"standard_d1_v2\",\r\n \"resizeTimeout\": \"PT15M\",\r\n \"currentDedicatedNodes\": 0,\r\n \"targetDedicatedNodes\": 2,\r\n \"currentLowPriorityNodes\": 0,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": true,\r\n \"taskSlotsPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"osVersion\": \"*\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/pools/removenodepool?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L3Bvb2xzL3JlbW92ZW5vZGVwb29sP2FwaS12ZXJzaW9uPTIwMjAtMDMtMDEuMTEuMA==", + "RequestUri": "/pools/removenodepool?api-version=2021-06-01.14.0", + "EncodedRequestUri": "L3Bvb2xzL3JlbW92ZW5vZGVwb29sP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDEuMTQuMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "2f765e1f-9fd1-48e0-94d1-7b3062f5dcbd" + "d584d537-d8ff-4ce5-881d-0d205da2af65" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:27:11 GMT" + "Fri, 27 Aug 2021 16:25:24 GMT" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/13.0.20.15503", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", "AzurePowershell/Az1.0.0" ] }, @@ -501,13 +501,13 @@ "chunked" ], "ETag": [ - "0x8D80CC42B3DAAC8" + "0x8D969772FE80CC3" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "071195f2-2985-4e0d-a414-56b2385d2a3e" + "b04b02eb-4128-4c41-965b-ed767a638bde" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -519,38 +519,38 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 22:27:10 GMT" + "Fri, 27 Aug 2021 16:25:22 GMT" ], "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Tue, 09 Jun 2020 22:26:35 GMT" + "Fri, 27 Aug 2021 16:24:47 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://prodtest6.francecentral.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"removenodepool\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/pools/removenodepool\",\r\n \"eTag\": \"0x8D80CC42B3DAAC8\",\r\n \"lastModified\": \"2020-06-09T22:26:35.1510216Z\",\r\n \"creationTime\": \"2020-06-09T22:26:35.1510216Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2020-06-09T22:26:35.1510216Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2020-06-09T22:26:35.1510216Z\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT15M\",\r\n \"currentDedicatedNodes\": 0,\r\n \"targetDedicatedNodes\": 2,\r\n \"currentLowPriorityNodes\": 0,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": true,\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"osVersion\": \"*\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"removenodepool\",\r\n \"url\": \"https://mikeportal.eastus.batch.azure.com/pools/removenodepool\",\r\n \"eTag\": \"0x8D969772FE80CC3\",\r\n \"lastModified\": \"2021-08-27T16:24:47.5397315Z\",\r\n \"creationTime\": \"2021-08-27T16:24:47.5397315Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2021-08-27T16:24:47.5397315Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2021-08-27T16:24:47.5397315Z\",\r\n \"vmSize\": \"standard_d1_v2\",\r\n \"resizeTimeout\": \"PT15M\",\r\n \"currentDedicatedNodes\": 0,\r\n \"targetDedicatedNodes\": 2,\r\n \"currentLowPriorityNodes\": 0,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": true,\r\n \"taskSlotsPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"osVersion\": \"*\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/pools/removenodepool?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L3Bvb2xzL3JlbW92ZW5vZGVwb29sP2FwaS12ZXJzaW9uPTIwMjAtMDMtMDEuMTEuMA==", + "RequestUri": "/pools/removenodepool?api-version=2021-06-01.14.0", + "EncodedRequestUri": "L3Bvb2xzL3JlbW92ZW5vZGVwb29sP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDEuMTQuMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "98365e1e-afba-4cb2-8f6b-6c9a77da8ed9" + "2cdf56a8-924c-4dfc-90b4-aec1d1934f8e" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:27:16 GMT" + "Fri, 27 Aug 2021 16:25:29 GMT" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/13.0.20.15503", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", "AzurePowershell/Az1.0.0" ] }, @@ -559,13 +559,13 @@ "chunked" ], "ETag": [ - "0x8D80CC42B3DAAC8" + "0x8D969772FE80CC3" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "f54beb8e-1940-4cca-a340-464e9a5c9c2a" + "96ae57db-0e2d-426c-b4e8-685d936cc844" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -577,38 +577,38 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 22:27:16 GMT" + "Fri, 27 Aug 2021 16:25:27 GMT" ], "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Tue, 09 Jun 2020 22:26:35 GMT" + "Fri, 27 Aug 2021 16:24:47 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://prodtest6.francecentral.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"removenodepool\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/pools/removenodepool\",\r\n \"eTag\": \"0x8D80CC42B3DAAC8\",\r\n \"lastModified\": \"2020-06-09T22:26:35.1510216Z\",\r\n \"creationTime\": \"2020-06-09T22:26:35.1510216Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2020-06-09T22:26:35.1510216Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2020-06-09T22:26:35.1510216Z\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT15M\",\r\n \"currentDedicatedNodes\": 0,\r\n \"targetDedicatedNodes\": 2,\r\n \"currentLowPriorityNodes\": 0,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": true,\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"osVersion\": \"*\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"removenodepool\",\r\n \"url\": \"https://mikeportal.eastus.batch.azure.com/pools/removenodepool\",\r\n \"eTag\": \"0x8D969772FE80CC3\",\r\n \"lastModified\": \"2021-08-27T16:24:47.5397315Z\",\r\n \"creationTime\": \"2021-08-27T16:24:47.5397315Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2021-08-27T16:24:47.5397315Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2021-08-27T16:24:47.5397315Z\",\r\n \"vmSize\": \"standard_d1_v2\",\r\n \"resizeTimeout\": \"PT15M\",\r\n \"currentDedicatedNodes\": 0,\r\n \"targetDedicatedNodes\": 2,\r\n \"currentLowPriorityNodes\": 0,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": true,\r\n \"taskSlotsPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"osVersion\": \"*\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/pools/removenodepool?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L3Bvb2xzL3JlbW92ZW5vZGVwb29sP2FwaS12ZXJzaW9uPTIwMjAtMDMtMDEuMTEuMA==", + "RequestUri": "/pools/removenodepool?api-version=2021-06-01.14.0", + "EncodedRequestUri": "L3Bvb2xzL3JlbW92ZW5vZGVwb29sP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDEuMTQuMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "420dfeb0-5973-4ace-8873-ecc5285399a5" + "6538af00-2335-45b3-8fe1-708bcd59e0c5" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:27:21 GMT" + "Fri, 27 Aug 2021 16:25:34 GMT" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/13.0.20.15503", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", "AzurePowershell/Az1.0.0" ] }, @@ -617,13 +617,13 @@ "chunked" ], "ETag": [ - "0x8D80CC42B3DAAC8" + "0x8D969772FE80CC3" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "914a76d8-7cd7-4a81-bd60-d6e1dabaa67f" + "381c2637-b89b-4c8e-b724-d4102fcc362d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -635,38 +635,38 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 22:27:21 GMT" + "Fri, 27 Aug 2021 16:25:32 GMT" ], "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Tue, 09 Jun 2020 22:26:35 GMT" + "Fri, 27 Aug 2021 16:24:47 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://prodtest6.francecentral.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"removenodepool\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/pools/removenodepool\",\r\n \"eTag\": \"0x8D80CC42B3DAAC8\",\r\n \"lastModified\": \"2020-06-09T22:26:35.1510216Z\",\r\n \"creationTime\": \"2020-06-09T22:26:35.1510216Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2020-06-09T22:26:35.1510216Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2020-06-09T22:26:35.1510216Z\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT15M\",\r\n \"currentDedicatedNodes\": 0,\r\n \"targetDedicatedNodes\": 2,\r\n \"currentLowPriorityNodes\": 0,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": true,\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"osVersion\": \"*\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"removenodepool\",\r\n \"url\": \"https://mikeportal.eastus.batch.azure.com/pools/removenodepool\",\r\n \"eTag\": \"0x8D969772FE80CC3\",\r\n \"lastModified\": \"2021-08-27T16:24:47.5397315Z\",\r\n \"creationTime\": \"2021-08-27T16:24:47.5397315Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2021-08-27T16:24:47.5397315Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2021-08-27T16:24:47.5397315Z\",\r\n \"vmSize\": \"standard_d1_v2\",\r\n \"resizeTimeout\": \"PT15M\",\r\n \"currentDedicatedNodes\": 0,\r\n \"targetDedicatedNodes\": 2,\r\n \"currentLowPriorityNodes\": 0,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": true,\r\n \"taskSlotsPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"osVersion\": \"*\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/pools/removenodepool?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L3Bvb2xzL3JlbW92ZW5vZGVwb29sP2FwaS12ZXJzaW9uPTIwMjAtMDMtMDEuMTEuMA==", + "RequestUri": "/pools/removenodepool?api-version=2021-06-01.14.0", + "EncodedRequestUri": "L3Bvb2xzL3JlbW92ZW5vZGVwb29sP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDEuMTQuMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "d8a15137-90c4-43a0-8f0d-e6c054554e6d" + "382fd2c1-b856-4a63-bdc0-85ece626f6eb" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:27:26 GMT" + "Fri, 27 Aug 2021 16:25:39 GMT" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/13.0.20.15503", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", "AzurePowershell/Az1.0.0" ] }, @@ -675,13 +675,13 @@ "chunked" ], "ETag": [ - "0x8D80CC42B3DAAC8" + "0x8D969772FE80CC3" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "58687d0a-225e-4e4c-84aa-056e3f04837d" + "c37b7497-5c74-4723-94b1-0787650a945a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -693,38 +693,38 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 22:27:26 GMT" + "Fri, 27 Aug 2021 16:25:37 GMT" ], "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Tue, 09 Jun 2020 22:26:35 GMT" + "Fri, 27 Aug 2021 16:24:47 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://prodtest6.francecentral.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"removenodepool\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/pools/removenodepool\",\r\n \"eTag\": \"0x8D80CC42B3DAAC8\",\r\n \"lastModified\": \"2020-06-09T22:26:35.1510216Z\",\r\n \"creationTime\": \"2020-06-09T22:26:35.1510216Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2020-06-09T22:26:35.1510216Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2020-06-09T22:26:35.1510216Z\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT15M\",\r\n \"currentDedicatedNodes\": 0,\r\n \"targetDedicatedNodes\": 2,\r\n \"currentLowPriorityNodes\": 0,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": true,\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"osVersion\": \"*\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"removenodepool\",\r\n \"url\": \"https://mikeportal.eastus.batch.azure.com/pools/removenodepool\",\r\n \"eTag\": \"0x8D969772FE80CC3\",\r\n \"lastModified\": \"2021-08-27T16:24:47.5397315Z\",\r\n \"creationTime\": \"2021-08-27T16:24:47.5397315Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2021-08-27T16:24:47.5397315Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2021-08-27T16:24:47.5397315Z\",\r\n \"vmSize\": \"standard_d1_v2\",\r\n \"resizeTimeout\": \"PT15M\",\r\n \"currentDedicatedNodes\": 0,\r\n \"targetDedicatedNodes\": 2,\r\n \"currentLowPriorityNodes\": 0,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": true,\r\n \"taskSlotsPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"osVersion\": \"*\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/pools/removenodepool?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L3Bvb2xzL3JlbW92ZW5vZGVwb29sP2FwaS12ZXJzaW9uPTIwMjAtMDMtMDEuMTEuMA==", + "RequestUri": "/pools/removenodepool?api-version=2021-06-01.14.0", + "EncodedRequestUri": "L3Bvb2xzL3JlbW92ZW5vZGVwb29sP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDEuMTQuMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "4fb3e977-266f-4f1c-9244-b981ca153210" + "9afd7935-0882-4953-b108-fd9f70ff2ccb" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:27:32 GMT" + "Fri, 27 Aug 2021 16:25:44 GMT" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/13.0.20.15503", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", "AzurePowershell/Az1.0.0" ] }, @@ -733,13 +733,13 @@ "chunked" ], "ETag": [ - "0x8D80CC42B3DAAC8" + "0x8D969772FE80CC3" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "bcc61a82-63d7-4b92-8fe0-68e8e8792fe8" + "d697c9c2-72df-437d-9a61-fdf17bad1820" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -751,38 +751,38 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 22:27:32 GMT" + "Fri, 27 Aug 2021 16:25:42 GMT" ], "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Tue, 09 Jun 2020 22:26:35 GMT" + "Fri, 27 Aug 2021 16:24:47 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://prodtest6.francecentral.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"removenodepool\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/pools/removenodepool\",\r\n \"eTag\": \"0x8D80CC42B3DAAC8\",\r\n \"lastModified\": \"2020-06-09T22:26:35.1510216Z\",\r\n \"creationTime\": \"2020-06-09T22:26:35.1510216Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2020-06-09T22:26:35.1510216Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2020-06-09T22:26:35.1510216Z\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT15M\",\r\n \"currentDedicatedNodes\": 0,\r\n \"targetDedicatedNodes\": 2,\r\n \"currentLowPriorityNodes\": 0,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": true,\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"osVersion\": \"*\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"removenodepool\",\r\n \"url\": \"https://mikeportal.eastus.batch.azure.com/pools/removenodepool\",\r\n \"eTag\": \"0x8D969772FE80CC3\",\r\n \"lastModified\": \"2021-08-27T16:24:47.5397315Z\",\r\n \"creationTime\": \"2021-08-27T16:24:47.5397315Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2021-08-27T16:24:47.5397315Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2021-08-27T16:24:47.5397315Z\",\r\n \"vmSize\": \"standard_d1_v2\",\r\n \"resizeTimeout\": \"PT15M\",\r\n \"currentDedicatedNodes\": 0,\r\n \"targetDedicatedNodes\": 2,\r\n \"currentLowPriorityNodes\": 0,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": true,\r\n \"taskSlotsPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"osVersion\": \"*\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/pools/removenodepool?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L3Bvb2xzL3JlbW92ZW5vZGVwb29sP2FwaS12ZXJzaW9uPTIwMjAtMDMtMDEuMTEuMA==", + "RequestUri": "/pools/removenodepool?api-version=2021-06-01.14.0", + "EncodedRequestUri": "L3Bvb2xzL3JlbW92ZW5vZGVwb29sP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDEuMTQuMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "11f78551-fe32-4b7e-8472-3d3cffc2cd64" + "f484fa5c-39a1-4f6d-afca-b44c0385abc6" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:27:37 GMT" + "Fri, 27 Aug 2021 16:25:49 GMT" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/13.0.20.15503", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", "AzurePowershell/Az1.0.0" ] }, @@ -791,13 +791,13 @@ "chunked" ], "ETag": [ - "0x8D80CC42B3DAAC8" + "0x8D969772FE80CC3" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "07ae0165-0d89-4290-90f2-72447bd9564e" + "59b6624b-f505-421d-8f1d-79dfe5d88e68" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -809,38 +809,38 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 22:27:37 GMT" + "Fri, 27 Aug 2021 16:25:47 GMT" ], "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Tue, 09 Jun 2020 22:26:35 GMT" + "Fri, 27 Aug 2021 16:24:47 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://prodtest6.francecentral.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"removenodepool\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/pools/removenodepool\",\r\n \"eTag\": \"0x8D80CC42B3DAAC8\",\r\n \"lastModified\": \"2020-06-09T22:26:35.1510216Z\",\r\n \"creationTime\": \"2020-06-09T22:26:35.1510216Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2020-06-09T22:26:35.1510216Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2020-06-09T22:26:35.1510216Z\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT15M\",\r\n \"currentDedicatedNodes\": 0,\r\n \"targetDedicatedNodes\": 2,\r\n \"currentLowPriorityNodes\": 0,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": true,\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"osVersion\": \"*\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"removenodepool\",\r\n \"url\": \"https://mikeportal.eastus.batch.azure.com/pools/removenodepool\",\r\n \"eTag\": \"0x8D969772FE80CC3\",\r\n \"lastModified\": \"2021-08-27T16:24:47.5397315Z\",\r\n \"creationTime\": \"2021-08-27T16:24:47.5397315Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2021-08-27T16:24:47.5397315Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2021-08-27T16:24:47.5397315Z\",\r\n \"vmSize\": \"standard_d1_v2\",\r\n \"resizeTimeout\": \"PT15M\",\r\n \"currentDedicatedNodes\": 0,\r\n \"targetDedicatedNodes\": 2,\r\n \"currentLowPriorityNodes\": 0,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": true,\r\n \"taskSlotsPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"osVersion\": \"*\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/pools/removenodepool?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L3Bvb2xzL3JlbW92ZW5vZGVwb29sP2FwaS12ZXJzaW9uPTIwMjAtMDMtMDEuMTEuMA==", + "RequestUri": "/pools/removenodepool?api-version=2021-06-01.14.0", + "EncodedRequestUri": "L3Bvb2xzL3JlbW92ZW5vZGVwb29sP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDEuMTQuMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "94d65848-e0b3-449a-85d5-e640d1a1919a" + "c2043973-de7b-41bd-9cb5-3f8acf6a71ad" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:27:42 GMT" + "Fri, 27 Aug 2021 16:25:54 GMT" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/13.0.20.15503", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", "AzurePowershell/Az1.0.0" ] }, @@ -849,13 +849,13 @@ "chunked" ], "ETag": [ - "0x8D80CC42B3DAAC8" + "0x8D969772FE80CC3" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "cb73dfbf-9968-4df7-8cb0-ea64b9b4f0e6" + "5aeffd7f-e438-46fd-9355-c6e820e9146c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -867,38 +867,38 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 22:27:42 GMT" + "Fri, 27 Aug 2021 16:25:52 GMT" ], "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Tue, 09 Jun 2020 22:26:35 GMT" + "Fri, 27 Aug 2021 16:24:47 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://prodtest6.francecentral.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"removenodepool\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/pools/removenodepool\",\r\n \"eTag\": \"0x8D80CC42B3DAAC8\",\r\n \"lastModified\": \"2020-06-09T22:26:35.1510216Z\",\r\n \"creationTime\": \"2020-06-09T22:26:35.1510216Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2020-06-09T22:26:35.1510216Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2020-06-09T22:26:35.1510216Z\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT15M\",\r\n \"currentDedicatedNodes\": 0,\r\n \"targetDedicatedNodes\": 2,\r\n \"currentLowPriorityNodes\": 0,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": true,\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"osVersion\": \"*\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"removenodepool\",\r\n \"url\": \"https://mikeportal.eastus.batch.azure.com/pools/removenodepool\",\r\n \"eTag\": \"0x8D969772FE80CC3\",\r\n \"lastModified\": \"2021-08-27T16:24:47.5397315Z\",\r\n \"creationTime\": \"2021-08-27T16:24:47.5397315Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2021-08-27T16:24:47.5397315Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2021-08-27T16:24:47.5397315Z\",\r\n \"vmSize\": \"standard_d1_v2\",\r\n \"resizeTimeout\": \"PT15M\",\r\n \"currentDedicatedNodes\": 0,\r\n \"targetDedicatedNodes\": 2,\r\n \"currentLowPriorityNodes\": 0,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": true,\r\n \"taskSlotsPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"osVersion\": \"*\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/pools/removenodepool?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L3Bvb2xzL3JlbW92ZW5vZGVwb29sP2FwaS12ZXJzaW9uPTIwMjAtMDMtMDEuMTEuMA==", + "RequestUri": "/pools/removenodepool?api-version=2021-06-01.14.0", + "EncodedRequestUri": "L3Bvb2xzL3JlbW92ZW5vZGVwb29sP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDEuMTQuMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "85d1f6fc-9a19-457d-8ee7-bc75dd07920a" + "6019cb5b-707f-4c4f-bdb7-887d96f61891" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:27:47 GMT" + "Fri, 27 Aug 2021 16:25:59 GMT" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/13.0.20.15503", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", "AzurePowershell/Az1.0.0" ] }, @@ -907,13 +907,13 @@ "chunked" ], "ETag": [ - "0x8D80CC42B3DAAC8" + "0x8D969772FE80CC3" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "2a122944-d033-4fc2-8157-1a47d6dec0e9" + "4c526c5f-88f2-4497-9065-aaa845ea10d4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -925,38 +925,38 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 22:27:47 GMT" + "Fri, 27 Aug 2021 16:25:57 GMT" ], "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Tue, 09 Jun 2020 22:26:35 GMT" + "Fri, 27 Aug 2021 16:24:47 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://prodtest6.francecentral.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"removenodepool\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/pools/removenodepool\",\r\n \"eTag\": \"0x8D80CC42B3DAAC8\",\r\n \"lastModified\": \"2020-06-09T22:26:35.1510216Z\",\r\n \"creationTime\": \"2020-06-09T22:26:35.1510216Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2020-06-09T22:26:35.1510216Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2020-06-09T22:26:35.1510216Z\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT15M\",\r\n \"currentDedicatedNodes\": 0,\r\n \"targetDedicatedNodes\": 2,\r\n \"currentLowPriorityNodes\": 0,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": true,\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"osVersion\": \"*\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"removenodepool\",\r\n \"url\": \"https://mikeportal.eastus.batch.azure.com/pools/removenodepool\",\r\n \"eTag\": \"0x8D969772FE80CC3\",\r\n \"lastModified\": \"2021-08-27T16:24:47.5397315Z\",\r\n \"creationTime\": \"2021-08-27T16:24:47.5397315Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2021-08-27T16:24:47.5397315Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2021-08-27T16:24:47.5397315Z\",\r\n \"vmSize\": \"standard_d1_v2\",\r\n \"resizeTimeout\": \"PT15M\",\r\n \"currentDedicatedNodes\": 0,\r\n \"targetDedicatedNodes\": 2,\r\n \"currentLowPriorityNodes\": 0,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": true,\r\n \"taskSlotsPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"osVersion\": \"*\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/pools/removenodepool?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L3Bvb2xzL3JlbW92ZW5vZGVwb29sP2FwaS12ZXJzaW9uPTIwMjAtMDMtMDEuMTEuMA==", + "RequestUri": "/pools/removenodepool?api-version=2021-06-01.14.0", + "EncodedRequestUri": "L3Bvb2xzL3JlbW92ZW5vZGVwb29sP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDEuMTQuMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "92282d07-b150-4889-a3e9-53abda88581d" + "fc40531d-0b55-442c-b1c0-2f4f2e2a8617" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:27:52 GMT" + "Fri, 27 Aug 2021 16:26:04 GMT" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/13.0.20.15503", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", "AzurePowershell/Az1.0.0" ] }, @@ -965,13 +965,13 @@ "chunked" ], "ETag": [ - "0x8D80CC42B3DAAC8" + "0x8D969772FE80CC3" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "145a8763-f58a-45f6-b927-cace39b1f0ca" + "eae5853b-8ae3-4c6c-bc96-4d4334d1da1c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -983,38 +983,38 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 22:27:52 GMT" + "Fri, 27 Aug 2021 16:26:02 GMT" ], "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Tue, 09 Jun 2020 22:26:35 GMT" + "Fri, 27 Aug 2021 16:24:47 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://prodtest6.francecentral.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"removenodepool\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/pools/removenodepool\",\r\n \"eTag\": \"0x8D80CC42B3DAAC8\",\r\n \"lastModified\": \"2020-06-09T22:26:35.1510216Z\",\r\n \"creationTime\": \"2020-06-09T22:26:35.1510216Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2020-06-09T22:26:35.1510216Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2020-06-09T22:26:35.1510216Z\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT15M\",\r\n \"currentDedicatedNodes\": 0,\r\n \"targetDedicatedNodes\": 2,\r\n \"currentLowPriorityNodes\": 0,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": true,\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"osVersion\": \"*\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"removenodepool\",\r\n \"url\": \"https://mikeportal.eastus.batch.azure.com/pools/removenodepool\",\r\n \"eTag\": \"0x8D969772FE80CC3\",\r\n \"lastModified\": \"2021-08-27T16:24:47.5397315Z\",\r\n \"creationTime\": \"2021-08-27T16:24:47.5397315Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2021-08-27T16:24:47.5397315Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2021-08-27T16:24:47.5397315Z\",\r\n \"vmSize\": \"standard_d1_v2\",\r\n \"resizeTimeout\": \"PT15M\",\r\n \"currentDedicatedNodes\": 0,\r\n \"targetDedicatedNodes\": 2,\r\n \"currentLowPriorityNodes\": 0,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": true,\r\n \"taskSlotsPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"osVersion\": \"*\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/pools/removenodepool?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L3Bvb2xzL3JlbW92ZW5vZGVwb29sP2FwaS12ZXJzaW9uPTIwMjAtMDMtMDEuMTEuMA==", + "RequestUri": "/pools/removenodepool?api-version=2021-06-01.14.0", + "EncodedRequestUri": "L3Bvb2xzL3JlbW92ZW5vZGVwb29sP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDEuMTQuMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "e4d9993d-8c07-422a-86e2-ca90268b0cfa" + "b69ed7d1-d169-4f59-bb5c-5d83035da2b2" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:27:57 GMT" + "Fri, 27 Aug 2021 16:26:09 GMT" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/13.0.20.15503", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", "AzurePowershell/Az1.0.0" ] }, @@ -1023,13 +1023,13 @@ "chunked" ], "ETag": [ - "0x8D80CC42B3DAAC8" + "0x8D969772FE80CC3" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "ea8234d2-bf87-479f-8d8a-741abd342ea4" + "4103a6a5-99c2-431c-9e0a-a0b682f93e35" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1041,38 +1041,38 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 22:27:57 GMT" + "Fri, 27 Aug 2021 16:26:07 GMT" ], "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Tue, 09 Jun 2020 22:26:35 GMT" + "Fri, 27 Aug 2021 16:24:47 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://prodtest6.francecentral.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"removenodepool\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/pools/removenodepool\",\r\n \"eTag\": \"0x8D80CC42B3DAAC8\",\r\n \"lastModified\": \"2020-06-09T22:26:35.1510216Z\",\r\n \"creationTime\": \"2020-06-09T22:26:35.1510216Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2020-06-09T22:26:35.1510216Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2020-06-09T22:26:35.1510216Z\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT15M\",\r\n \"currentDedicatedNodes\": 0,\r\n \"targetDedicatedNodes\": 2,\r\n \"currentLowPriorityNodes\": 0,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": true,\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"osVersion\": \"*\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"removenodepool\",\r\n \"url\": \"https://mikeportal.eastus.batch.azure.com/pools/removenodepool\",\r\n \"eTag\": \"0x8D969772FE80CC3\",\r\n \"lastModified\": \"2021-08-27T16:24:47.5397315Z\",\r\n \"creationTime\": \"2021-08-27T16:24:47.5397315Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2021-08-27T16:24:47.5397315Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2021-08-27T16:24:47.5397315Z\",\r\n \"vmSize\": \"standard_d1_v2\",\r\n \"resizeTimeout\": \"PT15M\",\r\n \"currentDedicatedNodes\": 0,\r\n \"targetDedicatedNodes\": 2,\r\n \"currentLowPriorityNodes\": 0,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": true,\r\n \"taskSlotsPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"osVersion\": \"*\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/pools/removenodepool?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L3Bvb2xzL3JlbW92ZW5vZGVwb29sP2FwaS12ZXJzaW9uPTIwMjAtMDMtMDEuMTEuMA==", + "RequestUri": "/pools/removenodepool?api-version=2021-06-01.14.0", + "EncodedRequestUri": "L3Bvb2xzL3JlbW92ZW5vZGVwb29sP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDEuMTQuMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "2f3b470a-978e-4cfd-a333-9f67896be2c3" + "5e3d2f3c-b89a-45ea-b308-dbf0e8f1b561" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:28:03 GMT" + "Fri, 27 Aug 2021 16:26:14 GMT" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/13.0.20.15503", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", "AzurePowershell/Az1.0.0" ] }, @@ -1081,13 +1081,13 @@ "chunked" ], "ETag": [ - "0x8D80CC42B3DAAC8" + "0x8D969772FE80CC3" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "6aa427c9-f751-45f7-aa7e-350284a5b821" + "575bb727-7966-4003-93a8-66ca9faa190b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1099,38 +1099,38 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 22:28:03 GMT" + "Fri, 27 Aug 2021 16:26:12 GMT" ], "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Tue, 09 Jun 2020 22:26:35 GMT" + "Fri, 27 Aug 2021 16:24:47 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://prodtest6.francecentral.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"removenodepool\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/pools/removenodepool\",\r\n \"eTag\": \"0x8D80CC42B3DAAC8\",\r\n \"lastModified\": \"2020-06-09T22:26:35.1510216Z\",\r\n \"creationTime\": \"2020-06-09T22:26:35.1510216Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2020-06-09T22:26:35.1510216Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2020-06-09T22:26:35.1510216Z\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT15M\",\r\n \"currentDedicatedNodes\": 0,\r\n \"targetDedicatedNodes\": 2,\r\n \"currentLowPriorityNodes\": 0,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": true,\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"osVersion\": \"*\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"removenodepool\",\r\n \"url\": \"https://mikeportal.eastus.batch.azure.com/pools/removenodepool\",\r\n \"eTag\": \"0x8D969772FE80CC3\",\r\n \"lastModified\": \"2021-08-27T16:24:47.5397315Z\",\r\n \"creationTime\": \"2021-08-27T16:24:47.5397315Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2021-08-27T16:24:47.5397315Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2021-08-27T16:24:47.5397315Z\",\r\n \"vmSize\": \"standard_d1_v2\",\r\n \"resizeTimeout\": \"PT15M\",\r\n \"currentDedicatedNodes\": 0,\r\n \"targetDedicatedNodes\": 2,\r\n \"currentLowPriorityNodes\": 0,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": true,\r\n \"taskSlotsPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"osVersion\": \"*\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/pools/removenodepool?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L3Bvb2xzL3JlbW92ZW5vZGVwb29sP2FwaS12ZXJzaW9uPTIwMjAtMDMtMDEuMTEuMA==", + "RequestUri": "/pools/removenodepool?api-version=2021-06-01.14.0", + "EncodedRequestUri": "L3Bvb2xzL3JlbW92ZW5vZGVwb29sP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDEuMTQuMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "5524e0f8-f15d-41dd-8284-574175f0cb87" + "4386db8c-7e94-4c44-a7e2-6a1a288cabc8" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:28:08 GMT" + "Fri, 27 Aug 2021 16:26:19 GMT" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/13.0.20.15503", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", "AzurePowershell/Az1.0.0" ] }, @@ -1139,13 +1139,13 @@ "chunked" ], "ETag": [ - "0x8D80CC42B3DAAC8" + "0x8D969772FE80CC3" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "aca1e254-96ea-40c4-8184-732bd8c8d73a" + "ad94ba38-eaae-41a0-9707-f2f7ac33e5fd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1157,38 +1157,38 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 22:28:07 GMT" + "Fri, 27 Aug 2021 16:26:17 GMT" ], "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Tue, 09 Jun 2020 22:26:35 GMT" + "Fri, 27 Aug 2021 16:24:47 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://prodtest6.francecentral.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"removenodepool\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/pools/removenodepool\",\r\n \"eTag\": \"0x8D80CC42B3DAAC8\",\r\n \"lastModified\": \"2020-06-09T22:26:35.1510216Z\",\r\n \"creationTime\": \"2020-06-09T22:26:35.1510216Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2020-06-09T22:26:35.1510216Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2020-06-09T22:26:35.1510216Z\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT15M\",\r\n \"currentDedicatedNodes\": 0,\r\n \"targetDedicatedNodes\": 2,\r\n \"currentLowPriorityNodes\": 0,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": true,\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"osVersion\": \"*\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"removenodepool\",\r\n \"url\": \"https://mikeportal.eastus.batch.azure.com/pools/removenodepool\",\r\n \"eTag\": \"0x8D969772FE80CC3\",\r\n \"lastModified\": \"2021-08-27T16:24:47.5397315Z\",\r\n \"creationTime\": \"2021-08-27T16:24:47.5397315Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2021-08-27T16:24:47.5397315Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2021-08-27T16:24:47.5397315Z\",\r\n \"vmSize\": \"standard_d1_v2\",\r\n \"resizeTimeout\": \"PT15M\",\r\n \"currentDedicatedNodes\": 0,\r\n \"targetDedicatedNodes\": 2,\r\n \"currentLowPriorityNodes\": 0,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": true,\r\n \"taskSlotsPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"osVersion\": \"*\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/pools/removenodepool?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L3Bvb2xzL3JlbW92ZW5vZGVwb29sP2FwaS12ZXJzaW9uPTIwMjAtMDMtMDEuMTEuMA==", + "RequestUri": "/pools/removenodepool?api-version=2021-06-01.14.0", + "EncodedRequestUri": "L3Bvb2xzL3JlbW92ZW5vZGVwb29sP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDEuMTQuMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "73602ea7-2948-4d8b-93ad-6d9ed8bfcc51" + "4e83a73d-739e-45a0-a3ab-a7cbdeaa4cca" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:28:13 GMT" + "Fri, 27 Aug 2021 16:26:24 GMT" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/13.0.20.15503", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", "AzurePowershell/Az1.0.0" ] }, @@ -1197,13 +1197,13 @@ "chunked" ], "ETag": [ - "0x8D80CC42B3DAAC8" + "0x8D969772FE80CC3" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "8e64b1cf-0f9f-4801-b802-77def67e73cb" + "7cc42192-e07b-4a76-9b1a-dc8fe2a1b7c9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1215,38 +1215,41 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 22:28:13 GMT" + "Fri, 27 Aug 2021 16:26:23 GMT" ], "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Tue, 09 Jun 2020 22:26:35 GMT" + "Fri, 27 Aug 2021 16:24:47 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://prodtest6.francecentral.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"removenodepool\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/pools/removenodepool\",\r\n \"eTag\": \"0x8D80CC42B3DAAC8\",\r\n \"lastModified\": \"2020-06-09T22:26:35.1510216Z\",\r\n \"creationTime\": \"2020-06-09T22:26:35.1510216Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2020-06-09T22:26:35.1510216Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2020-06-09T22:26:35.1510216Z\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT15M\",\r\n \"currentDedicatedNodes\": 0,\r\n \"targetDedicatedNodes\": 2,\r\n \"currentLowPriorityNodes\": 0,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": true,\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"osVersion\": \"*\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"removenodepool\",\r\n \"url\": \"https://mikeportal.eastus.batch.azure.com/pools/removenodepool\",\r\n \"eTag\": \"0x8D969772FE80CC3\",\r\n \"lastModified\": \"2021-08-27T16:24:47.5397315Z\",\r\n \"creationTime\": \"2021-08-27T16:24:47.5397315Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2021-08-27T16:24:47.5397315Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2021-08-27T16:26:22.5239474Z\",\r\n \"vmSize\": \"standard_d1_v2\",\r\n \"resizeTimeout\": \"PT15M\",\r\n \"currentDedicatedNodes\": 2,\r\n \"targetDedicatedNodes\": 2,\r\n \"currentLowPriorityNodes\": 0,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": true,\r\n \"taskSlotsPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"osVersion\": \"*\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/pools/removenodepool?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L3Bvb2xzL3JlbW92ZW5vZGVwb29sP2FwaS12ZXJzaW9uPTIwMjAtMDMtMDEuMTEuMA==", + "RequestUri": "/pools/removenodepool/nodes?api-version=2021-06-01.14.0", + "EncodedRequestUri": "L3Bvb2xzL3JlbW92ZW5vZGVwb29sL25vZGVzP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDEuMTQuMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "90c4cec0-0c2b-48d4-992c-2bd2295930d9" + "889067da-5b0c-457c-aa7d-c263993da556" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:28:18 GMT" + "Fri, 27 Aug 2021 16:26:25 GMT" + ], + "x-ms-client-request-id": [ + "c6132c78-f731-4624-914e-883f95e143fe" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/13.0.20.15503", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", "AzurePowershell/Az1.0.0" ] }, @@ -1254,14 +1257,11 @@ "Transfer-Encoding": [ "chunked" ], - "ETag": [ - "0x8D80CC42B3DAAC8" - ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "337a9fd6-b9a6-496b-9ce8-89d6b5abb1f6" + "7c52bccd-d31c-445a-9b59-f09963d7f369" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1273,39 +1273,45 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 22:28:18 GMT" + "Fri, 27 Aug 2021 16:26:24 GMT" ], "Content-Type": [ "application/json; odata=minimalmetadata" - ], - "Last-Modified": [ - "Tue, 09 Jun 2020 22:26:35 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://prodtest6.francecentral.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"removenodepool\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/pools/removenodepool\",\r\n \"eTag\": \"0x8D80CC42B3DAAC8\",\r\n \"lastModified\": \"2020-06-09T22:26:35.1510216Z\",\r\n \"creationTime\": \"2020-06-09T22:26:35.1510216Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2020-06-09T22:26:35.1510216Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2020-06-09T22:26:35.1510216Z\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT15M\",\r\n \"currentDedicatedNodes\": 0,\r\n \"targetDedicatedNodes\": 2,\r\n \"currentLowPriorityNodes\": 0,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": true,\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"osVersion\": \"*\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#nodes\",\r\n \"value\": [\r\n {\r\n \"id\": \"tvmps_1a54c16fd71fbf22007483648992e2077ade0e66b76aa74d080696499cb95812_d\",\r\n \"url\": \"https://mikeportal.eastus.batch.azure.com/pools/removenodepool/nodes/tvmps_1a54c16fd71fbf22007483648992e2077ade0e66b76aa74d080696499cb95812_d\",\r\n \"state\": \"creating\",\r\n \"schedulingState\": \"enabled\",\r\n \"stateTransitionTime\": \"2021-08-27T16:26:21.6599375Z\",\r\n \"allocationTime\": \"2021-08-27T16:26:21.6599375Z\",\r\n \"ipAddress\": \"10.218.0.4\",\r\n \"affinityId\": \"TVM:tvmps_1a54c16fd71fbf22007483648992e2077ade0e66b76aa74d080696499cb95812_d\",\r\n \"vmSize\": \"standard_d1_v2\",\r\n \"totalTasksRun\": 0,\r\n \"totalTasksSucceeded\": 0,\r\n \"runningTasksCount\": 0,\r\n \"runningTaskSlotsCount\": 0,\r\n \"isDedicated\": true,\r\n \"endpointConfiguration\": {\r\n \"inboundEndpoints\": [\r\n {\r\n \"name\": \"Microsoft.WindowsAzure.Plugins.RemoteForwarder.RdpInput\",\r\n \"protocol\": \"tcp\",\r\n \"frontendPort\": 3389,\r\n \"backendPort\": 20000\r\n }\r\n ]\r\n },\r\n \"virtualMachineInfo\": {}\r\n },\r\n {\r\n \"id\": \"tvmps_616813b017ea95e95afa28e793d040ba1123bd35fbb524375188b0a7d34879c7_d\",\r\n \"url\": \"https://mikeportal.eastus.batch.azure.com/pools/removenodepool/nodes/tvmps_616813b017ea95e95afa28e793d040ba1123bd35fbb524375188b0a7d34879c7_d\",\r\n \"state\": \"creating\",\r\n \"schedulingState\": \"enabled\",\r\n \"stateTransitionTime\": \"2021-08-27T16:26:21.6609379Z\",\r\n \"allocationTime\": \"2021-08-27T16:26:21.6609379Z\",\r\n \"ipAddress\": \"10.218.0.5\",\r\n \"affinityId\": \"TVM:tvmps_616813b017ea95e95afa28e793d040ba1123bd35fbb524375188b0a7d34879c7_d\",\r\n \"vmSize\": \"standard_d1_v2\",\r\n \"totalTasksRun\": 0,\r\n \"totalTasksSucceeded\": 0,\r\n \"runningTasksCount\": 0,\r\n \"runningTaskSlotsCount\": 0,\r\n \"isDedicated\": true,\r\n \"endpointConfiguration\": {\r\n \"inboundEndpoints\": [\r\n {\r\n \"name\": \"Microsoft.WindowsAzure.Plugins.RemoteForwarder.RdpInput\",\r\n \"protocol\": \"tcp\",\r\n \"frontendPort\": 3389,\r\n \"backendPort\": 20000\r\n }\r\n ]\r\n },\r\n \"virtualMachineInfo\": {}\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/pools/removenodepool?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L3Bvb2xzL3JlbW92ZW5vZGVwb29sP2FwaS12ZXJzaW9uPTIwMjAtMDMtMDEuMTEuMA==", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/pools/removenodepool/removenodes?api-version=2021-06-01.14.0", + "EncodedRequestUri": "L3Bvb2xzL3JlbW92ZW5vZGVwb29sL3JlbW92ZW5vZGVzP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDEuMTQuMA==", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"nodeList\": [\r\n \"tvmps_1a54c16fd71fbf22007483648992e2077ade0e66b76aa74d080696499cb95812_d\",\r\n \"tvmps_616813b017ea95e95afa28e793d040ba1123bd35fbb524375188b0a7d34879c7_d\"\r\n ]\r\n}", "RequestHeaders": { "client-request-id": [ - "1e591f15-02fc-4190-8cbe-46413091a86b" + "9cdd0b02-cdcd-4f0f-9aaa-43c31bc2e503" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:28:23 GMT" + "Fri, 27 Aug 2021 16:26:25 GMT" + ], + "x-ms-client-request-id": [ + "99b5e74d-c101-49b2-8cec-0639fca97b2e" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/13.0.20.15503", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", "AzurePowershell/Az1.0.0" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; charset=utf-8" + ], + "Content-Length": [ + "187" ] }, "ResponseHeaders": { @@ -1313,13 +1319,13 @@ "chunked" ], "ETag": [ - "0x8D80CC42B3DAAC8" + "0x8D9697769FE3C4A" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "55337f36-1bf0-44ce-9462-0b42c9fd9ad9" + "f4b3f653-ba34-4ae4-bc21-456095942e47" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1330,39 +1336,42 @@ "DataServiceVersion": [ "3.0" ], - "Date": [ - "Tue, 09 Jun 2020 22:28:23 GMT" + "DataServiceId": [ + "https://mikeportal.eastus.batch.azure.com/pools/removenodepool/removenodes" ], - "Content-Type": [ - "application/json; odata=minimalmetadata" + "Date": [ + "Fri, 27 Aug 2021 16:26:24 GMT" ], "Last-Modified": [ - "Tue, 09 Jun 2020 22:26:35 GMT" + "Fri, 27 Aug 2021 16:26:24 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://prodtest6.francecentral.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"removenodepool\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/pools/removenodepool\",\r\n \"eTag\": \"0x8D80CC42B3DAAC8\",\r\n \"lastModified\": \"2020-06-09T22:26:35.1510216Z\",\r\n \"creationTime\": \"2020-06-09T22:26:35.1510216Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2020-06-09T22:26:35.1510216Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2020-06-09T22:26:35.1510216Z\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT15M\",\r\n \"currentDedicatedNodes\": 0,\r\n \"targetDedicatedNodes\": 2,\r\n \"currentLowPriorityNodes\": 0,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": true,\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"osVersion\": \"*\"\r\n }\r\n}", - "StatusCode": 200 + "ResponseBody": "", + "StatusCode": 202 }, { - "RequestUri": "/pools/removenodepool?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L3Bvb2xzL3JlbW92ZW5vZGVwb29sP2FwaS12ZXJzaW9uPTIwMjAtMDMtMDEuMTEuMA==", + "RequestUri": "/pools/removenodepool/nodes?api-version=2021-06-01.14.0&$select=id%2Cstate", + "EncodedRequestUri": "L3Bvb2xzL3JlbW92ZW5vZGVwb29sL25vZGVzP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDEuMTQuMCYkc2VsZWN0PWlkJTJDc3RhdGU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "3ba59fa0-4ea2-44c8-9305-60ee9276ac2b" + "72f2b643-37d6-4cb6-bddc-39b809fc8cc9" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:28:28 GMT" + "Fri, 27 Aug 2021 16:26:26 GMT" + ], + "x-ms-client-request-id": [ + "1f0fdc65-8fdb-4f50-bdd3-dc00921f1578" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/13.0.20.15503", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", "AzurePowershell/Az1.0.0" ] }, @@ -1370,14 +1379,11 @@ "Transfer-Encoding": [ "chunked" ], - "ETag": [ - "0x8D80CC42B3DAAC8" - ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "cc1a098a-5398-4bee-840d-362fef379612" + "85b52c64-c693-4bb4-8663-44568dc4f80c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1389,38 +1395,38 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 22:28:28 GMT" + "Fri, 27 Aug 2021 16:26:24 GMT" ], "Content-Type": [ "application/json; odata=minimalmetadata" - ], - "Last-Modified": [ - "Tue, 09 Jun 2020 22:26:35 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://prodtest6.francecentral.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"removenodepool\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/pools/removenodepool\",\r\n \"eTag\": \"0x8D80CC42B3DAAC8\",\r\n \"lastModified\": \"2020-06-09T22:26:35.1510216Z\",\r\n \"creationTime\": \"2020-06-09T22:26:35.1510216Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2020-06-09T22:26:35.1510216Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2020-06-09T22:26:35.1510216Z\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT15M\",\r\n \"currentDedicatedNodes\": 0,\r\n \"targetDedicatedNodes\": 2,\r\n \"currentLowPriorityNodes\": 0,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": true,\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"osVersion\": \"*\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#nodes\",\r\n \"value\": [\r\n {\r\n \"id\": \"tvmps_1a54c16fd71fbf22007483648992e2077ade0e66b76aa74d080696499cb95812_d\",\r\n \"state\": \"creating\",\r\n \"virtualMachineInfo\": {}\r\n },\r\n {\r\n \"id\": \"tvmps_616813b017ea95e95afa28e793d040ba1123bd35fbb524375188b0a7d34879c7_d\",\r\n \"state\": \"creating\",\r\n \"virtualMachineInfo\": {}\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/pools/removenodepool?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L3Bvb2xzL3JlbW92ZW5vZGVwb29sP2FwaS12ZXJzaW9uPTIwMjAtMDMtMDEuMTEuMA==", + "RequestUri": "/pools/removenodepool/nodes?api-version=2021-06-01.14.0&$select=id%2Cstate", + "EncodedRequestUri": "L3Bvb2xzL3JlbW92ZW5vZGVwb29sL25vZGVzP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDEuMTQuMCYkc2VsZWN0PWlkJTJDc3RhdGU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "909cccba-cc8c-4b25-b3e9-2b936964938a" + "2b513b3d-d438-4e9f-a125-daaca6729a37" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:28:34 GMT" + "Fri, 27 Aug 2021 16:26:27 GMT" + ], + "x-ms-client-request-id": [ + "5105f771-3ee4-4a73-9cd1-f5637be02904" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/13.0.20.15503", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", "AzurePowershell/Az1.0.0" ] }, @@ -1428,14 +1434,11 @@ "Transfer-Encoding": [ "chunked" ], - "ETag": [ - "0x8D80CC42B3DAAC8" - ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "deefed53-264b-44b7-a2b5-59ae3ba5f1d9" + "c656be9e-a3e6-4118-ae23-3b8a35f0f8ea" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1447,38 +1450,38 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 22:28:34 GMT" + "Fri, 27 Aug 2021 16:26:25 GMT" ], "Content-Type": [ "application/json; odata=minimalmetadata" - ], - "Last-Modified": [ - "Tue, 09 Jun 2020 22:26:35 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://prodtest6.francecentral.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"removenodepool\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/pools/removenodepool\",\r\n \"eTag\": \"0x8D80CC42B3DAAC8\",\r\n \"lastModified\": \"2020-06-09T22:26:35.1510216Z\",\r\n \"creationTime\": \"2020-06-09T22:26:35.1510216Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2020-06-09T22:26:35.1510216Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2020-06-09T22:26:35.1510216Z\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT15M\",\r\n \"currentDedicatedNodes\": 0,\r\n \"targetDedicatedNodes\": 2,\r\n \"currentLowPriorityNodes\": 0,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": true,\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"osVersion\": \"*\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#nodes\",\r\n \"value\": [\r\n {\r\n \"id\": \"tvmps_1a54c16fd71fbf22007483648992e2077ade0e66b76aa74d080696499cb95812_d\",\r\n \"state\": \"creating\",\r\n \"virtualMachineInfo\": {}\r\n },\r\n {\r\n \"id\": \"tvmps_616813b017ea95e95afa28e793d040ba1123bd35fbb524375188b0a7d34879c7_d\",\r\n \"state\": \"creating\",\r\n \"virtualMachineInfo\": {}\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/pools/removenodepool?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L3Bvb2xzL3JlbW92ZW5vZGVwb29sP2FwaS12ZXJzaW9uPTIwMjAtMDMtMDEuMTEuMA==", + "RequestUri": "/pools/removenodepool/nodes?api-version=2021-06-01.14.0&$select=id%2Cstate", + "EncodedRequestUri": "L3Bvb2xzL3JlbW92ZW5vZGVwb29sL25vZGVzP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDEuMTQuMCYkc2VsZWN0PWlkJTJDc3RhdGU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "d1a20316-a6b7-4350-a45c-47bf13012e03" + "46987505-f2c2-405f-8a09-08da278107b9" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:28:39 GMT" + "Fri, 27 Aug 2021 16:26:28 GMT" + ], + "x-ms-client-request-id": [ + "534273d3-b2e7-4654-88d4-1777dfcb7390" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/13.0.20.15503", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", "AzurePowershell/Az1.0.0" ] }, @@ -1486,14 +1489,11 @@ "Transfer-Encoding": [ "chunked" ], - "ETag": [ - "0x8D80CC42B3DAAC8" - ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "b0b677c3-e3a1-4138-980f-75fd8c03c10a" + "750c93b7-3ed4-43aa-a933-bba52c8ccdae" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1505,38 +1505,38 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 22:28:39 GMT" + "Fri, 27 Aug 2021 16:26:26 GMT" ], "Content-Type": [ "application/json; odata=minimalmetadata" - ], - "Last-Modified": [ - "Tue, 09 Jun 2020 22:26:35 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://prodtest6.francecentral.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"removenodepool\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/pools/removenodepool\",\r\n \"eTag\": \"0x8D80CC42B3DAAC8\",\r\n \"lastModified\": \"2020-06-09T22:26:35.1510216Z\",\r\n \"creationTime\": \"2020-06-09T22:26:35.1510216Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2020-06-09T22:26:35.1510216Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2020-06-09T22:26:35.1510216Z\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT15M\",\r\n \"currentDedicatedNodes\": 0,\r\n \"targetDedicatedNodes\": 2,\r\n \"currentLowPriorityNodes\": 0,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": true,\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"osVersion\": \"*\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#nodes\",\r\n \"value\": [\r\n {\r\n \"id\": \"tvmps_1a54c16fd71fbf22007483648992e2077ade0e66b76aa74d080696499cb95812_d\",\r\n \"state\": \"creating\",\r\n \"virtualMachineInfo\": {}\r\n },\r\n {\r\n \"id\": \"tvmps_616813b017ea95e95afa28e793d040ba1123bd35fbb524375188b0a7d34879c7_d\",\r\n \"state\": \"creating\",\r\n \"virtualMachineInfo\": {}\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/pools/removenodepool?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L3Bvb2xzL3JlbW92ZW5vZGVwb29sP2FwaS12ZXJzaW9uPTIwMjAtMDMtMDEuMTEuMA==", + "RequestUri": "/pools/removenodepool/nodes?api-version=2021-06-01.14.0&$select=id%2Cstate", + "EncodedRequestUri": "L3Bvb2xzL3JlbW92ZW5vZGVwb29sL25vZGVzP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDEuMTQuMCYkc2VsZWN0PWlkJTJDc3RhdGU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "0e2083dc-04f2-4474-90b4-24cabd8d5f78" + "75deb8c2-7f0d-48d6-83d6-eacac36617e8" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:28:44 GMT" + "Fri, 27 Aug 2021 16:26:29 GMT" + ], + "x-ms-client-request-id": [ + "ac2877df-a6cf-42a7-9aa7-a5dba7b21807" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/13.0.20.15503", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", "AzurePowershell/Az1.0.0" ] }, @@ -1544,14 +1544,11 @@ "Transfer-Encoding": [ "chunked" ], - "ETag": [ - "0x8D80CC42B3DAAC8" - ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "085fee12-34db-452f-984b-c82b4a6ad6f2" + "e6308939-6e8a-4d64-809f-082355f4373d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1563,38 +1560,38 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 22:28:44 GMT" + "Fri, 27 Aug 2021 16:26:27 GMT" ], "Content-Type": [ "application/json; odata=minimalmetadata" - ], - "Last-Modified": [ - "Tue, 09 Jun 2020 22:26:35 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://prodtest6.francecentral.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"removenodepool\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/pools/removenodepool\",\r\n \"eTag\": \"0x8D80CC42B3DAAC8\",\r\n \"lastModified\": \"2020-06-09T22:26:35.1510216Z\",\r\n \"creationTime\": \"2020-06-09T22:26:35.1510216Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2020-06-09T22:26:35.1510216Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2020-06-09T22:26:35.1510216Z\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT15M\",\r\n \"currentDedicatedNodes\": 0,\r\n \"targetDedicatedNodes\": 2,\r\n \"currentLowPriorityNodes\": 0,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": true,\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"osVersion\": \"*\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#nodes\",\r\n \"value\": [\r\n {\r\n \"id\": \"tvmps_1a54c16fd71fbf22007483648992e2077ade0e66b76aa74d080696499cb95812_d\",\r\n \"state\": \"creating\",\r\n \"virtualMachineInfo\": {}\r\n },\r\n {\r\n \"id\": \"tvmps_616813b017ea95e95afa28e793d040ba1123bd35fbb524375188b0a7d34879c7_d\",\r\n \"state\": \"creating\",\r\n \"virtualMachineInfo\": {}\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/pools/removenodepool?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L3Bvb2xzL3JlbW92ZW5vZGVwb29sP2FwaS12ZXJzaW9uPTIwMjAtMDMtMDEuMTEuMA==", + "RequestUri": "/pools/removenodepool/nodes?api-version=2021-06-01.14.0&$select=id%2Cstate", + "EncodedRequestUri": "L3Bvb2xzL3JlbW92ZW5vZGVwb29sL25vZGVzP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDEuMTQuMCYkc2VsZWN0PWlkJTJDc3RhdGU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "64439c01-86d3-4e57-a900-26ce203cfb7a" + "a0581517-43e1-413a-bf36-ea832e201445" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:28:49 GMT" + "Fri, 27 Aug 2021 16:26:30 GMT" + ], + "x-ms-client-request-id": [ + "9e4ddb90-6e30-4880-b13a-1f9caef3f764" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/13.0.20.15503", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", "AzurePowershell/Az1.0.0" ] }, @@ -1602,14 +1599,11 @@ "Transfer-Encoding": [ "chunked" ], - "ETag": [ - "0x8D80CC42B3DAAC8" - ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "f789365e-3206-4755-a3d3-950597d4dacd" + "56ee2477-b0d9-48c5-97cc-e5c02faec713" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1621,38 +1615,38 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 22:28:49 GMT" + "Fri, 27 Aug 2021 16:26:28 GMT" ], "Content-Type": [ "application/json; odata=minimalmetadata" - ], - "Last-Modified": [ - "Tue, 09 Jun 2020 22:26:35 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://prodtest6.francecentral.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"removenodepool\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/pools/removenodepool\",\r\n \"eTag\": \"0x8D80CC42B3DAAC8\",\r\n \"lastModified\": \"2020-06-09T22:26:35.1510216Z\",\r\n \"creationTime\": \"2020-06-09T22:26:35.1510216Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2020-06-09T22:26:35.1510216Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2020-06-09T22:26:35.1510216Z\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT15M\",\r\n \"currentDedicatedNodes\": 0,\r\n \"targetDedicatedNodes\": 2,\r\n \"currentLowPriorityNodes\": 0,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": true,\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"osVersion\": \"*\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#nodes\",\r\n \"value\": [\r\n {\r\n \"id\": \"tvmps_1a54c16fd71fbf22007483648992e2077ade0e66b76aa74d080696499cb95812_d\",\r\n \"state\": \"creating\",\r\n \"virtualMachineInfo\": {}\r\n },\r\n {\r\n \"id\": \"tvmps_616813b017ea95e95afa28e793d040ba1123bd35fbb524375188b0a7d34879c7_d\",\r\n \"state\": \"creating\",\r\n \"virtualMachineInfo\": {}\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/pools/removenodepool?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L3Bvb2xzL3JlbW92ZW5vZGVwb29sP2FwaS12ZXJzaW9uPTIwMjAtMDMtMDEuMTEuMA==", + "RequestUri": "/pools/removenodepool/nodes?api-version=2021-06-01.14.0&$select=id%2Cstate", + "EncodedRequestUri": "L3Bvb2xzL3JlbW92ZW5vZGVwb29sL25vZGVzP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDEuMTQuMCYkc2VsZWN0PWlkJTJDc3RhdGU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "fcceeec2-2ca6-4fa6-a4a1-29a2ae18901f" + "313a1333-3711-41d7-8739-14787ca5aff9" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:28:54 GMT" + "Fri, 27 Aug 2021 16:26:31 GMT" + ], + "x-ms-client-request-id": [ + "673da7a5-c5d9-4f9a-a646-796eaca4baeb" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/13.0.20.15503", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", "AzurePowershell/Az1.0.0" ] }, @@ -1660,14 +1654,11 @@ "Transfer-Encoding": [ "chunked" ], - "ETag": [ - "0x8D80CC42B3DAAC8" - ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "17a62467-1245-4360-b603-9cf91c83c518" + "5712908a-b3f7-4112-9d99-3d185733d4e2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1679,38 +1670,38 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 22:28:54 GMT" + "Fri, 27 Aug 2021 16:26:29 GMT" ], "Content-Type": [ "application/json; odata=minimalmetadata" - ], - "Last-Modified": [ - "Tue, 09 Jun 2020 22:26:35 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://prodtest6.francecentral.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"removenodepool\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/pools/removenodepool\",\r\n \"eTag\": \"0x8D80CC42B3DAAC8\",\r\n \"lastModified\": \"2020-06-09T22:26:35.1510216Z\",\r\n \"creationTime\": \"2020-06-09T22:26:35.1510216Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2020-06-09T22:26:35.1510216Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2020-06-09T22:26:35.1510216Z\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT15M\",\r\n \"currentDedicatedNodes\": 0,\r\n \"targetDedicatedNodes\": 2,\r\n \"currentLowPriorityNodes\": 0,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": true,\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"osVersion\": \"*\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#nodes\",\r\n \"value\": [\r\n {\r\n \"id\": \"tvmps_1a54c16fd71fbf22007483648992e2077ade0e66b76aa74d080696499cb95812_d\",\r\n \"state\": \"creating\",\r\n \"virtualMachineInfo\": {}\r\n },\r\n {\r\n \"id\": \"tvmps_616813b017ea95e95afa28e793d040ba1123bd35fbb524375188b0a7d34879c7_d\",\r\n \"state\": \"creating\",\r\n \"virtualMachineInfo\": {}\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/pools/removenodepool?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L3Bvb2xzL3JlbW92ZW5vZGVwb29sP2FwaS12ZXJzaW9uPTIwMjAtMDMtMDEuMTEuMA==", + "RequestUri": "/pools/removenodepool/nodes?api-version=2021-06-01.14.0&$select=id%2Cstate", + "EncodedRequestUri": "L3Bvb2xzL3JlbW92ZW5vZGVwb29sL25vZGVzP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDEuMTQuMCYkc2VsZWN0PWlkJTJDc3RhdGU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "355b0ed1-6f4d-48db-ae58-2749bc76dfb7" + "6a79c18e-c801-409a-971b-0cb429a049ea" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:28:59 GMT" + "Fri, 27 Aug 2021 16:26:32 GMT" + ], + "x-ms-client-request-id": [ + "c70fe05d-3c19-4d09-a2b7-14256589023a" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/13.0.20.15503", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", "AzurePowershell/Az1.0.0" ] }, @@ -1718,14 +1709,11 @@ "Transfer-Encoding": [ "chunked" ], - "ETag": [ - "0x8D80CC42B3DAAC8" - ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "1a860a9a-ba6a-483a-af97-c4de9cf9551f" + "6a795e22-b8a1-440b-b2f1-dc0be530d49b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1737,38 +1725,38 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 22:28:59 GMT" + "Fri, 27 Aug 2021 16:26:30 GMT" ], "Content-Type": [ "application/json; odata=minimalmetadata" - ], - "Last-Modified": [ - "Tue, 09 Jun 2020 22:26:35 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://prodtest6.francecentral.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"removenodepool\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/pools/removenodepool\",\r\n \"eTag\": \"0x8D80CC42B3DAAC8\",\r\n \"lastModified\": \"2020-06-09T22:26:35.1510216Z\",\r\n \"creationTime\": \"2020-06-09T22:26:35.1510216Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2020-06-09T22:26:35.1510216Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2020-06-09T22:28:58.1065895Z\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT15M\",\r\n \"currentDedicatedNodes\": 2,\r\n \"targetDedicatedNodes\": 2,\r\n \"currentLowPriorityNodes\": 0,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": true,\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"osVersion\": \"*\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#nodes\",\r\n \"value\": [\r\n {\r\n \"id\": \"tvmps_1a54c16fd71fbf22007483648992e2077ade0e66b76aa74d080696499cb95812_d\",\r\n \"state\": \"creating\",\r\n \"virtualMachineInfo\": {}\r\n },\r\n {\r\n \"id\": \"tvmps_616813b017ea95e95afa28e793d040ba1123bd35fbb524375188b0a7d34879c7_d\",\r\n \"state\": \"creating\",\r\n \"virtualMachineInfo\": {}\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/pools/removenodepool/nodes?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L3Bvb2xzL3JlbW92ZW5vZGVwb29sL25vZGVzP2FwaS12ZXJzaW9uPTIwMjAtMDMtMDEuMTEuMA==", + "RequestUri": "/pools/removenodepool/nodes?api-version=2021-06-01.14.0&$select=id%2Cstate", + "EncodedRequestUri": "L3Bvb2xzL3JlbW92ZW5vZGVwb29sL25vZGVzP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDEuMTQuMCYkc2VsZWN0PWlkJTJDc3RhdGU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "d9d5a0ed-5019-440f-83ee-3265e515a2f4" + "b08757a5-4d8d-4dec-b938-532c32da5430" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:29:00 GMT" + "Fri, 27 Aug 2021 16:26:33 GMT" + ], + "x-ms-client-request-id": [ + "a8dedd23-6d4d-436a-8bb9-fd5e1851cf8a" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/13.0.20.15503", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", "AzurePowershell/Az1.0.0" ] }, @@ -1780,7 +1768,7 @@ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "6bd779e4-e237-4748-a1ce-2665cb365127" + "8502c61d-48cf-438c-8730-65484606ce45" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1792,56 +1780,50 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 22:29:22 GMT" + "Fri, 27 Aug 2021 16:26:31 GMT" ], "Content-Type": [ "application/json; odata=minimalmetadata" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://prodtest6.francecentral.batch.azure.com/$metadata#nodes\",\r\n \"value\": [\r\n {\r\n \"id\": \"tvmps_0d555eff2944de8535efbe279c039c8a380f196317bdb0f2bc52ff136504db24_d\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/pools/removenodepool/nodes/tvmps_0d555eff2944de8535efbe279c039c8a380f196317bdb0f2bc52ff136504db24_d\",\r\n \"state\": \"starting\",\r\n \"schedulingState\": \"enabled\",\r\n \"stateTransitionTime\": \"2020-06-09T22:28:58.068244Z\",\r\n \"allocationTime\": \"2020-06-09T22:28:57.0171803Z\",\r\n \"ipAddress\": \"10.218.0.5\",\r\n \"affinityId\": \"TVM:tvmps_0d555eff2944de8535efbe279c039c8a380f196317bdb0f2bc52ff136504db24_d\",\r\n \"vmSize\": \"small\",\r\n \"totalTasksRun\": 0,\r\n \"totalTasksSucceeded\": 0,\r\n \"runningTasksCount\": 0,\r\n \"isDedicated\": true,\r\n \"endpointConfiguration\": {\r\n \"inboundEndpoints\": [\r\n {\r\n \"name\": \"Microsoft.WindowsAzure.Plugins.RemoteForwarder.RdpInput\",\r\n \"protocol\": \"tcp\",\r\n \"publicIPAddress\": \"20.188.33.217\",\r\n \"frontendPort\": 3389,\r\n \"backendPort\": 20000\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"tvmps_90889e4ab31946cc245b78eaf7dfefe6a1e0c30f19b62ca21bbcfe26cf8abf41_d\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/pools/removenodepool/nodes/tvmps_90889e4ab31946cc245b78eaf7dfefe6a1e0c30f19b62ca21bbcfe26cf8abf41_d\",\r\n \"state\": \"starting\",\r\n \"schedulingState\": \"enabled\",\r\n \"stateTransitionTime\": \"2020-06-09T22:28:58.102267Z\",\r\n \"allocationTime\": \"2020-06-09T22:28:57.0171803Z\",\r\n \"ipAddress\": \"10.218.0.4\",\r\n \"affinityId\": \"TVM:tvmps_90889e4ab31946cc245b78eaf7dfefe6a1e0c30f19b62ca21bbcfe26cf8abf41_d\",\r\n \"vmSize\": \"small\",\r\n \"totalTasksRun\": 0,\r\n \"totalTasksSucceeded\": 0,\r\n \"runningTasksCount\": 0,\r\n \"isDedicated\": true,\r\n \"endpointConfiguration\": {\r\n \"inboundEndpoints\": [\r\n {\r\n \"name\": \"Microsoft.WindowsAzure.Plugins.RemoteForwarder.RdpInput\",\r\n \"protocol\": \"tcp\",\r\n \"publicIPAddress\": \"20.188.33.217\",\r\n \"frontendPort\": 3389,\r\n \"backendPort\": 20000\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#nodes\",\r\n \"value\": [\r\n {\r\n \"id\": \"tvmps_1a54c16fd71fbf22007483648992e2077ade0e66b76aa74d080696499cb95812_d\",\r\n \"state\": \"starting\",\r\n \"virtualMachineInfo\": {}\r\n },\r\n {\r\n \"id\": \"tvmps_616813b017ea95e95afa28e793d040ba1123bd35fbb524375188b0a7d34879c7_d\",\r\n \"state\": \"starting\",\r\n \"virtualMachineInfo\": {}\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/pools/removenodepool/removenodes?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L3Bvb2xzL3JlbW92ZW5vZGVwb29sL3JlbW92ZW5vZGVzP2FwaS12ZXJzaW9uPTIwMjAtMDMtMDEuMTEuMA==", - "RequestMethod": "POST", - "RequestBody": "{\r\n \"nodeList\": [\r\n \"tvmps_0d555eff2944de8535efbe279c039c8a380f196317bdb0f2bc52ff136504db24_d\",\r\n \"tvmps_90889e4ab31946cc245b78eaf7dfefe6a1e0c30f19b62ca21bbcfe26cf8abf41_d\"\r\n ]\r\n}", + "RequestUri": "/pools/removenodepool/nodes?api-version=2021-06-01.14.0&$select=id%2Cstate", + "EncodedRequestUri": "L3Bvb2xzL3JlbW92ZW5vZGVwb29sL25vZGVzP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDEuMTQuMCYkc2VsZWN0PWlkJTJDc3RhdGU=", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "9cfa7a6b-dfe0-4452-9965-9f34462b7272" + "f8076606-fb5a-4e26-92a8-bd39471345ff" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:29:22 GMT" + "Fri, 27 Aug 2021 16:26:34 GMT" + ], + "x-ms-client-request-id": [ + "cb63c794-99fb-4112-acdf-edcd690b8951" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/13.0.20.15503", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", "AzurePowershell/Az1.0.0" - ], - "Content-Type": [ - "application/json; odata=minimalmetadata; charset=utf-8" - ], - "Content-Length": [ - "187" ] }, "ResponseHeaders": { "Transfer-Encoding": [ "chunked" ], - "ETag": [ - "0x8D80CC48EF4ACBE" - ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "c3604111-4422-4455-a346-af2e15fe7a94" + "188865d9-e425-416e-8b0b-2faec715466e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1852,39 +1834,39 @@ "DataServiceVersion": [ "3.0" ], - "DataServiceId": [ - "https://prodtest6.francecentral.batch.azure.com/pools/removenodepool/removenodes" - ], "Date": [ - "Tue, 09 Jun 2020 22:29:22 GMT" + "Fri, 27 Aug 2021 16:26:33 GMT" ], - "Last-Modified": [ - "Tue, 09 Jun 2020 22:29:22 GMT" + "Content-Type": [ + "application/json; odata=minimalmetadata" ] }, - "ResponseBody": "", - "StatusCode": 202 + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#nodes\",\r\n \"value\": [\r\n {\r\n \"id\": \"tvmps_1a54c16fd71fbf22007483648992e2077ade0e66b76aa74d080696499cb95812_d\",\r\n \"state\": \"starting\",\r\n \"virtualMachineInfo\": {}\r\n },\r\n {\r\n \"id\": \"tvmps_616813b017ea95e95afa28e793d040ba1123bd35fbb524375188b0a7d34879c7_d\",\r\n \"state\": \"starting\",\r\n \"virtualMachineInfo\": {}\r\n }\r\n ]\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/pools/removenodepool/nodes?api-version=2020-03-01.11.0&$select=id%2Cstate", - "EncodedRequestUri": "L3Bvb2xzL3JlbW92ZW5vZGVwb29sL25vZGVzP2FwaS12ZXJzaW9uPTIwMjAtMDMtMDEuMTEuMCYkc2VsZWN0PWlkJTJDc3RhdGU=", + "RequestUri": "/pools/removenodepool/nodes?api-version=2021-06-01.14.0&$select=id%2Cstate", + "EncodedRequestUri": "L3Bvb2xzL3JlbW92ZW5vZGVwb29sL25vZGVzP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDEuMTQuMCYkc2VsZWN0PWlkJTJDc3RhdGU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "faa71269-9e07-4e12-8382-e35ff18f8f05" + "5c0f82b9-8187-4cea-94a6-439b7c4b5a2b" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:29:22 GMT" + "Fri, 27 Aug 2021 16:26:35 GMT" + ], + "x-ms-client-request-id": [ + "7b6a8725-c6f7-4c58-8a39-8a655f7fd588" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/13.0.20.15503", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", "AzurePowershell/Az1.0.0" ] }, @@ -1896,7 +1878,7 @@ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "019c41b4-c32e-4d9e-83c4-e550206f2299" + "a2ea42ec-321e-4b43-b403-6847e1a4dffe" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1908,35 +1890,38 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 22:29:22 GMT" + "Fri, 27 Aug 2021 16:26:34 GMT" ], "Content-Type": [ "application/json; odata=minimalmetadata" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://prodtest6.francecentral.batch.azure.com/$metadata#nodes\",\r\n \"value\": [\r\n {\r\n \"id\": \"tvmps_0d555eff2944de8535efbe279c039c8a380f196317bdb0f2bc52ff136504db24_d\",\r\n \"state\": \"starting\"\r\n },\r\n {\r\n \"id\": \"tvmps_90889e4ab31946cc245b78eaf7dfefe6a1e0c30f19b62ca21bbcfe26cf8abf41_d\",\r\n \"state\": \"starting\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#nodes\",\r\n \"value\": [\r\n {\r\n \"id\": \"tvmps_1a54c16fd71fbf22007483648992e2077ade0e66b76aa74d080696499cb95812_d\",\r\n \"state\": \"starting\",\r\n \"virtualMachineInfo\": {}\r\n },\r\n {\r\n \"id\": \"tvmps_616813b017ea95e95afa28e793d040ba1123bd35fbb524375188b0a7d34879c7_d\",\r\n \"state\": \"starting\",\r\n \"virtualMachineInfo\": {}\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/pools/removenodepool/nodes?api-version=2020-03-01.11.0&$select=id%2Cstate", - "EncodedRequestUri": "L3Bvb2xzL3JlbW92ZW5vZGVwb29sL25vZGVzP2FwaS12ZXJzaW9uPTIwMjAtMDMtMDEuMTEuMCYkc2VsZWN0PWlkJTJDc3RhdGU=", + "RequestUri": "/pools/removenodepool/nodes?api-version=2021-06-01.14.0&$select=id%2Cstate", + "EncodedRequestUri": "L3Bvb2xzL3JlbW92ZW5vZGVwb29sL25vZGVzP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDEuMTQuMCYkc2VsZWN0PWlkJTJDc3RhdGU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "72ac0cd1-8510-407c-8821-6f2e7429deac" + "64e461a9-469f-48ce-8cd6-c9adc3a90f4e" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:29:23 GMT" + "Fri, 27 Aug 2021 16:26:36 GMT" + ], + "x-ms-client-request-id": [ + "9b00c3cb-6ee0-428f-8484-68a74035165f" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/13.0.20.15503", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", "AzurePowershell/Az1.0.0" ] }, @@ -1948,7 +1933,7 @@ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "ee173a14-8102-4766-ae88-e58e70dab769" + "675156ae-525f-4b0e-8d3a-c9aa356ad6fc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1960,35 +1945,38 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 22:29:23 GMT" + "Fri, 27 Aug 2021 16:26:35 GMT" ], "Content-Type": [ "application/json; odata=minimalmetadata" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://prodtest6.francecentral.batch.azure.com/$metadata#nodes\",\r\n \"value\": [\r\n {\r\n \"id\": \"tvmps_0d555eff2944de8535efbe279c039c8a380f196317bdb0f2bc52ff136504db24_d\",\r\n \"state\": \"starting\"\r\n },\r\n {\r\n \"id\": \"tvmps_90889e4ab31946cc245b78eaf7dfefe6a1e0c30f19b62ca21bbcfe26cf8abf41_d\",\r\n \"state\": \"starting\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#nodes\",\r\n \"value\": [\r\n {\r\n \"id\": \"tvmps_1a54c16fd71fbf22007483648992e2077ade0e66b76aa74d080696499cb95812_d\",\r\n \"state\": \"starting\",\r\n \"virtualMachineInfo\": {}\r\n },\r\n {\r\n \"id\": \"tvmps_616813b017ea95e95afa28e793d040ba1123bd35fbb524375188b0a7d34879c7_d\",\r\n \"state\": \"starting\",\r\n \"virtualMachineInfo\": {}\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/pools/removenodepool/nodes?api-version=2020-03-01.11.0&$select=id%2Cstate", - "EncodedRequestUri": "L3Bvb2xzL3JlbW92ZW5vZGVwb29sL25vZGVzP2FwaS12ZXJzaW9uPTIwMjAtMDMtMDEuMTEuMCYkc2VsZWN0PWlkJTJDc3RhdGU=", + "RequestUri": "/pools/removenodepool/nodes?api-version=2021-06-01.14.0&$select=id%2Cstate", + "EncodedRequestUri": "L3Bvb2xzL3JlbW92ZW5vZGVwb29sL25vZGVzP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDEuMTQuMCYkc2VsZWN0PWlkJTJDc3RhdGU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "53b13ceb-9478-4951-b896-cf62835b67c5" + "0fce0135-55cb-4548-b074-6cc8864a2e4e" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:29:24 GMT" + "Fri, 27 Aug 2021 16:26:37 GMT" + ], + "x-ms-client-request-id": [ + "c87238e4-5be1-4b91-afd2-24f2a881a060" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/13.0.20.15503", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", "AzurePowershell/Az1.0.0" ] }, @@ -2000,7 +1988,7 @@ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "c3ac93fb-c745-4050-a3c7-55b9c4702754" + "b187a670-6be6-423d-89c6-99412d255a9f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2012,35 +2000,38 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 22:29:24 GMT" + "Fri, 27 Aug 2021 16:26:36 GMT" ], "Content-Type": [ "application/json; odata=minimalmetadata" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://prodtest6.francecentral.batch.azure.com/$metadata#nodes\",\r\n \"value\": [\r\n {\r\n \"id\": \"tvmps_0d555eff2944de8535efbe279c039c8a380f196317bdb0f2bc52ff136504db24_d\",\r\n \"state\": \"starting\"\r\n },\r\n {\r\n \"id\": \"tvmps_90889e4ab31946cc245b78eaf7dfefe6a1e0c30f19b62ca21bbcfe26cf8abf41_d\",\r\n \"state\": \"starting\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#nodes\",\r\n \"value\": [\r\n {\r\n \"id\": \"tvmps_1a54c16fd71fbf22007483648992e2077ade0e66b76aa74d080696499cb95812_d\",\r\n \"state\": \"starting\",\r\n \"virtualMachineInfo\": {}\r\n },\r\n {\r\n \"id\": \"tvmps_616813b017ea95e95afa28e793d040ba1123bd35fbb524375188b0a7d34879c7_d\",\r\n \"state\": \"starting\",\r\n \"virtualMachineInfo\": {}\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/pools/removenodepool/nodes?api-version=2020-03-01.11.0&$select=id%2Cstate", - "EncodedRequestUri": "L3Bvb2xzL3JlbW92ZW5vZGVwb29sL25vZGVzP2FwaS12ZXJzaW9uPTIwMjAtMDMtMDEuMTEuMCYkc2VsZWN0PWlkJTJDc3RhdGU=", + "RequestUri": "/pools/removenodepool/nodes?api-version=2021-06-01.14.0&$select=id%2Cstate", + "EncodedRequestUri": "L3Bvb2xzL3JlbW92ZW5vZGVwb29sL25vZGVzP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDEuMTQuMCYkc2VsZWN0PWlkJTJDc3RhdGU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "f94a7b6f-a97e-4d6f-b803-3162f0bf050a" + "d01e99f4-5e43-4c10-8785-d43bd21d266c" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:29:26 GMT" + "Fri, 27 Aug 2021 16:26:38 GMT" + ], + "x-ms-client-request-id": [ + "26bebe1c-788f-45dd-9e9d-d07ad3623350" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/13.0.20.15503", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", "AzurePowershell/Az1.0.0" ] }, @@ -2052,7 +2043,7 @@ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "61366f72-bd23-4f43-aa59-dbb4574379ce" + "ee1e35db-5bab-481a-9c8d-5c49f2d9efc4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2064,35 +2055,38 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 22:29:26 GMT" + "Fri, 27 Aug 2021 16:26:37 GMT" ], "Content-Type": [ "application/json; odata=minimalmetadata" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://prodtest6.francecentral.batch.azure.com/$metadata#nodes\",\r\n \"value\": [\r\n {\r\n \"id\": \"tvmps_0d555eff2944de8535efbe279c039c8a380f196317bdb0f2bc52ff136504db24_d\",\r\n \"state\": \"starting\"\r\n },\r\n {\r\n \"id\": \"tvmps_90889e4ab31946cc245b78eaf7dfefe6a1e0c30f19b62ca21bbcfe26cf8abf41_d\",\r\n \"state\": \"starting\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#nodes\",\r\n \"value\": [\r\n {\r\n \"id\": \"tvmps_1a54c16fd71fbf22007483648992e2077ade0e66b76aa74d080696499cb95812_d\",\r\n \"state\": \"starting\",\r\n \"virtualMachineInfo\": {}\r\n },\r\n {\r\n \"id\": \"tvmps_616813b017ea95e95afa28e793d040ba1123bd35fbb524375188b0a7d34879c7_d\",\r\n \"state\": \"starting\",\r\n \"virtualMachineInfo\": {}\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/pools/removenodepool/nodes?api-version=2020-03-01.11.0&$select=id%2Cstate", - "EncodedRequestUri": "L3Bvb2xzL3JlbW92ZW5vZGVwb29sL25vZGVzP2FwaS12ZXJzaW9uPTIwMjAtMDMtMDEuMTEuMCYkc2VsZWN0PWlkJTJDc3RhdGU=", + "RequestUri": "/pools/removenodepool/nodes?api-version=2021-06-01.14.0&$select=id%2Cstate", + "EncodedRequestUri": "L3Bvb2xzL3JlbW92ZW5vZGVwb29sL25vZGVzP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDEuMTQuMCYkc2VsZWN0PWlkJTJDc3RhdGU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "bedabb2a-ff76-457c-92fe-feefcc29bab4" + "9671be98-3cdd-4da4-b6ff-877b67f067d3" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:29:27 GMT" + "Fri, 27 Aug 2021 16:26:39 GMT" + ], + "x-ms-client-request-id": [ + "33326288-c078-4ae1-87be-97307b1d71a1" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/13.0.20.15503", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", "AzurePowershell/Az1.0.0" ] }, @@ -2104,7 +2098,7 @@ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "84ce6571-1b09-4fe9-9cf1-7d844b516802" + "0f9d66f0-51fd-4915-b8e7-d036bf377e0e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2116,35 +2110,38 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 22:29:27 GMT" + "Fri, 27 Aug 2021 16:26:38 GMT" ], "Content-Type": [ "application/json; odata=minimalmetadata" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://prodtest6.francecentral.batch.azure.com/$metadata#nodes\",\r\n \"value\": [\r\n {\r\n \"id\": \"tvmps_0d555eff2944de8535efbe279c039c8a380f196317bdb0f2bc52ff136504db24_d\",\r\n \"state\": \"starting\"\r\n },\r\n {\r\n \"id\": \"tvmps_90889e4ab31946cc245b78eaf7dfefe6a1e0c30f19b62ca21bbcfe26cf8abf41_d\",\r\n \"state\": \"starting\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#nodes\",\r\n \"value\": [\r\n {\r\n \"id\": \"tvmps_1a54c16fd71fbf22007483648992e2077ade0e66b76aa74d080696499cb95812_d\",\r\n \"state\": \"starting\",\r\n \"virtualMachineInfo\": {}\r\n },\r\n {\r\n \"id\": \"tvmps_616813b017ea95e95afa28e793d040ba1123bd35fbb524375188b0a7d34879c7_d\",\r\n \"state\": \"starting\",\r\n \"virtualMachineInfo\": {}\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/pools/removenodepool/nodes?api-version=2020-03-01.11.0&$select=id%2Cstate", - "EncodedRequestUri": "L3Bvb2xzL3JlbW92ZW5vZGVwb29sL25vZGVzP2FwaS12ZXJzaW9uPTIwMjAtMDMtMDEuMTEuMCYkc2VsZWN0PWlkJTJDc3RhdGU=", + "RequestUri": "/pools/removenodepool/nodes?api-version=2021-06-01.14.0&$select=id%2Cstate", + "EncodedRequestUri": "L3Bvb2xzL3JlbW92ZW5vZGVwb29sL25vZGVzP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDEuMTQuMCYkc2VsZWN0PWlkJTJDc3RhdGU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "eb0d2ef7-c719-4dfc-9ed3-988959b8da12" + "3a05ece4-593a-4590-b5fe-b7a777d809f3" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:29:28 GMT" + "Fri, 27 Aug 2021 16:26:40 GMT" + ], + "x-ms-client-request-id": [ + "cf67ad39-9606-4cc3-86e5-a0ec9b1535f7" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/13.0.20.15503", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", "AzurePowershell/Az1.0.0" ] }, @@ -2156,7 +2153,7 @@ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "26bd6979-647a-4e57-8396-992a4be13c1f" + "486ff884-68ec-416c-ad0d-baf77fbfabb1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2168,35 +2165,35 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 22:29:28 GMT" + "Fri, 27 Aug 2021 16:26:39 GMT" ], "Content-Type": [ "application/json; odata=minimalmetadata" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://prodtest6.francecentral.batch.azure.com/$metadata#nodes\",\r\n \"value\": [\r\n {\r\n \"id\": \"tvmps_0d555eff2944de8535efbe279c039c8a380f196317bdb0f2bc52ff136504db24_d\",\r\n \"state\": \"leavingpool\"\r\n },\r\n {\r\n \"id\": \"tvmps_90889e4ab31946cc245b78eaf7dfefe6a1e0c30f19b62ca21bbcfe26cf8abf41_d\",\r\n \"state\": \"leavingpool\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#nodes\",\r\n \"value\": [\r\n {\r\n \"id\": \"tvmps_1a54c16fd71fbf22007483648992e2077ade0e66b76aa74d080696499cb95812_d\",\r\n \"state\": \"leavingpool\",\r\n \"virtualMachineInfo\": {}\r\n },\r\n {\r\n \"id\": \"tvmps_616813b017ea95e95afa28e793d040ba1123bd35fbb524375188b0a7d34879c7_d\",\r\n \"state\": \"leavingpool\",\r\n \"virtualMachineInfo\": {}\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/pools/removenodepool?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L3Bvb2xzL3JlbW92ZW5vZGVwb29sP2FwaS12ZXJzaW9uPTIwMjAtMDMtMDEuMTEuMA==", + "RequestUri": "/pools/removenodepool?api-version=2021-06-01.14.0", + "EncodedRequestUri": "L3Bvb2xzL3JlbW92ZW5vZGVwb29sP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDEuMTQuMA==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "c51c3311-ad5b-4750-9c19-0549362c96ae" + "27951dba-7a48-46fa-bf1e-0b4167fae2ea" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:29:28 GMT" + "Fri, 27 Aug 2021 16:26:41 GMT" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/13.0.20.15503", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", "AzurePowershell/Az1.0.0" ], "Content-Length": [ @@ -2211,7 +2208,7 @@ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "3e96a8be-b053-4a30-86b2-1419dcbd314a" + "b9b35432-a483-4890-98f4-9b1c12f1f166" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2223,7 +2220,7 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 22:29:27 GMT" + "Fri, 27 Aug 2021 16:26:39 GMT" ] }, "ResponseBody": "", @@ -2232,9 +2229,9 @@ ], "Names": {}, "Variables": { - "SubscriptionId": "21abd678-18c5-4660-9fdd-8c5ba6b6fe1f", - "AZURE_BATCH_ACCOUNT": "prodtest6", - "AZURE_BATCH_ENDPOINT": "https://prodtest6.francecentral.batch.azure.com", - "AZURE_BATCH_RESOURCE_GROUP": "abc" + "SubscriptionId": "ba2358c2-42f2-4138-88df-7c68cf608bea", + "AZURE_BATCH_ACCOUNT": "mikeportal", + "AZURE_BATCH_ENDPOINT": "https://mikeportal.eastus.batch.azure.com", + "AZURE_BATCH_RESOURCE_GROUP": "batchportal" } } \ No newline at end of file diff --git a/src/Batch/Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.ComputeNodeUserTests/TestComputeNodeUserEndToEnd.json b/src/Batch/Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.ComputeNodeUserTests/TestComputeNodeUserEndToEnd.json index c8a0ef4e5649..55f1bbd09eda 100644 --- a/src/Batch/Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.ComputeNodeUserTests/TestComputeNodeUserEndToEnd.json +++ b/src/Batch/Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.ComputeNodeUserTests/TestComputeNodeUserEndToEnd.json @@ -1,25 +1,25 @@ { "Entries": [ { - "RequestUri": "/pools/testPool/nodes?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzP2FwaS12ZXJzaW9uPTIwMjAtMDMtMDEuMTEuMA==", + "RequestUri": "/pools/testPool/nodes?api-version=2021-06-01.14.0", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDEuMTQuMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "0ee79975-4226-4c6c-9146-c2ae212fa963" + "b41f378d-7146-4a71-a041-807ef8f11641" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:13:24 GMT" + "Fri, 27 Aug 2021 16:16:14 GMT" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/13.0.20.15503", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", "AzurePowershell/Az1.0.0" ] }, @@ -31,7 +31,7 @@ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "c40ad592-0af2-4bbc-b92d-14631946550d" + "06365a33-15e3-4a28-aa62-ff459595a925" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -43,35 +43,38 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 22:13:46 GMT" + "Fri, 27 Aug 2021 16:16:13 GMT" ], "Content-Type": [ "application/json; odata=minimalmetadata" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://prodtest6.francecentral.batch.azure.com/$metadata#nodes\",\r\n \"value\": [\r\n {\r\n \"id\": \"tvmps_5588b2c9db0df4d8fcf672ea8dd42c28027e22241536de49d696c8540a826215_d\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/pools/testPool/nodes/tvmps_5588b2c9db0df4d8fcf672ea8dd42c28027e22241536de49d696c8540a826215_d\",\r\n \"state\": \"idle\",\r\n \"schedulingState\": \"enabled\",\r\n \"stateTransitionTime\": \"2020-06-09T17:11:36.058121Z\",\r\n \"lastBootTime\": \"2020-06-09T17:11:33.25425Z\",\r\n \"allocationTime\": \"2020-06-09T17:08:18.9130671Z\",\r\n \"ipAddress\": \"10.218.0.4\",\r\n \"affinityId\": \"TVM:tvmps_5588b2c9db0df4d8fcf672ea8dd42c28027e22241536de49d696c8540a826215_d\",\r\n \"vmSize\": \"standard_d2_v3\",\r\n \"totalTasksRun\": 0,\r\n \"totalTasksSucceeded\": 0,\r\n \"runningTasksCount\": 0,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c \\\"echo hello\\\"\",\r\n \"userIdentity\": {\r\n \"autoUser\": {\r\n \"scope\": \"pool\",\r\n \"elevationLevel\": \"nonadmin\"\r\n }\r\n },\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": true\r\n },\r\n \"startTaskInfo\": {\r\n \"state\": \"completed\",\r\n \"startTime\": \"2020-06-09T17:11:35.948758Z\",\r\n \"endTime\": \"2020-06-09T17:11:36.042491Z\",\r\n \"exitCode\": 0,\r\n \"result\": \"success\",\r\n \"retryCount\": 0\r\n },\r\n \"certificateReferences\": [],\r\n \"isDedicated\": true,\r\n \"endpointConfiguration\": {\r\n \"inboundEndpoints\": [\r\n {\r\n \"name\": \"Microsoft.WindowsAzure.Plugins.RemoteForwarder.RdpInput\",\r\n \"protocol\": \"tcp\",\r\n \"publicIPAddress\": \"20.43.39.67\",\r\n \"frontendPort\": 3389,\r\n \"backendPort\": 20000\r\n }\r\n ]\r\n },\r\n \"nodeAgentInfo\": {\r\n \"lastUpdateTime\": \"2020-06-09T17:11:33.25425Z\",\r\n \"version\": \"1.8.2\"\r\n }\r\n },\r\n {\r\n \"id\": \"tvmps_67c7cd533daccf422807a8e72192afe6b3bd035d859dc2b1b0844ccd2331aaba_d\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/pools/testPool/nodes/tvmps_67c7cd533daccf422807a8e72192afe6b3bd035d859dc2b1b0844ccd2331aaba_d\",\r\n \"state\": \"idle\",\r\n \"schedulingState\": \"enabled\",\r\n \"stateTransitionTime\": \"2020-06-09T16:57:43.09548Z\",\r\n \"lastBootTime\": \"2020-06-09T16:57:40.492514Z\",\r\n \"allocationTime\": \"2020-06-09T16:25:12.7257784Z\",\r\n \"ipAddress\": \"10.218.0.5\",\r\n \"affinityId\": \"TVM:tvmps_67c7cd533daccf422807a8e72192afe6b3bd035d859dc2b1b0844ccd2331aaba_d\",\r\n \"vmSize\": \"standard_d2_v3\",\r\n \"totalTasksRun\": 2,\r\n \"totalTasksSucceeded\": 1,\r\n \"runningTasksCount\": 0,\r\n \"recentTasks\": [],\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c \\\"echo hello\\\"\",\r\n \"userIdentity\": {\r\n \"autoUser\": {\r\n \"scope\": \"pool\",\r\n \"elevationLevel\": \"nonadmin\"\r\n }\r\n },\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": true\r\n },\r\n \"startTaskInfo\": {\r\n \"state\": \"completed\",\r\n \"startTime\": \"2020-06-09T16:57:42.986109Z\",\r\n \"endTime\": \"2020-06-09T16:57:43.09548Z\",\r\n \"exitCode\": 0,\r\n \"result\": \"success\",\r\n \"retryCount\": 0\r\n },\r\n \"certificateReferences\": [],\r\n \"isDedicated\": true,\r\n \"endpointConfiguration\": {\r\n \"inboundEndpoints\": [\r\n {\r\n \"name\": \"Microsoft.WindowsAzure.Plugins.RemoteForwarder.RdpInput\",\r\n \"protocol\": \"tcp\",\r\n \"publicIPAddress\": \"20.43.39.67\",\r\n \"frontendPort\": 3389,\r\n \"backendPort\": 20000\r\n }\r\n ]\r\n },\r\n \"nodeAgentInfo\": {\r\n \"lastUpdateTime\": \"2020-06-09T16:28:51.733507Z\",\r\n \"version\": \"1.8.2\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#nodes\",\r\n \"value\": [\r\n {\r\n \"id\": \"tvmps_06e333efaab6a295eddf31ab64af1beb132de30da2619fab68431dcc2a5e0c4f_d\",\r\n \"url\": \"https://mikeportal.eastus.batch.azure.com/pools/testPool/nodes/tvmps_06e333efaab6a295eddf31ab64af1beb132de30da2619fab68431dcc2a5e0c4f_d\",\r\n \"state\": \"idle\",\r\n \"schedulingState\": \"enabled\",\r\n \"stateTransitionTime\": \"2021-08-27T16:08:33.089447Z\",\r\n \"lastBootTime\": \"2021-08-27T01:31:49.00627Z\",\r\n \"allocationTime\": \"2021-08-27T01:30:23.4794868Z\",\r\n \"ipAddress\": \"10.218.0.4\",\r\n \"affinityId\": \"TVM:tvmps_06e333efaab6a295eddf31ab64af1beb132de30da2619fab68431dcc2a5e0c4f_d\",\r\n \"vmSize\": \"standard_d1_v2\",\r\n \"totalTasksRun\": 1,\r\n \"totalTasksSucceeded\": 1,\r\n \"runningTasksCount\": 0,\r\n \"runningTaskSlotsCount\": 0,\r\n \"recentTasks\": [\r\n {\r\n \"taskUrl\": \"https://mikeportal.eastus.batch.azure.com/jobs/createTaskCollectionJob/tasks/simple1\",\r\n \"jobId\": \"createTaskCollectionJob\",\r\n \"taskId\": \"simple1\",\r\n \"taskState\": \"completed\",\r\n \"executionInfo\": {\r\n \"startTime\": \"2021-08-27T16:08:33.02231Z\",\r\n \"endTime\": \"2021-08-27T16:08:33.069198Z\",\r\n \"exitCode\": 0,\r\n \"result\": \"success\",\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n }\r\n }\r\n ],\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"userIdentity\": {\r\n \"autoUser\": {\r\n \"scope\": \"pool\",\r\n \"elevationLevel\": \"nonadmin\"\r\n }\r\n },\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": true\r\n },\r\n \"startTaskInfo\": {\r\n \"state\": \"completed\",\r\n \"startTime\": \"2021-08-27T01:31:49.459393Z\",\r\n \"endTime\": \"2021-08-27T01:31:49.521897Z\",\r\n \"exitCode\": 0,\r\n \"result\": \"success\",\r\n \"retryCount\": 0\r\n },\r\n \"certificateReferences\": [],\r\n \"isDedicated\": true,\r\n \"endpointConfiguration\": {\r\n \"inboundEndpoints\": [\r\n {\r\n \"name\": \"Microsoft.WindowsAzure.Plugins.RemoteForwarder.RdpInput\",\r\n \"protocol\": \"tcp\",\r\n \"frontendPort\": 3389,\r\n \"backendPort\": 20000\r\n }\r\n ]\r\n },\r\n \"nodeAgentInfo\": {\r\n \"lastUpdateTime\": \"2021-08-27T01:31:49.00627Z\",\r\n \"version\": \"1.9.14\"\r\n },\r\n \"virtualMachineInfo\": {}\r\n },\r\n {\r\n \"id\": \"tvmps_4109062b0e8548c8f8e8341010d95a7f915aa2dbcbf46cd71183db0d156bec9b_d\",\r\n \"url\": \"https://mikeportal.eastus.batch.azure.com/pools/testPool/nodes/tvmps_4109062b0e8548c8f8e8341010d95a7f915aa2dbcbf46cd71183db0d156bec9b_d\",\r\n \"state\": \"idle\",\r\n \"schedulingState\": \"enabled\",\r\n \"stateTransitionTime\": \"2021-08-27T01:31:49.476266Z\",\r\n \"lastBootTime\": \"2021-08-27T01:31:49.004852Z\",\r\n \"allocationTime\": \"2021-08-27T01:30:23.4794868Z\",\r\n \"ipAddress\": \"10.218.0.6\",\r\n \"affinityId\": \"TVM:tvmps_4109062b0e8548c8f8e8341010d95a7f915aa2dbcbf46cd71183db0d156bec9b_d\",\r\n \"vmSize\": \"standard_d1_v2\",\r\n \"totalTasksRun\": 0,\r\n \"totalTasksSucceeded\": 0,\r\n \"runningTasksCount\": 0,\r\n \"runningTaskSlotsCount\": 0,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"userIdentity\": {\r\n \"autoUser\": {\r\n \"scope\": \"pool\",\r\n \"elevationLevel\": \"nonadmin\"\r\n }\r\n },\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": true\r\n },\r\n \"startTaskInfo\": {\r\n \"state\": \"completed\",\r\n \"startTime\": \"2021-08-27T01:31:49.413766Z\",\r\n \"endTime\": \"2021-08-27T01:31:49.476266Z\",\r\n \"exitCode\": 0,\r\n \"result\": \"success\",\r\n \"retryCount\": 0\r\n },\r\n \"certificateReferences\": [],\r\n \"isDedicated\": true,\r\n \"endpointConfiguration\": {\r\n \"inboundEndpoints\": [\r\n {\r\n \"name\": \"Microsoft.WindowsAzure.Plugins.RemoteForwarder.RdpInput\",\r\n \"protocol\": \"tcp\",\r\n \"frontendPort\": 3389,\r\n \"backendPort\": 20000\r\n }\r\n ]\r\n },\r\n \"nodeAgentInfo\": {\r\n \"lastUpdateTime\": \"2021-08-27T01:31:49.004852Z\",\r\n \"version\": \"1.9.14\"\r\n },\r\n \"virtualMachineInfo\": {}\r\n },\r\n {\r\n \"id\": \"tvmps_c05b99b79b9007429d25b6be89631ca2778f46762979e27e83ebe323eb0de497_d\",\r\n \"url\": \"https://mikeportal.eastus.batch.azure.com/pools/testPool/nodes/tvmps_c05b99b79b9007429d25b6be89631ca2778f46762979e27e83ebe323eb0de497_d\",\r\n \"state\": \"idle\",\r\n \"schedulingState\": \"enabled\",\r\n \"stateTransitionTime\": \"2021-08-27T16:15:28.865336Z\",\r\n \"lastBootTime\": \"2021-08-27T01:31:49.018049Z\",\r\n \"allocationTime\": \"2021-08-27T01:30:23.4794868Z\",\r\n \"ipAddress\": \"10.218.0.5\",\r\n \"affinityId\": \"TVM:tvmps_c05b99b79b9007429d25b6be89631ca2778f46762979e27e83ebe323eb0de497_d\",\r\n \"vmSize\": \"standard_d1_v2\",\r\n \"totalTasksRun\": 2,\r\n \"totalTasksSucceeded\": 1,\r\n \"runningTasksCount\": 0,\r\n \"runningTaskSlotsCount\": 0,\r\n \"recentTasks\": [\r\n {\r\n \"taskUrl\": \"https://mikeportal.eastus.batch.azure.com/jobs/testTerminateTaskJob/tasks/testTask2\",\r\n \"jobId\": \"testTerminateTaskJob\",\r\n \"taskId\": \"testTask2\",\r\n \"taskState\": \"completed\",\r\n \"executionInfo\": {\r\n \"startTime\": \"2021-08-27T16:15:28.740332Z\",\r\n \"endTime\": \"2021-08-27T16:15:28.818458Z\",\r\n \"exitCode\": -1073741510,\r\n \"failureInfo\": {\r\n \"category\": \"UserError\",\r\n \"code\": \"TaskEnded\",\r\n \"message\": \"Task Was Ended by User Request\",\r\n \"details\": [\r\n {\r\n \"name\": \"AdditionalErrorCode\",\r\n \"value\": \"FailureExitCode\"\r\n }\r\n ]\r\n },\r\n \"result\": \"failure\",\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n }\r\n }\r\n ],\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"userIdentity\": {\r\n \"autoUser\": {\r\n \"scope\": \"pool\",\r\n \"elevationLevel\": \"nonadmin\"\r\n }\r\n },\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": true\r\n },\r\n \"startTaskInfo\": {\r\n \"state\": \"completed\",\r\n \"startTime\": \"2021-08-27T01:31:49.519546Z\",\r\n \"endTime\": \"2021-08-27T01:31:49.582959Z\",\r\n \"exitCode\": 0,\r\n \"result\": \"success\",\r\n \"retryCount\": 0\r\n },\r\n \"certificateReferences\": [],\r\n \"isDedicated\": true,\r\n \"endpointConfiguration\": {\r\n \"inboundEndpoints\": [\r\n {\r\n \"name\": \"Microsoft.WindowsAzure.Plugins.RemoteForwarder.RdpInput\",\r\n \"protocol\": \"tcp\",\r\n \"frontendPort\": 3389,\r\n \"backendPort\": 20000\r\n }\r\n ]\r\n },\r\n \"nodeAgentInfo\": {\r\n \"lastUpdateTime\": \"2021-08-27T01:31:49.018049Z\",\r\n \"version\": \"1.9.14\"\r\n },\r\n \"virtualMachineInfo\": {}\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/pools/testPool/nodes/tvmps_5588b2c9db0df4d8fcf672ea8dd42c28027e22241536de49d696c8540a826215_d/users?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bXBzXzU1ODhiMmM5ZGIwZGY0ZDhmY2Y2NzJlYThkZDQyYzI4MDI3ZTIyMjQxNTM2ZGU0OWQ2OTZjODU0MGE4MjYyMTVfZC91c2Vycz9hcGktdmVyc2lvbj0yMDIwLTAzLTAxLjExLjA=", + "RequestUri": "/pools/testPool/nodes/tvmps_06e333efaab6a295eddf31ab64af1beb132de30da2619fab68431dcc2a5e0c4f_d/users?api-version=2021-06-01.14.0", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bXBzXzA2ZTMzM2VmYWFiNmEyOTVlZGRmMzFhYjY0YWYxYmViMTMyZGUzMGRhMjYxOWZhYjY4NDMxZGNjMmE1ZTBjNGZfZC91c2Vycz9hcGktdmVyc2lvbj0yMDIxLTA2LTAxLjE0LjA=", "RequestMethod": "POST", "RequestBody": "{\r\n \"name\": \"userendtoend\",\r\n \"isAdmin\": false,\r\n \"expiryTime\": \"0001-01-01T00:00:00Z\",\r\n \"password\": \"Password1234!\"\r\n}", "RequestHeaders": { "client-request-id": [ - "8f3700d8-65a5-4bdd-bfe9-f87a8fee0de1" + "159f5ab1-e649-4c54-9bc9-43e131986b99" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:13:47 GMT" + "Fri, 27 Aug 2021 16:16:15 GMT" + ], + "x-ms-client-request-id": [ + "52a1cf39-9a62-4294-8cf0-6de5124108a9" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/13.0.20.15503", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", "AzurePowershell/Az1.0.0" ], "Content-Type": [ @@ -86,13 +89,13 @@ "chunked" ], "Location": [ - "https://prodtest6.francecentral.batch.azure.com/pools/testPool/nodes/tvmps_5588b2c9db0df4d8fcf672ea8dd42c28027e22241536de49d696c8540a826215_d/users/userendtoend" + "https://mikeportal.eastus.batch.azure.com/pools/testPool/nodes/tvmps_06e333efaab6a295eddf31ab64af1beb132de30da2619fab68431dcc2a5e0c4f_d/users/userendtoend" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "9f22a845-ccfb-4701-a95a-e4da150b5d1f" + "87e5e6ce-651d-4d51-8444-18db6280dd6d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -104,42 +107,45 @@ "3.0" ], "DataServiceId": [ - "https://prodtest6.francecentral.batch.azure.com/pools/testPool/nodes/tvmps_5588b2c9db0df4d8fcf672ea8dd42c28027e22241536de49d696c8540a826215_d/users/userendtoend" + "https://mikeportal.eastus.batch.azure.com/pools/testPool/nodes/tvmps_06e333efaab6a295eddf31ab64af1beb132de30da2619fab68431dcc2a5e0c4f_d/users/userendtoend" ], "Date": [ - "Tue, 09 Jun 2020 22:14:09 GMT" + "Fri, 27 Aug 2021 16:16:14 GMT" ] }, "ResponseBody": "", "StatusCode": 201 }, { - "RequestUri": "/pools/testPool/nodes/tvmps_5588b2c9db0df4d8fcf672ea8dd42c28027e22241536de49d696c8540a826215_d/users/userendtoend?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bXBzXzU1ODhiMmM5ZGIwZGY0ZDhmY2Y2NzJlYThkZDQyYzI4MDI3ZTIyMjQxNTM2ZGU0OWQ2OTZjODU0MGE4MjYyMTVfZC91c2Vycy91c2VyZW5kdG9lbmQ/YXBpLXZlcnNpb249MjAyMC0wMy0wMS4xMS4w", + "RequestUri": "/pools/testPool/nodes/tvmps_06e333efaab6a295eddf31ab64af1beb132de30da2619fab68431dcc2a5e0c4f_d/users/userendtoend?api-version=2021-06-01.14.0", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bXBzXzA2ZTMzM2VmYWFiNmEyOTVlZGRmMzFhYjY0YWYxYmViMTMyZGUzMGRhMjYxOWZhYjY4NDMxZGNjMmE1ZTBjNGZfZC91c2Vycy91c2VyZW5kdG9lbmQ/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4w", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"password\": \"Abcdefghijk1234!\",\r\n \"expiryTime\": \"2020-06-14T22:14:09.7239077Z\"\r\n}", + "RequestBody": "{\r\n \"password\": \"Abcdefghijk1234!\",\r\n \"expiryTime\": \"2021-09-01T16:16:15.566564Z\"\r\n}", "RequestHeaders": { "client-request-id": [ - "7ff221ae-45fb-4475-819d-a2a226b161c1" + "7155c638-ce6a-4f8f-9848-290798c7fd7d" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:14:09 GMT" + "Fri, 27 Aug 2021 16:16:15 GMT" + ], + "x-ms-client-request-id": [ + "db15b9b9-bc50-425a-8bc3-d9615fe57007" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/13.0.20.15503", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", "AzurePowershell/Az1.0.0" ], "Content-Type": [ "application/json; odata=minimalmetadata; charset=utf-8" ], "Content-Length": [ - "87" + "86" ] }, "ResponseHeaders": { @@ -150,7 +156,7 @@ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "ab86e2ce-1d0f-4a2d-b02c-3f9a22c48143" + "5b320928-e242-490f-bda4-4ef9ca4868f1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -162,35 +168,38 @@ "3.0" ], "DataServiceId": [ - "https://prodtest6.francecentral.batch.azure.com/pools/testPool/nodes/tvmps_5588b2c9db0df4d8fcf672ea8dd42c28027e22241536de49d696c8540a826215_d/users/userendtoend" + "https://mikeportal.eastus.batch.azure.com/pools/testPool/nodes/tvmps_06e333efaab6a295eddf31ab64af1beb132de30da2619fab68431dcc2a5e0c4f_d/users/userendtoend" ], "Date": [ - "Tue, 09 Jun 2020 22:14:09 GMT" + "Fri, 27 Aug 2021 16:16:14 GMT" ] }, "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/pools/testPool/nodes/tvmps_5588b2c9db0df4d8fcf672ea8dd42c28027e22241536de49d696c8540a826215_d/users/userendtoend?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bXBzXzU1ODhiMmM5ZGIwZGY0ZDhmY2Y2NzJlYThkZDQyYzI4MDI3ZTIyMjQxNTM2ZGU0OWQ2OTZjODU0MGE4MjYyMTVfZC91c2Vycy91c2VyZW5kdG9lbmQ/YXBpLXZlcnNpb249MjAyMC0wMy0wMS4xMS4w", + "RequestUri": "/pools/testPool/nodes/tvmps_06e333efaab6a295eddf31ab64af1beb132de30da2619fab68431dcc2a5e0c4f_d/users/userendtoend?api-version=2021-06-01.14.0", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bXBzXzA2ZTMzM2VmYWFiNmEyOTVlZGRmMzFhYjY0YWYxYmViMTMyZGUzMGRhMjYxOWZhYjY4NDMxZGNjMmE1ZTBjNGZfZC91c2Vycy91c2VyZW5kdG9lbmQ/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4w", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "a9f14143-45de-46d7-a761-bcb69d4d4da7" + "56ca25f4-936d-4ff2-8408-05714d6da272" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:14:10 GMT" + "Fri, 27 Aug 2021 16:16:15 GMT" + ], + "x-ms-client-request-id": [ + "b631f3ff-e490-4a2e-9aa2-9d47b26e3488" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/13.0.20.15503", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", "AzurePowershell/Az1.0.0" ], "Content-Length": [ @@ -205,7 +214,7 @@ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "48fd3662-a85c-422a-94ee-d9298335697b" + "ff21a093-fc64-49a5-b5b5-33cea1a16f13" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -217,32 +226,35 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 22:14:09 GMT" + "Fri, 27 Aug 2021 16:16:14 GMT" ] }, "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/pools/testPool/nodes/tvmps_5588b2c9db0df4d8fcf672ea8dd42c28027e22241536de49d696c8540a826215_d/users/userendtoend?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bXBzXzU1ODhiMmM5ZGIwZGY0ZDhmY2Y2NzJlYThkZDQyYzI4MDI3ZTIyMjQxNTM2ZGU0OWQ2OTZjODU0MGE4MjYyMTVfZC91c2Vycy91c2VyZW5kdG9lbmQ/YXBpLXZlcnNpb249MjAyMC0wMy0wMS4xMS4w", + "RequestUri": "/pools/testPool/nodes/tvmps_06e333efaab6a295eddf31ab64af1beb132de30da2619fab68431dcc2a5e0c4f_d/users/userendtoend?api-version=2021-06-01.14.0", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bXBzXzA2ZTMzM2VmYWFiNmEyOTVlZGRmMzFhYjY0YWYxYmViMTMyZGUzMGRhMjYxOWZhYjY4NDMxZGNjMmE1ZTBjNGZfZC91c2Vycy91c2VyZW5kdG9lbmQ/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4w", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "b02f83f2-b617-490c-81bc-2cc1b52d81ed" + "7865f4f9-85fa-43b6-9a81-af83d936ffbc" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:14:10 GMT" + "Fri, 27 Aug 2021 16:16:15 GMT" + ], + "x-ms-client-request-id": [ + "76df94b4-c49d-4afd-a770-27502424e88d" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/13.0.20.15503", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", "AzurePowershell/Az1.0.0" ], "Content-Length": [ @@ -254,7 +266,7 @@ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "0f51db3f-ef26-4008-8bd4-b47e82a7d1ba" + "a1f8f0cf-9ae2-48b8-8e18-3d3793d82d11" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -266,24 +278,24 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 22:14:10 GMT" + "Fri, 27 Aug 2021 16:16:14 GMT" ], "Content-Length": [ - "346" + "340" ], "Content-Type": [ "application/json; odata=minimalmetadata" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://prodtest6.francecentral.batch.azure.com/$metadata#Microsoft.Azure.Batch.Protocol.Entities.Container.errors/@Element\",\r\n \"code\": \"NodeUserNotFound\",\r\n \"message\": {\r\n \"lang\": \"en-US\",\r\n \"value\": \"The specified node user does not exist.\\nRequestId:0f51db3f-ef26-4008-8bd4-b47e82a7d1ba\\nTime:2020-06-09T22:14:10.6811398Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#Microsoft.Azure.Batch.Protocol.Entities.Container.errors/@Element\",\r\n \"code\": \"NodeUserNotFound\",\r\n \"message\": {\r\n \"lang\": \"en-US\",\r\n \"value\": \"The specified node user does not exist.\\nRequestId:a1f8f0cf-9ae2-48b8-8e18-3d3793d82d11\\nTime:2021-08-27T16:16:14.9906161Z\"\r\n }\r\n}", "StatusCode": 404 } ], "Names": {}, "Variables": { - "SubscriptionId": "21abd678-18c5-4660-9fdd-8c5ba6b6fe1f", - "AZURE_BATCH_ACCOUNT": "prodtest6", - "AZURE_BATCH_ENDPOINT": "https://prodtest6.francecentral.batch.azure.com", - "AZURE_BATCH_RESOURCE_GROUP": "abc" + "SubscriptionId": "ba2358c2-42f2-4138-88df-7c68cf608bea", + "AZURE_BATCH_ACCOUNT": "mikeportal", + "AZURE_BATCH_ENDPOINT": "https://mikeportal.eastus.batch.azure.com", + "AZURE_BATCH_RESOURCE_GROUP": "batchportal" } } \ No newline at end of file diff --git a/src/Batch/Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.FileTests/TestGetRemoteDesktopProtocolFile.json b/src/Batch/Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.FileTests/TestGetRemoteDesktopProtocolFile.json index f18802684eb8..515f2a4efadb 100644 --- a/src/Batch/Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.FileTests/TestGetRemoteDesktopProtocolFile.json +++ b/src/Batch/Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.FileTests/TestGetRemoteDesktopProtocolFile.json @@ -1,25 +1,25 @@ { "Entries": [ { - "RequestUri": "/pools/testPool/nodes?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzP2FwaS12ZXJzaW9uPTIwMjAtMDMtMDEuMTEuMA==", + "RequestUri": "/pools/testPool/nodes?api-version=2021-06-01.14.0", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDEuMTQuMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "944333f7-213a-46b5-922e-f55496737218" + "a074910b-c83a-4d18-a907-ddda3810061d" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 21:03:18 GMT" + "Fri, 27 Aug 2021 16:16:17 GMT" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/13.0.20.15503", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", "AzurePowershell/Az1.0.0" ] }, @@ -31,7 +31,7 @@ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "74631f22-b164-4cbd-8988-cdd643e978f2" + "e40e6ce2-4ee2-4ec9-8413-9de39645455b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -43,35 +43,38 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 21:03:40 GMT" + "Fri, 27 Aug 2021 16:16:17 GMT" ], "Content-Type": [ "application/json; odata=minimalmetadata" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://prodtest6.francecentral.batch.azure.com/$metadata#nodes\",\r\n \"value\": [\r\n {\r\n \"id\": \"tvmps_5588b2c9db0df4d8fcf672ea8dd42c28027e22241536de49d696c8540a826215_d\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/pools/testPool/nodes/tvmps_5588b2c9db0df4d8fcf672ea8dd42c28027e22241536de49d696c8540a826215_d\",\r\n \"state\": \"idle\",\r\n \"schedulingState\": \"enabled\",\r\n \"stateTransitionTime\": \"2020-06-09T17:11:36.058121Z\",\r\n \"lastBootTime\": \"2020-06-09T17:11:33.25425Z\",\r\n \"allocationTime\": \"2020-06-09T17:08:18.9130671Z\",\r\n \"ipAddress\": \"10.218.0.4\",\r\n \"affinityId\": \"TVM:tvmps_5588b2c9db0df4d8fcf672ea8dd42c28027e22241536de49d696c8540a826215_d\",\r\n \"vmSize\": \"standard_d2_v3\",\r\n \"totalTasksRun\": 0,\r\n \"totalTasksSucceeded\": 0,\r\n \"runningTasksCount\": 0,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c \\\"echo hello\\\"\",\r\n \"userIdentity\": {\r\n \"autoUser\": {\r\n \"scope\": \"pool\",\r\n \"elevationLevel\": \"nonadmin\"\r\n }\r\n },\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": true\r\n },\r\n \"startTaskInfo\": {\r\n \"state\": \"completed\",\r\n \"startTime\": \"2020-06-09T17:11:35.948758Z\",\r\n \"endTime\": \"2020-06-09T17:11:36.042491Z\",\r\n \"exitCode\": 0,\r\n \"result\": \"success\",\r\n \"retryCount\": 0\r\n },\r\n \"certificateReferences\": [],\r\n \"isDedicated\": true,\r\n \"endpointConfiguration\": {\r\n \"inboundEndpoints\": [\r\n {\r\n \"name\": \"Microsoft.WindowsAzure.Plugins.RemoteForwarder.RdpInput\",\r\n \"protocol\": \"tcp\",\r\n \"publicIPAddress\": \"20.43.39.67\",\r\n \"frontendPort\": 3389,\r\n \"backendPort\": 20000\r\n }\r\n ]\r\n },\r\n \"nodeAgentInfo\": {\r\n \"lastUpdateTime\": \"2020-06-09T17:11:33.25425Z\",\r\n \"version\": \"1.8.2\"\r\n }\r\n },\r\n {\r\n \"id\": \"tvmps_67c7cd533daccf422807a8e72192afe6b3bd035d859dc2b1b0844ccd2331aaba_d\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/pools/testPool/nodes/tvmps_67c7cd533daccf422807a8e72192afe6b3bd035d859dc2b1b0844ccd2331aaba_d\",\r\n \"state\": \"idle\",\r\n \"schedulingState\": \"enabled\",\r\n \"stateTransitionTime\": \"2020-06-09T16:57:43.09548Z\",\r\n \"lastBootTime\": \"2020-06-09T16:57:40.492514Z\",\r\n \"allocationTime\": \"2020-06-09T16:25:12.7257784Z\",\r\n \"ipAddress\": \"10.218.0.5\",\r\n \"affinityId\": \"TVM:tvmps_67c7cd533daccf422807a8e72192afe6b3bd035d859dc2b1b0844ccd2331aaba_d\",\r\n \"vmSize\": \"standard_d2_v3\",\r\n \"totalTasksRun\": 2,\r\n \"totalTasksSucceeded\": 1,\r\n \"runningTasksCount\": 0,\r\n \"recentTasks\": [],\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c \\\"echo hello\\\"\",\r\n \"userIdentity\": {\r\n \"autoUser\": {\r\n \"scope\": \"pool\",\r\n \"elevationLevel\": \"nonadmin\"\r\n }\r\n },\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": true\r\n },\r\n \"startTaskInfo\": {\r\n \"state\": \"completed\",\r\n \"startTime\": \"2020-06-09T16:57:42.986109Z\",\r\n \"endTime\": \"2020-06-09T16:57:43.09548Z\",\r\n \"exitCode\": 0,\r\n \"result\": \"success\",\r\n \"retryCount\": 0\r\n },\r\n \"certificateReferences\": [],\r\n \"isDedicated\": true,\r\n \"endpointConfiguration\": {\r\n \"inboundEndpoints\": [\r\n {\r\n \"name\": \"Microsoft.WindowsAzure.Plugins.RemoteForwarder.RdpInput\",\r\n \"protocol\": \"tcp\",\r\n \"publicIPAddress\": \"20.43.39.67\",\r\n \"frontendPort\": 3389,\r\n \"backendPort\": 20000\r\n }\r\n ]\r\n },\r\n \"nodeAgentInfo\": {\r\n \"lastUpdateTime\": \"2020-06-09T16:28:51.733507Z\",\r\n \"version\": \"1.8.2\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#nodes\",\r\n \"value\": [\r\n {\r\n \"id\": \"tvmps_06e333efaab6a295eddf31ab64af1beb132de30da2619fab68431dcc2a5e0c4f_d\",\r\n \"url\": \"https://mikeportal.eastus.batch.azure.com/pools/testPool/nodes/tvmps_06e333efaab6a295eddf31ab64af1beb132de30da2619fab68431dcc2a5e0c4f_d\",\r\n \"state\": \"idle\",\r\n \"schedulingState\": \"enabled\",\r\n \"stateTransitionTime\": \"2021-08-27T16:08:33.089447Z\",\r\n \"lastBootTime\": \"2021-08-27T01:31:49.00627Z\",\r\n \"allocationTime\": \"2021-08-27T01:30:23.4794868Z\",\r\n \"ipAddress\": \"10.218.0.4\",\r\n \"affinityId\": \"TVM:tvmps_06e333efaab6a295eddf31ab64af1beb132de30da2619fab68431dcc2a5e0c4f_d\",\r\n \"vmSize\": \"standard_d1_v2\",\r\n \"totalTasksRun\": 1,\r\n \"totalTasksSucceeded\": 1,\r\n \"runningTasksCount\": 0,\r\n \"runningTaskSlotsCount\": 0,\r\n \"recentTasks\": [\r\n {\r\n \"taskUrl\": \"https://mikeportal.eastus.batch.azure.com/jobs/createTaskCollectionJob/tasks/simple1\",\r\n \"jobId\": \"createTaskCollectionJob\",\r\n \"taskId\": \"simple1\",\r\n \"taskState\": \"completed\",\r\n \"executionInfo\": {\r\n \"startTime\": \"2021-08-27T16:08:33.02231Z\",\r\n \"endTime\": \"2021-08-27T16:08:33.069198Z\",\r\n \"exitCode\": 0,\r\n \"result\": \"success\",\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n }\r\n }\r\n ],\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"userIdentity\": {\r\n \"autoUser\": {\r\n \"scope\": \"pool\",\r\n \"elevationLevel\": \"nonadmin\"\r\n }\r\n },\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": true\r\n },\r\n \"startTaskInfo\": {\r\n \"state\": \"completed\",\r\n \"startTime\": \"2021-08-27T01:31:49.459393Z\",\r\n \"endTime\": \"2021-08-27T01:31:49.521897Z\",\r\n \"exitCode\": 0,\r\n \"result\": \"success\",\r\n \"retryCount\": 0\r\n },\r\n \"certificateReferences\": [],\r\n \"isDedicated\": true,\r\n \"endpointConfiguration\": {\r\n \"inboundEndpoints\": [\r\n {\r\n \"name\": \"Microsoft.WindowsAzure.Plugins.RemoteForwarder.RdpInput\",\r\n \"protocol\": \"tcp\",\r\n \"frontendPort\": 3389,\r\n \"backendPort\": 20000\r\n }\r\n ]\r\n },\r\n \"nodeAgentInfo\": {\r\n \"lastUpdateTime\": \"2021-08-27T01:31:49.00627Z\",\r\n \"version\": \"1.9.14\"\r\n },\r\n \"virtualMachineInfo\": {}\r\n },\r\n {\r\n \"id\": \"tvmps_4109062b0e8548c8f8e8341010d95a7f915aa2dbcbf46cd71183db0d156bec9b_d\",\r\n \"url\": \"https://mikeportal.eastus.batch.azure.com/pools/testPool/nodes/tvmps_4109062b0e8548c8f8e8341010d95a7f915aa2dbcbf46cd71183db0d156bec9b_d\",\r\n \"state\": \"idle\",\r\n \"schedulingState\": \"enabled\",\r\n \"stateTransitionTime\": \"2021-08-27T01:31:49.476266Z\",\r\n \"lastBootTime\": \"2021-08-27T01:31:49.004852Z\",\r\n \"allocationTime\": \"2021-08-27T01:30:23.4794868Z\",\r\n \"ipAddress\": \"10.218.0.6\",\r\n \"affinityId\": \"TVM:tvmps_4109062b0e8548c8f8e8341010d95a7f915aa2dbcbf46cd71183db0d156bec9b_d\",\r\n \"vmSize\": \"standard_d1_v2\",\r\n \"totalTasksRun\": 0,\r\n \"totalTasksSucceeded\": 0,\r\n \"runningTasksCount\": 0,\r\n \"runningTaskSlotsCount\": 0,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"userIdentity\": {\r\n \"autoUser\": {\r\n \"scope\": \"pool\",\r\n \"elevationLevel\": \"nonadmin\"\r\n }\r\n },\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": true\r\n },\r\n \"startTaskInfo\": {\r\n \"state\": \"completed\",\r\n \"startTime\": \"2021-08-27T01:31:49.413766Z\",\r\n \"endTime\": \"2021-08-27T01:31:49.476266Z\",\r\n \"exitCode\": 0,\r\n \"result\": \"success\",\r\n \"retryCount\": 0\r\n },\r\n \"certificateReferences\": [],\r\n \"isDedicated\": true,\r\n \"endpointConfiguration\": {\r\n \"inboundEndpoints\": [\r\n {\r\n \"name\": \"Microsoft.WindowsAzure.Plugins.RemoteForwarder.RdpInput\",\r\n \"protocol\": \"tcp\",\r\n \"frontendPort\": 3389,\r\n \"backendPort\": 20000\r\n }\r\n ]\r\n },\r\n \"nodeAgentInfo\": {\r\n \"lastUpdateTime\": \"2021-08-27T01:31:49.004852Z\",\r\n \"version\": \"1.9.14\"\r\n },\r\n \"virtualMachineInfo\": {}\r\n },\r\n {\r\n \"id\": \"tvmps_c05b99b79b9007429d25b6be89631ca2778f46762979e27e83ebe323eb0de497_d\",\r\n \"url\": \"https://mikeportal.eastus.batch.azure.com/pools/testPool/nodes/tvmps_c05b99b79b9007429d25b6be89631ca2778f46762979e27e83ebe323eb0de497_d\",\r\n \"state\": \"idle\",\r\n \"schedulingState\": \"enabled\",\r\n \"stateTransitionTime\": \"2021-08-27T16:15:28.865336Z\",\r\n \"lastBootTime\": \"2021-08-27T01:31:49.018049Z\",\r\n \"allocationTime\": \"2021-08-27T01:30:23.4794868Z\",\r\n \"ipAddress\": \"10.218.0.5\",\r\n \"affinityId\": \"TVM:tvmps_c05b99b79b9007429d25b6be89631ca2778f46762979e27e83ebe323eb0de497_d\",\r\n \"vmSize\": \"standard_d1_v2\",\r\n \"totalTasksRun\": 2,\r\n \"totalTasksSucceeded\": 1,\r\n \"runningTasksCount\": 0,\r\n \"runningTaskSlotsCount\": 0,\r\n \"recentTasks\": [\r\n {\r\n \"taskUrl\": \"https://mikeportal.eastus.batch.azure.com/jobs/testTerminateTaskJob/tasks/testTask2\",\r\n \"jobId\": \"testTerminateTaskJob\",\r\n \"taskId\": \"testTask2\",\r\n \"taskState\": \"completed\",\r\n \"executionInfo\": {\r\n \"startTime\": \"2021-08-27T16:15:28.740332Z\",\r\n \"endTime\": \"2021-08-27T16:15:28.818458Z\",\r\n \"exitCode\": -1073741510,\r\n \"failureInfo\": {\r\n \"category\": \"UserError\",\r\n \"code\": \"TaskEnded\",\r\n \"message\": \"Task Was Ended by User Request\",\r\n \"details\": [\r\n {\r\n \"name\": \"AdditionalErrorCode\",\r\n \"value\": \"FailureExitCode\"\r\n }\r\n ]\r\n },\r\n \"result\": \"failure\",\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n }\r\n }\r\n ],\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"userIdentity\": {\r\n \"autoUser\": {\r\n \"scope\": \"pool\",\r\n \"elevationLevel\": \"nonadmin\"\r\n }\r\n },\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": true\r\n },\r\n \"startTaskInfo\": {\r\n \"state\": \"completed\",\r\n \"startTime\": \"2021-08-27T01:31:49.519546Z\",\r\n \"endTime\": \"2021-08-27T01:31:49.582959Z\",\r\n \"exitCode\": 0,\r\n \"result\": \"success\",\r\n \"retryCount\": 0\r\n },\r\n \"certificateReferences\": [],\r\n \"isDedicated\": true,\r\n \"endpointConfiguration\": {\r\n \"inboundEndpoints\": [\r\n {\r\n \"name\": \"Microsoft.WindowsAzure.Plugins.RemoteForwarder.RdpInput\",\r\n \"protocol\": \"tcp\",\r\n \"frontendPort\": 3389,\r\n \"backendPort\": 20000\r\n }\r\n ]\r\n },\r\n \"nodeAgentInfo\": {\r\n \"lastUpdateTime\": \"2021-08-27T01:31:49.018049Z\",\r\n \"version\": \"1.9.14\"\r\n },\r\n \"virtualMachineInfo\": {}\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/pools/testPool/nodes/tvmps_5588b2c9db0df4d8fcf672ea8dd42c28027e22241536de49d696c8540a826215_d?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bXBzXzU1ODhiMmM5ZGIwZGY0ZDhmY2Y2NzJlYThkZDQyYzI4MDI3ZTIyMjQxNTM2ZGU0OWQ2OTZjODU0MGE4MjYyMTVfZD9hcGktdmVyc2lvbj0yMDIwLTAzLTAxLjExLjA=", + "RequestUri": "/pools/testPool/nodes/tvmps_06e333efaab6a295eddf31ab64af1beb132de30da2619fab68431dcc2a5e0c4f_d?api-version=2021-06-01.14.0", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bXBzXzA2ZTMzM2VmYWFiNmEyOTVlZGRmMzFhYjY0YWYxYmViMTMyZGUzMGRhMjYxOWZhYjY4NDMxZGNjMmE1ZTBjNGZfZD9hcGktdmVyc2lvbj0yMDIxLTA2LTAxLjE0LjA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "c08b86dc-ea61-4d26-9a7a-40c040b0968e" + "83907241-2403-4730-bac0-b2eeb09f26f9" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 21:03:40 GMT" + "Fri, 27 Aug 2021 16:16:18 GMT" + ], + "x-ms-client-request-id": [ + "becac45b-4b36-4617-a7a2-d0e47ff05a83" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/13.0.20.15503", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", "AzurePowershell/Az1.0.0" ] }, @@ -83,7 +86,7 @@ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "0326c52f-192d-4079-87a4-e5e187e4d709" + "122c7329-ea7c-4159-aa2a-37e1b244e84f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -95,35 +98,38 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 21:04:02 GMT" + "Fri, 27 Aug 2021 16:16:17 GMT" ], "Content-Type": [ "application/json; odata=minimalmetadata" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://prodtest6.francecentral.batch.azure.com/$metadata#nodes/@Element\",\r\n \"id\": \"tvmps_5588b2c9db0df4d8fcf672ea8dd42c28027e22241536de49d696c8540a826215_d\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/pools/testPool/nodes/tvmps_5588b2c9db0df4d8fcf672ea8dd42c28027e22241536de49d696c8540a826215_d\",\r\n \"state\": \"idle\",\r\n \"schedulingState\": \"enabled\",\r\n \"stateTransitionTime\": \"2020-06-09T17:11:36.058121Z\",\r\n \"lastBootTime\": \"2020-06-09T17:11:33.25425Z\",\r\n \"allocationTime\": \"2020-06-09T17:08:18.9130671Z\",\r\n \"ipAddress\": \"10.218.0.4\",\r\n \"affinityId\": \"TVM:tvmps_5588b2c9db0df4d8fcf672ea8dd42c28027e22241536de49d696c8540a826215_d\",\r\n \"vmSize\": \"standard_d2_v3\",\r\n \"totalTasksRun\": 0,\r\n \"totalTasksSucceeded\": 0,\r\n \"runningTasksCount\": 0,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c \\\"echo hello\\\"\",\r\n \"userIdentity\": {\r\n \"autoUser\": {\r\n \"scope\": \"pool\",\r\n \"elevationLevel\": \"nonadmin\"\r\n }\r\n },\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": true\r\n },\r\n \"startTaskInfo\": {\r\n \"state\": \"completed\",\r\n \"startTime\": \"2020-06-09T17:11:35.948758Z\",\r\n \"endTime\": \"2020-06-09T17:11:36.042491Z\",\r\n \"exitCode\": 0,\r\n \"result\": \"success\",\r\n \"retryCount\": 0\r\n },\r\n \"certificateReferences\": [],\r\n \"isDedicated\": true,\r\n \"endpointConfiguration\": {\r\n \"inboundEndpoints\": [\r\n {\r\n \"name\": \"Microsoft.WindowsAzure.Plugins.RemoteForwarder.RdpInput\",\r\n \"protocol\": \"tcp\",\r\n \"publicIPAddress\": \"20.43.39.67\",\r\n \"frontendPort\": 3389,\r\n \"backendPort\": 20000\r\n }\r\n ]\r\n },\r\n \"nodeAgentInfo\": {\r\n \"lastUpdateTime\": \"2020-06-09T17:11:33.25425Z\",\r\n \"version\": \"1.8.2\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#nodes/@Element\",\r\n \"id\": \"tvmps_06e333efaab6a295eddf31ab64af1beb132de30da2619fab68431dcc2a5e0c4f_d\",\r\n \"url\": \"https://mikeportal.eastus.batch.azure.com/pools/testPool/nodes/tvmps_06e333efaab6a295eddf31ab64af1beb132de30da2619fab68431dcc2a5e0c4f_d\",\r\n \"state\": \"idle\",\r\n \"schedulingState\": \"enabled\",\r\n \"stateTransitionTime\": \"2021-08-27T16:08:33.089447Z\",\r\n \"lastBootTime\": \"2021-08-27T01:31:49.00627Z\",\r\n \"allocationTime\": \"2021-08-27T01:30:23.4794868Z\",\r\n \"ipAddress\": \"10.218.0.4\",\r\n \"affinityId\": \"TVM:tvmps_06e333efaab6a295eddf31ab64af1beb132de30da2619fab68431dcc2a5e0c4f_d\",\r\n \"vmSize\": \"standard_d1_v2\",\r\n \"totalTasksRun\": 1,\r\n \"totalTasksSucceeded\": 1,\r\n \"runningTasksCount\": 0,\r\n \"runningTaskSlotsCount\": 0,\r\n \"recentTasks\": [\r\n {\r\n \"taskUrl\": \"https://mikeportal.eastus.batch.azure.com/jobs/createTaskCollectionJob/tasks/simple1\",\r\n \"jobId\": \"createTaskCollectionJob\",\r\n \"taskId\": \"simple1\",\r\n \"taskState\": \"completed\",\r\n \"executionInfo\": {\r\n \"startTime\": \"2021-08-27T16:08:33.02231Z\",\r\n \"endTime\": \"2021-08-27T16:08:33.069198Z\",\r\n \"exitCode\": 0,\r\n \"result\": \"success\",\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n }\r\n }\r\n ],\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"userIdentity\": {\r\n \"autoUser\": {\r\n \"scope\": \"pool\",\r\n \"elevationLevel\": \"nonadmin\"\r\n }\r\n },\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": true\r\n },\r\n \"startTaskInfo\": {\r\n \"state\": \"completed\",\r\n \"startTime\": \"2021-08-27T01:31:49.459393Z\",\r\n \"endTime\": \"2021-08-27T01:31:49.521897Z\",\r\n \"exitCode\": 0,\r\n \"result\": \"success\",\r\n \"retryCount\": 0\r\n },\r\n \"certificateReferences\": [],\r\n \"isDedicated\": true,\r\n \"endpointConfiguration\": {\r\n \"inboundEndpoints\": [\r\n {\r\n \"name\": \"Microsoft.WindowsAzure.Plugins.RemoteForwarder.RdpInput\",\r\n \"protocol\": \"tcp\",\r\n \"frontendPort\": 3389,\r\n \"backendPort\": 20000\r\n }\r\n ]\r\n },\r\n \"nodeAgentInfo\": {\r\n \"lastUpdateTime\": \"2021-08-27T01:31:49.00627Z\",\r\n \"version\": \"1.9.14\"\r\n },\r\n \"virtualMachineInfo\": {}\r\n}", "StatusCode": 200 }, { - "RequestUri": "/pools/testPool/nodes/tvmps_5588b2c9db0df4d8fcf672ea8dd42c28027e22241536de49d696c8540a826215_d/rdp?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bXBzXzU1ODhiMmM5ZGIwZGY0ZDhmY2Y2NzJlYThkZDQyYzI4MDI3ZTIyMjQxNTM2ZGU0OWQ2OTZjODU0MGE4MjYyMTVfZC9yZHA/YXBpLXZlcnNpb249MjAyMC0wMy0wMS4xMS4w", + "RequestUri": "/pools/testPool/nodes/tvmps_06e333efaab6a295eddf31ab64af1beb132de30da2619fab68431dcc2a5e0c4f_d/rdp?api-version=2021-06-01.14.0", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bXBzXzA2ZTMzM2VmYWFiNmEyOTVlZGRmMzFhYjY0YWYxYmViMTMyZGUzMGRhMjYxOWZhYjY4NDMxZGNjMmE1ZTBjNGZfZC9yZHA/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4w", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "fa7c1e47-e495-40f7-b7da-7cfef68236f1" + "1127595a-e9a8-4879-8f3c-137b528ce908" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 21:04:02 GMT" + "Fri, 27 Aug 2021 16:16:19 GMT" + ], + "x-ms-client-request-id": [ + "71ebb6c3-5e24-473e-8e31-f1561677c3e3" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/13.0.20.15503", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", "AzurePowershell/Az1.0.0" ] }, @@ -135,7 +141,7 @@ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "21ef1ab3-a227-449d-af30-a78e817c815c" + "a0485a08-d0c9-47ee-aa8d-cb864af1638f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -147,21 +153,21 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 21:04:02 GMT" + "Fri, 27 Aug 2021 16:16:17 GMT" ], "Content-Type": [ "application/octet-stream" ] }, - "ResponseBody": "ZnVsbCBhZGRyZXNzOnM6MjAuNDMuMzkuNjcNCkxvYWRCYWxhbmNlSW5mbzpzOkNvb2tpZTogbXN0c2hhc2g9VFZNI1RWTV9JTl8w", + "ResponseBody": "ZnVsbCBhZGRyZXNzOnM6NDAuNzEuOTcuMTYNCkxvYWRCYWxhbmNlSW5mbzpzOkNvb2tpZTogbXN0c2hhc2g9VFZNI1RWTV9JTl8w", "StatusCode": 200 } ], "Names": {}, "Variables": { - "SubscriptionId": "21abd678-18c5-4660-9fdd-8c5ba6b6fe1f", - "AZURE_BATCH_ACCOUNT": "prodtest6", - "AZURE_BATCH_ENDPOINT": "https://prodtest6.francecentral.batch.azure.com", - "AZURE_BATCH_RESOURCE_GROUP": "abc" + "SubscriptionId": "ba2358c2-42f2-4138-88df-7c68cf608bea", + "AZURE_BATCH_ACCOUNT": "mikeportal", + "AZURE_BATCH_ENDPOINT": "https://mikeportal.eastus.batch.azure.com", + "AZURE_BATCH_RESOURCE_GROUP": "batchportal" } } \ No newline at end of file diff --git a/src/Batch/Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.JobScheduleTests/TestDisableEnableTerminateJobSchedule.json b/src/Batch/Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.JobScheduleTests/TestDisableEnableTerminateJobSchedule.json index 8cd2306d0c93..05d64781574f 100644 --- a/src/Batch/Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.JobScheduleTests/TestDisableEnableTerminateJobSchedule.json +++ b/src/Batch/Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.JobScheduleTests/TestDisableEnableTerminateJobSchedule.json @@ -1,25 +1,25 @@ { "Entries": [ { - "RequestUri": "/jobschedules?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L2pvYnNjaGVkdWxlcz9hcGktdmVyc2lvbj0yMDIwLTAzLTAxLjExLjA=", + "RequestUri": "/jobschedules?api-version=2021-06-01.14.0", + "EncodedRequestUri": "L2pvYnNjaGVkdWxlcz9hcGktdmVyc2lvbj0yMDIxLTA2LTAxLjE0LjA=", "RequestMethod": "POST", "RequestBody": "{\r\n \"id\": \"testDisableEnableTerminateJobSchedule\",\r\n \"schedule\": {},\r\n \"jobSpecification\": {\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n }\r\n}", "RequestHeaders": { "client-request-id": [ - "45bd2030-3d00-4bfa-821f-62a30b6036c7" + "8eefafcd-78f1-45ee-8599-d48cba47a7c2" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 21:04:29 GMT" + "Fri, 27 Aug 2021 16:16:08 GMT" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/13.0.20.15503", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", "AzurePowershell/Az1.0.0" ], "Content-Type": [ @@ -34,16 +34,16 @@ "chunked" ], "ETag": [ - "0x8D80CB8C00027A3" + "0x8D96975FA625A12" ], "Location": [ - "https://prodtest6.francecentral.batch.azure.com/jobschedules/testDisableEnableTerminateJobSchedule" + "https://mikeportal.eastus.batch.azure.com/jobschedules/testDisableEnableTerminateJobSchedule" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "7641ffec-20a6-4058-8732-659f35ba5be9" + "d84d346b-2bf8-4e1b-a301-b8ef6d1a3cb5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -55,38 +55,41 @@ "3.0" ], "DataServiceId": [ - "https://prodtest6.francecentral.batch.azure.com/jobschedules/testDisableEnableTerminateJobSchedule" + "https://mikeportal.eastus.batch.azure.com/jobschedules/testDisableEnableTerminateJobSchedule" ], "Date": [ - "Tue, 09 Jun 2020 21:04:50 GMT" + "Fri, 27 Aug 2021 16:16:08 GMT" ], "Last-Modified": [ - "Tue, 09 Jun 2020 21:04:50 GMT" + "Fri, 27 Aug 2021 16:16:08 GMT" ] }, "ResponseBody": "", "StatusCode": 201 }, { - "RequestUri": "/jobschedules/testDisableEnableTerminateJobSchedule/disable?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L2pvYnNjaGVkdWxlcy90ZXN0RGlzYWJsZUVuYWJsZVRlcm1pbmF0ZUpvYlNjaGVkdWxlL2Rpc2FibGU/YXBpLXZlcnNpb249MjAyMC0wMy0wMS4xMS4w", + "RequestUri": "/jobschedules/testDisableEnableTerminateJobSchedule/disable?api-version=2021-06-01.14.0", + "EncodedRequestUri": "L2pvYnNjaGVkdWxlcy90ZXN0RGlzYWJsZUVuYWJsZVRlcm1pbmF0ZUpvYlNjaGVkdWxlL2Rpc2FibGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4w", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "8f623b53-9499-4024-a834-32cfa140c5ef" + "dfa9d0f1-764b-4848-8700-9cbca39d21c5" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 21:04:51 GMT" + "Fri, 27 Aug 2021 16:16:10 GMT" + ], + "x-ms-client-request-id": [ + "21ce6c1c-9bb4-4e59-ba00-406001f306bc" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/13.0.20.15503", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", "AzurePowershell/Az1.0.0" ], "Content-Length": [ @@ -95,13 +98,13 @@ }, "ResponseHeaders": { "ETag": [ - "0x8D80CB8CD4AC923" + "0x8D96975FAF1E47C" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "58882b55-d8b4-4258-9a36-46143548d362" + "36f29c52-9832-4bf8-a86c-bdc0888b070f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -113,41 +116,44 @@ "3.0" ], "DataServiceId": [ - "https://prodtest6.francecentral.batch.azure.com/jobschedules/testDisableEnableTerminateJobSchedule/disable" + "https://mikeportal.eastus.batch.azure.com/jobschedules/testDisableEnableTerminateJobSchedule/disable" ], "Date": [ - "Tue, 09 Jun 2020 21:05:13 GMT" + "Fri, 27 Aug 2021 16:16:09 GMT" ], "Content-Length": [ "0" ], "Last-Modified": [ - "Tue, 09 Jun 2020 21:05:13 GMT" + "Fri, 27 Aug 2021 16:16:09 GMT" ] }, "ResponseBody": "", "StatusCode": 204 }, { - "RequestUri": "/jobschedules/testDisableEnableTerminateJobSchedule?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L2pvYnNjaGVkdWxlcy90ZXN0RGlzYWJsZUVuYWJsZVRlcm1pbmF0ZUpvYlNjaGVkdWxlP2FwaS12ZXJzaW9uPTIwMjAtMDMtMDEuMTEuMA==", + "RequestUri": "/jobschedules/testDisableEnableTerminateJobSchedule?api-version=2021-06-01.14.0", + "EncodedRequestUri": "L2pvYnNjaGVkdWxlcy90ZXN0RGlzYWJsZUVuYWJsZVRlcm1pbmF0ZUpvYlNjaGVkdWxlP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDEuMTQuMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "6ce7ba13-454a-4a39-93f8-113e181f2d00" + "92426c5c-ef51-484f-88cf-b1de1fb348cb" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 21:05:13 GMT" + "Fri, 27 Aug 2021 16:16:10 GMT" + ], + "x-ms-client-request-id": [ + "ba595e17-1745-45f4-a832-20690fd2ce6e" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/13.0.20.15503", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", "AzurePowershell/Az1.0.0" ] }, @@ -156,13 +162,13 @@ "chunked" ], "ETag": [ - "0x8D80CB8CD4AC923" + "0x8D96975FAF1E47C" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "0a584509-3b18-481a-842d-b5fe4348cb19" + "96d201da-fd6f-4dd4-9cd8-3527c56702ae" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -174,38 +180,41 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 21:05:13 GMT" + "Fri, 27 Aug 2021 16:16:09 GMT" ], "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Tue, 09 Jun 2020 21:05:13 GMT" + "Fri, 27 Aug 2021 16:16:09 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://prodtest6.francecentral.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testDisableEnableTerminateJobSchedule\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobschedules/testDisableEnableTerminateJobSchedule\",\r\n \"eTag\": \"0x8D80CB8CD4AC923\",\r\n \"lastModified\": \"2020-06-09T21:05:13.0671395Z\",\r\n \"creationTime\": \"2020-06-09T21:04:50.7676579Z\",\r\n \"state\": \"disabled\",\r\n \"stateTransitionTime\": \"2020-06-09T21:05:13.0671395Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2020-06-09T21:04:50.7676579Z\",\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\",\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"recentJob\": {\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/testDisableEnableTerminateJobSchedule:job-1\",\r\n \"id\": \"testDisableEnableTerminateJobSchedule:job-1\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testDisableEnableTerminateJobSchedule\",\r\n \"url\": \"https://mikeportal.eastus.batch.azure.com/jobschedules/testDisableEnableTerminateJobSchedule\",\r\n \"eTag\": \"0x8D96975FAF1E47C\",\r\n \"lastModified\": \"2021-08-27T16:16:09.188262Z\",\r\n \"creationTime\": \"2021-08-27T16:16:08.2475538Z\",\r\n \"state\": \"disabled\",\r\n \"stateTransitionTime\": \"2021-08-27T16:16:09.188262Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2021-08-27T16:16:08.2475538Z\",\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"maxParallelTasks\": -1,\r\n \"usesTaskDependencies\": false,\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\",\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"recentJob\": {\r\n \"url\": \"https://mikeportal.eastus.batch.azure.com/jobs/testDisableEnableTerminateJobSchedule:job-1\",\r\n \"id\": \"testDisableEnableTerminateJobSchedule:job-1\"\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/jobschedules/testDisableEnableTerminateJobSchedule?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L2pvYnNjaGVkdWxlcy90ZXN0RGlzYWJsZUVuYWJsZVRlcm1pbmF0ZUpvYlNjaGVkdWxlP2FwaS12ZXJzaW9uPTIwMjAtMDMtMDEuMTEuMA==", + "RequestUri": "/jobschedules/testDisableEnableTerminateJobSchedule?api-version=2021-06-01.14.0", + "EncodedRequestUri": "L2pvYnNjaGVkdWxlcy90ZXN0RGlzYWJsZUVuYWJsZVRlcm1pbmF0ZUpvYlNjaGVkdWxlP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDEuMTQuMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "b9e84748-68f1-4455-9945-62ad30f7d093" + "f49338d2-6152-4e1a-8ad5-9d3d03c99967" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 21:05:13 GMT" + "Fri, 27 Aug 2021 16:16:10 GMT" + ], + "x-ms-client-request-id": [ + "de8d3e39-730d-432b-a772-85b4d56f01bc" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/13.0.20.15503", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", "AzurePowershell/Az1.0.0" ] }, @@ -214,13 +223,13 @@ "chunked" ], "ETag": [ - "0x8D80CB8CDBAD799" + "0x8D96975FB2529A4" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "175d656f-0d9a-4806-8969-aa6d1008bdda" + "5b18988f-ffe8-4f39-8db7-0ff46b082dd0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -232,38 +241,41 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 21:05:13 GMT" + "Fri, 27 Aug 2021 16:16:09 GMT" ], "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Tue, 09 Jun 2020 21:05:13 GMT" + "Fri, 27 Aug 2021 16:16:09 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://prodtest6.francecentral.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testDisableEnableTerminateJobSchedule\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobschedules/testDisableEnableTerminateJobSchedule\",\r\n \"eTag\": \"0x8D80CB8CDBAD799\",\r\n \"lastModified\": \"2020-06-09T21:05:13.8015129Z\",\r\n \"creationTime\": \"2020-06-09T21:04:50.7676579Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2020-06-09T21:05:13.8965157Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2020-06-09T21:05:13.435582Z\",\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\",\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"recentJob\": {\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/testDisableEnableTerminateJobSchedule:job-1\",\r\n \"id\": \"testDisableEnableTerminateJobSchedule:job-1\"\r\n },\r\n \"endTime\": \"2020-06-09T21:05:13.8965157Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"testDisableEnableTerminateJobSchedule\",\r\n \"url\": \"https://mikeportal.eastus.batch.azure.com/jobschedules/testDisableEnableTerminateJobSchedule\",\r\n \"eTag\": \"0x8D96975FB2529A4\",\r\n \"lastModified\": \"2021-08-27T16:16:09.524266Z\",\r\n \"creationTime\": \"2021-08-27T16:16:08.2475538Z\",\r\n \"state\": \"terminating\",\r\n \"stateTransitionTime\": \"2021-08-27T16:16:09.524266Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2021-08-27T16:16:09.3582641Z\",\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"maxParallelTasks\": -1,\r\n \"usesTaskDependencies\": false,\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\",\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"recentJob\": {\r\n \"url\": \"https://mikeportal.eastus.batch.azure.com/jobs/testDisableEnableTerminateJobSchedule:job-1\",\r\n \"id\": \"testDisableEnableTerminateJobSchedule:job-1\"\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/jobschedules/testDisableEnableTerminateJobSchedule/enable?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L2pvYnNjaGVkdWxlcy90ZXN0RGlzYWJsZUVuYWJsZVRlcm1pbmF0ZUpvYlNjaGVkdWxlL2VuYWJsZT9hcGktdmVyc2lvbj0yMDIwLTAzLTAxLjExLjA=", + "RequestUri": "/jobschedules/testDisableEnableTerminateJobSchedule/enable?api-version=2021-06-01.14.0", + "EncodedRequestUri": "L2pvYnNjaGVkdWxlcy90ZXN0RGlzYWJsZUVuYWJsZVRlcm1pbmF0ZUpvYlNjaGVkdWxlL2VuYWJsZT9hcGktdmVyc2lvbj0yMDIxLTA2LTAxLjE0LjA=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "53b8ddd8-a8bd-4e40-8af9-c94af7be5f5d" + "44fdb500-d002-4e4e-9db0-2d936f29b0d7" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 21:05:13 GMT" + "Fri, 27 Aug 2021 16:16:10 GMT" + ], + "x-ms-client-request-id": [ + "458e30be-bb73-4592-ab97-896d4f69c6a5" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/13.0.20.15503", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", "AzurePowershell/Az1.0.0" ], "Content-Length": [ @@ -272,13 +284,13 @@ }, "ResponseHeaders": { "ETag": [ - "0x8D80CB8CD83016C" + "0x8D96975FB0BD531" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "2ac0ba80-4361-4f9e-a88a-a64ee623bc5e" + "f02469a5-3fa0-4545-bd6b-27bd1999f208" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -290,41 +302,44 @@ "3.0" ], "DataServiceId": [ - "https://prodtest6.francecentral.batch.azure.com/jobschedules/testDisableEnableTerminateJobSchedule/enable" + "https://mikeportal.eastus.batch.azure.com/jobschedules/testDisableEnableTerminateJobSchedule/enable" ], "Date": [ - "Tue, 09 Jun 2020 21:05:13 GMT" + "Fri, 27 Aug 2021 16:16:09 GMT" ], "Content-Length": [ "0" ], "Last-Modified": [ - "Tue, 09 Jun 2020 21:05:13 GMT" + "Fri, 27 Aug 2021 16:16:09 GMT" ] }, "ResponseBody": "", "StatusCode": 204 }, { - "RequestUri": "/jobschedules?api-version=2020-03-01.11.0&$filter=id%20eq%20%27testDisableEnableTerminateJobSchedule%27", - "EncodedRequestUri": "L2pvYnNjaGVkdWxlcz9hcGktdmVyc2lvbj0yMDIwLTAzLTAxLjExLjAmJGZpbHRlcj1pZCUyMGVxJTIwJTI3dGVzdERpc2FibGVFbmFibGVUZXJtaW5hdGVKb2JTY2hlZHVsZSUyNw==", + "RequestUri": "/jobschedules?api-version=2021-06-01.14.0&$filter=id%20eq%20%27testDisableEnableTerminateJobSchedule%27", + "EncodedRequestUri": "L2pvYnNjaGVkdWxlcz9hcGktdmVyc2lvbj0yMDIxLTA2LTAxLjE0LjAmJGZpbHRlcj1pZCUyMGVxJTIwJTI3dGVzdERpc2FibGVFbmFibGVUZXJtaW5hdGVKb2JTY2hlZHVsZSUyNw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "b27cef84-d26b-4807-9023-e76d1f5a36fb" + "fbc5180a-a26d-46d4-a04e-03d761992408" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 21:05:13 GMT" + "Fri, 27 Aug 2021 16:16:10 GMT" + ], + "x-ms-client-request-id": [ + "45daf2b1-a936-470d-a2c0-962b665988e2" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/13.0.20.15503", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", "AzurePowershell/Az1.0.0" ] }, @@ -336,7 +351,7 @@ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "1c1fc0ba-8ca2-44a6-b13b-a2d5f06eebc0" + "4d8a4fa7-2175-4090-84b4-9b26661e8c29" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -348,35 +363,38 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 21:05:13 GMT" + "Fri, 27 Aug 2021 16:16:09 GMT" ], "Content-Type": [ "application/json; odata=minimalmetadata" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://prodtest6.francecentral.batch.azure.com/$metadata#jobschedules\",\r\n \"value\": [\r\n {\r\n \"id\": \"testDisableEnableTerminateJobSchedule\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobschedules/testDisableEnableTerminateJobSchedule\",\r\n \"eTag\": \"0x8D80CB8CD83016C\",\r\n \"lastModified\": \"2020-06-09T21:05:13.435582Z\",\r\n \"creationTime\": \"2020-06-09T21:04:50.7676579Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2020-06-09T21:05:13.435582Z\",\r\n \"previousState\": \"disabled\",\r\n \"previousStateTransitionTime\": \"2020-06-09T21:05:13.0671395Z\",\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\",\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"recentJob\": {\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/testDisableEnableTerminateJobSchedule:job-1\",\r\n \"id\": \"testDisableEnableTerminateJobSchedule:job-1\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#jobschedules\",\r\n \"value\": [\r\n {\r\n \"id\": \"testDisableEnableTerminateJobSchedule\",\r\n \"url\": \"https://mikeportal.eastus.batch.azure.com/jobschedules/testDisableEnableTerminateJobSchedule\",\r\n \"eTag\": \"0x8D96975FB0BD531\",\r\n \"lastModified\": \"2021-08-27T16:16:09.3582641Z\",\r\n \"creationTime\": \"2021-08-27T16:16:08.2475538Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2021-08-27T16:16:09.3582641Z\",\r\n \"previousState\": \"disabled\",\r\n \"previousStateTransitionTime\": \"2021-08-27T16:16:09.188262Z\",\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"maxParallelTasks\": -1,\r\n \"usesTaskDependencies\": false,\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\",\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"recentJob\": {\r\n \"url\": \"https://mikeportal.eastus.batch.azure.com/jobs/testDisableEnableTerminateJobSchedule:job-1\",\r\n \"id\": \"testDisableEnableTerminateJobSchedule:job-1\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/jobschedules/testDisableEnableTerminateJobSchedule/terminate?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L2pvYnNjaGVkdWxlcy90ZXN0RGlzYWJsZUVuYWJsZVRlcm1pbmF0ZUpvYlNjaGVkdWxlL3Rlcm1pbmF0ZT9hcGktdmVyc2lvbj0yMDIwLTAzLTAxLjExLjA=", + "RequestUri": "/jobschedules/testDisableEnableTerminateJobSchedule/terminate?api-version=2021-06-01.14.0", + "EncodedRequestUri": "L2pvYnNjaGVkdWxlcy90ZXN0RGlzYWJsZUVuYWJsZVRlcm1pbmF0ZUpvYlNjaGVkdWxlL3Rlcm1pbmF0ZT9hcGktdmVyc2lvbj0yMDIxLTA2LTAxLjE0LjA=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "c424ab9f-4d14-4583-9e0d-bd20669414e1" + "4fa2a13b-5415-433f-b584-6d8b23b4a489" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 21:05:13 GMT" + "Fri, 27 Aug 2021 16:16:10 GMT" + ], + "x-ms-client-request-id": [ + "47903832-1c93-489a-a5b6-aaf0df5582b8" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/13.0.20.15503", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", "AzurePowershell/Az1.0.0" ], "Content-Length": [ @@ -388,13 +406,13 @@ "chunked" ], "ETag": [ - "0x8D80CB8CDBAD799" + "0x8D96975FB2529A4" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "3a9d1ca1-dcb8-4162-b31e-713cd36e7379" + "732a8508-008b-45fd-bd82-352c961d6353" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -406,38 +424,38 @@ "3.0" ], "DataServiceId": [ - "https://prodtest6.francecentral.batch.azure.com/jobschedules/testDisableEnableTerminateJobSchedule/terminate" + "https://mikeportal.eastus.batch.azure.com/jobschedules/testDisableEnableTerminateJobSchedule/terminate" ], "Date": [ - "Tue, 09 Jun 2020 21:05:13 GMT" + "Fri, 27 Aug 2021 16:16:09 GMT" ], "Last-Modified": [ - "Tue, 09 Jun 2020 21:05:13 GMT" + "Fri, 27 Aug 2021 16:16:09 GMT" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/jobschedules/testDisableEnableTerminateJobSchedule?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L2pvYnNjaGVkdWxlcy90ZXN0RGlzYWJsZUVuYWJsZVRlcm1pbmF0ZUpvYlNjaGVkdWxlP2FwaS12ZXJzaW9uPTIwMjAtMDMtMDEuMTEuMA==", + "RequestUri": "/jobschedules/testDisableEnableTerminateJobSchedule?api-version=2021-06-01.14.0", + "EncodedRequestUri": "L2pvYnNjaGVkdWxlcy90ZXN0RGlzYWJsZUVuYWJsZVRlcm1pbmF0ZUpvYlNjaGVkdWxlP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDEuMTQuMA==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "355144a7-82cf-473f-8c8c-c053acca7d61" + "e63b25bc-34dc-4db8-aec3-9157708022bb" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 21:05:14 GMT" + "Fri, 27 Aug 2021 16:16:10 GMT" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/13.0.20.15503", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", "AzurePowershell/Az1.0.0" ], "Content-Length": [ @@ -452,7 +470,7 @@ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "af9b58c9-0c6f-465f-a7e3-e0b05c9c95f6" + "1cc58177-18bf-4d98-8833-571d12fd85f6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -464,7 +482,7 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 21:05:14 GMT" + "Fri, 27 Aug 2021 16:16:10 GMT" ] }, "ResponseBody": "", @@ -473,9 +491,9 @@ ], "Names": {}, "Variables": { - "SubscriptionId": "21abd678-18c5-4660-9fdd-8c5ba6b6fe1f", - "AZURE_BATCH_ACCOUNT": "prodtest6", - "AZURE_BATCH_ENDPOINT": "https://prodtest6.francecentral.batch.azure.com", - "AZURE_BATCH_RESOURCE_GROUP": "abc" + "SubscriptionId": "ba2358c2-42f2-4138-88df-7c68cf608bea", + "AZURE_BATCH_ACCOUNT": "mikeportal", + "AZURE_BATCH_ENDPOINT": "https://mikeportal.eastus.batch.azure.com", + "AZURE_BATCH_RESOURCE_GROUP": "batchportal" } } \ No newline at end of file diff --git a/src/Batch/Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.JobScheduleTests/TestJobScheduleCRUD.json b/src/Batch/Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.JobScheduleTests/TestJobScheduleCRUD.json index 16425be608dc..60ab45a1e041 100644 --- a/src/Batch/Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.JobScheduleTests/TestJobScheduleCRUD.json +++ b/src/Batch/Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.JobScheduleTests/TestJobScheduleCRUD.json @@ -1,25 +1,28 @@ { "Entries": [ { - "RequestUri": "/jobschedules?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L2pvYnNjaGVkdWxlcz9hcGktdmVyc2lvbj0yMDIwLTAzLTAxLjExLjA=", + "RequestUri": "/jobschedules?api-version=2021-06-01.14.0", + "EncodedRequestUri": "L2pvYnNjaGVkdWxlcz9hcGktdmVyc2lvbj0yMDIxLTA2LTAxLjE0LjA=", "RequestMethod": "POST", "RequestBody": "{\r\n \"id\": \"jobSchedule1\",\r\n \"schedule\": {},\r\n \"jobSpecification\": {\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n }\r\n}", "RequestHeaders": { "client-request-id": [ - "328990c4-3fe6-4051-b86d-7eeb347fb8e1" + "93a1f44a-e54d-4d97-8e41-bdec0c1f419c" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 21:04:04 GMT" + "Fri, 27 Aug 2021 16:15:36 GMT" + ], + "x-ms-client-request-id": [ + "d143fce8-8f0c-40a5-ae91-8dab41fdb9a6" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/13.0.20.15503", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", "AzurePowershell/Az1.0.0" ], "Content-Type": [ @@ -34,16 +37,16 @@ "chunked" ], "ETag": [ - "0x8D80CB8B1895B2C" + "0x8D96975E6E607B0" ], "Location": [ - "https://prodtest6.francecentral.batch.azure.com/jobschedules/jobSchedule1" + "https://mikeportal.eastus.batch.azure.com/jobschedules/jobSchedule1" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "b0eec248-7d43-419c-8dca-b7cfa08fe1f1" + "87971782-c9f5-4fa7-ac17-508fbb89fc97" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -55,38 +58,41 @@ "3.0" ], "DataServiceId": [ - "https://prodtest6.francecentral.batch.azure.com/jobschedules/jobSchedule1" + "https://mikeportal.eastus.batch.azure.com/jobschedules/jobSchedule1" ], "Date": [ - "Tue, 09 Jun 2020 21:04:26 GMT" + "Fri, 27 Aug 2021 16:15:35 GMT" ], "Last-Modified": [ - "Tue, 09 Jun 2020 21:04:26 GMT" + "Fri, 27 Aug 2021 16:15:35 GMT" ] }, "ResponseBody": "", "StatusCode": 201 }, { - "RequestUri": "/jobschedules?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L2pvYnNjaGVkdWxlcz9hcGktdmVyc2lvbj0yMDIwLTAzLTAxLjExLjA=", + "RequestUri": "/jobschedules?api-version=2021-06-01.14.0", + "EncodedRequestUri": "L2pvYnNjaGVkdWxlcz9hcGktdmVyc2lvbj0yMDIxLTA2LTAxLjE0LjA=", "RequestMethod": "POST", "RequestBody": "{\r\n \"id\": \"jobSchedule2\",\r\n \"schedule\": {\r\n \"doNotRunUntil\": \"2023-01-01T12:30:00Z\"\r\n },\r\n \"jobSpecification\": {\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool2\"\r\n }\r\n }\r\n}", "RequestHeaders": { "client-request-id": [ - "824a6431-2919-46a4-be70-9a7aec4cc230" + "9bfd9f24-4bdf-4efc-8c0b-071903f4fa71" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 21:04:26 GMT" + "Fri, 27 Aug 2021 16:15:36 GMT" + ], + "x-ms-client-request-id": [ + "5879fb95-f280-4c07-87e7-ed56ff3f99d1" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/13.0.20.15503", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", "AzurePowershell/Az1.0.0" ], "Content-Type": [ @@ -101,16 +107,16 @@ "chunked" ], "ETag": [ - "0x8D80CB8B1A79172" + "0x8D96975E6F6D162" ], "Location": [ - "https://prodtest6.francecentral.batch.azure.com/jobschedules/jobSchedule2" + "https://mikeportal.eastus.batch.azure.com/jobschedules/jobSchedule2" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "a0deb494-1b99-4bc7-aef6-a67474a1a062" + "5eecda0a-c1b2-4724-85e0-e17ad6d2109b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -122,38 +128,41 @@ "3.0" ], "DataServiceId": [ - "https://prodtest6.francecentral.batch.azure.com/jobschedules/jobSchedule2" + "https://mikeportal.eastus.batch.azure.com/jobschedules/jobSchedule2" ], "Date": [ - "Tue, 09 Jun 2020 21:04:26 GMT" + "Fri, 27 Aug 2021 16:15:35 GMT" ], "Last-Modified": [ - "Tue, 09 Jun 2020 21:04:26 GMT" + "Fri, 27 Aug 2021 16:15:35 GMT" ] }, "ResponseBody": "", "StatusCode": 201 }, { - "RequestUri": "/jobschedules?api-version=2020-03-01.11.0&$filter=id%20eq%20%27jobSchedule1%27%20or%20id%20eq%20%27jobSchedule2%27", - "EncodedRequestUri": "L2pvYnNjaGVkdWxlcz9hcGktdmVyc2lvbj0yMDIwLTAzLTAxLjExLjAmJGZpbHRlcj1pZCUyMGVxJTIwJTI3am9iU2NoZWR1bGUxJTI3JTIwb3IlMjBpZCUyMGVxJTIwJTI3am9iU2NoZWR1bGUyJTI3", + "RequestUri": "/jobschedules?api-version=2021-06-01.14.0&$filter=id%20eq%20%27jobSchedule1%27%20or%20id%20eq%20%27jobSchedule2%27", + "EncodedRequestUri": "L2pvYnNjaGVkdWxlcz9hcGktdmVyc2lvbj0yMDIxLTA2LTAxLjE0LjAmJGZpbHRlcj1pZCUyMGVxJTIwJTI3am9iU2NoZWR1bGUxJTI3JTIwb3IlMjBpZCUyMGVxJTIwJTI3am9iU2NoZWR1bGUyJTI3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "42ad3a91-4f96-434c-be02-f40faca932aa" + "bf548416-6ed9-4fe6-8fbb-61cd6fd85a25" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 21:04:26 GMT" + "Fri, 27 Aug 2021 16:15:36 GMT" + ], + "x-ms-client-request-id": [ + "58119a88-cdd3-41bb-998a-3a5dab597af5" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/13.0.20.15503", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", "AzurePowershell/Az1.0.0" ] }, @@ -165,7 +174,7 @@ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "c80cefdc-0720-4357-b76b-f3c1f32d1171" + "ea7a8bb7-5be8-4d23-9b56-bfb64ccb1414" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -177,42 +186,45 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 21:04:26 GMT" + "Fri, 27 Aug 2021 16:15:35 GMT" ], "Content-Type": [ "application/json; odata=minimalmetadata" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://prodtest6.francecentral.batch.azure.com/$metadata#jobschedules\",\r\n \"value\": [\r\n {\r\n \"id\": \"jobSchedule1\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobschedules/jobSchedule1\",\r\n \"eTag\": \"0x8D80CB8B1895B2C\",\r\n \"lastModified\": \"2020-06-09T21:04:26.5009964Z\",\r\n \"creationTime\": \"2020-06-09T21:04:26.5009964Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2020-06-09T21:04:26.5009964Z\",\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\",\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"recentJob\": {\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/jobSchedule1:job-1\",\r\n \"id\": \"jobSchedule1:job-1\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"jobSchedule2\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobschedules/jobSchedule2\",\r\n \"eTag\": \"0x8D80CB8B1A79172\",\r\n \"lastModified\": \"2020-06-09T21:04:26.6989938Z\",\r\n \"creationTime\": \"2020-06-09T21:04:26.6989938Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2020-06-09T21:04:26.6989938Z\",\r\n \"schedule\": {\r\n \"doNotRunUntil\": \"2023-01-01T12:30:00Z\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\",\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool2\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2023-01-01T12:30:00Z\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#jobschedules\",\r\n \"value\": [\r\n {\r\n \"id\": \"jobSchedule1\",\r\n \"url\": \"https://mikeportal.eastus.batch.azure.com/jobschedules/jobSchedule1\",\r\n \"eTag\": \"0x8D96975E6E607B0\",\r\n \"lastModified\": \"2021-08-27T16:15:35.556088Z\",\r\n \"creationTime\": \"2021-08-27T16:15:35.556088Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2021-08-27T16:15:35.556088Z\",\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"maxParallelTasks\": -1,\r\n \"usesTaskDependencies\": false,\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\",\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"recentJob\": {\r\n \"url\": \"https://mikeportal.eastus.batch.azure.com/jobs/jobSchedule1:job-1\",\r\n \"id\": \"jobSchedule1:job-1\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"jobSchedule2\",\r\n \"url\": \"https://mikeportal.eastus.batch.azure.com/jobschedules/jobSchedule2\",\r\n \"eTag\": \"0x8D96975E6F6D162\",\r\n \"lastModified\": \"2021-08-27T16:15:35.666109Z\",\r\n \"creationTime\": \"2021-08-27T16:15:35.666109Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2021-08-27T16:15:35.666109Z\",\r\n \"schedule\": {\r\n \"doNotRunUntil\": \"2023-01-01T12:30:00Z\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"maxParallelTasks\": -1,\r\n \"usesTaskDependencies\": false,\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\",\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool2\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2023-01-01T12:30:00Z\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/jobschedules/jobSchedule2?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L2pvYnNjaGVkdWxlcy9qb2JTY2hlZHVsZTI/YXBpLXZlcnNpb249MjAyMC0wMy0wMS4xMS4w", + "RequestUri": "/jobschedules/jobSchedule2?api-version=2021-06-01.14.0", + "EncodedRequestUri": "L2pvYnNjaGVkdWxlcy9qb2JTY2hlZHVsZTI/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4w", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"schedule\": {\r\n \"doNotRunUntil\": \"2025-01-01T12:30:00Z\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\",\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool2\"\r\n }\r\n }\r\n}", + "RequestBody": "{\r\n \"schedule\": {\r\n \"doNotRunUntil\": \"2025-01-01T12:30:00Z\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"maxParallelTasks\": -1,\r\n \"usesTaskDependencies\": false,\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\",\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool2\"\r\n }\r\n }\r\n}", "RequestHeaders": { "client-request-id": [ - "1ad4eb5f-6515-4d1d-904d-6740fd4cc0f8" + "9709cd0a-084e-4d94-92a3-e2937c545844" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 21:04:27 GMT" + "Fri, 27 Aug 2021 16:15:36 GMT" + ], + "x-ms-client-request-id": [ + "e12a201c-83c2-434a-8dbd-79105b4d2a4f" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/13.0.20.15503", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", "AzurePowershell/Az1.0.0" ], "Content-Type": [ "application/json; odata=minimalmetadata; charset=utf-8" ], "Content-Length": [ - "403" + "432" ] }, "ResponseHeaders": { @@ -220,13 +232,13 @@ "chunked" ], "ETag": [ - "0x8D80CB8B1EEA0FF" + "0x8D96975E722A872" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "30e7c392-ee4a-4ea8-8720-a3fb35738aa2" + "ac73e90c-2113-417a-b7e7-1be164987548" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -238,38 +250,41 @@ "3.0" ], "DataServiceId": [ - "https://prodtest6.francecentral.batch.azure.com/jobschedules/jobSchedule2" + "https://mikeportal.eastus.batch.azure.com/jobschedules/jobSchedule2" ], "Date": [ - "Tue, 09 Jun 2020 21:04:26 GMT" + "Fri, 27 Aug 2021 16:15:35 GMT" ], "Last-Modified": [ - "Tue, 09 Jun 2020 21:04:27 GMT" + "Fri, 27 Aug 2021 16:15:35 GMT" ] }, "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/jobschedules/jobSchedule2?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L2pvYnNjaGVkdWxlcy9qb2JTY2hlZHVsZTI/YXBpLXZlcnNpb249MjAyMC0wMy0wMS4xMS4w", + "RequestUri": "/jobschedules/jobSchedule2?api-version=2021-06-01.14.0", + "EncodedRequestUri": "L2pvYnNjaGVkdWxlcy9qb2JTY2hlZHVsZTI/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4w", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "d3418062-a0b5-4263-b559-492701c36f1c" + "8880c579-6d2d-4e89-8504-8d20afa63b11" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 21:04:27 GMT" + "Fri, 27 Aug 2021 16:15:37 GMT" + ], + "x-ms-client-request-id": [ + "6d64a1c4-9bde-4e57-8d63-54d3b62d4ed6" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/13.0.20.15503", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", "AzurePowershell/Az1.0.0" ] }, @@ -278,13 +293,13 @@ "chunked" ], "ETag": [ - "0x8D80CB8B1EEA0FF" + "0x8D96975E722A872" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "e13f271f-0803-4750-8e06-5b8b88d5bb24" + "3a74fa19-273a-46f6-8bdf-b5849c8209c0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -296,38 +311,41 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 21:04:26 GMT" + "Fri, 27 Aug 2021 16:15:35 GMT" ], "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Tue, 09 Jun 2020 21:04:27 GMT" + "Fri, 27 Aug 2021 16:15:35 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://prodtest6.francecentral.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"jobSchedule2\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobschedules/jobSchedule2\",\r\n \"eTag\": \"0x8D80CB8B1EEA0FF\",\r\n \"lastModified\": \"2020-06-09T21:04:27.1646975Z\",\r\n \"creationTime\": \"2020-06-09T21:04:26.6989938Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2020-06-09T21:04:26.6989938Z\",\r\n \"schedule\": {\r\n \"doNotRunUntil\": \"2025-01-01T12:30:00Z\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\",\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool2\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2025-01-01T12:30:00Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\r\n \"id\": \"jobSchedule2\",\r\n \"url\": \"https://mikeportal.eastus.batch.azure.com/jobschedules/jobSchedule2\",\r\n \"eTag\": \"0x8D96975E722A872\",\r\n \"lastModified\": \"2021-08-27T16:15:35.9534194Z\",\r\n \"creationTime\": \"2021-08-27T16:15:35.666109Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2021-08-27T16:15:35.666109Z\",\r\n \"schedule\": {\r\n \"doNotRunUntil\": \"2025-01-01T12:30:00Z\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"maxParallelTasks\": -1,\r\n \"usesTaskDependencies\": false,\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\",\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool2\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2025-01-01T12:30:00Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/jobschedules/jobSchedule1?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L2pvYnNjaGVkdWxlcy9qb2JTY2hlZHVsZTE/YXBpLXZlcnNpb249MjAyMC0wMy0wMS4xMS4w", + "RequestUri": "/jobschedules/jobSchedule1?api-version=2021-06-01.14.0", + "EncodedRequestUri": "L2pvYnNjaGVkdWxlcy9qb2JTY2hlZHVsZTE/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4w", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "c99c7ea9-ee0d-4479-8977-b11c1c2f83a5" + "f7c38590-673f-4224-9c63-b6bbc3bfe336" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 21:04:27 GMT" + "Fri, 27 Aug 2021 16:15:37 GMT" + ], + "x-ms-client-request-id": [ + "6090fc2e-4053-4ecc-b050-fc14329163ac" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/13.0.20.15503", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", "AzurePowershell/Az1.0.0" ], "Content-Length": [ @@ -342,7 +360,7 @@ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "b06c91bf-17bf-4f91-b0ff-0c0fb9395278" + "92d03f96-863d-48f1-a67d-cc805902f58e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -354,32 +372,35 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 21:04:27 GMT" + "Fri, 27 Aug 2021 16:15:35 GMT" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/jobschedules/jobSchedule2?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L2pvYnNjaGVkdWxlcy9qb2JTY2hlZHVsZTI/YXBpLXZlcnNpb249MjAyMC0wMy0wMS4xMS4w", + "RequestUri": "/jobschedules/jobSchedule2?api-version=2021-06-01.14.0", + "EncodedRequestUri": "L2pvYnNjaGVkdWxlcy9qb2JTY2hlZHVsZTI/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4w", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "12e9fe25-f18b-449c-ac10-8efc6fc0a0fa" + "ba0c342a-db45-4dc6-a3fe-7aa7720c6aa3" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 21:04:27 GMT" + "Fri, 27 Aug 2021 16:15:37 GMT" + ], + "x-ms-client-request-id": [ + "1346263d-2a5e-4cb3-9eaf-b87726f143c3" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/13.0.20.15503", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", "AzurePowershell/Az1.0.0" ], "Content-Length": [ @@ -394,7 +415,7 @@ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "b048f0a6-bff7-40fe-a89b-44b8930fa035" + "836a2c0d-d79a-4387-943b-aa5446dd09bf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -406,32 +427,35 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 21:04:27 GMT" + "Fri, 27 Aug 2021 16:16:05 GMT" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/jobschedules?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L2pvYnNjaGVkdWxlcz9hcGktdmVyc2lvbj0yMDIwLTAzLTAxLjExLjA=", + "RequestUri": "/jobschedules?api-version=2021-06-01.14.0", + "EncodedRequestUri": "L2pvYnNjaGVkdWxlcz9hcGktdmVyc2lvbj0yMDIxLTA2LTAxLjE0LjA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "740a8350-4452-4829-8705-f3d5ec0f4900" + "0c26f3a0-4c6c-4a27-9a6c-d5f990f2094f" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 21:04:27 GMT" + "Fri, 27 Aug 2021 16:16:07 GMT" + ], + "x-ms-client-request-id": [ + "5070e233-ff2b-4c2d-8572-94ce36f571ab" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/13.0.20.15503", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", "AzurePowershell/Az1.0.0" ] }, @@ -443,7 +467,7 @@ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "01044d12-012f-4ef4-940c-699bf921bac5" + "99e13b5d-f1f9-4127-8770-f432b808f12f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -455,21 +479,21 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 21:04:27 GMT" + "Fri, 27 Aug 2021 16:16:05 GMT" ], "Content-Type": [ "application/json; odata=minimalmetadata" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://prodtest6.francecentral.batch.azure.com/$metadata#jobschedules\",\r\n \"value\": [\r\n {\r\n \"id\": \"jobSchedule1\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobschedules/jobSchedule1\",\r\n \"eTag\": \"0x8D80CB8B1895B2C\",\r\n \"lastModified\": \"2020-06-09T21:04:26.5009964Z\",\r\n \"creationTime\": \"2020-06-09T21:04:26.5009964Z\",\r\n \"state\": \"deleting\",\r\n \"stateTransitionTime\": \"2020-06-09T21:04:27.5391106Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2020-06-09T21:04:26.5009964Z\",\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\",\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"recentJob\": {\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/jobSchedule1:job-1\",\r\n \"id\": \"jobSchedule1:job-1\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"jobSchedule2\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobschedules/jobSchedule2\",\r\n \"eTag\": \"0x8D80CB8B1EEA0FF\",\r\n \"lastModified\": \"2020-06-09T21:04:27.1646975Z\",\r\n \"creationTime\": \"2020-06-09T21:04:26.6989938Z\",\r\n \"state\": \"deleting\",\r\n \"stateTransitionTime\": \"2020-06-09T21:04:27.7032152Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2020-06-09T21:04:26.6989938Z\",\r\n \"schedule\": {\r\n \"doNotRunUntil\": \"2025-01-01T12:30:00Z\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\",\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool2\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2025-01-01T12:30:00Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"js1\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobschedules/js1\",\r\n \"eTag\": \"0x8D6EDE6B57C423D\",\r\n \"lastModified\": \"2019-06-10T21:00:46.2584381Z\",\r\n \"creationTime\": \"2019-06-10T21:00:46.2584381Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2019-06-10T21:00:46.2584381Z\",\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\",\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"p1\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"recentJob\": {\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/js1:job-1\",\r\n \"id\": \"js1:job-1\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#jobschedules\",\r\n \"value\": [\r\n {\r\n \"id\": \"jobSchedule2\",\r\n \"url\": \"https://mikeportal.eastus.batch.azure.com/jobschedules/jobSchedule2\",\r\n \"eTag\": \"0x8D96975E722A872\",\r\n \"lastModified\": \"2021-08-27T16:15:35.9534194Z\",\r\n \"creationTime\": \"2021-08-27T16:15:35.666109Z\",\r\n \"state\": \"deleting\",\r\n \"stateTransitionTime\": \"2021-08-27T16:16:06.3255729Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2021-08-27T16:15:35.666109Z\",\r\n \"schedule\": {\r\n \"doNotRunUntil\": \"2025-01-01T12:30:00Z\"\r\n },\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"maxParallelTasks\": -1,\r\n \"usesTaskDependencies\": false,\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\",\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool2\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"nextRunTime\": \"2025-01-01T12:30:00Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"scheduleone\",\r\n \"url\": \"https://mikeportal.eastus.batch.azure.com/jobschedules/scheduleone\",\r\n \"eTag\": \"0x8D85A6794F5FA37\",\r\n \"lastModified\": \"2020-09-16T17:40:20.0204855Z\",\r\n \"creationTime\": \"2020-09-16T17:40:20.0204855Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2020-09-16T17:42:43.7392363Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2020-09-16T17:40:20.0204855Z\",\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"maxParallelTasks\": -1,\r\n \"usesTaskDependencies\": false,\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\",\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"mikepool\"\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"recentJob\": {\r\n \"url\": \"https://mikeportal.eastus.batch.azure.com/jobs/scheduleone:job-1\",\r\n \"id\": \"scheduleone:job-1\"\r\n },\r\n \"endTime\": \"2020-09-16T17:42:43.7392363Z\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 } ], "Names": {}, "Variables": { - "SubscriptionId": "21abd678-18c5-4660-9fdd-8c5ba6b6fe1f", - "AZURE_BATCH_ACCOUNT": "prodtest6", - "AZURE_BATCH_ENDPOINT": "https://prodtest6.francecentral.batch.azure.com", - "AZURE_BATCH_RESOURCE_GROUP": "abc" + "SubscriptionId": "ba2358c2-42f2-4138-88df-7c68cf608bea", + "AZURE_BATCH_ACCOUNT": "mikeportal", + "AZURE_BATCH_ENDPOINT": "https://mikeportal.eastus.batch.azure.com", + "AZURE_BATCH_RESOURCE_GROUP": "batchportal" } } \ No newline at end of file diff --git a/src/Batch/Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.JobTests/IfJobSetsAutoFailure_ItCompletesWhenAnyTaskFails.json b/src/Batch/Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.JobTests/IfJobSetsAutoFailure_ItCompletesWhenAnyTaskFails.json index 482f4d15fab6..e6625c8b2f81 100644 --- a/src/Batch/Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.JobTests/IfJobSetsAutoFailure_ItCompletesWhenAnyTaskFails.json +++ b/src/Batch/Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.JobTests/IfJobSetsAutoFailure_ItCompletesWhenAnyTaskFails.json @@ -1,32 +1,35 @@ { "Entries": [ { - "RequestUri": "/jobs?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAyMC0wMy0wMS4xMS4w", + "RequestUri": "/jobs?api-version=2021-06-01.14.0", + "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4w", "RequestMethod": "POST", - "RequestBody": "{\r\n \"id\": \"testJobCompletesWhenTaskFails\",\r\n \"priority\": 0,\r\n \"poolInfo\": {\r\n \"autoPoolSpecification\": {\r\n \"autoPoolIdPrefix\": \"TestSpecPrefix\",\r\n \"poolLifetimeOption\": \"job\",\r\n \"keepAlive\": false,\r\n \"pool\": {\r\n \"vmSize\": \"small\",\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"osVersion\": \"\"\r\n },\r\n \"targetDedicatedNodes\": 3\r\n }\r\n }\r\n },\r\n \"onTaskFailure\": \"performexitoptionsjobaction\",\r\n \"usesTaskDependencies\": false\r\n}", + "RequestBody": "{\r\n \"id\": \"testJobCompletesWhenTaskFails\",\r\n \"priority\": 0,\r\n \"poolInfo\": {\r\n \"autoPoolSpecification\": {\r\n \"autoPoolIdPrefix\": \"TestSpecPrefix\",\r\n \"poolLifetimeOption\": \"job\",\r\n \"keepAlive\": false,\r\n \"pool\": {\r\n \"vmSize\": \"standard_d1_v2\",\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"osVersion\": \"\"\r\n },\r\n \"targetDedicatedNodes\": 1\r\n }\r\n }\r\n },\r\n \"onTaskFailure\": \"performexitoptionsjobaction\",\r\n \"usesTaskDependencies\": false\r\n}", "RequestHeaders": { "client-request-id": [ - "46f8641b-ca12-4a76-9da4-6ffb929ecb34" + "1b3610b4-55a1-4249-a299-c51042c6bfc3" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 20:52:43 GMT" + "Fri, 27 Aug 2021 15:59:40 GMT" + ], + "x-ms-client-request-id": [ + "1879f05c-e358-4a8a-81d4-0b2b83605778" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/13.0.20.15503", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", "AzurePowershell/Az1.0.0" ], "Content-Type": [ "application/json; odata=minimalmetadata; charset=utf-8" ], "Content-Length": [ - "514" + "523" ] }, "ResponseHeaders": { @@ -34,16 +37,16 @@ "chunked" ], "ETag": [ - "0x8D80CB71B75873C" + "0x8D96973AD3698FB" ], "Location": [ - "https://prodtest6.francecentral.batch.azure.com/jobs/job-1" + "https://mikeportal.eastus.batch.azure.com/jobs/job-1" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "7e97e191-16ef-45e2-a695-e3990a30ace1" + "12ea8f4f-d48e-4484-b0f7-a99829db291e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -55,38 +58,41 @@ "3.0" ], "DataServiceId": [ - "https://prodtest6.francecentral.batch.azure.com/jobs/job-1" + "https://mikeportal.eastus.batch.azure.com/jobs/job-1" ], "Date": [ - "Tue, 09 Jun 2020 20:53:05 GMT" + "Fri, 27 Aug 2021 15:59:38 GMT" ], "Last-Modified": [ - "Tue, 09 Jun 2020 20:53:05 GMT" + "Fri, 27 Aug 2021 15:59:39 GMT" ] }, "ResponseBody": "", "StatusCode": 201 }, { - "RequestUri": "/jobs/testJobCompletesWhenTaskFails/tasks?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L2pvYnMvdGVzdEpvYkNvbXBsZXRlc1doZW5UYXNrRmFpbHMvdGFza3M/YXBpLXZlcnNpb249MjAyMC0wMy0wMS4xMS4w", + "RequestUri": "/jobs/testJobCompletesWhenTaskFails/tasks?api-version=2021-06-01.14.0", + "EncodedRequestUri": "L2pvYnMvdGVzdEpvYkNvbXBsZXRlc1doZW5UYXNrRmFpbHMvdGFza3M/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4w", "RequestMethod": "POST", "RequestBody": "{\r\n \"id\": \"taskId-1\",\r\n \"commandLine\": \"cmd /c exit 3\",\r\n \"exitConditions\": {\r\n \"exitCodeRanges\": [\r\n {\r\n \"start\": 2,\r\n \"end\": 4,\r\n \"exitOptions\": {\r\n \"jobAction\": \"terminate\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { "client-request-id": [ - "c7826868-0639-4f57-a9ea-607f54fb7bea" + "702b24ee-3d17-4c84-ad92-676a373c4f05" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 20:53:05 GMT" + "Fri, 27 Aug 2021 15:59:40 GMT" + ], + "x-ms-client-request-id": [ + "d5495f49-6b74-410f-9641-d6132597982a" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/13.0.20.15503", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", "AzurePowershell/Az1.0.0" ], "Content-Type": [ @@ -101,16 +107,16 @@ "chunked" ], "ETag": [ - "0x8D80CB71B9C9832" + "0x8D96973AD4DF1CF" ], "Location": [ - "https://prodtest6.francecentral.batch.azure.com/jobs/testJobCompletesWhenTaskFails/tasks/taskId-1" + "https://mikeportal.eastus.batch.azure.com/jobs/testJobCompletesWhenTaskFails/tasks/taskId-1" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "15d21d9b-4c44-4c40-b8a8-a3f456cb631b" + "04aca732-7086-4f6e-87d5-0d2983a73226" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -122,142 +128,38 @@ "3.0" ], "DataServiceId": [ - "https://prodtest6.francecentral.batch.azure.com/jobs/testJobCompletesWhenTaskFails/tasks/taskId-1" + "https://mikeportal.eastus.batch.azure.com/jobs/testJobCompletesWhenTaskFails/tasks/taskId-1" ], "Date": [ - "Tue, 09 Jun 2020 20:53:05 GMT" + "Fri, 27 Aug 2021 15:59:38 GMT" ], "Last-Modified": [ - "Tue, 09 Jun 2020 20:53:05 GMT" + "Fri, 27 Aug 2021 15:59:39 GMT" ] }, "ResponseBody": "", "StatusCode": 201 }, { - "RequestUri": "/jobs?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAyMC0wMy0wMS4xMS4w", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "client-request-id": [ - "e7ac96ba-d089-45a6-8395-06da8e981824" - ], - "Accept-Language": [ - "en-US" - ], - "ocp-date": [ - "Tue, 09 Jun 2020 20:53:05 GMT" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/13.0.20.15503", - "AzurePowershell/Az1.0.0" - ] - }, - "ResponseHeaders": { - "Transfer-Encoding": [ - "chunked" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "request-id": [ - "763e6890-7485-414d-a0e9-245abc62b482" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0" - ], - "Date": [ - "Tue, 09 Jun 2020 20:53:26 GMT" - ], - "Content-Type": [ - "application/json; odata=minimalmetadata" - ] - }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://prodtest6.francecentral.batch.azure.com/$metadata#jobs\",\r\n \"value\": [\r\n {\r\n \"id\": \"j1\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/j1\",\r\n \"eTag\": \"0x8D6EDE6BFE7A605\",\r\n \"lastModified\": \"2019-06-10T21:01:03.7394437Z\",\r\n \"creationTime\": \"2019-06-10T21:01:03.7183957Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2019-06-10T21:01:03.7394437Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"p1\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2019-06-10T21:01:03.7394437Z\",\r\n \"poolId\": \"p1\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n },\r\n {\r\n \"id\": \"js1:job-1\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/js1:job-1\",\r\n \"eTag\": \"0x8D6EDE6B58581C8\",\r\n \"lastModified\": \"2019-06-10T21:00:46.3190472Z\",\r\n \"creationTime\": \"2019-06-10T21:00:46.2950489Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2019-06-10T21:00:46.3190472Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"p1\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2019-06-10T21:00:46.3190472Z\",\r\n \"poolId\": \"p1\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n },\r\n {\r\n \"id\": \"test-aztk\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/test-aztk\",\r\n \"eTag\": \"0x8D7F5DD2D017DA9\",\r\n \"lastModified\": \"2020-05-11T18:57:38.7864489Z\",\r\n \"creationTime\": \"2020-05-11T18:57:38.7664384Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2020-05-11T18:57:38.7864489Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"test-aztk\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2020-05-11T18:57:38.7864489Z\",\r\n \"poolId\": \"test-aztk\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n },\r\n {\r\n \"id\": \"test-aztk-importlib-131\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/test-aztk-importlib-131\",\r\n \"eTag\": \"0x8D7F5DE7FDD4326\",\r\n \"lastModified\": \"2020-05-11T19:07:07.2966438Z\",\r\n \"creationTime\": \"2020-05-11T19:07:07.2746077Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2020-05-11T19:07:07.2966438Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"test-aztk-importlib-131\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2020-05-11T19:07:07.2966438Z\",\r\n \"poolId\": \"test-aztk-importlib-131\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n },\r\n {\r\n \"id\": \"test-aztk-no-fix\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/test-aztk-no-fix\",\r\n \"eTag\": \"0x8D7F5DDA00F0A5A\",\r\n \"lastModified\": \"2020-05-11T19:00:51.8132314Z\",\r\n \"creationTime\": \"2020-05-11T19:00:51.7922225Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2020-05-11T19:00:51.8132314Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"test-aztk-no-fix\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2020-05-11T19:00:51.8132314Z\",\r\n \"poolId\": \"test-aztk-no-fix\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n },\r\n {\r\n \"id\": \"testJobCompletesWhenTaskFails\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/testJobCompletesWhenTaskFails\",\r\n \"eTag\": \"0x8D80CB71B75873C\",\r\n \"lastModified\": \"2020-06-09T20:53:05.2160828Z\",\r\n \"creationTime\": \"2020-06-09T20:53:05.1970818Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2020-06-09T20:53:05.2160828Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"autoPoolSpecification\": {\r\n \"autoPoolIdPrefix\": \"TestSpecPrefix\",\r\n \"poolLifetimeOption\": \"job\",\r\n \"keepAlive\": false,\r\n \"pool\": {\r\n \"vmSize\": \"small\",\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"resizeTimeout\": \"PT15M\",\r\n \"targetDedicatedNodes\": 3,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"osVersion\": \"*\"\r\n }\r\n }\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2020-06-09T20:53:05.2160828Z\",\r\n \"poolId\": \"TestSpecPrefix_FB6183E5-4DA2-4802-87C3-44CF977C3CB6\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"performexitoptionsjobaction\"\r\n },\r\n {\r\n \"id\": \"testDisableEnableTerminateJobSchedule:job-1\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/testDisableEnableTerminateJobSchedule:job-1\",\r\n \"eTag\": \"0x8D80C98DC293DC1\",\r\n \"lastModified\": \"2020-06-09T17:16:34.1177793Z\",\r\n \"creationTime\": \"2020-06-09T17:16:34.092775Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2020-06-09T17:16:57.1458604Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2020-06-09T17:16:34.1177793Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2020-06-09T17:16:34.1177793Z\",\r\n \"endTime\": \"2020-06-09T17:16:57.1458604Z\",\r\n \"poolId\": \"testPool\",\r\n \"terminateReason\": \"TerminateWorkitem\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n },\r\n {\r\n \"id\": \"testDisableEnableTerminateJobSchedule:job-1\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/testDisableEnableTerminateJobSchedule:job-1\",\r\n \"eTag\": \"0x8D80BFA19BC0BCD\",\r\n \"lastModified\": \"2020-06-08T22:20:07.4408909Z\",\r\n \"creationTime\": \"2020-06-08T22:20:07.415902Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2020-06-08T22:20:30.3772604Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2020-06-08T22:20:07.4408909Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2020-06-08T22:20:07.4408909Z\",\r\n \"endTime\": \"2020-06-08T22:20:30.3772604Z\",\r\n \"poolId\": \"testPool\",\r\n \"terminateReason\": \"TerminateWorkitem\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/jobs?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAyMC0wMy0wMS4xMS4w", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "client-request-id": [ - "d30a920a-3ba7-467a-8b36-a76ff64b6ae7" - ], - "Accept-Language": [ - "en-US" - ], - "ocp-date": [ - "Tue, 09 Jun 2020 20:53:27 GMT" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/13.0.20.15503", - "AzurePowershell/Az1.0.0" - ] - }, - "ResponseHeaders": { - "Transfer-Encoding": [ - "chunked" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "request-id": [ - "e299a34a-e137-42d5-ba96-6675f64e36ee" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0" - ], - "Date": [ - "Tue, 09 Jun 2020 20:53:27 GMT" - ], - "Content-Type": [ - "application/json; odata=minimalmetadata" - ] - }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://prodtest6.francecentral.batch.azure.com/$metadata#jobs\",\r\n \"value\": [\r\n {\r\n \"id\": \"j1\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/j1\",\r\n \"eTag\": \"0x8D6EDE6BFE7A605\",\r\n \"lastModified\": \"2019-06-10T21:01:03.7394437Z\",\r\n \"creationTime\": \"2019-06-10T21:01:03.7183957Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2019-06-10T21:01:03.7394437Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"p1\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2019-06-10T21:01:03.7394437Z\",\r\n \"poolId\": \"p1\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n },\r\n {\r\n \"id\": \"js1:job-1\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/js1:job-1\",\r\n \"eTag\": \"0x8D6EDE6B58581C8\",\r\n \"lastModified\": \"2019-06-10T21:00:46.3190472Z\",\r\n \"creationTime\": \"2019-06-10T21:00:46.2950489Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2019-06-10T21:00:46.3190472Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"p1\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2019-06-10T21:00:46.3190472Z\",\r\n \"poolId\": \"p1\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n },\r\n {\r\n \"id\": \"test-aztk\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/test-aztk\",\r\n \"eTag\": \"0x8D7F5DD2D017DA9\",\r\n \"lastModified\": \"2020-05-11T18:57:38.7864489Z\",\r\n \"creationTime\": \"2020-05-11T18:57:38.7664384Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2020-05-11T18:57:38.7864489Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"test-aztk\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2020-05-11T18:57:38.7864489Z\",\r\n \"poolId\": \"test-aztk\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n },\r\n {\r\n \"id\": \"test-aztk-importlib-131\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/test-aztk-importlib-131\",\r\n \"eTag\": \"0x8D7F5DE7FDD4326\",\r\n \"lastModified\": \"2020-05-11T19:07:07.2966438Z\",\r\n \"creationTime\": \"2020-05-11T19:07:07.2746077Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2020-05-11T19:07:07.2966438Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"test-aztk-importlib-131\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2020-05-11T19:07:07.2966438Z\",\r\n \"poolId\": \"test-aztk-importlib-131\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n },\r\n {\r\n \"id\": \"test-aztk-no-fix\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/test-aztk-no-fix\",\r\n \"eTag\": \"0x8D7F5DDA00F0A5A\",\r\n \"lastModified\": \"2020-05-11T19:00:51.8132314Z\",\r\n \"creationTime\": \"2020-05-11T19:00:51.7922225Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2020-05-11T19:00:51.8132314Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"test-aztk-no-fix\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2020-05-11T19:00:51.8132314Z\",\r\n \"poolId\": \"test-aztk-no-fix\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n },\r\n {\r\n \"id\": \"testJobCompletesWhenTaskFails\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/testJobCompletesWhenTaskFails\",\r\n \"eTag\": \"0x8D80CB71B75873C\",\r\n \"lastModified\": \"2020-06-09T20:53:05.2160828Z\",\r\n \"creationTime\": \"2020-06-09T20:53:05.1970818Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2020-06-09T20:53:05.2160828Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"autoPoolSpecification\": {\r\n \"autoPoolIdPrefix\": \"TestSpecPrefix\",\r\n \"poolLifetimeOption\": \"job\",\r\n \"keepAlive\": false,\r\n \"pool\": {\r\n \"vmSize\": \"small\",\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"resizeTimeout\": \"PT15M\",\r\n \"targetDedicatedNodes\": 3,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"osVersion\": \"*\"\r\n }\r\n }\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2020-06-09T20:53:05.2160828Z\",\r\n \"poolId\": \"TestSpecPrefix_FB6183E5-4DA2-4802-87C3-44CF977C3CB6\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"performexitoptionsjobaction\"\r\n },\r\n {\r\n \"id\": \"testDisableEnableTerminateJobSchedule:job-1\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/testDisableEnableTerminateJobSchedule:job-1\",\r\n \"eTag\": \"0x8D80C98DC293DC1\",\r\n \"lastModified\": \"2020-06-09T17:16:34.1177793Z\",\r\n \"creationTime\": \"2020-06-09T17:16:34.092775Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2020-06-09T17:16:57.1458604Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2020-06-09T17:16:34.1177793Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2020-06-09T17:16:34.1177793Z\",\r\n \"endTime\": \"2020-06-09T17:16:57.1458604Z\",\r\n \"poolId\": \"testPool\",\r\n \"terminateReason\": \"TerminateWorkitem\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n },\r\n {\r\n \"id\": \"testDisableEnableTerminateJobSchedule:job-1\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/testDisableEnableTerminateJobSchedule:job-1\",\r\n \"eTag\": \"0x8D80BFA19BC0BCD\",\r\n \"lastModified\": \"2020-06-08T22:20:07.4408909Z\",\r\n \"creationTime\": \"2020-06-08T22:20:07.415902Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2020-06-08T22:20:30.3772604Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2020-06-08T22:20:07.4408909Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2020-06-08T22:20:07.4408909Z\",\r\n \"endTime\": \"2020-06-08T22:20:30.3772604Z\",\r\n \"poolId\": \"testPool\",\r\n \"terminateReason\": \"TerminateWorkitem\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/jobs?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAyMC0wMy0wMS4xMS4w", + "RequestUri": "/jobs?api-version=2021-06-01.14.0", + "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4w", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "9797e225-d0d1-46a0-a2cd-208bcd153cfa" + "245c9f57-3985-42b0-a70c-c9f2c43c45dc" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 20:53:47 GMT" + "Fri, 27 Aug 2021 15:59:40 GMT" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/13.0.20.15503", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", "AzurePowershell/Az1.0.0" ] }, @@ -269,7 +171,7 @@ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "a91a4961-374b-47d8-880d-490badff0412" + "ba6bd079-7865-439a-93c4-c6d0df825ab1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -281,35 +183,35 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 20:53:47 GMT" + "Fri, 27 Aug 2021 15:59:39 GMT" ], "Content-Type": [ "application/json; odata=minimalmetadata" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://prodtest6.francecentral.batch.azure.com/$metadata#jobs\",\r\n \"value\": [\r\n {\r\n \"id\": \"j1\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/j1\",\r\n \"eTag\": \"0x8D6EDE6BFE7A605\",\r\n \"lastModified\": \"2019-06-10T21:01:03.7394437Z\",\r\n \"creationTime\": \"2019-06-10T21:01:03.7183957Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2019-06-10T21:01:03.7394437Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"p1\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2019-06-10T21:01:03.7394437Z\",\r\n \"poolId\": \"p1\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n },\r\n {\r\n \"id\": \"js1:job-1\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/js1:job-1\",\r\n \"eTag\": \"0x8D6EDE6B58581C8\",\r\n \"lastModified\": \"2019-06-10T21:00:46.3190472Z\",\r\n \"creationTime\": \"2019-06-10T21:00:46.2950489Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2019-06-10T21:00:46.3190472Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"p1\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2019-06-10T21:00:46.3190472Z\",\r\n \"poolId\": \"p1\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n },\r\n {\r\n \"id\": \"test-aztk\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/test-aztk\",\r\n \"eTag\": \"0x8D7F5DD2D017DA9\",\r\n \"lastModified\": \"2020-05-11T18:57:38.7864489Z\",\r\n \"creationTime\": \"2020-05-11T18:57:38.7664384Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2020-05-11T18:57:38.7864489Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"test-aztk\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2020-05-11T18:57:38.7864489Z\",\r\n \"poolId\": \"test-aztk\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n },\r\n {\r\n \"id\": \"test-aztk-importlib-131\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/test-aztk-importlib-131\",\r\n \"eTag\": \"0x8D7F5DE7FDD4326\",\r\n \"lastModified\": \"2020-05-11T19:07:07.2966438Z\",\r\n \"creationTime\": \"2020-05-11T19:07:07.2746077Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2020-05-11T19:07:07.2966438Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"test-aztk-importlib-131\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2020-05-11T19:07:07.2966438Z\",\r\n \"poolId\": \"test-aztk-importlib-131\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n },\r\n {\r\n \"id\": \"test-aztk-no-fix\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/test-aztk-no-fix\",\r\n \"eTag\": \"0x8D7F5DDA00F0A5A\",\r\n \"lastModified\": \"2020-05-11T19:00:51.8132314Z\",\r\n \"creationTime\": \"2020-05-11T19:00:51.7922225Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2020-05-11T19:00:51.8132314Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"test-aztk-no-fix\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2020-05-11T19:00:51.8132314Z\",\r\n \"poolId\": \"test-aztk-no-fix\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n },\r\n {\r\n \"id\": \"testJobCompletesWhenTaskFails\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/testJobCompletesWhenTaskFails\",\r\n \"eTag\": \"0x8D80CB71B75873C\",\r\n \"lastModified\": \"2020-06-09T20:53:05.2160828Z\",\r\n \"creationTime\": \"2020-06-09T20:53:05.1970818Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2020-06-09T20:53:05.2160828Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"autoPoolSpecification\": {\r\n \"autoPoolIdPrefix\": \"TestSpecPrefix\",\r\n \"poolLifetimeOption\": \"job\",\r\n \"keepAlive\": false,\r\n \"pool\": {\r\n \"vmSize\": \"small\",\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"resizeTimeout\": \"PT15M\",\r\n \"targetDedicatedNodes\": 3,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"osVersion\": \"*\"\r\n }\r\n }\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2020-06-09T20:53:05.2160828Z\",\r\n \"poolId\": \"TestSpecPrefix_FB6183E5-4DA2-4802-87C3-44CF977C3CB6\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"performexitoptionsjobaction\"\r\n },\r\n {\r\n \"id\": \"testDisableEnableTerminateJobSchedule:job-1\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/testDisableEnableTerminateJobSchedule:job-1\",\r\n \"eTag\": \"0x8D80C98DC293DC1\",\r\n \"lastModified\": \"2020-06-09T17:16:34.1177793Z\",\r\n \"creationTime\": \"2020-06-09T17:16:34.092775Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2020-06-09T17:16:57.1458604Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2020-06-09T17:16:34.1177793Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2020-06-09T17:16:34.1177793Z\",\r\n \"endTime\": \"2020-06-09T17:16:57.1458604Z\",\r\n \"poolId\": \"testPool\",\r\n \"terminateReason\": \"TerminateWorkitem\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n },\r\n {\r\n \"id\": \"testDisableEnableTerminateJobSchedule:job-1\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/testDisableEnableTerminateJobSchedule:job-1\",\r\n \"eTag\": \"0x8D80BFA19BC0BCD\",\r\n \"lastModified\": \"2020-06-08T22:20:07.4408909Z\",\r\n \"creationTime\": \"2020-06-08T22:20:07.415902Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2020-06-08T22:20:30.3772604Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2020-06-08T22:20:07.4408909Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2020-06-08T22:20:07.4408909Z\",\r\n \"endTime\": \"2020-06-08T22:20:30.3772604Z\",\r\n \"poolId\": \"testPool\",\r\n \"terminateReason\": \"TerminateWorkitem\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#jobs\",\r\n \"value\": [\r\n {\r\n \"id\": \"testJobCompletesWhenTaskFails\",\r\n \"url\": \"https://mikeportal.eastus.batch.azure.com/jobs/testJobCompletesWhenTaskFails\",\r\n \"eTag\": \"0x8D96973AD3698FB\",\r\n \"lastModified\": \"2021-08-27T15:59:39.7827835Z\",\r\n \"creationTime\": \"2021-08-27T15:59:39.7617875Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2021-08-27T15:59:39.7827835Z\",\r\n \"priority\": 0,\r\n \"maxParallelTasks\": -1,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"autoPoolSpecification\": {\r\n \"autoPoolIdPrefix\": \"TestSpecPrefix\",\r\n \"poolLifetimeOption\": \"job\",\r\n \"keepAlive\": false,\r\n \"pool\": {\r\n \"vmSize\": \"standard_d1_v2\",\r\n \"taskSlotsPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"resizeTimeout\": \"PT15M\",\r\n \"targetDedicatedNodes\": 1,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"osVersion\": \"*\"\r\n }\r\n }\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2021-08-27T15:59:39.7827835Z\",\r\n \"poolId\": \"TestSpecPrefix_D833BBF0-BF06-4FDC-BE52-740DF2250A49\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"performexitoptionsjobaction\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/jobs?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAyMC0wMy0wMS4xMS4w", + "RequestUri": "/jobs?api-version=2021-06-01.14.0", + "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4w", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "8d1606c7-0cb7-4eec-968c-be055823280d" + "5b04adac-2b9e-49a0-954e-6d7473fd7d51" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 20:54:07 GMT" + "Fri, 27 Aug 2021 15:59:41 GMT" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/13.0.20.15503", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", "AzurePowershell/Az1.0.0" ] }, @@ -321,7 +223,7 @@ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "5b8416a3-af7b-4321-8923-30ae520f1a19" + "5b34c0f5-2db1-448b-9d0b-a55629429020" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -333,35 +235,35 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 20:54:07 GMT" + "Fri, 27 Aug 2021 15:59:39 GMT" ], "Content-Type": [ "application/json; odata=minimalmetadata" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://prodtest6.francecentral.batch.azure.com/$metadata#jobs\",\r\n \"value\": [\r\n {\r\n \"id\": \"j1\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/j1\",\r\n \"eTag\": \"0x8D6EDE6BFE7A605\",\r\n \"lastModified\": \"2019-06-10T21:01:03.7394437Z\",\r\n \"creationTime\": \"2019-06-10T21:01:03.7183957Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2019-06-10T21:01:03.7394437Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"p1\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2019-06-10T21:01:03.7394437Z\",\r\n \"poolId\": \"p1\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n },\r\n {\r\n \"id\": \"js1:job-1\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/js1:job-1\",\r\n \"eTag\": \"0x8D6EDE6B58581C8\",\r\n \"lastModified\": \"2019-06-10T21:00:46.3190472Z\",\r\n \"creationTime\": \"2019-06-10T21:00:46.2950489Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2019-06-10T21:00:46.3190472Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"p1\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2019-06-10T21:00:46.3190472Z\",\r\n \"poolId\": \"p1\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n },\r\n {\r\n \"id\": \"test-aztk\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/test-aztk\",\r\n \"eTag\": \"0x8D7F5DD2D017DA9\",\r\n \"lastModified\": \"2020-05-11T18:57:38.7864489Z\",\r\n \"creationTime\": \"2020-05-11T18:57:38.7664384Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2020-05-11T18:57:38.7864489Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"test-aztk\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2020-05-11T18:57:38.7864489Z\",\r\n \"poolId\": \"test-aztk\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n },\r\n {\r\n \"id\": \"test-aztk-importlib-131\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/test-aztk-importlib-131\",\r\n \"eTag\": \"0x8D7F5DE7FDD4326\",\r\n \"lastModified\": \"2020-05-11T19:07:07.2966438Z\",\r\n \"creationTime\": \"2020-05-11T19:07:07.2746077Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2020-05-11T19:07:07.2966438Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"test-aztk-importlib-131\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2020-05-11T19:07:07.2966438Z\",\r\n \"poolId\": \"test-aztk-importlib-131\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n },\r\n {\r\n \"id\": \"test-aztk-no-fix\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/test-aztk-no-fix\",\r\n \"eTag\": \"0x8D7F5DDA00F0A5A\",\r\n \"lastModified\": \"2020-05-11T19:00:51.8132314Z\",\r\n \"creationTime\": \"2020-05-11T19:00:51.7922225Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2020-05-11T19:00:51.8132314Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"test-aztk-no-fix\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2020-05-11T19:00:51.8132314Z\",\r\n \"poolId\": \"test-aztk-no-fix\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n },\r\n {\r\n \"id\": \"testJobCompletesWhenTaskFails\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/testJobCompletesWhenTaskFails\",\r\n \"eTag\": \"0x8D80CB71B75873C\",\r\n \"lastModified\": \"2020-06-09T20:53:05.2160828Z\",\r\n \"creationTime\": \"2020-06-09T20:53:05.1970818Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2020-06-09T20:53:05.2160828Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"autoPoolSpecification\": {\r\n \"autoPoolIdPrefix\": \"TestSpecPrefix\",\r\n \"poolLifetimeOption\": \"job\",\r\n \"keepAlive\": false,\r\n \"pool\": {\r\n \"vmSize\": \"small\",\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"resizeTimeout\": \"PT15M\",\r\n \"targetDedicatedNodes\": 3,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"osVersion\": \"*\"\r\n }\r\n }\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2020-06-09T20:53:05.2160828Z\",\r\n \"poolId\": \"TestSpecPrefix_FB6183E5-4DA2-4802-87C3-44CF977C3CB6\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"performexitoptionsjobaction\"\r\n },\r\n {\r\n \"id\": \"testDisableEnableTerminateJobSchedule:job-1\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/testDisableEnableTerminateJobSchedule:job-1\",\r\n \"eTag\": \"0x8D80C98DC293DC1\",\r\n \"lastModified\": \"2020-06-09T17:16:34.1177793Z\",\r\n \"creationTime\": \"2020-06-09T17:16:34.092775Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2020-06-09T17:16:57.1458604Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2020-06-09T17:16:34.1177793Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2020-06-09T17:16:34.1177793Z\",\r\n \"endTime\": \"2020-06-09T17:16:57.1458604Z\",\r\n \"poolId\": \"testPool\",\r\n \"terminateReason\": \"TerminateWorkitem\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n },\r\n {\r\n \"id\": \"testDisableEnableTerminateJobSchedule:job-1\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/testDisableEnableTerminateJobSchedule:job-1\",\r\n \"eTag\": \"0x8D80BFA19BC0BCD\",\r\n \"lastModified\": \"2020-06-08T22:20:07.4408909Z\",\r\n \"creationTime\": \"2020-06-08T22:20:07.415902Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2020-06-08T22:20:30.3772604Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2020-06-08T22:20:07.4408909Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2020-06-08T22:20:07.4408909Z\",\r\n \"endTime\": \"2020-06-08T22:20:30.3772604Z\",\r\n \"poolId\": \"testPool\",\r\n \"terminateReason\": \"TerminateWorkitem\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#jobs\",\r\n \"value\": [\r\n {\r\n \"id\": \"testJobCompletesWhenTaskFails\",\r\n \"url\": \"https://mikeportal.eastus.batch.azure.com/jobs/testJobCompletesWhenTaskFails\",\r\n \"eTag\": \"0x8D96973AD3698FB\",\r\n \"lastModified\": \"2021-08-27T15:59:39.7827835Z\",\r\n \"creationTime\": \"2021-08-27T15:59:39.7617875Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2021-08-27T15:59:39.7827835Z\",\r\n \"priority\": 0,\r\n \"maxParallelTasks\": -1,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"autoPoolSpecification\": {\r\n \"autoPoolIdPrefix\": \"TestSpecPrefix\",\r\n \"poolLifetimeOption\": \"job\",\r\n \"keepAlive\": false,\r\n \"pool\": {\r\n \"vmSize\": \"standard_d1_v2\",\r\n \"taskSlotsPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"resizeTimeout\": \"PT15M\",\r\n \"targetDedicatedNodes\": 1,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"osVersion\": \"*\"\r\n }\r\n }\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2021-08-27T15:59:39.7827835Z\",\r\n \"poolId\": \"TestSpecPrefix_D833BBF0-BF06-4FDC-BE52-740DF2250A49\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"performexitoptionsjobaction\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/jobs?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAyMC0wMy0wMS4xMS4w", + "RequestUri": "/jobs?api-version=2021-06-01.14.0", + "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4w", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "3c188b36-2ef1-4051-a070-3a9f29810b4f" + "9902dbe6-a8e3-4b0b-a8dd-bd8dacb12dcd" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 20:54:27 GMT" + "Fri, 27 Aug 2021 16:00:01 GMT" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/13.0.20.15503", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", "AzurePowershell/Az1.0.0" ] }, @@ -373,7 +275,7 @@ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "f7be5451-4f23-4bf3-957a-a8b33a467598" + "d7a7a813-7b98-4232-be14-befde137d90c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -385,35 +287,35 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 20:54:27 GMT" + "Fri, 27 Aug 2021 15:59:59 GMT" ], "Content-Type": [ "application/json; odata=minimalmetadata" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://prodtest6.francecentral.batch.azure.com/$metadata#jobs\",\r\n \"value\": [\r\n {\r\n \"id\": \"j1\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/j1\",\r\n \"eTag\": \"0x8D6EDE6BFE7A605\",\r\n \"lastModified\": \"2019-06-10T21:01:03.7394437Z\",\r\n \"creationTime\": \"2019-06-10T21:01:03.7183957Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2019-06-10T21:01:03.7394437Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"p1\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2019-06-10T21:01:03.7394437Z\",\r\n \"poolId\": \"p1\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n },\r\n {\r\n \"id\": \"js1:job-1\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/js1:job-1\",\r\n \"eTag\": \"0x8D6EDE6B58581C8\",\r\n \"lastModified\": \"2019-06-10T21:00:46.3190472Z\",\r\n \"creationTime\": \"2019-06-10T21:00:46.2950489Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2019-06-10T21:00:46.3190472Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"p1\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2019-06-10T21:00:46.3190472Z\",\r\n \"poolId\": \"p1\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n },\r\n {\r\n \"id\": \"test-aztk\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/test-aztk\",\r\n \"eTag\": \"0x8D7F5DD2D017DA9\",\r\n \"lastModified\": \"2020-05-11T18:57:38.7864489Z\",\r\n \"creationTime\": \"2020-05-11T18:57:38.7664384Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2020-05-11T18:57:38.7864489Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"test-aztk\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2020-05-11T18:57:38.7864489Z\",\r\n \"poolId\": \"test-aztk\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n },\r\n {\r\n \"id\": \"test-aztk-importlib-131\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/test-aztk-importlib-131\",\r\n \"eTag\": \"0x8D7F5DE7FDD4326\",\r\n \"lastModified\": \"2020-05-11T19:07:07.2966438Z\",\r\n \"creationTime\": \"2020-05-11T19:07:07.2746077Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2020-05-11T19:07:07.2966438Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"test-aztk-importlib-131\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2020-05-11T19:07:07.2966438Z\",\r\n \"poolId\": \"test-aztk-importlib-131\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n },\r\n {\r\n \"id\": \"test-aztk-no-fix\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/test-aztk-no-fix\",\r\n \"eTag\": \"0x8D7F5DDA00F0A5A\",\r\n \"lastModified\": \"2020-05-11T19:00:51.8132314Z\",\r\n \"creationTime\": \"2020-05-11T19:00:51.7922225Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2020-05-11T19:00:51.8132314Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"test-aztk-no-fix\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2020-05-11T19:00:51.8132314Z\",\r\n \"poolId\": \"test-aztk-no-fix\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n },\r\n {\r\n \"id\": \"testJobCompletesWhenTaskFails\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/testJobCompletesWhenTaskFails\",\r\n \"eTag\": \"0x8D80CB71B75873C\",\r\n \"lastModified\": \"2020-06-09T20:53:05.2160828Z\",\r\n \"creationTime\": \"2020-06-09T20:53:05.1970818Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2020-06-09T20:53:05.2160828Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"autoPoolSpecification\": {\r\n \"autoPoolIdPrefix\": \"TestSpecPrefix\",\r\n \"poolLifetimeOption\": \"job\",\r\n \"keepAlive\": false,\r\n \"pool\": {\r\n \"vmSize\": \"small\",\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"resizeTimeout\": \"PT15M\",\r\n \"targetDedicatedNodes\": 3,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"osVersion\": \"*\"\r\n }\r\n }\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2020-06-09T20:53:05.2160828Z\",\r\n \"poolId\": \"TestSpecPrefix_FB6183E5-4DA2-4802-87C3-44CF977C3CB6\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"performexitoptionsjobaction\"\r\n },\r\n {\r\n \"id\": \"testDisableEnableTerminateJobSchedule:job-1\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/testDisableEnableTerminateJobSchedule:job-1\",\r\n \"eTag\": \"0x8D80C98DC293DC1\",\r\n \"lastModified\": \"2020-06-09T17:16:34.1177793Z\",\r\n \"creationTime\": \"2020-06-09T17:16:34.092775Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2020-06-09T17:16:57.1458604Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2020-06-09T17:16:34.1177793Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2020-06-09T17:16:34.1177793Z\",\r\n \"endTime\": \"2020-06-09T17:16:57.1458604Z\",\r\n \"poolId\": \"testPool\",\r\n \"terminateReason\": \"TerminateWorkitem\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n },\r\n {\r\n \"id\": \"testDisableEnableTerminateJobSchedule:job-1\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/testDisableEnableTerminateJobSchedule:job-1\",\r\n \"eTag\": \"0x8D80BFA19BC0BCD\",\r\n \"lastModified\": \"2020-06-08T22:20:07.4408909Z\",\r\n \"creationTime\": \"2020-06-08T22:20:07.415902Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2020-06-08T22:20:30.3772604Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2020-06-08T22:20:07.4408909Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2020-06-08T22:20:07.4408909Z\",\r\n \"endTime\": \"2020-06-08T22:20:30.3772604Z\",\r\n \"poolId\": \"testPool\",\r\n \"terminateReason\": \"TerminateWorkitem\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#jobs\",\r\n \"value\": [\r\n {\r\n \"id\": \"testJobCompletesWhenTaskFails\",\r\n \"url\": \"https://mikeportal.eastus.batch.azure.com/jobs/testJobCompletesWhenTaskFails\",\r\n \"eTag\": \"0x8D96973AD3698FB\",\r\n \"lastModified\": \"2021-08-27T15:59:39.7827835Z\",\r\n \"creationTime\": \"2021-08-27T15:59:39.7617875Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2021-08-27T15:59:39.7827835Z\",\r\n \"priority\": 0,\r\n \"maxParallelTasks\": -1,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"autoPoolSpecification\": {\r\n \"autoPoolIdPrefix\": \"TestSpecPrefix\",\r\n \"poolLifetimeOption\": \"job\",\r\n \"keepAlive\": false,\r\n \"pool\": {\r\n \"vmSize\": \"standard_d1_v2\",\r\n \"taskSlotsPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"resizeTimeout\": \"PT15M\",\r\n \"targetDedicatedNodes\": 1,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"osVersion\": \"*\"\r\n }\r\n }\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2021-08-27T15:59:39.7827835Z\",\r\n \"poolId\": \"TestSpecPrefix_D833BBF0-BF06-4FDC-BE52-740DF2250A49\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"performexitoptionsjobaction\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/jobs?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAyMC0wMy0wMS4xMS4w", + "RequestUri": "/jobs?api-version=2021-06-01.14.0", + "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4w", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "55664ab0-896e-4619-8e79-c438692dbb6a" + "a393fc22-7e6d-46fc-9023-e183a8f31941" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 20:54:48 GMT" + "Fri, 27 Aug 2021 16:00:21 GMT" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/13.0.20.15503", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", "AzurePowershell/Az1.0.0" ] }, @@ -425,7 +327,7 @@ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "39e8d4b6-5953-4d98-b795-e02bc971c732" + "4e06f1cc-b33b-475a-ab8e-1bd67ec58bfa" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -437,35 +339,35 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 20:54:47 GMT" + "Fri, 27 Aug 2021 16:00:19 GMT" ], "Content-Type": [ "application/json; odata=minimalmetadata" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://prodtest6.francecentral.batch.azure.com/$metadata#jobs\",\r\n \"value\": [\r\n {\r\n \"id\": \"j1\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/j1\",\r\n \"eTag\": \"0x8D6EDE6BFE7A605\",\r\n \"lastModified\": \"2019-06-10T21:01:03.7394437Z\",\r\n \"creationTime\": \"2019-06-10T21:01:03.7183957Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2019-06-10T21:01:03.7394437Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"p1\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2019-06-10T21:01:03.7394437Z\",\r\n \"poolId\": \"p1\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n },\r\n {\r\n \"id\": \"js1:job-1\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/js1:job-1\",\r\n \"eTag\": \"0x8D6EDE6B58581C8\",\r\n \"lastModified\": \"2019-06-10T21:00:46.3190472Z\",\r\n \"creationTime\": \"2019-06-10T21:00:46.2950489Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2019-06-10T21:00:46.3190472Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"p1\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2019-06-10T21:00:46.3190472Z\",\r\n \"poolId\": \"p1\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n },\r\n {\r\n \"id\": \"test-aztk\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/test-aztk\",\r\n \"eTag\": \"0x8D7F5DD2D017DA9\",\r\n \"lastModified\": \"2020-05-11T18:57:38.7864489Z\",\r\n \"creationTime\": \"2020-05-11T18:57:38.7664384Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2020-05-11T18:57:38.7864489Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"test-aztk\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2020-05-11T18:57:38.7864489Z\",\r\n \"poolId\": \"test-aztk\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n },\r\n {\r\n \"id\": \"test-aztk-importlib-131\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/test-aztk-importlib-131\",\r\n \"eTag\": \"0x8D7F5DE7FDD4326\",\r\n \"lastModified\": \"2020-05-11T19:07:07.2966438Z\",\r\n \"creationTime\": \"2020-05-11T19:07:07.2746077Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2020-05-11T19:07:07.2966438Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"test-aztk-importlib-131\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2020-05-11T19:07:07.2966438Z\",\r\n \"poolId\": \"test-aztk-importlib-131\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n },\r\n {\r\n \"id\": \"test-aztk-no-fix\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/test-aztk-no-fix\",\r\n \"eTag\": \"0x8D7F5DDA00F0A5A\",\r\n \"lastModified\": \"2020-05-11T19:00:51.8132314Z\",\r\n \"creationTime\": \"2020-05-11T19:00:51.7922225Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2020-05-11T19:00:51.8132314Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"test-aztk-no-fix\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2020-05-11T19:00:51.8132314Z\",\r\n \"poolId\": \"test-aztk-no-fix\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n },\r\n {\r\n \"id\": \"testJobCompletesWhenTaskFails\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/testJobCompletesWhenTaskFails\",\r\n \"eTag\": \"0x8D80CB71B75873C\",\r\n \"lastModified\": \"2020-06-09T20:53:05.2160828Z\",\r\n \"creationTime\": \"2020-06-09T20:53:05.1970818Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2020-06-09T20:53:05.2160828Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"autoPoolSpecification\": {\r\n \"autoPoolIdPrefix\": \"TestSpecPrefix\",\r\n \"poolLifetimeOption\": \"job\",\r\n \"keepAlive\": false,\r\n \"pool\": {\r\n \"vmSize\": \"small\",\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"resizeTimeout\": \"PT15M\",\r\n \"targetDedicatedNodes\": 3,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"osVersion\": \"*\"\r\n }\r\n }\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2020-06-09T20:53:05.2160828Z\",\r\n \"poolId\": \"TestSpecPrefix_FB6183E5-4DA2-4802-87C3-44CF977C3CB6\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"performexitoptionsjobaction\"\r\n },\r\n {\r\n \"id\": \"testDisableEnableTerminateJobSchedule:job-1\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/testDisableEnableTerminateJobSchedule:job-1\",\r\n \"eTag\": \"0x8D80C98DC293DC1\",\r\n \"lastModified\": \"2020-06-09T17:16:34.1177793Z\",\r\n \"creationTime\": \"2020-06-09T17:16:34.092775Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2020-06-09T17:16:57.1458604Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2020-06-09T17:16:34.1177793Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2020-06-09T17:16:34.1177793Z\",\r\n \"endTime\": \"2020-06-09T17:16:57.1458604Z\",\r\n \"poolId\": \"testPool\",\r\n \"terminateReason\": \"TerminateWorkitem\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n },\r\n {\r\n \"id\": \"testDisableEnableTerminateJobSchedule:job-1\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/testDisableEnableTerminateJobSchedule:job-1\",\r\n \"eTag\": \"0x8D80BFA19BC0BCD\",\r\n \"lastModified\": \"2020-06-08T22:20:07.4408909Z\",\r\n \"creationTime\": \"2020-06-08T22:20:07.415902Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2020-06-08T22:20:30.3772604Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2020-06-08T22:20:07.4408909Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2020-06-08T22:20:07.4408909Z\",\r\n \"endTime\": \"2020-06-08T22:20:30.3772604Z\",\r\n \"poolId\": \"testPool\",\r\n \"terminateReason\": \"TerminateWorkitem\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#jobs\",\r\n \"value\": [\r\n {\r\n \"id\": \"testJobCompletesWhenTaskFails\",\r\n \"url\": \"https://mikeportal.eastus.batch.azure.com/jobs/testJobCompletesWhenTaskFails\",\r\n \"eTag\": \"0x8D96973AD3698FB\",\r\n \"lastModified\": \"2021-08-27T15:59:39.7827835Z\",\r\n \"creationTime\": \"2021-08-27T15:59:39.7617875Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2021-08-27T15:59:39.7827835Z\",\r\n \"priority\": 0,\r\n \"maxParallelTasks\": -1,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"autoPoolSpecification\": {\r\n \"autoPoolIdPrefix\": \"TestSpecPrefix\",\r\n \"poolLifetimeOption\": \"job\",\r\n \"keepAlive\": false,\r\n \"pool\": {\r\n \"vmSize\": \"standard_d1_v2\",\r\n \"taskSlotsPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"resizeTimeout\": \"PT15M\",\r\n \"targetDedicatedNodes\": 1,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"osVersion\": \"*\"\r\n }\r\n }\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2021-08-27T15:59:39.7827835Z\",\r\n \"poolId\": \"TestSpecPrefix_D833BBF0-BF06-4FDC-BE52-740DF2250A49\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"performexitoptionsjobaction\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/jobs?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAyMC0wMy0wMS4xMS4w", + "RequestUri": "/jobs?api-version=2021-06-01.14.0", + "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4w", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "fa358c52-765d-45b2-95f0-560457db9b68" + "19a70802-7740-4f94-bb3b-faa21b6078df" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 20:55:08 GMT" + "Fri, 27 Aug 2021 16:00:41 GMT" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/13.0.20.15503", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", "AzurePowershell/Az1.0.0" ] }, @@ -477,7 +379,7 @@ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "4d39b415-0d55-4297-833a-a25e1e55e0b2" + "640e095d-534f-4318-a649-da17e3a40bd7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -489,35 +391,35 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 20:55:08 GMT" + "Fri, 27 Aug 2021 16:00:40 GMT" ], "Content-Type": [ "application/json; odata=minimalmetadata" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://prodtest6.francecentral.batch.azure.com/$metadata#jobs\",\r\n \"value\": [\r\n {\r\n \"id\": \"j1\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/j1\",\r\n \"eTag\": \"0x8D6EDE6BFE7A605\",\r\n \"lastModified\": \"2019-06-10T21:01:03.7394437Z\",\r\n \"creationTime\": \"2019-06-10T21:01:03.7183957Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2019-06-10T21:01:03.7394437Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"p1\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2019-06-10T21:01:03.7394437Z\",\r\n \"poolId\": \"p1\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n },\r\n {\r\n \"id\": \"js1:job-1\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/js1:job-1\",\r\n \"eTag\": \"0x8D6EDE6B58581C8\",\r\n \"lastModified\": \"2019-06-10T21:00:46.3190472Z\",\r\n \"creationTime\": \"2019-06-10T21:00:46.2950489Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2019-06-10T21:00:46.3190472Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"p1\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2019-06-10T21:00:46.3190472Z\",\r\n \"poolId\": \"p1\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n },\r\n {\r\n \"id\": \"test-aztk\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/test-aztk\",\r\n \"eTag\": \"0x8D7F5DD2D017DA9\",\r\n \"lastModified\": \"2020-05-11T18:57:38.7864489Z\",\r\n \"creationTime\": \"2020-05-11T18:57:38.7664384Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2020-05-11T18:57:38.7864489Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"test-aztk\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2020-05-11T18:57:38.7864489Z\",\r\n \"poolId\": \"test-aztk\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n },\r\n {\r\n \"id\": \"test-aztk-importlib-131\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/test-aztk-importlib-131\",\r\n \"eTag\": \"0x8D7F5DE7FDD4326\",\r\n \"lastModified\": \"2020-05-11T19:07:07.2966438Z\",\r\n \"creationTime\": \"2020-05-11T19:07:07.2746077Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2020-05-11T19:07:07.2966438Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"test-aztk-importlib-131\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2020-05-11T19:07:07.2966438Z\",\r\n \"poolId\": \"test-aztk-importlib-131\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n },\r\n {\r\n \"id\": \"test-aztk-no-fix\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/test-aztk-no-fix\",\r\n \"eTag\": \"0x8D7F5DDA00F0A5A\",\r\n \"lastModified\": \"2020-05-11T19:00:51.8132314Z\",\r\n \"creationTime\": \"2020-05-11T19:00:51.7922225Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2020-05-11T19:00:51.8132314Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"test-aztk-no-fix\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2020-05-11T19:00:51.8132314Z\",\r\n \"poolId\": \"test-aztk-no-fix\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n },\r\n {\r\n \"id\": \"testJobCompletesWhenTaskFails\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/testJobCompletesWhenTaskFails\",\r\n \"eTag\": \"0x8D80CB71B75873C\",\r\n \"lastModified\": \"2020-06-09T20:53:05.2160828Z\",\r\n \"creationTime\": \"2020-06-09T20:53:05.1970818Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2020-06-09T20:53:05.2160828Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"autoPoolSpecification\": {\r\n \"autoPoolIdPrefix\": \"TestSpecPrefix\",\r\n \"poolLifetimeOption\": \"job\",\r\n \"keepAlive\": false,\r\n \"pool\": {\r\n \"vmSize\": \"small\",\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"resizeTimeout\": \"PT15M\",\r\n \"targetDedicatedNodes\": 3,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"osVersion\": \"*\"\r\n }\r\n }\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2020-06-09T20:53:05.2160828Z\",\r\n \"poolId\": \"TestSpecPrefix_FB6183E5-4DA2-4802-87C3-44CF977C3CB6\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"performexitoptionsjobaction\"\r\n },\r\n {\r\n \"id\": \"testDisableEnableTerminateJobSchedule:job-1\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/testDisableEnableTerminateJobSchedule:job-1\",\r\n \"eTag\": \"0x8D80C98DC293DC1\",\r\n \"lastModified\": \"2020-06-09T17:16:34.1177793Z\",\r\n \"creationTime\": \"2020-06-09T17:16:34.092775Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2020-06-09T17:16:57.1458604Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2020-06-09T17:16:34.1177793Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2020-06-09T17:16:34.1177793Z\",\r\n \"endTime\": \"2020-06-09T17:16:57.1458604Z\",\r\n \"poolId\": \"testPool\",\r\n \"terminateReason\": \"TerminateWorkitem\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n },\r\n {\r\n \"id\": \"testDisableEnableTerminateJobSchedule:job-1\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/testDisableEnableTerminateJobSchedule:job-1\",\r\n \"eTag\": \"0x8D80BFA19BC0BCD\",\r\n \"lastModified\": \"2020-06-08T22:20:07.4408909Z\",\r\n \"creationTime\": \"2020-06-08T22:20:07.415902Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2020-06-08T22:20:30.3772604Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2020-06-08T22:20:07.4408909Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2020-06-08T22:20:07.4408909Z\",\r\n \"endTime\": \"2020-06-08T22:20:30.3772604Z\",\r\n \"poolId\": \"testPool\",\r\n \"terminateReason\": \"TerminateWorkitem\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#jobs\",\r\n \"value\": [\r\n {\r\n \"id\": \"testJobCompletesWhenTaskFails\",\r\n \"url\": \"https://mikeportal.eastus.batch.azure.com/jobs/testJobCompletesWhenTaskFails\",\r\n \"eTag\": \"0x8D96973AD3698FB\",\r\n \"lastModified\": \"2021-08-27T15:59:39.7827835Z\",\r\n \"creationTime\": \"2021-08-27T15:59:39.7617875Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2021-08-27T15:59:39.7827835Z\",\r\n \"priority\": 0,\r\n \"maxParallelTasks\": -1,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"autoPoolSpecification\": {\r\n \"autoPoolIdPrefix\": \"TestSpecPrefix\",\r\n \"poolLifetimeOption\": \"job\",\r\n \"keepAlive\": false,\r\n \"pool\": {\r\n \"vmSize\": \"standard_d1_v2\",\r\n \"taskSlotsPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"resizeTimeout\": \"PT15M\",\r\n \"targetDedicatedNodes\": 1,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"osVersion\": \"*\"\r\n }\r\n }\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2021-08-27T15:59:39.7827835Z\",\r\n \"poolId\": \"TestSpecPrefix_D833BBF0-BF06-4FDC-BE52-740DF2250A49\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"performexitoptionsjobaction\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/jobs?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAyMC0wMy0wMS4xMS4w", + "RequestUri": "/jobs?api-version=2021-06-01.14.0", + "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4w", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "fc8605cd-b27e-4a9c-b06d-b72ccc28dc98" + "99545746-2ee2-4e8e-9d35-afb9365c7fdb" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 20:55:28 GMT" + "Fri, 27 Aug 2021 16:01:01 GMT" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/13.0.20.15503", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", "AzurePowershell/Az1.0.0" ] }, @@ -529,7 +431,7 @@ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "9b01c78f-163c-41b0-9eea-75d662b3bc1b" + "89f28467-a195-4e7d-bc70-b1e3afafbd42" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -541,35 +443,35 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 20:55:27 GMT" + "Fri, 27 Aug 2021 16:01:00 GMT" ], "Content-Type": [ "application/json; odata=minimalmetadata" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://prodtest6.francecentral.batch.azure.com/$metadata#jobs\",\r\n \"value\": [\r\n {\r\n \"id\": \"j1\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/j1\",\r\n \"eTag\": \"0x8D6EDE6BFE7A605\",\r\n \"lastModified\": \"2019-06-10T21:01:03.7394437Z\",\r\n \"creationTime\": \"2019-06-10T21:01:03.7183957Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2019-06-10T21:01:03.7394437Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"p1\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2019-06-10T21:01:03.7394437Z\",\r\n \"poolId\": \"p1\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n },\r\n {\r\n \"id\": \"js1:job-1\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/js1:job-1\",\r\n \"eTag\": \"0x8D6EDE6B58581C8\",\r\n \"lastModified\": \"2019-06-10T21:00:46.3190472Z\",\r\n \"creationTime\": \"2019-06-10T21:00:46.2950489Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2019-06-10T21:00:46.3190472Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"p1\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2019-06-10T21:00:46.3190472Z\",\r\n \"poolId\": \"p1\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n },\r\n {\r\n \"id\": \"test-aztk\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/test-aztk\",\r\n \"eTag\": \"0x8D7F5DD2D017DA9\",\r\n \"lastModified\": \"2020-05-11T18:57:38.7864489Z\",\r\n \"creationTime\": \"2020-05-11T18:57:38.7664384Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2020-05-11T18:57:38.7864489Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"test-aztk\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2020-05-11T18:57:38.7864489Z\",\r\n \"poolId\": \"test-aztk\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n },\r\n {\r\n \"id\": \"test-aztk-importlib-131\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/test-aztk-importlib-131\",\r\n \"eTag\": \"0x8D7F5DE7FDD4326\",\r\n \"lastModified\": \"2020-05-11T19:07:07.2966438Z\",\r\n \"creationTime\": \"2020-05-11T19:07:07.2746077Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2020-05-11T19:07:07.2966438Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"test-aztk-importlib-131\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2020-05-11T19:07:07.2966438Z\",\r\n \"poolId\": \"test-aztk-importlib-131\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n },\r\n {\r\n \"id\": \"test-aztk-no-fix\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/test-aztk-no-fix\",\r\n \"eTag\": \"0x8D7F5DDA00F0A5A\",\r\n \"lastModified\": \"2020-05-11T19:00:51.8132314Z\",\r\n \"creationTime\": \"2020-05-11T19:00:51.7922225Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2020-05-11T19:00:51.8132314Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"test-aztk-no-fix\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2020-05-11T19:00:51.8132314Z\",\r\n \"poolId\": \"test-aztk-no-fix\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n },\r\n {\r\n \"id\": \"testJobCompletesWhenTaskFails\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/testJobCompletesWhenTaskFails\",\r\n \"eTag\": \"0x8D80CB71B75873C\",\r\n \"lastModified\": \"2020-06-09T20:53:05.2160828Z\",\r\n \"creationTime\": \"2020-06-09T20:53:05.1970818Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2020-06-09T20:53:05.2160828Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"autoPoolSpecification\": {\r\n \"autoPoolIdPrefix\": \"TestSpecPrefix\",\r\n \"poolLifetimeOption\": \"job\",\r\n \"keepAlive\": false,\r\n \"pool\": {\r\n \"vmSize\": \"small\",\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"resizeTimeout\": \"PT15M\",\r\n \"targetDedicatedNodes\": 3,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"osVersion\": \"*\"\r\n }\r\n }\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2020-06-09T20:53:05.2160828Z\",\r\n \"poolId\": \"TestSpecPrefix_FB6183E5-4DA2-4802-87C3-44CF977C3CB6\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"performexitoptionsjobaction\"\r\n },\r\n {\r\n \"id\": \"testDisableEnableTerminateJobSchedule:job-1\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/testDisableEnableTerminateJobSchedule:job-1\",\r\n \"eTag\": \"0x8D80C98DC293DC1\",\r\n \"lastModified\": \"2020-06-09T17:16:34.1177793Z\",\r\n \"creationTime\": \"2020-06-09T17:16:34.092775Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2020-06-09T17:16:57.1458604Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2020-06-09T17:16:34.1177793Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2020-06-09T17:16:34.1177793Z\",\r\n \"endTime\": \"2020-06-09T17:16:57.1458604Z\",\r\n \"poolId\": \"testPool\",\r\n \"terminateReason\": \"TerminateWorkitem\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n },\r\n {\r\n \"id\": \"testDisableEnableTerminateJobSchedule:job-1\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/testDisableEnableTerminateJobSchedule:job-1\",\r\n \"eTag\": \"0x8D80BFA19BC0BCD\",\r\n \"lastModified\": \"2020-06-08T22:20:07.4408909Z\",\r\n \"creationTime\": \"2020-06-08T22:20:07.415902Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2020-06-08T22:20:30.3772604Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2020-06-08T22:20:07.4408909Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2020-06-08T22:20:07.4408909Z\",\r\n \"endTime\": \"2020-06-08T22:20:30.3772604Z\",\r\n \"poolId\": \"testPool\",\r\n \"terminateReason\": \"TerminateWorkitem\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#jobs\",\r\n \"value\": [\r\n {\r\n \"id\": \"testJobCompletesWhenTaskFails\",\r\n \"url\": \"https://mikeportal.eastus.batch.azure.com/jobs/testJobCompletesWhenTaskFails\",\r\n \"eTag\": \"0x8D96973AD3698FB\",\r\n \"lastModified\": \"2021-08-27T15:59:39.7827835Z\",\r\n \"creationTime\": \"2021-08-27T15:59:39.7617875Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2021-08-27T15:59:39.7827835Z\",\r\n \"priority\": 0,\r\n \"maxParallelTasks\": -1,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"autoPoolSpecification\": {\r\n \"autoPoolIdPrefix\": \"TestSpecPrefix\",\r\n \"poolLifetimeOption\": \"job\",\r\n \"keepAlive\": false,\r\n \"pool\": {\r\n \"vmSize\": \"standard_d1_v2\",\r\n \"taskSlotsPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"resizeTimeout\": \"PT15M\",\r\n \"targetDedicatedNodes\": 1,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"osVersion\": \"*\"\r\n }\r\n }\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2021-08-27T15:59:39.7827835Z\",\r\n \"poolId\": \"TestSpecPrefix_D833BBF0-BF06-4FDC-BE52-740DF2250A49\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"performexitoptionsjobaction\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/jobs?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAyMC0wMy0wMS4xMS4w", + "RequestUri": "/jobs?api-version=2021-06-01.14.0", + "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4w", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "90cd1e73-e43b-46f3-92f2-3e6106735f63" + "07bde4cc-c48b-4dd3-ab8c-ba333ed59032" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 20:55:48 GMT" + "Fri, 27 Aug 2021 16:01:21 GMT" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/13.0.20.15503", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", "AzurePowershell/Az1.0.0" ] }, @@ -581,7 +483,7 @@ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "4b5ed5e0-89e0-43ee-a64d-43c6f79bfc00" + "5cb98374-8f82-4652-be41-de61c982e571" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -593,35 +495,35 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 20:55:48 GMT" + "Fri, 27 Aug 2021 16:01:20 GMT" ], "Content-Type": [ "application/json; odata=minimalmetadata" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://prodtest6.francecentral.batch.azure.com/$metadata#jobs\",\r\n \"value\": [\r\n {\r\n \"id\": \"j1\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/j1\",\r\n \"eTag\": \"0x8D6EDE6BFE7A605\",\r\n \"lastModified\": \"2019-06-10T21:01:03.7394437Z\",\r\n \"creationTime\": \"2019-06-10T21:01:03.7183957Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2019-06-10T21:01:03.7394437Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"p1\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2019-06-10T21:01:03.7394437Z\",\r\n \"poolId\": \"p1\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n },\r\n {\r\n \"id\": \"js1:job-1\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/js1:job-1\",\r\n \"eTag\": \"0x8D6EDE6B58581C8\",\r\n \"lastModified\": \"2019-06-10T21:00:46.3190472Z\",\r\n \"creationTime\": \"2019-06-10T21:00:46.2950489Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2019-06-10T21:00:46.3190472Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"p1\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2019-06-10T21:00:46.3190472Z\",\r\n \"poolId\": \"p1\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n },\r\n {\r\n \"id\": \"test-aztk\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/test-aztk\",\r\n \"eTag\": \"0x8D7F5DD2D017DA9\",\r\n \"lastModified\": \"2020-05-11T18:57:38.7864489Z\",\r\n \"creationTime\": \"2020-05-11T18:57:38.7664384Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2020-05-11T18:57:38.7864489Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"test-aztk\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2020-05-11T18:57:38.7864489Z\",\r\n \"poolId\": \"test-aztk\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n },\r\n {\r\n \"id\": \"test-aztk-importlib-131\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/test-aztk-importlib-131\",\r\n \"eTag\": \"0x8D7F5DE7FDD4326\",\r\n \"lastModified\": \"2020-05-11T19:07:07.2966438Z\",\r\n \"creationTime\": \"2020-05-11T19:07:07.2746077Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2020-05-11T19:07:07.2966438Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"test-aztk-importlib-131\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2020-05-11T19:07:07.2966438Z\",\r\n \"poolId\": \"test-aztk-importlib-131\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n },\r\n {\r\n \"id\": \"test-aztk-no-fix\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/test-aztk-no-fix\",\r\n \"eTag\": \"0x8D7F5DDA00F0A5A\",\r\n \"lastModified\": \"2020-05-11T19:00:51.8132314Z\",\r\n \"creationTime\": \"2020-05-11T19:00:51.7922225Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2020-05-11T19:00:51.8132314Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"test-aztk-no-fix\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2020-05-11T19:00:51.8132314Z\",\r\n \"poolId\": \"test-aztk-no-fix\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n },\r\n {\r\n \"id\": \"testJobCompletesWhenTaskFails\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/testJobCompletesWhenTaskFails\",\r\n \"eTag\": \"0x8D80CB71B75873C\",\r\n \"lastModified\": \"2020-06-09T20:53:05.2160828Z\",\r\n \"creationTime\": \"2020-06-09T20:53:05.1970818Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2020-06-09T20:53:05.2160828Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"autoPoolSpecification\": {\r\n \"autoPoolIdPrefix\": \"TestSpecPrefix\",\r\n \"poolLifetimeOption\": \"job\",\r\n \"keepAlive\": false,\r\n \"pool\": {\r\n \"vmSize\": \"small\",\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"resizeTimeout\": \"PT15M\",\r\n \"targetDedicatedNodes\": 3,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"osVersion\": \"*\"\r\n }\r\n }\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2020-06-09T20:53:05.2160828Z\",\r\n \"poolId\": \"TestSpecPrefix_FB6183E5-4DA2-4802-87C3-44CF977C3CB6\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"performexitoptionsjobaction\"\r\n },\r\n {\r\n \"id\": \"testDisableEnableTerminateJobSchedule:job-1\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/testDisableEnableTerminateJobSchedule:job-1\",\r\n \"eTag\": \"0x8D80C98DC293DC1\",\r\n \"lastModified\": \"2020-06-09T17:16:34.1177793Z\",\r\n \"creationTime\": \"2020-06-09T17:16:34.092775Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2020-06-09T17:16:57.1458604Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2020-06-09T17:16:34.1177793Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2020-06-09T17:16:34.1177793Z\",\r\n \"endTime\": \"2020-06-09T17:16:57.1458604Z\",\r\n \"poolId\": \"testPool\",\r\n \"terminateReason\": \"TerminateWorkitem\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n },\r\n {\r\n \"id\": \"testDisableEnableTerminateJobSchedule:job-1\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/testDisableEnableTerminateJobSchedule:job-1\",\r\n \"eTag\": \"0x8D80BFA19BC0BCD\",\r\n \"lastModified\": \"2020-06-08T22:20:07.4408909Z\",\r\n \"creationTime\": \"2020-06-08T22:20:07.415902Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2020-06-08T22:20:30.3772604Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2020-06-08T22:20:07.4408909Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2020-06-08T22:20:07.4408909Z\",\r\n \"endTime\": \"2020-06-08T22:20:30.3772604Z\",\r\n \"poolId\": \"testPool\",\r\n \"terminateReason\": \"TerminateWorkitem\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#jobs\",\r\n \"value\": [\r\n {\r\n \"id\": \"testJobCompletesWhenTaskFails\",\r\n \"url\": \"https://mikeportal.eastus.batch.azure.com/jobs/testJobCompletesWhenTaskFails\",\r\n \"eTag\": \"0x8D96973AD3698FB\",\r\n \"lastModified\": \"2021-08-27T15:59:39.7827835Z\",\r\n \"creationTime\": \"2021-08-27T15:59:39.7617875Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2021-08-27T15:59:39.7827835Z\",\r\n \"priority\": 0,\r\n \"maxParallelTasks\": -1,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"autoPoolSpecification\": {\r\n \"autoPoolIdPrefix\": \"TestSpecPrefix\",\r\n \"poolLifetimeOption\": \"job\",\r\n \"keepAlive\": false,\r\n \"pool\": {\r\n \"vmSize\": \"standard_d1_v2\",\r\n \"taskSlotsPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"resizeTimeout\": \"PT15M\",\r\n \"targetDedicatedNodes\": 1,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"osVersion\": \"*\"\r\n }\r\n }\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2021-08-27T15:59:39.7827835Z\",\r\n \"poolId\": \"TestSpecPrefix_D833BBF0-BF06-4FDC-BE52-740DF2250A49\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"performexitoptionsjobaction\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/jobs?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAyMC0wMy0wMS4xMS4w", + "RequestUri": "/jobs?api-version=2021-06-01.14.0", + "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4w", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "9a81e560-309e-4cb7-bf48-576748b2bd1d" + "f8d4a6ba-28b8-48d4-8c5b-33a7e1e8d78e" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 20:56:08 GMT" + "Fri, 27 Aug 2021 16:01:41 GMT" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/13.0.20.15503", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", "AzurePowershell/Az1.0.0" ] }, @@ -633,7 +535,7 @@ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "3617959e-1326-4fda-9732-50fa4d5ba7bd" + "5378836b-570d-4f13-b210-b46ee47e9bff" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -645,35 +547,35 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 20:56:08 GMT" + "Fri, 27 Aug 2021 16:01:40 GMT" ], "Content-Type": [ "application/json; odata=minimalmetadata" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://prodtest6.francecentral.batch.azure.com/$metadata#jobs\",\r\n \"value\": [\r\n {\r\n \"id\": \"j1\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/j1\",\r\n \"eTag\": \"0x8D6EDE6BFE7A605\",\r\n \"lastModified\": \"2019-06-10T21:01:03.7394437Z\",\r\n \"creationTime\": \"2019-06-10T21:01:03.7183957Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2019-06-10T21:01:03.7394437Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"p1\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2019-06-10T21:01:03.7394437Z\",\r\n \"poolId\": \"p1\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n },\r\n {\r\n \"id\": \"js1:job-1\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/js1:job-1\",\r\n \"eTag\": \"0x8D6EDE6B58581C8\",\r\n \"lastModified\": \"2019-06-10T21:00:46.3190472Z\",\r\n \"creationTime\": \"2019-06-10T21:00:46.2950489Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2019-06-10T21:00:46.3190472Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"p1\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2019-06-10T21:00:46.3190472Z\",\r\n \"poolId\": \"p1\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n },\r\n {\r\n \"id\": \"test-aztk\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/test-aztk\",\r\n \"eTag\": \"0x8D7F5DD2D017DA9\",\r\n \"lastModified\": \"2020-05-11T18:57:38.7864489Z\",\r\n \"creationTime\": \"2020-05-11T18:57:38.7664384Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2020-05-11T18:57:38.7864489Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"test-aztk\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2020-05-11T18:57:38.7864489Z\",\r\n \"poolId\": \"test-aztk\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n },\r\n {\r\n \"id\": \"test-aztk-importlib-131\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/test-aztk-importlib-131\",\r\n \"eTag\": \"0x8D7F5DE7FDD4326\",\r\n \"lastModified\": \"2020-05-11T19:07:07.2966438Z\",\r\n \"creationTime\": \"2020-05-11T19:07:07.2746077Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2020-05-11T19:07:07.2966438Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"test-aztk-importlib-131\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2020-05-11T19:07:07.2966438Z\",\r\n \"poolId\": \"test-aztk-importlib-131\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n },\r\n {\r\n \"id\": \"test-aztk-no-fix\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/test-aztk-no-fix\",\r\n \"eTag\": \"0x8D7F5DDA00F0A5A\",\r\n \"lastModified\": \"2020-05-11T19:00:51.8132314Z\",\r\n \"creationTime\": \"2020-05-11T19:00:51.7922225Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2020-05-11T19:00:51.8132314Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"test-aztk-no-fix\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2020-05-11T19:00:51.8132314Z\",\r\n \"poolId\": \"test-aztk-no-fix\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n },\r\n {\r\n \"id\": \"testJobCompletesWhenTaskFails\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/testJobCompletesWhenTaskFails\",\r\n \"eTag\": \"0x8D80CB71B75873C\",\r\n \"lastModified\": \"2020-06-09T20:53:05.2160828Z\",\r\n \"creationTime\": \"2020-06-09T20:53:05.1970818Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2020-06-09T20:53:05.2160828Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"autoPoolSpecification\": {\r\n \"autoPoolIdPrefix\": \"TestSpecPrefix\",\r\n \"poolLifetimeOption\": \"job\",\r\n \"keepAlive\": false,\r\n \"pool\": {\r\n \"vmSize\": \"small\",\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"resizeTimeout\": \"PT15M\",\r\n \"targetDedicatedNodes\": 3,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"osVersion\": \"*\"\r\n }\r\n }\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2020-06-09T20:53:05.2160828Z\",\r\n \"poolId\": \"TestSpecPrefix_FB6183E5-4DA2-4802-87C3-44CF977C3CB6\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"performexitoptionsjobaction\"\r\n },\r\n {\r\n \"id\": \"testDisableEnableTerminateJobSchedule:job-1\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/testDisableEnableTerminateJobSchedule:job-1\",\r\n \"eTag\": \"0x8D80C98DC293DC1\",\r\n \"lastModified\": \"2020-06-09T17:16:34.1177793Z\",\r\n \"creationTime\": \"2020-06-09T17:16:34.092775Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2020-06-09T17:16:57.1458604Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2020-06-09T17:16:34.1177793Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2020-06-09T17:16:34.1177793Z\",\r\n \"endTime\": \"2020-06-09T17:16:57.1458604Z\",\r\n \"poolId\": \"testPool\",\r\n \"terminateReason\": \"TerminateWorkitem\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n },\r\n {\r\n \"id\": \"testDisableEnableTerminateJobSchedule:job-1\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/testDisableEnableTerminateJobSchedule:job-1\",\r\n \"eTag\": \"0x8D80BFA19BC0BCD\",\r\n \"lastModified\": \"2020-06-08T22:20:07.4408909Z\",\r\n \"creationTime\": \"2020-06-08T22:20:07.415902Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2020-06-08T22:20:30.3772604Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2020-06-08T22:20:07.4408909Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2020-06-08T22:20:07.4408909Z\",\r\n \"endTime\": \"2020-06-08T22:20:30.3772604Z\",\r\n \"poolId\": \"testPool\",\r\n \"terminateReason\": \"TerminateWorkitem\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#jobs\",\r\n \"value\": [\r\n {\r\n \"id\": \"testJobCompletesWhenTaskFails\",\r\n \"url\": \"https://mikeportal.eastus.batch.azure.com/jobs/testJobCompletesWhenTaskFails\",\r\n \"eTag\": \"0x8D96973AD3698FB\",\r\n \"lastModified\": \"2021-08-27T15:59:39.7827835Z\",\r\n \"creationTime\": \"2021-08-27T15:59:39.7617875Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2021-08-27T15:59:39.7827835Z\",\r\n \"priority\": 0,\r\n \"maxParallelTasks\": -1,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"autoPoolSpecification\": {\r\n \"autoPoolIdPrefix\": \"TestSpecPrefix\",\r\n \"poolLifetimeOption\": \"job\",\r\n \"keepAlive\": false,\r\n \"pool\": {\r\n \"vmSize\": \"standard_d1_v2\",\r\n \"taskSlotsPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"resizeTimeout\": \"PT15M\",\r\n \"targetDedicatedNodes\": 1,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"osVersion\": \"*\"\r\n }\r\n }\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2021-08-27T15:59:39.7827835Z\",\r\n \"poolId\": \"TestSpecPrefix_D833BBF0-BF06-4FDC-BE52-740DF2250A49\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"performexitoptionsjobaction\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/jobs?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAyMC0wMy0wMS4xMS4w", + "RequestUri": "/jobs?api-version=2021-06-01.14.0", + "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4w", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "a3a4a880-efc6-4429-ad13-cc06d5c1d645" + "e4eaca7c-5744-476c-bc7d-e3306e88b740" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 20:56:28 GMT" + "Fri, 27 Aug 2021 16:02:01 GMT" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/13.0.20.15503", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", "AzurePowershell/Az1.0.0" ] }, @@ -685,7 +587,7 @@ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "b85a90b3-b10c-44b2-bd97-d16cc5cf71c4" + "8872b047-cea4-4f11-a128-978bd9d6649b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -697,35 +599,35 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 20:56:28 GMT" + "Fri, 27 Aug 2021 16:01:59 GMT" ], "Content-Type": [ "application/json; odata=minimalmetadata" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://prodtest6.francecentral.batch.azure.com/$metadata#jobs\",\r\n \"value\": [\r\n {\r\n \"id\": \"j1\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/j1\",\r\n \"eTag\": \"0x8D6EDE6BFE7A605\",\r\n \"lastModified\": \"2019-06-10T21:01:03.7394437Z\",\r\n \"creationTime\": \"2019-06-10T21:01:03.7183957Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2019-06-10T21:01:03.7394437Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"p1\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2019-06-10T21:01:03.7394437Z\",\r\n \"poolId\": \"p1\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n },\r\n {\r\n \"id\": \"js1:job-1\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/js1:job-1\",\r\n \"eTag\": \"0x8D6EDE6B58581C8\",\r\n \"lastModified\": \"2019-06-10T21:00:46.3190472Z\",\r\n \"creationTime\": \"2019-06-10T21:00:46.2950489Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2019-06-10T21:00:46.3190472Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"p1\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2019-06-10T21:00:46.3190472Z\",\r\n \"poolId\": \"p1\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n },\r\n {\r\n \"id\": \"test-aztk\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/test-aztk\",\r\n \"eTag\": \"0x8D7F5DD2D017DA9\",\r\n \"lastModified\": \"2020-05-11T18:57:38.7864489Z\",\r\n \"creationTime\": \"2020-05-11T18:57:38.7664384Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2020-05-11T18:57:38.7864489Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"test-aztk\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2020-05-11T18:57:38.7864489Z\",\r\n \"poolId\": \"test-aztk\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n },\r\n {\r\n \"id\": \"test-aztk-importlib-131\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/test-aztk-importlib-131\",\r\n \"eTag\": \"0x8D7F5DE7FDD4326\",\r\n \"lastModified\": \"2020-05-11T19:07:07.2966438Z\",\r\n \"creationTime\": \"2020-05-11T19:07:07.2746077Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2020-05-11T19:07:07.2966438Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"test-aztk-importlib-131\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2020-05-11T19:07:07.2966438Z\",\r\n \"poolId\": \"test-aztk-importlib-131\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n },\r\n {\r\n \"id\": \"test-aztk-no-fix\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/test-aztk-no-fix\",\r\n \"eTag\": \"0x8D7F5DDA00F0A5A\",\r\n \"lastModified\": \"2020-05-11T19:00:51.8132314Z\",\r\n \"creationTime\": \"2020-05-11T19:00:51.7922225Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2020-05-11T19:00:51.8132314Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"test-aztk-no-fix\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2020-05-11T19:00:51.8132314Z\",\r\n \"poolId\": \"test-aztk-no-fix\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n },\r\n {\r\n \"id\": \"testJobCompletesWhenTaskFails\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/testJobCompletesWhenTaskFails\",\r\n \"eTag\": \"0x8D80CB71B75873C\",\r\n \"lastModified\": \"2020-06-09T20:53:05.2160828Z\",\r\n \"creationTime\": \"2020-06-09T20:53:05.1970818Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2020-06-09T20:53:05.2160828Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"autoPoolSpecification\": {\r\n \"autoPoolIdPrefix\": \"TestSpecPrefix\",\r\n \"poolLifetimeOption\": \"job\",\r\n \"keepAlive\": false,\r\n \"pool\": {\r\n \"vmSize\": \"small\",\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"resizeTimeout\": \"PT15M\",\r\n \"targetDedicatedNodes\": 3,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"osVersion\": \"*\"\r\n }\r\n }\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2020-06-09T20:53:05.2160828Z\",\r\n \"poolId\": \"TestSpecPrefix_FB6183E5-4DA2-4802-87C3-44CF977C3CB6\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"performexitoptionsjobaction\"\r\n },\r\n {\r\n \"id\": \"testDisableEnableTerminateJobSchedule:job-1\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/testDisableEnableTerminateJobSchedule:job-1\",\r\n \"eTag\": \"0x8D80C98DC293DC1\",\r\n \"lastModified\": \"2020-06-09T17:16:34.1177793Z\",\r\n \"creationTime\": \"2020-06-09T17:16:34.092775Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2020-06-09T17:16:57.1458604Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2020-06-09T17:16:34.1177793Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2020-06-09T17:16:34.1177793Z\",\r\n \"endTime\": \"2020-06-09T17:16:57.1458604Z\",\r\n \"poolId\": \"testPool\",\r\n \"terminateReason\": \"TerminateWorkitem\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n },\r\n {\r\n \"id\": \"testDisableEnableTerminateJobSchedule:job-1\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/testDisableEnableTerminateJobSchedule:job-1\",\r\n \"eTag\": \"0x8D80BFA19BC0BCD\",\r\n \"lastModified\": \"2020-06-08T22:20:07.4408909Z\",\r\n \"creationTime\": \"2020-06-08T22:20:07.415902Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2020-06-08T22:20:30.3772604Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2020-06-08T22:20:07.4408909Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2020-06-08T22:20:07.4408909Z\",\r\n \"endTime\": \"2020-06-08T22:20:30.3772604Z\",\r\n \"poolId\": \"testPool\",\r\n \"terminateReason\": \"TerminateWorkitem\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#jobs\",\r\n \"value\": [\r\n {\r\n \"id\": \"testJobCompletesWhenTaskFails\",\r\n \"url\": \"https://mikeportal.eastus.batch.azure.com/jobs/testJobCompletesWhenTaskFails\",\r\n \"eTag\": \"0x8D96973AD3698FB\",\r\n \"lastModified\": \"2021-08-27T15:59:39.7827835Z\",\r\n \"creationTime\": \"2021-08-27T15:59:39.7617875Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2021-08-27T15:59:39.7827835Z\",\r\n \"priority\": 0,\r\n \"maxParallelTasks\": -1,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"autoPoolSpecification\": {\r\n \"autoPoolIdPrefix\": \"TestSpecPrefix\",\r\n \"poolLifetimeOption\": \"job\",\r\n \"keepAlive\": false,\r\n \"pool\": {\r\n \"vmSize\": \"standard_d1_v2\",\r\n \"taskSlotsPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"resizeTimeout\": \"PT15M\",\r\n \"targetDedicatedNodes\": 1,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"osVersion\": \"*\"\r\n }\r\n }\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2021-08-27T15:59:39.7827835Z\",\r\n \"poolId\": \"TestSpecPrefix_D833BBF0-BF06-4FDC-BE52-740DF2250A49\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"performexitoptionsjobaction\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/jobs?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAyMC0wMy0wMS4xMS4w", + "RequestUri": "/jobs?api-version=2021-06-01.14.0", + "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4w", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "bd08d66e-8c70-45e2-914e-43e6c8c6929a" + "c55232ab-52c2-40e3-8184-2cdc46f3cf1e" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 20:56:49 GMT" + "Fri, 27 Aug 2021 16:02:21 GMT" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/13.0.20.15503", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", "AzurePowershell/Az1.0.0" ] }, @@ -737,7 +639,7 @@ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "8c29a6e4-f420-4ff8-b888-6a3057787401" + "cc892c7a-578c-4a5b-97fc-1bc343e51536" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -749,35 +651,35 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 20:56:48 GMT" + "Fri, 27 Aug 2021 16:02:20 GMT" ], "Content-Type": [ "application/json; odata=minimalmetadata" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://prodtest6.francecentral.batch.azure.com/$metadata#jobs\",\r\n \"value\": [\r\n {\r\n \"id\": \"j1\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/j1\",\r\n \"eTag\": \"0x8D6EDE6BFE7A605\",\r\n \"lastModified\": \"2019-06-10T21:01:03.7394437Z\",\r\n \"creationTime\": \"2019-06-10T21:01:03.7183957Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2019-06-10T21:01:03.7394437Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"p1\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2019-06-10T21:01:03.7394437Z\",\r\n \"poolId\": \"p1\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n },\r\n {\r\n \"id\": \"js1:job-1\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/js1:job-1\",\r\n \"eTag\": \"0x8D6EDE6B58581C8\",\r\n \"lastModified\": \"2019-06-10T21:00:46.3190472Z\",\r\n \"creationTime\": \"2019-06-10T21:00:46.2950489Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2019-06-10T21:00:46.3190472Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"p1\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2019-06-10T21:00:46.3190472Z\",\r\n \"poolId\": \"p1\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n },\r\n {\r\n \"id\": \"test-aztk\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/test-aztk\",\r\n \"eTag\": \"0x8D7F5DD2D017DA9\",\r\n \"lastModified\": \"2020-05-11T18:57:38.7864489Z\",\r\n \"creationTime\": \"2020-05-11T18:57:38.7664384Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2020-05-11T18:57:38.7864489Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"test-aztk\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2020-05-11T18:57:38.7864489Z\",\r\n \"poolId\": \"test-aztk\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n },\r\n {\r\n \"id\": \"test-aztk-importlib-131\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/test-aztk-importlib-131\",\r\n \"eTag\": \"0x8D7F5DE7FDD4326\",\r\n \"lastModified\": \"2020-05-11T19:07:07.2966438Z\",\r\n \"creationTime\": \"2020-05-11T19:07:07.2746077Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2020-05-11T19:07:07.2966438Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"test-aztk-importlib-131\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2020-05-11T19:07:07.2966438Z\",\r\n \"poolId\": \"test-aztk-importlib-131\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n },\r\n {\r\n \"id\": \"test-aztk-no-fix\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/test-aztk-no-fix\",\r\n \"eTag\": \"0x8D7F5DDA00F0A5A\",\r\n \"lastModified\": \"2020-05-11T19:00:51.8132314Z\",\r\n \"creationTime\": \"2020-05-11T19:00:51.7922225Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2020-05-11T19:00:51.8132314Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"test-aztk-no-fix\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2020-05-11T19:00:51.8132314Z\",\r\n \"poolId\": \"test-aztk-no-fix\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n },\r\n {\r\n \"id\": \"testJobCompletesWhenTaskFails\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/testJobCompletesWhenTaskFails\",\r\n \"eTag\": \"0x8D80CB71B75873C\",\r\n \"lastModified\": \"2020-06-09T20:53:05.2160828Z\",\r\n \"creationTime\": \"2020-06-09T20:53:05.1970818Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2020-06-09T20:53:05.2160828Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"autoPoolSpecification\": {\r\n \"autoPoolIdPrefix\": \"TestSpecPrefix\",\r\n \"poolLifetimeOption\": \"job\",\r\n \"keepAlive\": false,\r\n \"pool\": {\r\n \"vmSize\": \"small\",\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"resizeTimeout\": \"PT15M\",\r\n \"targetDedicatedNodes\": 3,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"osVersion\": \"*\"\r\n }\r\n }\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2020-06-09T20:53:05.2160828Z\",\r\n \"poolId\": \"TestSpecPrefix_FB6183E5-4DA2-4802-87C3-44CF977C3CB6\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"performexitoptionsjobaction\"\r\n },\r\n {\r\n \"id\": \"testDisableEnableTerminateJobSchedule:job-1\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/testDisableEnableTerminateJobSchedule:job-1\",\r\n \"eTag\": \"0x8D80C98DC293DC1\",\r\n \"lastModified\": \"2020-06-09T17:16:34.1177793Z\",\r\n \"creationTime\": \"2020-06-09T17:16:34.092775Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2020-06-09T17:16:57.1458604Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2020-06-09T17:16:34.1177793Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2020-06-09T17:16:34.1177793Z\",\r\n \"endTime\": \"2020-06-09T17:16:57.1458604Z\",\r\n \"poolId\": \"testPool\",\r\n \"terminateReason\": \"TerminateWorkitem\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n },\r\n {\r\n \"id\": \"testDisableEnableTerminateJobSchedule:job-1\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/testDisableEnableTerminateJobSchedule:job-1\",\r\n \"eTag\": \"0x8D80BFA19BC0BCD\",\r\n \"lastModified\": \"2020-06-08T22:20:07.4408909Z\",\r\n \"creationTime\": \"2020-06-08T22:20:07.415902Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2020-06-08T22:20:30.3772604Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2020-06-08T22:20:07.4408909Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2020-06-08T22:20:07.4408909Z\",\r\n \"endTime\": \"2020-06-08T22:20:30.3772604Z\",\r\n \"poolId\": \"testPool\",\r\n \"terminateReason\": \"TerminateWorkitem\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#jobs\",\r\n \"value\": [\r\n {\r\n \"id\": \"testJobCompletesWhenTaskFails\",\r\n \"url\": \"https://mikeportal.eastus.batch.azure.com/jobs/testJobCompletesWhenTaskFails\",\r\n \"eTag\": \"0x8D96973AD3698FB\",\r\n \"lastModified\": \"2021-08-27T15:59:39.7827835Z\",\r\n \"creationTime\": \"2021-08-27T15:59:39.7617875Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2021-08-27T15:59:39.7827835Z\",\r\n \"priority\": 0,\r\n \"maxParallelTasks\": -1,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"autoPoolSpecification\": {\r\n \"autoPoolIdPrefix\": \"TestSpecPrefix\",\r\n \"poolLifetimeOption\": \"job\",\r\n \"keepAlive\": false,\r\n \"pool\": {\r\n \"vmSize\": \"standard_d1_v2\",\r\n \"taskSlotsPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"resizeTimeout\": \"PT15M\",\r\n \"targetDedicatedNodes\": 1,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"osVersion\": \"*\"\r\n }\r\n }\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2021-08-27T15:59:39.7827835Z\",\r\n \"poolId\": \"TestSpecPrefix_D833BBF0-BF06-4FDC-BE52-740DF2250A49\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"performexitoptionsjobaction\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/jobs?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAyMC0wMy0wMS4xMS4w", + "RequestUri": "/jobs?api-version=2021-06-01.14.0", + "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4w", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "a31c6955-fd8f-4142-b586-b008ccb121df" + "f1016015-81be-4de4-8482-19eff48519ec" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 20:57:09 GMT" + "Fri, 27 Aug 2021 16:02:41 GMT" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/13.0.20.15503", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", "AzurePowershell/Az1.0.0" ] }, @@ -789,7 +691,7 @@ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "d0079204-1fbb-472a-a433-f0b1e81d04ec" + "ff50ab37-47e9-4259-9e4d-e7fb4ea18918" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -801,35 +703,35 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 20:57:09 GMT" + "Fri, 27 Aug 2021 16:02:40 GMT" ], "Content-Type": [ "application/json; odata=minimalmetadata" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://prodtest6.francecentral.batch.azure.com/$metadata#jobs\",\r\n \"value\": [\r\n {\r\n \"id\": \"j1\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/j1\",\r\n \"eTag\": \"0x8D6EDE6BFE7A605\",\r\n \"lastModified\": \"2019-06-10T21:01:03.7394437Z\",\r\n \"creationTime\": \"2019-06-10T21:01:03.7183957Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2019-06-10T21:01:03.7394437Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"p1\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2019-06-10T21:01:03.7394437Z\",\r\n \"poolId\": \"p1\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n },\r\n {\r\n \"id\": \"js1:job-1\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/js1:job-1\",\r\n \"eTag\": \"0x8D6EDE6B58581C8\",\r\n \"lastModified\": \"2019-06-10T21:00:46.3190472Z\",\r\n \"creationTime\": \"2019-06-10T21:00:46.2950489Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2019-06-10T21:00:46.3190472Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"p1\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2019-06-10T21:00:46.3190472Z\",\r\n \"poolId\": \"p1\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n },\r\n {\r\n \"id\": \"test-aztk\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/test-aztk\",\r\n \"eTag\": \"0x8D7F5DD2D017DA9\",\r\n \"lastModified\": \"2020-05-11T18:57:38.7864489Z\",\r\n \"creationTime\": \"2020-05-11T18:57:38.7664384Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2020-05-11T18:57:38.7864489Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"test-aztk\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2020-05-11T18:57:38.7864489Z\",\r\n \"poolId\": \"test-aztk\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n },\r\n {\r\n \"id\": \"test-aztk-importlib-131\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/test-aztk-importlib-131\",\r\n \"eTag\": \"0x8D7F5DE7FDD4326\",\r\n \"lastModified\": \"2020-05-11T19:07:07.2966438Z\",\r\n \"creationTime\": \"2020-05-11T19:07:07.2746077Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2020-05-11T19:07:07.2966438Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"test-aztk-importlib-131\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2020-05-11T19:07:07.2966438Z\",\r\n \"poolId\": \"test-aztk-importlib-131\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n },\r\n {\r\n \"id\": \"test-aztk-no-fix\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/test-aztk-no-fix\",\r\n \"eTag\": \"0x8D7F5DDA00F0A5A\",\r\n \"lastModified\": \"2020-05-11T19:00:51.8132314Z\",\r\n \"creationTime\": \"2020-05-11T19:00:51.7922225Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2020-05-11T19:00:51.8132314Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"test-aztk-no-fix\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2020-05-11T19:00:51.8132314Z\",\r\n \"poolId\": \"test-aztk-no-fix\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n },\r\n {\r\n \"id\": \"testJobCompletesWhenTaskFails\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/testJobCompletesWhenTaskFails\",\r\n \"eTag\": \"0x8D80CB71B75873C\",\r\n \"lastModified\": \"2020-06-09T20:53:05.2160828Z\",\r\n \"creationTime\": \"2020-06-09T20:53:05.1970818Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2020-06-09T20:53:05.2160828Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"autoPoolSpecification\": {\r\n \"autoPoolIdPrefix\": \"TestSpecPrefix\",\r\n \"poolLifetimeOption\": \"job\",\r\n \"keepAlive\": false,\r\n \"pool\": {\r\n \"vmSize\": \"small\",\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"resizeTimeout\": \"PT15M\",\r\n \"targetDedicatedNodes\": 3,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"osVersion\": \"*\"\r\n }\r\n }\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2020-06-09T20:53:05.2160828Z\",\r\n \"poolId\": \"TestSpecPrefix_FB6183E5-4DA2-4802-87C3-44CF977C3CB6\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"performexitoptionsjobaction\"\r\n },\r\n {\r\n \"id\": \"testDisableEnableTerminateJobSchedule:job-1\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/testDisableEnableTerminateJobSchedule:job-1\",\r\n \"eTag\": \"0x8D80C98DC293DC1\",\r\n \"lastModified\": \"2020-06-09T17:16:34.1177793Z\",\r\n \"creationTime\": \"2020-06-09T17:16:34.092775Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2020-06-09T17:16:57.1458604Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2020-06-09T17:16:34.1177793Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2020-06-09T17:16:34.1177793Z\",\r\n \"endTime\": \"2020-06-09T17:16:57.1458604Z\",\r\n \"poolId\": \"testPool\",\r\n \"terminateReason\": \"TerminateWorkitem\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n },\r\n {\r\n \"id\": \"testDisableEnableTerminateJobSchedule:job-1\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/testDisableEnableTerminateJobSchedule:job-1\",\r\n \"eTag\": \"0x8D80BFA19BC0BCD\",\r\n \"lastModified\": \"2020-06-08T22:20:07.4408909Z\",\r\n \"creationTime\": \"2020-06-08T22:20:07.415902Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2020-06-08T22:20:30.3772604Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2020-06-08T22:20:07.4408909Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2020-06-08T22:20:07.4408909Z\",\r\n \"endTime\": \"2020-06-08T22:20:30.3772604Z\",\r\n \"poolId\": \"testPool\",\r\n \"terminateReason\": \"TerminateWorkitem\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#jobs\",\r\n \"value\": [\r\n {\r\n \"id\": \"testJobCompletesWhenTaskFails\",\r\n \"url\": \"https://mikeportal.eastus.batch.azure.com/jobs/testJobCompletesWhenTaskFails\",\r\n \"eTag\": \"0x8D96973AD3698FB\",\r\n \"lastModified\": \"2021-08-27T15:59:39.7827835Z\",\r\n \"creationTime\": \"2021-08-27T15:59:39.7617875Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2021-08-27T15:59:39.7827835Z\",\r\n \"priority\": 0,\r\n \"maxParallelTasks\": -1,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"autoPoolSpecification\": {\r\n \"autoPoolIdPrefix\": \"TestSpecPrefix\",\r\n \"poolLifetimeOption\": \"job\",\r\n \"keepAlive\": false,\r\n \"pool\": {\r\n \"vmSize\": \"standard_d1_v2\",\r\n \"taskSlotsPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"resizeTimeout\": \"PT15M\",\r\n \"targetDedicatedNodes\": 1,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"osVersion\": \"*\"\r\n }\r\n }\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2021-08-27T15:59:39.7827835Z\",\r\n \"poolId\": \"TestSpecPrefix_D833BBF0-BF06-4FDC-BE52-740DF2250A49\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"performexitoptionsjobaction\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/jobs?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAyMC0wMy0wMS4xMS4w", + "RequestUri": "/jobs?api-version=2021-06-01.14.0", + "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4w", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "2b9d271d-c6ad-4b72-9e4c-60838285e02b" + "0e5e6083-a9f4-4730-8a2d-72ca70217bab" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 20:57:29 GMT" + "Fri, 27 Aug 2021 16:03:01 GMT" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/13.0.20.15503", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", "AzurePowershell/Az1.0.0" ] }, @@ -841,7 +743,7 @@ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "caf6aff3-1817-4327-9563-9902a881e8f8" + "0276b7f7-dbb9-48c8-92dc-32a988691416" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -853,35 +755,35 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 20:57:29 GMT" + "Fri, 27 Aug 2021 16:03:00 GMT" ], "Content-Type": [ "application/json; odata=minimalmetadata" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://prodtest6.francecentral.batch.azure.com/$metadata#jobs\",\r\n \"value\": [\r\n {\r\n \"id\": \"j1\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/j1\",\r\n \"eTag\": \"0x8D6EDE6BFE7A605\",\r\n \"lastModified\": \"2019-06-10T21:01:03.7394437Z\",\r\n \"creationTime\": \"2019-06-10T21:01:03.7183957Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2019-06-10T21:01:03.7394437Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"p1\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2019-06-10T21:01:03.7394437Z\",\r\n \"poolId\": \"p1\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n },\r\n {\r\n \"id\": \"js1:job-1\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/js1:job-1\",\r\n \"eTag\": \"0x8D6EDE6B58581C8\",\r\n \"lastModified\": \"2019-06-10T21:00:46.3190472Z\",\r\n \"creationTime\": \"2019-06-10T21:00:46.2950489Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2019-06-10T21:00:46.3190472Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"p1\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2019-06-10T21:00:46.3190472Z\",\r\n \"poolId\": \"p1\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n },\r\n {\r\n \"id\": \"test-aztk\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/test-aztk\",\r\n \"eTag\": \"0x8D7F5DD2D017DA9\",\r\n \"lastModified\": \"2020-05-11T18:57:38.7864489Z\",\r\n \"creationTime\": \"2020-05-11T18:57:38.7664384Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2020-05-11T18:57:38.7864489Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"test-aztk\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2020-05-11T18:57:38.7864489Z\",\r\n \"poolId\": \"test-aztk\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n },\r\n {\r\n \"id\": \"test-aztk-importlib-131\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/test-aztk-importlib-131\",\r\n \"eTag\": \"0x8D7F5DE7FDD4326\",\r\n \"lastModified\": \"2020-05-11T19:07:07.2966438Z\",\r\n \"creationTime\": \"2020-05-11T19:07:07.2746077Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2020-05-11T19:07:07.2966438Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"test-aztk-importlib-131\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2020-05-11T19:07:07.2966438Z\",\r\n \"poolId\": \"test-aztk-importlib-131\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n },\r\n {\r\n \"id\": \"test-aztk-no-fix\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/test-aztk-no-fix\",\r\n \"eTag\": \"0x8D7F5DDA00F0A5A\",\r\n \"lastModified\": \"2020-05-11T19:00:51.8132314Z\",\r\n \"creationTime\": \"2020-05-11T19:00:51.7922225Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2020-05-11T19:00:51.8132314Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"test-aztk-no-fix\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2020-05-11T19:00:51.8132314Z\",\r\n \"poolId\": \"test-aztk-no-fix\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n },\r\n {\r\n \"id\": \"testJobCompletesWhenTaskFails\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/testJobCompletesWhenTaskFails\",\r\n \"eTag\": \"0x8D80CB71B75873C\",\r\n \"lastModified\": \"2020-06-09T20:53:05.2160828Z\",\r\n \"creationTime\": \"2020-06-09T20:53:05.1970818Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2020-06-09T20:53:05.2160828Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"autoPoolSpecification\": {\r\n \"autoPoolIdPrefix\": \"TestSpecPrefix\",\r\n \"poolLifetimeOption\": \"job\",\r\n \"keepAlive\": false,\r\n \"pool\": {\r\n \"vmSize\": \"small\",\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"resizeTimeout\": \"PT15M\",\r\n \"targetDedicatedNodes\": 3,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"osVersion\": \"*\"\r\n }\r\n }\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2020-06-09T20:53:05.2160828Z\",\r\n \"poolId\": \"TestSpecPrefix_FB6183E5-4DA2-4802-87C3-44CF977C3CB6\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"performexitoptionsjobaction\"\r\n },\r\n {\r\n \"id\": \"testDisableEnableTerminateJobSchedule:job-1\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/testDisableEnableTerminateJobSchedule:job-1\",\r\n \"eTag\": \"0x8D80C98DC293DC1\",\r\n \"lastModified\": \"2020-06-09T17:16:34.1177793Z\",\r\n \"creationTime\": \"2020-06-09T17:16:34.092775Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2020-06-09T17:16:57.1458604Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2020-06-09T17:16:34.1177793Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2020-06-09T17:16:34.1177793Z\",\r\n \"endTime\": \"2020-06-09T17:16:57.1458604Z\",\r\n \"poolId\": \"testPool\",\r\n \"terminateReason\": \"TerminateWorkitem\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n },\r\n {\r\n \"id\": \"testDisableEnableTerminateJobSchedule:job-1\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/testDisableEnableTerminateJobSchedule:job-1\",\r\n \"eTag\": \"0x8D80BFA19BC0BCD\",\r\n \"lastModified\": \"2020-06-08T22:20:07.4408909Z\",\r\n \"creationTime\": \"2020-06-08T22:20:07.415902Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2020-06-08T22:20:30.3772604Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2020-06-08T22:20:07.4408909Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2020-06-08T22:20:07.4408909Z\",\r\n \"endTime\": \"2020-06-08T22:20:30.3772604Z\",\r\n \"poolId\": \"testPool\",\r\n \"terminateReason\": \"TerminateWorkitem\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#jobs\",\r\n \"value\": [\r\n {\r\n \"id\": \"testJobCompletesWhenTaskFails\",\r\n \"url\": \"https://mikeportal.eastus.batch.azure.com/jobs/testJobCompletesWhenTaskFails\",\r\n \"eTag\": \"0x8D96973AD3698FB\",\r\n \"lastModified\": \"2021-08-27T15:59:39.7827835Z\",\r\n \"creationTime\": \"2021-08-27T15:59:39.7617875Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2021-08-27T15:59:39.7827835Z\",\r\n \"priority\": 0,\r\n \"maxParallelTasks\": -1,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"autoPoolSpecification\": {\r\n \"autoPoolIdPrefix\": \"TestSpecPrefix\",\r\n \"poolLifetimeOption\": \"job\",\r\n \"keepAlive\": false,\r\n \"pool\": {\r\n \"vmSize\": \"standard_d1_v2\",\r\n \"taskSlotsPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"resizeTimeout\": \"PT15M\",\r\n \"targetDedicatedNodes\": 1,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"osVersion\": \"*\"\r\n }\r\n }\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2021-08-27T15:59:39.7827835Z\",\r\n \"poolId\": \"TestSpecPrefix_D833BBF0-BF06-4FDC-BE52-740DF2250A49\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"performexitoptionsjobaction\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/jobs?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAyMC0wMy0wMS4xMS4w", + "RequestUri": "/jobs?api-version=2021-06-01.14.0", + "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4w", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "fcd11dc8-546e-446b-89ae-8b70e02db181" + "e2f09e87-02e2-4836-9202-71de885c0da3" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 20:57:49 GMT" + "Fri, 27 Aug 2021 16:03:21 GMT" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/13.0.20.15503", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", "AzurePowershell/Az1.0.0" ] }, @@ -893,7 +795,7 @@ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "540c171a-94bc-4694-9b98-18852adc23dc" + "eca8df5d-1fa0-442b-a332-1e503b7101f9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -905,35 +807,35 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 20:57:49 GMT" + "Fri, 27 Aug 2021 16:03:20 GMT" ], "Content-Type": [ "application/json; odata=minimalmetadata" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://prodtest6.francecentral.batch.azure.com/$metadata#jobs\",\r\n \"value\": [\r\n {\r\n \"id\": \"j1\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/j1\",\r\n \"eTag\": \"0x8D6EDE6BFE7A605\",\r\n \"lastModified\": \"2019-06-10T21:01:03.7394437Z\",\r\n \"creationTime\": \"2019-06-10T21:01:03.7183957Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2019-06-10T21:01:03.7394437Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"p1\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2019-06-10T21:01:03.7394437Z\",\r\n \"poolId\": \"p1\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n },\r\n {\r\n \"id\": \"js1:job-1\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/js1:job-1\",\r\n \"eTag\": \"0x8D6EDE6B58581C8\",\r\n \"lastModified\": \"2019-06-10T21:00:46.3190472Z\",\r\n \"creationTime\": \"2019-06-10T21:00:46.2950489Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2019-06-10T21:00:46.3190472Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"p1\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2019-06-10T21:00:46.3190472Z\",\r\n \"poolId\": \"p1\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n },\r\n {\r\n \"id\": \"test-aztk\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/test-aztk\",\r\n \"eTag\": \"0x8D7F5DD2D017DA9\",\r\n \"lastModified\": \"2020-05-11T18:57:38.7864489Z\",\r\n \"creationTime\": \"2020-05-11T18:57:38.7664384Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2020-05-11T18:57:38.7864489Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"test-aztk\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2020-05-11T18:57:38.7864489Z\",\r\n \"poolId\": \"test-aztk\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n },\r\n {\r\n \"id\": \"test-aztk-importlib-131\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/test-aztk-importlib-131\",\r\n \"eTag\": \"0x8D7F5DE7FDD4326\",\r\n \"lastModified\": \"2020-05-11T19:07:07.2966438Z\",\r\n \"creationTime\": \"2020-05-11T19:07:07.2746077Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2020-05-11T19:07:07.2966438Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"test-aztk-importlib-131\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2020-05-11T19:07:07.2966438Z\",\r\n \"poolId\": \"test-aztk-importlib-131\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n },\r\n {\r\n \"id\": \"test-aztk-no-fix\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/test-aztk-no-fix\",\r\n \"eTag\": \"0x8D7F5DDA00F0A5A\",\r\n \"lastModified\": \"2020-05-11T19:00:51.8132314Z\",\r\n \"creationTime\": \"2020-05-11T19:00:51.7922225Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2020-05-11T19:00:51.8132314Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"test-aztk-no-fix\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2020-05-11T19:00:51.8132314Z\",\r\n \"poolId\": \"test-aztk-no-fix\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n },\r\n {\r\n \"id\": \"testJobCompletesWhenTaskFails\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/testJobCompletesWhenTaskFails\",\r\n \"eTag\": \"0x8D80CB71B75873C\",\r\n \"lastModified\": \"2020-06-09T20:53:05.2160828Z\",\r\n \"creationTime\": \"2020-06-09T20:53:05.1970818Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2020-06-09T20:53:05.2160828Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"autoPoolSpecification\": {\r\n \"autoPoolIdPrefix\": \"TestSpecPrefix\",\r\n \"poolLifetimeOption\": \"job\",\r\n \"keepAlive\": false,\r\n \"pool\": {\r\n \"vmSize\": \"small\",\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"resizeTimeout\": \"PT15M\",\r\n \"targetDedicatedNodes\": 3,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"osVersion\": \"*\"\r\n }\r\n }\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2020-06-09T20:53:05.2160828Z\",\r\n \"poolId\": \"TestSpecPrefix_FB6183E5-4DA2-4802-87C3-44CF977C3CB6\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"performexitoptionsjobaction\"\r\n },\r\n {\r\n \"id\": \"testDisableEnableTerminateJobSchedule:job-1\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/testDisableEnableTerminateJobSchedule:job-1\",\r\n \"eTag\": \"0x8D80C98DC293DC1\",\r\n \"lastModified\": \"2020-06-09T17:16:34.1177793Z\",\r\n \"creationTime\": \"2020-06-09T17:16:34.092775Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2020-06-09T17:16:57.1458604Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2020-06-09T17:16:34.1177793Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2020-06-09T17:16:34.1177793Z\",\r\n \"endTime\": \"2020-06-09T17:16:57.1458604Z\",\r\n \"poolId\": \"testPool\",\r\n \"terminateReason\": \"TerminateWorkitem\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n },\r\n {\r\n \"id\": \"testDisableEnableTerminateJobSchedule:job-1\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/testDisableEnableTerminateJobSchedule:job-1\",\r\n \"eTag\": \"0x8D80BFA19BC0BCD\",\r\n \"lastModified\": \"2020-06-08T22:20:07.4408909Z\",\r\n \"creationTime\": \"2020-06-08T22:20:07.415902Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2020-06-08T22:20:30.3772604Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2020-06-08T22:20:07.4408909Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2020-06-08T22:20:07.4408909Z\",\r\n \"endTime\": \"2020-06-08T22:20:30.3772604Z\",\r\n \"poolId\": \"testPool\",\r\n \"terminateReason\": \"TerminateWorkitem\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#jobs\",\r\n \"value\": [\r\n {\r\n \"id\": \"testJobCompletesWhenTaskFails\",\r\n \"url\": \"https://mikeportal.eastus.batch.azure.com/jobs/testJobCompletesWhenTaskFails\",\r\n \"eTag\": \"0x8D96973AD3698FB\",\r\n \"lastModified\": \"2021-08-27T15:59:39.7827835Z\",\r\n \"creationTime\": \"2021-08-27T15:59:39.7617875Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2021-08-27T15:59:39.7827835Z\",\r\n \"priority\": 0,\r\n \"maxParallelTasks\": -1,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"autoPoolSpecification\": {\r\n \"autoPoolIdPrefix\": \"TestSpecPrefix\",\r\n \"poolLifetimeOption\": \"job\",\r\n \"keepAlive\": false,\r\n \"pool\": {\r\n \"vmSize\": \"standard_d1_v2\",\r\n \"taskSlotsPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"resizeTimeout\": \"PT15M\",\r\n \"targetDedicatedNodes\": 1,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"osVersion\": \"*\"\r\n }\r\n }\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2021-08-27T15:59:39.7827835Z\",\r\n \"poolId\": \"TestSpecPrefix_D833BBF0-BF06-4FDC-BE52-740DF2250A49\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"performexitoptionsjobaction\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/jobs?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAyMC0wMy0wMS4xMS4w", + "RequestUri": "/jobs?api-version=2021-06-01.14.0", + "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4w", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "e1fb9573-658d-4d04-82ab-9ae36468b2a0" + "bf0ac910-600b-4d6e-a562-64b4f04dd529" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 20:58:09 GMT" + "Fri, 27 Aug 2021 16:03:42 GMT" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/13.0.20.15503", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", "AzurePowershell/Az1.0.0" ] }, @@ -945,7 +847,7 @@ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "c182129b-cc99-431d-b5fd-a8f6c263c7eb" + "0d93cb2b-18cd-4d32-bf29-8c08506f9361" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -957,35 +859,35 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 20:58:09 GMT" + "Fri, 27 Aug 2021 16:03:41 GMT" ], "Content-Type": [ "application/json; odata=minimalmetadata" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://prodtest6.francecentral.batch.azure.com/$metadata#jobs\",\r\n \"value\": [\r\n {\r\n \"id\": \"j1\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/j1\",\r\n \"eTag\": \"0x8D6EDE6BFE7A605\",\r\n \"lastModified\": \"2019-06-10T21:01:03.7394437Z\",\r\n \"creationTime\": \"2019-06-10T21:01:03.7183957Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2019-06-10T21:01:03.7394437Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"p1\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2019-06-10T21:01:03.7394437Z\",\r\n \"poolId\": \"p1\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n },\r\n {\r\n \"id\": \"js1:job-1\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/js1:job-1\",\r\n \"eTag\": \"0x8D6EDE6B58581C8\",\r\n \"lastModified\": \"2019-06-10T21:00:46.3190472Z\",\r\n \"creationTime\": \"2019-06-10T21:00:46.2950489Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2019-06-10T21:00:46.3190472Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"p1\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2019-06-10T21:00:46.3190472Z\",\r\n \"poolId\": \"p1\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n },\r\n {\r\n \"id\": \"test-aztk\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/test-aztk\",\r\n \"eTag\": \"0x8D7F5DD2D017DA9\",\r\n \"lastModified\": \"2020-05-11T18:57:38.7864489Z\",\r\n \"creationTime\": \"2020-05-11T18:57:38.7664384Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2020-05-11T18:57:38.7864489Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"test-aztk\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2020-05-11T18:57:38.7864489Z\",\r\n \"poolId\": \"test-aztk\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n },\r\n {\r\n \"id\": \"test-aztk-importlib-131\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/test-aztk-importlib-131\",\r\n \"eTag\": \"0x8D7F5DE7FDD4326\",\r\n \"lastModified\": \"2020-05-11T19:07:07.2966438Z\",\r\n \"creationTime\": \"2020-05-11T19:07:07.2746077Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2020-05-11T19:07:07.2966438Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"test-aztk-importlib-131\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2020-05-11T19:07:07.2966438Z\",\r\n \"poolId\": \"test-aztk-importlib-131\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n },\r\n {\r\n \"id\": \"test-aztk-no-fix\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/test-aztk-no-fix\",\r\n \"eTag\": \"0x8D7F5DDA00F0A5A\",\r\n \"lastModified\": \"2020-05-11T19:00:51.8132314Z\",\r\n \"creationTime\": \"2020-05-11T19:00:51.7922225Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2020-05-11T19:00:51.8132314Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"test-aztk-no-fix\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2020-05-11T19:00:51.8132314Z\",\r\n \"poolId\": \"test-aztk-no-fix\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n },\r\n {\r\n \"id\": \"testJobCompletesWhenTaskFails\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/testJobCompletesWhenTaskFails\",\r\n \"eTag\": \"0x8D80CB71B75873C\",\r\n \"lastModified\": \"2020-06-09T20:53:05.2160828Z\",\r\n \"creationTime\": \"2020-06-09T20:53:05.1970818Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2020-06-09T20:53:05.2160828Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"autoPoolSpecification\": {\r\n \"autoPoolIdPrefix\": \"TestSpecPrefix\",\r\n \"poolLifetimeOption\": \"job\",\r\n \"keepAlive\": false,\r\n \"pool\": {\r\n \"vmSize\": \"small\",\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"resizeTimeout\": \"PT15M\",\r\n \"targetDedicatedNodes\": 3,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"osVersion\": \"*\"\r\n }\r\n }\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2020-06-09T20:53:05.2160828Z\",\r\n \"poolId\": \"TestSpecPrefix_FB6183E5-4DA2-4802-87C3-44CF977C3CB6\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"performexitoptionsjobaction\"\r\n },\r\n {\r\n \"id\": \"testDisableEnableTerminateJobSchedule:job-1\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/testDisableEnableTerminateJobSchedule:job-1\",\r\n \"eTag\": \"0x8D80C98DC293DC1\",\r\n \"lastModified\": \"2020-06-09T17:16:34.1177793Z\",\r\n \"creationTime\": \"2020-06-09T17:16:34.092775Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2020-06-09T17:16:57.1458604Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2020-06-09T17:16:34.1177793Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2020-06-09T17:16:34.1177793Z\",\r\n \"endTime\": \"2020-06-09T17:16:57.1458604Z\",\r\n \"poolId\": \"testPool\",\r\n \"terminateReason\": \"TerminateWorkitem\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n },\r\n {\r\n \"id\": \"testDisableEnableTerminateJobSchedule:job-1\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/testDisableEnableTerminateJobSchedule:job-1\",\r\n \"eTag\": \"0x8D80BFA19BC0BCD\",\r\n \"lastModified\": \"2020-06-08T22:20:07.4408909Z\",\r\n \"creationTime\": \"2020-06-08T22:20:07.415902Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2020-06-08T22:20:30.3772604Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2020-06-08T22:20:07.4408909Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2020-06-08T22:20:07.4408909Z\",\r\n \"endTime\": \"2020-06-08T22:20:30.3772604Z\",\r\n \"poolId\": \"testPool\",\r\n \"terminateReason\": \"TerminateWorkitem\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#jobs\",\r\n \"value\": [\r\n {\r\n \"id\": \"testJobCompletesWhenTaskFails\",\r\n \"url\": \"https://mikeportal.eastus.batch.azure.com/jobs/testJobCompletesWhenTaskFails\",\r\n \"eTag\": \"0x8D96973AD3698FB\",\r\n \"lastModified\": \"2021-08-27T15:59:39.7827835Z\",\r\n \"creationTime\": \"2021-08-27T15:59:39.7617875Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2021-08-27T15:59:39.7827835Z\",\r\n \"priority\": 0,\r\n \"maxParallelTasks\": -1,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"autoPoolSpecification\": {\r\n \"autoPoolIdPrefix\": \"TestSpecPrefix\",\r\n \"poolLifetimeOption\": \"job\",\r\n \"keepAlive\": false,\r\n \"pool\": {\r\n \"vmSize\": \"standard_d1_v2\",\r\n \"taskSlotsPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"resizeTimeout\": \"PT15M\",\r\n \"targetDedicatedNodes\": 1,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"osVersion\": \"*\"\r\n }\r\n }\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2021-08-27T15:59:39.7827835Z\",\r\n \"poolId\": \"TestSpecPrefix_D833BBF0-BF06-4FDC-BE52-740DF2250A49\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"performexitoptionsjobaction\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/jobs?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAyMC0wMy0wMS4xMS4w", + "RequestUri": "/jobs?api-version=2021-06-01.14.0", + "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4w", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "b271f37b-0e1a-46f7-9949-935d9ecb511b" + "86fe5158-89fa-47ea-b059-0ed4f74a9943" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 20:58:29 GMT" + "Fri, 27 Aug 2021 16:04:02 GMT" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/13.0.20.15503", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", "AzurePowershell/Az1.0.0" ] }, @@ -997,7 +899,7 @@ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "7746b42d-a5be-496d-adcd-7db4c0101313" + "c09f3e44-e6e5-4951-9815-4168dbe0098f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1009,35 +911,35 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 20:58:29 GMT" + "Fri, 27 Aug 2021 16:04:00 GMT" ], "Content-Type": [ "application/json; odata=minimalmetadata" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://prodtest6.francecentral.batch.azure.com/$metadata#jobs\",\r\n \"value\": [\r\n {\r\n \"id\": \"j1\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/j1\",\r\n \"eTag\": \"0x8D6EDE6BFE7A605\",\r\n \"lastModified\": \"2019-06-10T21:01:03.7394437Z\",\r\n \"creationTime\": \"2019-06-10T21:01:03.7183957Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2019-06-10T21:01:03.7394437Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"p1\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2019-06-10T21:01:03.7394437Z\",\r\n \"poolId\": \"p1\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n },\r\n {\r\n \"id\": \"js1:job-1\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/js1:job-1\",\r\n \"eTag\": \"0x8D6EDE6B58581C8\",\r\n \"lastModified\": \"2019-06-10T21:00:46.3190472Z\",\r\n \"creationTime\": \"2019-06-10T21:00:46.2950489Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2019-06-10T21:00:46.3190472Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"p1\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2019-06-10T21:00:46.3190472Z\",\r\n \"poolId\": \"p1\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n },\r\n {\r\n \"id\": \"test-aztk\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/test-aztk\",\r\n \"eTag\": \"0x8D7F5DD2D017DA9\",\r\n \"lastModified\": \"2020-05-11T18:57:38.7864489Z\",\r\n \"creationTime\": \"2020-05-11T18:57:38.7664384Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2020-05-11T18:57:38.7864489Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"test-aztk\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2020-05-11T18:57:38.7864489Z\",\r\n \"poolId\": \"test-aztk\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n },\r\n {\r\n \"id\": \"test-aztk-importlib-131\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/test-aztk-importlib-131\",\r\n \"eTag\": \"0x8D7F5DE7FDD4326\",\r\n \"lastModified\": \"2020-05-11T19:07:07.2966438Z\",\r\n \"creationTime\": \"2020-05-11T19:07:07.2746077Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2020-05-11T19:07:07.2966438Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"test-aztk-importlib-131\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2020-05-11T19:07:07.2966438Z\",\r\n \"poolId\": \"test-aztk-importlib-131\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n },\r\n {\r\n \"id\": \"test-aztk-no-fix\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/test-aztk-no-fix\",\r\n \"eTag\": \"0x8D7F5DDA00F0A5A\",\r\n \"lastModified\": \"2020-05-11T19:00:51.8132314Z\",\r\n \"creationTime\": \"2020-05-11T19:00:51.7922225Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2020-05-11T19:00:51.8132314Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"test-aztk-no-fix\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2020-05-11T19:00:51.8132314Z\",\r\n \"poolId\": \"test-aztk-no-fix\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n },\r\n {\r\n \"id\": \"testJobCompletesWhenTaskFails\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/testJobCompletesWhenTaskFails\",\r\n \"eTag\": \"0x8D80CB71B75873C\",\r\n \"lastModified\": \"2020-06-09T20:53:05.2160828Z\",\r\n \"creationTime\": \"2020-06-09T20:53:05.1970818Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2020-06-09T20:53:05.2160828Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"autoPoolSpecification\": {\r\n \"autoPoolIdPrefix\": \"TestSpecPrefix\",\r\n \"poolLifetimeOption\": \"job\",\r\n \"keepAlive\": false,\r\n \"pool\": {\r\n \"vmSize\": \"small\",\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"resizeTimeout\": \"PT15M\",\r\n \"targetDedicatedNodes\": 3,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"osVersion\": \"*\"\r\n }\r\n }\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2020-06-09T20:53:05.2160828Z\",\r\n \"poolId\": \"TestSpecPrefix_FB6183E5-4DA2-4802-87C3-44CF977C3CB6\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"performexitoptionsjobaction\"\r\n },\r\n {\r\n \"id\": \"testDisableEnableTerminateJobSchedule:job-1\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/testDisableEnableTerminateJobSchedule:job-1\",\r\n \"eTag\": \"0x8D80C98DC293DC1\",\r\n \"lastModified\": \"2020-06-09T17:16:34.1177793Z\",\r\n \"creationTime\": \"2020-06-09T17:16:34.092775Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2020-06-09T17:16:57.1458604Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2020-06-09T17:16:34.1177793Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2020-06-09T17:16:34.1177793Z\",\r\n \"endTime\": \"2020-06-09T17:16:57.1458604Z\",\r\n \"poolId\": \"testPool\",\r\n \"terminateReason\": \"TerminateWorkitem\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n },\r\n {\r\n \"id\": \"testDisableEnableTerminateJobSchedule:job-1\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/testDisableEnableTerminateJobSchedule:job-1\",\r\n \"eTag\": \"0x8D80BFA19BC0BCD\",\r\n \"lastModified\": \"2020-06-08T22:20:07.4408909Z\",\r\n \"creationTime\": \"2020-06-08T22:20:07.415902Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2020-06-08T22:20:30.3772604Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2020-06-08T22:20:07.4408909Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2020-06-08T22:20:07.4408909Z\",\r\n \"endTime\": \"2020-06-08T22:20:30.3772604Z\",\r\n \"poolId\": \"testPool\",\r\n \"terminateReason\": \"TerminateWorkitem\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#jobs\",\r\n \"value\": [\r\n {\r\n \"id\": \"testJobCompletesWhenTaskFails\",\r\n \"url\": \"https://mikeportal.eastus.batch.azure.com/jobs/testJobCompletesWhenTaskFails\",\r\n \"eTag\": \"0x8D96973AD3698FB\",\r\n \"lastModified\": \"2021-08-27T15:59:39.7827835Z\",\r\n \"creationTime\": \"2021-08-27T15:59:39.7617875Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2021-08-27T15:59:39.7827835Z\",\r\n \"priority\": 0,\r\n \"maxParallelTasks\": -1,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"autoPoolSpecification\": {\r\n \"autoPoolIdPrefix\": \"TestSpecPrefix\",\r\n \"poolLifetimeOption\": \"job\",\r\n \"keepAlive\": false,\r\n \"pool\": {\r\n \"vmSize\": \"standard_d1_v2\",\r\n \"taskSlotsPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"resizeTimeout\": \"PT15M\",\r\n \"targetDedicatedNodes\": 1,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"osVersion\": \"*\"\r\n }\r\n }\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2021-08-27T15:59:39.7827835Z\",\r\n \"poolId\": \"TestSpecPrefix_D833BBF0-BF06-4FDC-BE52-740DF2250A49\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"performexitoptionsjobaction\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/jobs?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAyMC0wMy0wMS4xMS4w", + "RequestUri": "/jobs?api-version=2021-06-01.14.0", + "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4w", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "fe812e93-41a0-4d8c-b902-50728fcf8389" + "92cb19c2-7f8b-40c7-b75c-b86ad1bf062f" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 20:58:50 GMT" + "Fri, 27 Aug 2021 16:04:22 GMT" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/13.0.20.15503", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", "AzurePowershell/Az1.0.0" ] }, @@ -1049,7 +951,7 @@ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "9911c343-3b0c-4b36-a5f9-3ed140d8ee04" + "28157dc6-5110-42c9-94fa-c72c6d9967b9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1061,35 +963,35 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 20:58:50 GMT" + "Fri, 27 Aug 2021 16:04:20 GMT" ], "Content-Type": [ "application/json; odata=minimalmetadata" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://prodtest6.francecentral.batch.azure.com/$metadata#jobs\",\r\n \"value\": [\r\n {\r\n \"id\": \"j1\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/j1\",\r\n \"eTag\": \"0x8D6EDE6BFE7A605\",\r\n \"lastModified\": \"2019-06-10T21:01:03.7394437Z\",\r\n \"creationTime\": \"2019-06-10T21:01:03.7183957Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2019-06-10T21:01:03.7394437Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"p1\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2019-06-10T21:01:03.7394437Z\",\r\n \"poolId\": \"p1\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n },\r\n {\r\n \"id\": \"js1:job-1\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/js1:job-1\",\r\n \"eTag\": \"0x8D6EDE6B58581C8\",\r\n \"lastModified\": \"2019-06-10T21:00:46.3190472Z\",\r\n \"creationTime\": \"2019-06-10T21:00:46.2950489Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2019-06-10T21:00:46.3190472Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"p1\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2019-06-10T21:00:46.3190472Z\",\r\n \"poolId\": \"p1\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n },\r\n {\r\n \"id\": \"test-aztk\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/test-aztk\",\r\n \"eTag\": \"0x8D7F5DD2D017DA9\",\r\n \"lastModified\": \"2020-05-11T18:57:38.7864489Z\",\r\n \"creationTime\": \"2020-05-11T18:57:38.7664384Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2020-05-11T18:57:38.7864489Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"test-aztk\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2020-05-11T18:57:38.7864489Z\",\r\n \"poolId\": \"test-aztk\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n },\r\n {\r\n \"id\": \"test-aztk-importlib-131\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/test-aztk-importlib-131\",\r\n \"eTag\": \"0x8D7F5DE7FDD4326\",\r\n \"lastModified\": \"2020-05-11T19:07:07.2966438Z\",\r\n \"creationTime\": \"2020-05-11T19:07:07.2746077Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2020-05-11T19:07:07.2966438Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"test-aztk-importlib-131\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2020-05-11T19:07:07.2966438Z\",\r\n \"poolId\": \"test-aztk-importlib-131\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n },\r\n {\r\n \"id\": \"test-aztk-no-fix\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/test-aztk-no-fix\",\r\n \"eTag\": \"0x8D7F5DDA00F0A5A\",\r\n \"lastModified\": \"2020-05-11T19:00:51.8132314Z\",\r\n \"creationTime\": \"2020-05-11T19:00:51.7922225Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2020-05-11T19:00:51.8132314Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"test-aztk-no-fix\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2020-05-11T19:00:51.8132314Z\",\r\n \"poolId\": \"test-aztk-no-fix\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n },\r\n {\r\n \"id\": \"testJobCompletesWhenTaskFails\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/testJobCompletesWhenTaskFails\",\r\n \"eTag\": \"0x8D80CB71B75873C\",\r\n \"lastModified\": \"2020-06-09T20:53:05.2160828Z\",\r\n \"creationTime\": \"2020-06-09T20:53:05.1970818Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2020-06-09T20:53:05.2160828Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"autoPoolSpecification\": {\r\n \"autoPoolIdPrefix\": \"TestSpecPrefix\",\r\n \"poolLifetimeOption\": \"job\",\r\n \"keepAlive\": false,\r\n \"pool\": {\r\n \"vmSize\": \"small\",\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"resizeTimeout\": \"PT15M\",\r\n \"targetDedicatedNodes\": 3,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"osVersion\": \"*\"\r\n }\r\n }\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2020-06-09T20:53:05.2160828Z\",\r\n \"poolId\": \"TestSpecPrefix_FB6183E5-4DA2-4802-87C3-44CF977C3CB6\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"performexitoptionsjobaction\"\r\n },\r\n {\r\n \"id\": \"testDisableEnableTerminateJobSchedule:job-1\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/testDisableEnableTerminateJobSchedule:job-1\",\r\n \"eTag\": \"0x8D80C98DC293DC1\",\r\n \"lastModified\": \"2020-06-09T17:16:34.1177793Z\",\r\n \"creationTime\": \"2020-06-09T17:16:34.092775Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2020-06-09T17:16:57.1458604Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2020-06-09T17:16:34.1177793Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2020-06-09T17:16:34.1177793Z\",\r\n \"endTime\": \"2020-06-09T17:16:57.1458604Z\",\r\n \"poolId\": \"testPool\",\r\n \"terminateReason\": \"TerminateWorkitem\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n },\r\n {\r\n \"id\": \"testDisableEnableTerminateJobSchedule:job-1\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/testDisableEnableTerminateJobSchedule:job-1\",\r\n \"eTag\": \"0x8D80BFA19BC0BCD\",\r\n \"lastModified\": \"2020-06-08T22:20:07.4408909Z\",\r\n \"creationTime\": \"2020-06-08T22:20:07.415902Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2020-06-08T22:20:30.3772604Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2020-06-08T22:20:07.4408909Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2020-06-08T22:20:07.4408909Z\",\r\n \"endTime\": \"2020-06-08T22:20:30.3772604Z\",\r\n \"poolId\": \"testPool\",\r\n \"terminateReason\": \"TerminateWorkitem\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#jobs\",\r\n \"value\": [\r\n {\r\n \"id\": \"testJobCompletesWhenTaskFails\",\r\n \"url\": \"https://mikeportal.eastus.batch.azure.com/jobs/testJobCompletesWhenTaskFails\",\r\n \"eTag\": \"0x8D96973AD3698FB\",\r\n \"lastModified\": \"2021-08-27T15:59:39.7827835Z\",\r\n \"creationTime\": \"2021-08-27T15:59:39.7617875Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2021-08-27T15:59:39.7827835Z\",\r\n \"priority\": 0,\r\n \"maxParallelTasks\": -1,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"autoPoolSpecification\": {\r\n \"autoPoolIdPrefix\": \"TestSpecPrefix\",\r\n \"poolLifetimeOption\": \"job\",\r\n \"keepAlive\": false,\r\n \"pool\": {\r\n \"vmSize\": \"standard_d1_v2\",\r\n \"taskSlotsPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"resizeTimeout\": \"PT15M\",\r\n \"targetDedicatedNodes\": 1,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"osVersion\": \"*\"\r\n }\r\n }\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2021-08-27T15:59:39.7827835Z\",\r\n \"poolId\": \"TestSpecPrefix_D833BBF0-BF06-4FDC-BE52-740DF2250A49\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"performexitoptionsjobaction\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/jobs?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAyMC0wMy0wMS4xMS4w", + "RequestUri": "/jobs?api-version=2021-06-01.14.0", + "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4w", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "9b69a1cf-36a7-41c2-8270-7ed9be304845" + "da640145-c0a5-461a-a320-8f3bf6b85fe9" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 20:59:10 GMT" + "Fri, 27 Aug 2021 16:04:42 GMT" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/13.0.20.15503", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", "AzurePowershell/Az1.0.0" ] }, @@ -1101,7 +1003,7 @@ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "adb34b55-cbe1-44bd-9491-312ea76136e5" + "035b0a75-1c55-4687-9aa2-23df9f6c1f62" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1113,35 +1015,35 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 20:59:10 GMT" + "Fri, 27 Aug 2021 16:04:40 GMT" ], "Content-Type": [ "application/json; odata=minimalmetadata" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://prodtest6.francecentral.batch.azure.com/$metadata#jobs\",\r\n \"value\": [\r\n {\r\n \"id\": \"j1\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/j1\",\r\n \"eTag\": \"0x8D6EDE6BFE7A605\",\r\n \"lastModified\": \"2019-06-10T21:01:03.7394437Z\",\r\n \"creationTime\": \"2019-06-10T21:01:03.7183957Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2019-06-10T21:01:03.7394437Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"p1\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2019-06-10T21:01:03.7394437Z\",\r\n \"poolId\": \"p1\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n },\r\n {\r\n \"id\": \"js1:job-1\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/js1:job-1\",\r\n \"eTag\": \"0x8D6EDE6B58581C8\",\r\n \"lastModified\": \"2019-06-10T21:00:46.3190472Z\",\r\n \"creationTime\": \"2019-06-10T21:00:46.2950489Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2019-06-10T21:00:46.3190472Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"p1\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2019-06-10T21:00:46.3190472Z\",\r\n \"poolId\": \"p1\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n },\r\n {\r\n \"id\": \"test-aztk\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/test-aztk\",\r\n \"eTag\": \"0x8D7F5DD2D017DA9\",\r\n \"lastModified\": \"2020-05-11T18:57:38.7864489Z\",\r\n \"creationTime\": \"2020-05-11T18:57:38.7664384Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2020-05-11T18:57:38.7864489Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"test-aztk\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2020-05-11T18:57:38.7864489Z\",\r\n \"poolId\": \"test-aztk\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n },\r\n {\r\n \"id\": \"test-aztk-importlib-131\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/test-aztk-importlib-131\",\r\n \"eTag\": \"0x8D7F5DE7FDD4326\",\r\n \"lastModified\": \"2020-05-11T19:07:07.2966438Z\",\r\n \"creationTime\": \"2020-05-11T19:07:07.2746077Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2020-05-11T19:07:07.2966438Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"test-aztk-importlib-131\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2020-05-11T19:07:07.2966438Z\",\r\n \"poolId\": \"test-aztk-importlib-131\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n },\r\n {\r\n \"id\": \"test-aztk-no-fix\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/test-aztk-no-fix\",\r\n \"eTag\": \"0x8D7F5DDA00F0A5A\",\r\n \"lastModified\": \"2020-05-11T19:00:51.8132314Z\",\r\n \"creationTime\": \"2020-05-11T19:00:51.7922225Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2020-05-11T19:00:51.8132314Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"test-aztk-no-fix\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2020-05-11T19:00:51.8132314Z\",\r\n \"poolId\": \"test-aztk-no-fix\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n },\r\n {\r\n \"id\": \"testJobCompletesWhenTaskFails\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/testJobCompletesWhenTaskFails\",\r\n \"eTag\": \"0x8D80CB71B75873C\",\r\n \"lastModified\": \"2020-06-09T20:53:05.2160828Z\",\r\n \"creationTime\": \"2020-06-09T20:53:05.1970818Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2020-06-09T20:53:05.2160828Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"autoPoolSpecification\": {\r\n \"autoPoolIdPrefix\": \"TestSpecPrefix\",\r\n \"poolLifetimeOption\": \"job\",\r\n \"keepAlive\": false,\r\n \"pool\": {\r\n \"vmSize\": \"small\",\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"resizeTimeout\": \"PT15M\",\r\n \"targetDedicatedNodes\": 3,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"osVersion\": \"*\"\r\n }\r\n }\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2020-06-09T20:53:05.2160828Z\",\r\n \"poolId\": \"TestSpecPrefix_FB6183E5-4DA2-4802-87C3-44CF977C3CB6\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"performexitoptionsjobaction\"\r\n },\r\n {\r\n \"id\": \"testDisableEnableTerminateJobSchedule:job-1\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/testDisableEnableTerminateJobSchedule:job-1\",\r\n \"eTag\": \"0x8D80C98DC293DC1\",\r\n \"lastModified\": \"2020-06-09T17:16:34.1177793Z\",\r\n \"creationTime\": \"2020-06-09T17:16:34.092775Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2020-06-09T17:16:57.1458604Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2020-06-09T17:16:34.1177793Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2020-06-09T17:16:34.1177793Z\",\r\n \"endTime\": \"2020-06-09T17:16:57.1458604Z\",\r\n \"poolId\": \"testPool\",\r\n \"terminateReason\": \"TerminateWorkitem\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n },\r\n {\r\n \"id\": \"testDisableEnableTerminateJobSchedule:job-1\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/testDisableEnableTerminateJobSchedule:job-1\",\r\n \"eTag\": \"0x8D80BFA19BC0BCD\",\r\n \"lastModified\": \"2020-06-08T22:20:07.4408909Z\",\r\n \"creationTime\": \"2020-06-08T22:20:07.415902Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2020-06-08T22:20:30.3772604Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2020-06-08T22:20:07.4408909Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2020-06-08T22:20:07.4408909Z\",\r\n \"endTime\": \"2020-06-08T22:20:30.3772604Z\",\r\n \"poolId\": \"testPool\",\r\n \"terminateReason\": \"TerminateWorkitem\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#jobs\",\r\n \"value\": [\r\n {\r\n \"id\": \"testJobCompletesWhenTaskFails\",\r\n \"url\": \"https://mikeportal.eastus.batch.azure.com/jobs/testJobCompletesWhenTaskFails\",\r\n \"eTag\": \"0x8D96973AD3698FB\",\r\n \"lastModified\": \"2021-08-27T15:59:39.7827835Z\",\r\n \"creationTime\": \"2021-08-27T15:59:39.7617875Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2021-08-27T15:59:39.7827835Z\",\r\n \"priority\": 0,\r\n \"maxParallelTasks\": -1,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"autoPoolSpecification\": {\r\n \"autoPoolIdPrefix\": \"TestSpecPrefix\",\r\n \"poolLifetimeOption\": \"job\",\r\n \"keepAlive\": false,\r\n \"pool\": {\r\n \"vmSize\": \"standard_d1_v2\",\r\n \"taskSlotsPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"resizeTimeout\": \"PT15M\",\r\n \"targetDedicatedNodes\": 1,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"osVersion\": \"*\"\r\n }\r\n }\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2021-08-27T15:59:39.7827835Z\",\r\n \"poolId\": \"TestSpecPrefix_D833BBF0-BF06-4FDC-BE52-740DF2250A49\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"performexitoptionsjobaction\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/jobs?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAyMC0wMy0wMS4xMS4w", + "RequestUri": "/jobs?api-version=2021-06-01.14.0", + "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4w", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "e0a6bfe2-18d1-4094-a20c-4216a9644c5d" + "075ef0a7-ff8d-486e-a2fa-b76450178e1c" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 20:59:30 GMT" + "Fri, 27 Aug 2021 16:05:02 GMT" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/13.0.20.15503", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", "AzurePowershell/Az1.0.0" ] }, @@ -1153,7 +1055,7 @@ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "1a8926cf-c814-4ecb-aad5-e5d94b4b03ed" + "e63461b0-0ea4-428e-abfb-d4ba607dfa0f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1165,35 +1067,35 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 20:59:30 GMT" + "Fri, 27 Aug 2021 16:05:00 GMT" ], "Content-Type": [ "application/json; odata=minimalmetadata" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://prodtest6.francecentral.batch.azure.com/$metadata#jobs\",\r\n \"value\": [\r\n {\r\n \"id\": \"j1\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/j1\",\r\n \"eTag\": \"0x8D6EDE6BFE7A605\",\r\n \"lastModified\": \"2019-06-10T21:01:03.7394437Z\",\r\n \"creationTime\": \"2019-06-10T21:01:03.7183957Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2019-06-10T21:01:03.7394437Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"p1\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2019-06-10T21:01:03.7394437Z\",\r\n \"poolId\": \"p1\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n },\r\n {\r\n \"id\": \"js1:job-1\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/js1:job-1\",\r\n \"eTag\": \"0x8D6EDE6B58581C8\",\r\n \"lastModified\": \"2019-06-10T21:00:46.3190472Z\",\r\n \"creationTime\": \"2019-06-10T21:00:46.2950489Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2019-06-10T21:00:46.3190472Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"p1\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2019-06-10T21:00:46.3190472Z\",\r\n \"poolId\": \"p1\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n },\r\n {\r\n \"id\": \"test-aztk\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/test-aztk\",\r\n \"eTag\": \"0x8D7F5DD2D017DA9\",\r\n \"lastModified\": \"2020-05-11T18:57:38.7864489Z\",\r\n \"creationTime\": \"2020-05-11T18:57:38.7664384Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2020-05-11T18:57:38.7864489Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"test-aztk\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2020-05-11T18:57:38.7864489Z\",\r\n \"poolId\": \"test-aztk\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n },\r\n {\r\n \"id\": \"test-aztk-importlib-131\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/test-aztk-importlib-131\",\r\n \"eTag\": \"0x8D7F5DE7FDD4326\",\r\n \"lastModified\": \"2020-05-11T19:07:07.2966438Z\",\r\n \"creationTime\": \"2020-05-11T19:07:07.2746077Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2020-05-11T19:07:07.2966438Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"test-aztk-importlib-131\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2020-05-11T19:07:07.2966438Z\",\r\n \"poolId\": \"test-aztk-importlib-131\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n },\r\n {\r\n \"id\": \"test-aztk-no-fix\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/test-aztk-no-fix\",\r\n \"eTag\": \"0x8D7F5DDA00F0A5A\",\r\n \"lastModified\": \"2020-05-11T19:00:51.8132314Z\",\r\n \"creationTime\": \"2020-05-11T19:00:51.7922225Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2020-05-11T19:00:51.8132314Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"test-aztk-no-fix\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2020-05-11T19:00:51.8132314Z\",\r\n \"poolId\": \"test-aztk-no-fix\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n },\r\n {\r\n \"id\": \"testJobCompletesWhenTaskFails\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/testJobCompletesWhenTaskFails\",\r\n \"eTag\": \"0x8D80CB71B75873C\",\r\n \"lastModified\": \"2020-06-09T20:53:05.2160828Z\",\r\n \"creationTime\": \"2020-06-09T20:53:05.1970818Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2020-06-09T20:53:05.2160828Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"autoPoolSpecification\": {\r\n \"autoPoolIdPrefix\": \"TestSpecPrefix\",\r\n \"poolLifetimeOption\": \"job\",\r\n \"keepAlive\": false,\r\n \"pool\": {\r\n \"vmSize\": \"small\",\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"resizeTimeout\": \"PT15M\",\r\n \"targetDedicatedNodes\": 3,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"osVersion\": \"*\"\r\n }\r\n }\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2020-06-09T20:53:05.2160828Z\",\r\n \"poolId\": \"TestSpecPrefix_FB6183E5-4DA2-4802-87C3-44CF977C3CB6\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"performexitoptionsjobaction\"\r\n },\r\n {\r\n \"id\": \"testDisableEnableTerminateJobSchedule:job-1\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/testDisableEnableTerminateJobSchedule:job-1\",\r\n \"eTag\": \"0x8D80C98DC293DC1\",\r\n \"lastModified\": \"2020-06-09T17:16:34.1177793Z\",\r\n \"creationTime\": \"2020-06-09T17:16:34.092775Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2020-06-09T17:16:57.1458604Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2020-06-09T17:16:34.1177793Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2020-06-09T17:16:34.1177793Z\",\r\n \"endTime\": \"2020-06-09T17:16:57.1458604Z\",\r\n \"poolId\": \"testPool\",\r\n \"terminateReason\": \"TerminateWorkitem\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n },\r\n {\r\n \"id\": \"testDisableEnableTerminateJobSchedule:job-1\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/testDisableEnableTerminateJobSchedule:job-1\",\r\n \"eTag\": \"0x8D80BFA19BC0BCD\",\r\n \"lastModified\": \"2020-06-08T22:20:07.4408909Z\",\r\n \"creationTime\": \"2020-06-08T22:20:07.415902Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2020-06-08T22:20:30.3772604Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2020-06-08T22:20:07.4408909Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2020-06-08T22:20:07.4408909Z\",\r\n \"endTime\": \"2020-06-08T22:20:30.3772604Z\",\r\n \"poolId\": \"testPool\",\r\n \"terminateReason\": \"TerminateWorkitem\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#jobs\",\r\n \"value\": [\r\n {\r\n \"id\": \"testJobCompletesWhenTaskFails\",\r\n \"url\": \"https://mikeportal.eastus.batch.azure.com/jobs/testJobCompletesWhenTaskFails\",\r\n \"eTag\": \"0x8D96973AD3698FB\",\r\n \"lastModified\": \"2021-08-27T15:59:39.7827835Z\",\r\n \"creationTime\": \"2021-08-27T15:59:39.7617875Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2021-08-27T15:59:39.7827835Z\",\r\n \"priority\": 0,\r\n \"maxParallelTasks\": -1,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"autoPoolSpecification\": {\r\n \"autoPoolIdPrefix\": \"TestSpecPrefix\",\r\n \"poolLifetimeOption\": \"job\",\r\n \"keepAlive\": false,\r\n \"pool\": {\r\n \"vmSize\": \"standard_d1_v2\",\r\n \"taskSlotsPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"resizeTimeout\": \"PT15M\",\r\n \"targetDedicatedNodes\": 1,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"osVersion\": \"*\"\r\n }\r\n }\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2021-08-27T15:59:39.7827835Z\",\r\n \"poolId\": \"TestSpecPrefix_D833BBF0-BF06-4FDC-BE52-740DF2250A49\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"performexitoptionsjobaction\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/jobs?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAyMC0wMy0wMS4xMS4w", + "RequestUri": "/jobs?api-version=2021-06-01.14.0", + "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4w", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "5e5622ef-212d-4459-ae00-248d8ebbdf14" + "a165665d-5b05-41f9-a7c3-9cc775eca53d" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 20:59:50 GMT" + "Fri, 27 Aug 2021 16:05:22 GMT" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/13.0.20.15503", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", "AzurePowershell/Az1.0.0" ] }, @@ -1205,7 +1107,7 @@ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "6966c532-d0f7-4325-a1f0-fdb9c3ec3500" + "b78ca3a1-20e2-47ed-8dcf-72e33f3da62d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1217,35 +1119,35 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 20:59:50 GMT" + "Fri, 27 Aug 2021 16:05:20 GMT" ], "Content-Type": [ "application/json; odata=minimalmetadata" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://prodtest6.francecentral.batch.azure.com/$metadata#jobs\",\r\n \"value\": [\r\n {\r\n \"id\": \"j1\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/j1\",\r\n \"eTag\": \"0x8D6EDE6BFE7A605\",\r\n \"lastModified\": \"2019-06-10T21:01:03.7394437Z\",\r\n \"creationTime\": \"2019-06-10T21:01:03.7183957Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2019-06-10T21:01:03.7394437Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"p1\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2019-06-10T21:01:03.7394437Z\",\r\n \"poolId\": \"p1\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n },\r\n {\r\n \"id\": \"js1:job-1\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/js1:job-1\",\r\n \"eTag\": \"0x8D6EDE6B58581C8\",\r\n \"lastModified\": \"2019-06-10T21:00:46.3190472Z\",\r\n \"creationTime\": \"2019-06-10T21:00:46.2950489Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2019-06-10T21:00:46.3190472Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"p1\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2019-06-10T21:00:46.3190472Z\",\r\n \"poolId\": \"p1\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n },\r\n {\r\n \"id\": \"test-aztk\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/test-aztk\",\r\n \"eTag\": \"0x8D7F5DD2D017DA9\",\r\n \"lastModified\": \"2020-05-11T18:57:38.7864489Z\",\r\n \"creationTime\": \"2020-05-11T18:57:38.7664384Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2020-05-11T18:57:38.7864489Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"test-aztk\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2020-05-11T18:57:38.7864489Z\",\r\n \"poolId\": \"test-aztk\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n },\r\n {\r\n \"id\": \"test-aztk-importlib-131\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/test-aztk-importlib-131\",\r\n \"eTag\": \"0x8D7F5DE7FDD4326\",\r\n \"lastModified\": \"2020-05-11T19:07:07.2966438Z\",\r\n \"creationTime\": \"2020-05-11T19:07:07.2746077Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2020-05-11T19:07:07.2966438Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"test-aztk-importlib-131\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2020-05-11T19:07:07.2966438Z\",\r\n \"poolId\": \"test-aztk-importlib-131\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n },\r\n {\r\n \"id\": \"test-aztk-no-fix\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/test-aztk-no-fix\",\r\n \"eTag\": \"0x8D7F5DDA00F0A5A\",\r\n \"lastModified\": \"2020-05-11T19:00:51.8132314Z\",\r\n \"creationTime\": \"2020-05-11T19:00:51.7922225Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2020-05-11T19:00:51.8132314Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"test-aztk-no-fix\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2020-05-11T19:00:51.8132314Z\",\r\n \"poolId\": \"test-aztk-no-fix\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n },\r\n {\r\n \"id\": \"testJobCompletesWhenTaskFails\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/testJobCompletesWhenTaskFails\",\r\n \"eTag\": \"0x8D80CB71B75873C\",\r\n \"lastModified\": \"2020-06-09T20:53:05.2160828Z\",\r\n \"creationTime\": \"2020-06-09T20:53:05.1970818Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2020-06-09T20:53:05.2160828Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"autoPoolSpecification\": {\r\n \"autoPoolIdPrefix\": \"TestSpecPrefix\",\r\n \"poolLifetimeOption\": \"job\",\r\n \"keepAlive\": false,\r\n \"pool\": {\r\n \"vmSize\": \"small\",\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"resizeTimeout\": \"PT15M\",\r\n \"targetDedicatedNodes\": 3,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"osVersion\": \"*\"\r\n }\r\n }\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2020-06-09T20:53:05.2160828Z\",\r\n \"poolId\": \"TestSpecPrefix_FB6183E5-4DA2-4802-87C3-44CF977C3CB6\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"performexitoptionsjobaction\"\r\n },\r\n {\r\n \"id\": \"testDisableEnableTerminateJobSchedule:job-1\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/testDisableEnableTerminateJobSchedule:job-1\",\r\n \"eTag\": \"0x8D80C98DC293DC1\",\r\n \"lastModified\": \"2020-06-09T17:16:34.1177793Z\",\r\n \"creationTime\": \"2020-06-09T17:16:34.092775Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2020-06-09T17:16:57.1458604Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2020-06-09T17:16:34.1177793Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2020-06-09T17:16:34.1177793Z\",\r\n \"endTime\": \"2020-06-09T17:16:57.1458604Z\",\r\n \"poolId\": \"testPool\",\r\n \"terminateReason\": \"TerminateWorkitem\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n },\r\n {\r\n \"id\": \"testDisableEnableTerminateJobSchedule:job-1\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/testDisableEnableTerminateJobSchedule:job-1\",\r\n \"eTag\": \"0x8D80BFA19BC0BCD\",\r\n \"lastModified\": \"2020-06-08T22:20:07.4408909Z\",\r\n \"creationTime\": \"2020-06-08T22:20:07.415902Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2020-06-08T22:20:30.3772604Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2020-06-08T22:20:07.4408909Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2020-06-08T22:20:07.4408909Z\",\r\n \"endTime\": \"2020-06-08T22:20:30.3772604Z\",\r\n \"poolId\": \"testPool\",\r\n \"terminateReason\": \"TerminateWorkitem\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#jobs\",\r\n \"value\": [\r\n {\r\n \"id\": \"testJobCompletesWhenTaskFails\",\r\n \"url\": \"https://mikeportal.eastus.batch.azure.com/jobs/testJobCompletesWhenTaskFails\",\r\n \"eTag\": \"0x8D96973AD3698FB\",\r\n \"lastModified\": \"2021-08-27T15:59:39.7827835Z\",\r\n \"creationTime\": \"2021-08-27T15:59:39.7617875Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2021-08-27T15:59:39.7827835Z\",\r\n \"priority\": 0,\r\n \"maxParallelTasks\": -1,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"autoPoolSpecification\": {\r\n \"autoPoolIdPrefix\": \"TestSpecPrefix\",\r\n \"poolLifetimeOption\": \"job\",\r\n \"keepAlive\": false,\r\n \"pool\": {\r\n \"vmSize\": \"standard_d1_v2\",\r\n \"taskSlotsPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"resizeTimeout\": \"PT15M\",\r\n \"targetDedicatedNodes\": 1,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"osVersion\": \"*\"\r\n }\r\n }\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2021-08-27T15:59:39.7827835Z\",\r\n \"poolId\": \"TestSpecPrefix_D833BBF0-BF06-4FDC-BE52-740DF2250A49\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"performexitoptionsjobaction\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/jobs?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAyMC0wMy0wMS4xMS4w", + "RequestUri": "/jobs?api-version=2021-06-01.14.0", + "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4w", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "03aac620-db80-49cf-8a9c-e84f6bdf682b" + "fd43ea43-2039-40f1-ac05-8049566af5c3" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 21:00:10 GMT" + "Fri, 27 Aug 2021 16:05:42 GMT" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/13.0.20.15503", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", "AzurePowershell/Az1.0.0" ] }, @@ -1257,7 +1159,7 @@ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "4e1a0d29-85cb-494b-8771-83d1c90e8275" + "c6f17e68-aa76-4376-a179-102e1188b623" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1269,35 +1171,35 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 21:00:10 GMT" + "Fri, 27 Aug 2021 16:05:41 GMT" ], "Content-Type": [ "application/json; odata=minimalmetadata" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://prodtest6.francecentral.batch.azure.com/$metadata#jobs\",\r\n \"value\": [\r\n {\r\n \"id\": \"j1\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/j1\",\r\n \"eTag\": \"0x8D6EDE6BFE7A605\",\r\n \"lastModified\": \"2019-06-10T21:01:03.7394437Z\",\r\n \"creationTime\": \"2019-06-10T21:01:03.7183957Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2019-06-10T21:01:03.7394437Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"p1\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2019-06-10T21:01:03.7394437Z\",\r\n \"poolId\": \"p1\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n },\r\n {\r\n \"id\": \"js1:job-1\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/js1:job-1\",\r\n \"eTag\": \"0x8D6EDE6B58581C8\",\r\n \"lastModified\": \"2019-06-10T21:00:46.3190472Z\",\r\n \"creationTime\": \"2019-06-10T21:00:46.2950489Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2019-06-10T21:00:46.3190472Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"p1\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2019-06-10T21:00:46.3190472Z\",\r\n \"poolId\": \"p1\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n },\r\n {\r\n \"id\": \"test-aztk\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/test-aztk\",\r\n \"eTag\": \"0x8D7F5DD2D017DA9\",\r\n \"lastModified\": \"2020-05-11T18:57:38.7864489Z\",\r\n \"creationTime\": \"2020-05-11T18:57:38.7664384Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2020-05-11T18:57:38.7864489Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"test-aztk\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2020-05-11T18:57:38.7864489Z\",\r\n \"poolId\": \"test-aztk\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n },\r\n {\r\n \"id\": \"test-aztk-importlib-131\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/test-aztk-importlib-131\",\r\n \"eTag\": \"0x8D7F5DE7FDD4326\",\r\n \"lastModified\": \"2020-05-11T19:07:07.2966438Z\",\r\n \"creationTime\": \"2020-05-11T19:07:07.2746077Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2020-05-11T19:07:07.2966438Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"test-aztk-importlib-131\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2020-05-11T19:07:07.2966438Z\",\r\n \"poolId\": \"test-aztk-importlib-131\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n },\r\n {\r\n \"id\": \"test-aztk-no-fix\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/test-aztk-no-fix\",\r\n \"eTag\": \"0x8D7F5DDA00F0A5A\",\r\n \"lastModified\": \"2020-05-11T19:00:51.8132314Z\",\r\n \"creationTime\": \"2020-05-11T19:00:51.7922225Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2020-05-11T19:00:51.8132314Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"test-aztk-no-fix\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2020-05-11T19:00:51.8132314Z\",\r\n \"poolId\": \"test-aztk-no-fix\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n },\r\n {\r\n \"id\": \"testJobCompletesWhenTaskFails\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/testJobCompletesWhenTaskFails\",\r\n \"eTag\": \"0x8D80CB81203E1C9\",\r\n \"lastModified\": \"2020-06-09T20:59:58.8685257Z\",\r\n \"creationTime\": \"2020-06-09T20:53:05.1970818Z\",\r\n \"state\": \"terminating\",\r\n \"stateTransitionTime\": \"2020-06-09T20:59:58.8685257Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2020-06-09T20:53:05.2160828Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"autoPoolSpecification\": {\r\n \"autoPoolIdPrefix\": \"TestSpecPrefix\",\r\n \"poolLifetimeOption\": \"job\",\r\n \"keepAlive\": false,\r\n \"pool\": {\r\n \"vmSize\": \"small\",\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"resizeTimeout\": \"PT15M\",\r\n \"targetDedicatedNodes\": 3,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"osVersion\": \"*\"\r\n }\r\n }\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2020-06-09T20:53:05.2160828Z\",\r\n \"poolId\": \"TestSpecPrefix_FB6183E5-4DA2-4802-87C3-44CF977C3CB6\",\r\n \"terminateReason\": \"TaskFailed\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"performexitoptionsjobaction\"\r\n },\r\n {\r\n \"id\": \"testDisableEnableTerminateJobSchedule:job-1\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/testDisableEnableTerminateJobSchedule:job-1\",\r\n \"eTag\": \"0x8D80C98DC293DC1\",\r\n \"lastModified\": \"2020-06-09T17:16:34.1177793Z\",\r\n \"creationTime\": \"2020-06-09T17:16:34.092775Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2020-06-09T17:16:57.1458604Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2020-06-09T17:16:34.1177793Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2020-06-09T17:16:34.1177793Z\",\r\n \"endTime\": \"2020-06-09T17:16:57.1458604Z\",\r\n \"poolId\": \"testPool\",\r\n \"terminateReason\": \"TerminateWorkitem\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n },\r\n {\r\n \"id\": \"testDisableEnableTerminateJobSchedule:job-1\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/testDisableEnableTerminateJobSchedule:job-1\",\r\n \"eTag\": \"0x8D80BFA19BC0BCD\",\r\n \"lastModified\": \"2020-06-08T22:20:07.4408909Z\",\r\n \"creationTime\": \"2020-06-08T22:20:07.415902Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2020-06-08T22:20:30.3772604Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2020-06-08T22:20:07.4408909Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2020-06-08T22:20:07.4408909Z\",\r\n \"endTime\": \"2020-06-08T22:20:30.3772604Z\",\r\n \"poolId\": \"testPool\",\r\n \"terminateReason\": \"TerminateWorkitem\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#jobs\",\r\n \"value\": [\r\n {\r\n \"id\": \"testJobCompletesWhenTaskFails\",\r\n \"url\": \"https://mikeportal.eastus.batch.azure.com/jobs/testJobCompletesWhenTaskFails\",\r\n \"eTag\": \"0x8D96973AD3698FB\",\r\n \"lastModified\": \"2021-08-27T15:59:39.7827835Z\",\r\n \"creationTime\": \"2021-08-27T15:59:39.7617875Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2021-08-27T15:59:39.7827835Z\",\r\n \"priority\": 0,\r\n \"maxParallelTasks\": -1,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"autoPoolSpecification\": {\r\n \"autoPoolIdPrefix\": \"TestSpecPrefix\",\r\n \"poolLifetimeOption\": \"job\",\r\n \"keepAlive\": false,\r\n \"pool\": {\r\n \"vmSize\": \"standard_d1_v2\",\r\n \"taskSlotsPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"resizeTimeout\": \"PT15M\",\r\n \"targetDedicatedNodes\": 1,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"osVersion\": \"*\"\r\n }\r\n }\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2021-08-27T15:59:39.7827835Z\",\r\n \"poolId\": \"TestSpecPrefix_D833BBF0-BF06-4FDC-BE52-740DF2250A49\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"performexitoptionsjobaction\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/jobs?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAyMC0wMy0wMS4xMS4w", + "RequestUri": "/jobs?api-version=2021-06-01.14.0", + "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4w", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "616086e6-7b1d-43b8-b628-ef6fb48ad19d" + "2aed74a5-79ad-42c6-a6c6-3f81f784935d" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 21:00:30 GMT" + "Fri, 27 Aug 2021 16:06:02 GMT" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/13.0.20.15503", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", "AzurePowershell/Az1.0.0" ] }, @@ -1309,7 +1211,7 @@ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "0ca103ac-8d11-415b-aff7-b1f10e1ac34a" + "a6031dfb-d21c-400d-8dfc-131328018027" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1321,35 +1223,35 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 21:00:31 GMT" + "Fri, 27 Aug 2021 16:06:01 GMT" ], "Content-Type": [ "application/json; odata=minimalmetadata" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://prodtest6.francecentral.batch.azure.com/$metadata#jobs\",\r\n \"value\": [\r\n {\r\n \"id\": \"j1\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/j1\",\r\n \"eTag\": \"0x8D6EDE6BFE7A605\",\r\n \"lastModified\": \"2019-06-10T21:01:03.7394437Z\",\r\n \"creationTime\": \"2019-06-10T21:01:03.7183957Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2019-06-10T21:01:03.7394437Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"p1\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2019-06-10T21:01:03.7394437Z\",\r\n \"poolId\": \"p1\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n },\r\n {\r\n \"id\": \"js1:job-1\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/js1:job-1\",\r\n \"eTag\": \"0x8D6EDE6B58581C8\",\r\n \"lastModified\": \"2019-06-10T21:00:46.3190472Z\",\r\n \"creationTime\": \"2019-06-10T21:00:46.2950489Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2019-06-10T21:00:46.3190472Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"p1\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2019-06-10T21:00:46.3190472Z\",\r\n \"poolId\": \"p1\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n },\r\n {\r\n \"id\": \"test-aztk\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/test-aztk\",\r\n \"eTag\": \"0x8D7F5DD2D017DA9\",\r\n \"lastModified\": \"2020-05-11T18:57:38.7864489Z\",\r\n \"creationTime\": \"2020-05-11T18:57:38.7664384Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2020-05-11T18:57:38.7864489Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"test-aztk\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2020-05-11T18:57:38.7864489Z\",\r\n \"poolId\": \"test-aztk\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n },\r\n {\r\n \"id\": \"test-aztk-importlib-131\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/test-aztk-importlib-131\",\r\n \"eTag\": \"0x8D7F5DE7FDD4326\",\r\n \"lastModified\": \"2020-05-11T19:07:07.2966438Z\",\r\n \"creationTime\": \"2020-05-11T19:07:07.2746077Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2020-05-11T19:07:07.2966438Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"test-aztk-importlib-131\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2020-05-11T19:07:07.2966438Z\",\r\n \"poolId\": \"test-aztk-importlib-131\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n },\r\n {\r\n \"id\": \"test-aztk-no-fix\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/test-aztk-no-fix\",\r\n \"eTag\": \"0x8D7F5DDA00F0A5A\",\r\n \"lastModified\": \"2020-05-11T19:00:51.8132314Z\",\r\n \"creationTime\": \"2020-05-11T19:00:51.7922225Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2020-05-11T19:00:51.8132314Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"test-aztk-no-fix\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2020-05-11T19:00:51.8132314Z\",\r\n \"poolId\": \"test-aztk-no-fix\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n },\r\n {\r\n \"id\": \"testJobCompletesWhenTaskFails\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/testJobCompletesWhenTaskFails\",\r\n \"eTag\": \"0x8D80CB81203E1C9\",\r\n \"lastModified\": \"2020-06-09T20:59:58.8685257Z\",\r\n \"creationTime\": \"2020-06-09T20:53:05.1970818Z\",\r\n \"state\": \"terminating\",\r\n \"stateTransitionTime\": \"2020-06-09T20:59:58.8685257Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2020-06-09T20:53:05.2160828Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"autoPoolSpecification\": {\r\n \"autoPoolIdPrefix\": \"TestSpecPrefix\",\r\n \"poolLifetimeOption\": \"job\",\r\n \"keepAlive\": false,\r\n \"pool\": {\r\n \"vmSize\": \"small\",\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"resizeTimeout\": \"PT15M\",\r\n \"targetDedicatedNodes\": 3,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"osVersion\": \"*\"\r\n }\r\n }\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2020-06-09T20:53:05.2160828Z\",\r\n \"poolId\": \"TestSpecPrefix_FB6183E5-4DA2-4802-87C3-44CF977C3CB6\",\r\n \"terminateReason\": \"TaskFailed\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"performexitoptionsjobaction\"\r\n },\r\n {\r\n \"id\": \"testDisableEnableTerminateJobSchedule:job-1\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/testDisableEnableTerminateJobSchedule:job-1\",\r\n \"eTag\": \"0x8D80C98DC293DC1\",\r\n \"lastModified\": \"2020-06-09T17:16:34.1177793Z\",\r\n \"creationTime\": \"2020-06-09T17:16:34.092775Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2020-06-09T17:16:57.1458604Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2020-06-09T17:16:34.1177793Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2020-06-09T17:16:34.1177793Z\",\r\n \"endTime\": \"2020-06-09T17:16:57.1458604Z\",\r\n \"poolId\": \"testPool\",\r\n \"terminateReason\": \"TerminateWorkitem\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n },\r\n {\r\n \"id\": \"testDisableEnableTerminateJobSchedule:job-1\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/testDisableEnableTerminateJobSchedule:job-1\",\r\n \"eTag\": \"0x8D80BFA19BC0BCD\",\r\n \"lastModified\": \"2020-06-08T22:20:07.4408909Z\",\r\n \"creationTime\": \"2020-06-08T22:20:07.415902Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2020-06-08T22:20:30.3772604Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2020-06-08T22:20:07.4408909Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2020-06-08T22:20:07.4408909Z\",\r\n \"endTime\": \"2020-06-08T22:20:30.3772604Z\",\r\n \"poolId\": \"testPool\",\r\n \"terminateReason\": \"TerminateWorkitem\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#jobs\",\r\n \"value\": [\r\n {\r\n \"id\": \"testJobCompletesWhenTaskFails\",\r\n \"url\": \"https://mikeportal.eastus.batch.azure.com/jobs/testJobCompletesWhenTaskFails\",\r\n \"eTag\": \"0x8D9697490926C5F\",\r\n \"lastModified\": \"2021-08-27T16:06:01.2273759Z\",\r\n \"creationTime\": \"2021-08-27T15:59:39.7617875Z\",\r\n \"state\": \"terminating\",\r\n \"stateTransitionTime\": \"2021-08-27T16:06:01.2273759Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2021-08-27T15:59:39.7827835Z\",\r\n \"priority\": 0,\r\n \"maxParallelTasks\": -1,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"autoPoolSpecification\": {\r\n \"autoPoolIdPrefix\": \"TestSpecPrefix\",\r\n \"poolLifetimeOption\": \"job\",\r\n \"keepAlive\": false,\r\n \"pool\": {\r\n \"vmSize\": \"standard_d1_v2\",\r\n \"taskSlotsPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"resizeTimeout\": \"PT15M\",\r\n \"targetDedicatedNodes\": 1,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"osVersion\": \"*\"\r\n }\r\n }\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2021-08-27T15:59:39.7827835Z\",\r\n \"poolId\": \"TestSpecPrefix_D833BBF0-BF06-4FDC-BE52-740DF2250A49\",\r\n \"terminateReason\": \"TaskFailed\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"performexitoptionsjobaction\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/jobs?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAyMC0wMy0wMS4xMS4w", + "RequestUri": "/jobs?api-version=2021-06-01.14.0", + "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4w", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "8ad481e7-cce8-415b-86c4-10f232a160f7" + "4650b7cb-b9ea-4fe0-bb99-c79bbc29c588" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 21:00:51 GMT" + "Fri, 27 Aug 2021 16:06:22 GMT" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/13.0.20.15503", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", "AzurePowershell/Az1.0.0" ] }, @@ -1361,7 +1263,7 @@ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "f074c1fc-9f1e-4f78-8678-f8cdbc63fee3" + "61371bdf-98d4-41f4-80db-3751e13916a0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1373,35 +1275,35 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 21:00:51 GMT" + "Fri, 27 Aug 2021 16:06:21 GMT" ], "Content-Type": [ "application/json; odata=minimalmetadata" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://prodtest6.francecentral.batch.azure.com/$metadata#jobs\",\r\n \"value\": [\r\n {\r\n \"id\": \"j1\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/j1\",\r\n \"eTag\": \"0x8D6EDE6BFE7A605\",\r\n \"lastModified\": \"2019-06-10T21:01:03.7394437Z\",\r\n \"creationTime\": \"2019-06-10T21:01:03.7183957Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2019-06-10T21:01:03.7394437Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"p1\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2019-06-10T21:01:03.7394437Z\",\r\n \"poolId\": \"p1\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n },\r\n {\r\n \"id\": \"js1:job-1\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/js1:job-1\",\r\n \"eTag\": \"0x8D6EDE6B58581C8\",\r\n \"lastModified\": \"2019-06-10T21:00:46.3190472Z\",\r\n \"creationTime\": \"2019-06-10T21:00:46.2950489Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2019-06-10T21:00:46.3190472Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"p1\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2019-06-10T21:00:46.3190472Z\",\r\n \"poolId\": \"p1\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n },\r\n {\r\n \"id\": \"test-aztk\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/test-aztk\",\r\n \"eTag\": \"0x8D7F5DD2D017DA9\",\r\n \"lastModified\": \"2020-05-11T18:57:38.7864489Z\",\r\n \"creationTime\": \"2020-05-11T18:57:38.7664384Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2020-05-11T18:57:38.7864489Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"test-aztk\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2020-05-11T18:57:38.7864489Z\",\r\n \"poolId\": \"test-aztk\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n },\r\n {\r\n \"id\": \"test-aztk-importlib-131\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/test-aztk-importlib-131\",\r\n \"eTag\": \"0x8D7F5DE7FDD4326\",\r\n \"lastModified\": \"2020-05-11T19:07:07.2966438Z\",\r\n \"creationTime\": \"2020-05-11T19:07:07.2746077Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2020-05-11T19:07:07.2966438Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"test-aztk-importlib-131\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2020-05-11T19:07:07.2966438Z\",\r\n \"poolId\": \"test-aztk-importlib-131\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n },\r\n {\r\n \"id\": \"test-aztk-no-fix\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/test-aztk-no-fix\",\r\n \"eTag\": \"0x8D7F5DDA00F0A5A\",\r\n \"lastModified\": \"2020-05-11T19:00:51.8132314Z\",\r\n \"creationTime\": \"2020-05-11T19:00:51.7922225Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2020-05-11T19:00:51.8132314Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"test-aztk-no-fix\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2020-05-11T19:00:51.8132314Z\",\r\n \"poolId\": \"test-aztk-no-fix\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n },\r\n {\r\n \"id\": \"testJobCompletesWhenTaskFails\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/testJobCompletesWhenTaskFails\",\r\n \"eTag\": \"0x8D80CB81203E1C9\",\r\n \"lastModified\": \"2020-06-09T20:59:58.8685257Z\",\r\n \"creationTime\": \"2020-06-09T20:53:05.1970818Z\",\r\n \"state\": \"terminating\",\r\n \"stateTransitionTime\": \"2020-06-09T20:59:58.8685257Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2020-06-09T20:53:05.2160828Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"autoPoolSpecification\": {\r\n \"autoPoolIdPrefix\": \"TestSpecPrefix\",\r\n \"poolLifetimeOption\": \"job\",\r\n \"keepAlive\": false,\r\n \"pool\": {\r\n \"vmSize\": \"small\",\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"resizeTimeout\": \"PT15M\",\r\n \"targetDedicatedNodes\": 3,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"osVersion\": \"*\"\r\n }\r\n }\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2020-06-09T20:53:05.2160828Z\",\r\n \"poolId\": \"TestSpecPrefix_FB6183E5-4DA2-4802-87C3-44CF977C3CB6\",\r\n \"terminateReason\": \"TaskFailed\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"performexitoptionsjobaction\"\r\n },\r\n {\r\n \"id\": \"testDisableEnableTerminateJobSchedule:job-1\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/testDisableEnableTerminateJobSchedule:job-1\",\r\n \"eTag\": \"0x8D80C98DC293DC1\",\r\n \"lastModified\": \"2020-06-09T17:16:34.1177793Z\",\r\n \"creationTime\": \"2020-06-09T17:16:34.092775Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2020-06-09T17:16:57.1458604Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2020-06-09T17:16:34.1177793Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2020-06-09T17:16:34.1177793Z\",\r\n \"endTime\": \"2020-06-09T17:16:57.1458604Z\",\r\n \"poolId\": \"testPool\",\r\n \"terminateReason\": \"TerminateWorkitem\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n },\r\n {\r\n \"id\": \"testDisableEnableTerminateJobSchedule:job-1\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/testDisableEnableTerminateJobSchedule:job-1\",\r\n \"eTag\": \"0x8D80BFA19BC0BCD\",\r\n \"lastModified\": \"2020-06-08T22:20:07.4408909Z\",\r\n \"creationTime\": \"2020-06-08T22:20:07.415902Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2020-06-08T22:20:30.3772604Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2020-06-08T22:20:07.4408909Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2020-06-08T22:20:07.4408909Z\",\r\n \"endTime\": \"2020-06-08T22:20:30.3772604Z\",\r\n \"poolId\": \"testPool\",\r\n \"terminateReason\": \"TerminateWorkitem\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#jobs\",\r\n \"value\": [\r\n {\r\n \"id\": \"testJobCompletesWhenTaskFails\",\r\n \"url\": \"https://mikeportal.eastus.batch.azure.com/jobs/testJobCompletesWhenTaskFails\",\r\n \"eTag\": \"0x8D9697490926C5F\",\r\n \"lastModified\": \"2021-08-27T16:06:01.2273759Z\",\r\n \"creationTime\": \"2021-08-27T15:59:39.7617875Z\",\r\n \"state\": \"terminating\",\r\n \"stateTransitionTime\": \"2021-08-27T16:06:01.2273759Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2021-08-27T15:59:39.7827835Z\",\r\n \"priority\": 0,\r\n \"maxParallelTasks\": -1,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"autoPoolSpecification\": {\r\n \"autoPoolIdPrefix\": \"TestSpecPrefix\",\r\n \"poolLifetimeOption\": \"job\",\r\n \"keepAlive\": false,\r\n \"pool\": {\r\n \"vmSize\": \"standard_d1_v2\",\r\n \"taskSlotsPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"resizeTimeout\": \"PT15M\",\r\n \"targetDedicatedNodes\": 1,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"osVersion\": \"*\"\r\n }\r\n }\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2021-08-27T15:59:39.7827835Z\",\r\n \"poolId\": \"TestSpecPrefix_D833BBF0-BF06-4FDC-BE52-740DF2250A49\",\r\n \"terminateReason\": \"TaskFailed\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"performexitoptionsjobaction\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/jobs?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAyMC0wMy0wMS4xMS4w", + "RequestUri": "/jobs?api-version=2021-06-01.14.0", + "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4w", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "38484955-51e9-4540-9a08-c0a64055a67a" + "89dc30e5-6146-4878-88d4-a04a37a00238" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 21:01:11 GMT" + "Fri, 27 Aug 2021 16:06:42 GMT" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/13.0.20.15503", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", "AzurePowershell/Az1.0.0" ] }, @@ -1413,7 +1315,7 @@ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "f3973013-65d5-40e8-a984-b31167d468a4" + "1066aaff-0d9f-4878-a831-1ebfb712596f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1425,35 +1327,35 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 21:01:11 GMT" + "Fri, 27 Aug 2021 16:06:41 GMT" ], "Content-Type": [ "application/json; odata=minimalmetadata" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://prodtest6.francecentral.batch.azure.com/$metadata#jobs\",\r\n \"value\": [\r\n {\r\n \"id\": \"j1\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/j1\",\r\n \"eTag\": \"0x8D6EDE6BFE7A605\",\r\n \"lastModified\": \"2019-06-10T21:01:03.7394437Z\",\r\n \"creationTime\": \"2019-06-10T21:01:03.7183957Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2019-06-10T21:01:03.7394437Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"p1\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2019-06-10T21:01:03.7394437Z\",\r\n \"poolId\": \"p1\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n },\r\n {\r\n \"id\": \"js1:job-1\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/js1:job-1\",\r\n \"eTag\": \"0x8D6EDE6B58581C8\",\r\n \"lastModified\": \"2019-06-10T21:00:46.3190472Z\",\r\n \"creationTime\": \"2019-06-10T21:00:46.2950489Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2019-06-10T21:00:46.3190472Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"p1\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2019-06-10T21:00:46.3190472Z\",\r\n \"poolId\": \"p1\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n },\r\n {\r\n \"id\": \"test-aztk\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/test-aztk\",\r\n \"eTag\": \"0x8D7F5DD2D017DA9\",\r\n \"lastModified\": \"2020-05-11T18:57:38.7864489Z\",\r\n \"creationTime\": \"2020-05-11T18:57:38.7664384Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2020-05-11T18:57:38.7864489Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"test-aztk\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2020-05-11T18:57:38.7864489Z\",\r\n \"poolId\": \"test-aztk\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n },\r\n {\r\n \"id\": \"test-aztk-importlib-131\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/test-aztk-importlib-131\",\r\n \"eTag\": \"0x8D7F5DE7FDD4326\",\r\n \"lastModified\": \"2020-05-11T19:07:07.2966438Z\",\r\n \"creationTime\": \"2020-05-11T19:07:07.2746077Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2020-05-11T19:07:07.2966438Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"test-aztk-importlib-131\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2020-05-11T19:07:07.2966438Z\",\r\n \"poolId\": \"test-aztk-importlib-131\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n },\r\n {\r\n \"id\": \"test-aztk-no-fix\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/test-aztk-no-fix\",\r\n \"eTag\": \"0x8D7F5DDA00F0A5A\",\r\n \"lastModified\": \"2020-05-11T19:00:51.8132314Z\",\r\n \"creationTime\": \"2020-05-11T19:00:51.7922225Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2020-05-11T19:00:51.8132314Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"test-aztk-no-fix\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2020-05-11T19:00:51.8132314Z\",\r\n \"poolId\": \"test-aztk-no-fix\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n },\r\n {\r\n \"id\": \"testJobCompletesWhenTaskFails\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/testJobCompletesWhenTaskFails\",\r\n \"eTag\": \"0x8D80CB81203E1C9\",\r\n \"lastModified\": \"2020-06-09T20:59:58.8685257Z\",\r\n \"creationTime\": \"2020-06-09T20:53:05.1970818Z\",\r\n \"state\": \"terminating\",\r\n \"stateTransitionTime\": \"2020-06-09T20:59:58.8685257Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2020-06-09T20:53:05.2160828Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"autoPoolSpecification\": {\r\n \"autoPoolIdPrefix\": \"TestSpecPrefix\",\r\n \"poolLifetimeOption\": \"job\",\r\n \"keepAlive\": false,\r\n \"pool\": {\r\n \"vmSize\": \"small\",\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"resizeTimeout\": \"PT15M\",\r\n \"targetDedicatedNodes\": 3,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"osVersion\": \"*\"\r\n }\r\n }\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2020-06-09T20:53:05.2160828Z\",\r\n \"poolId\": \"TestSpecPrefix_FB6183E5-4DA2-4802-87C3-44CF977C3CB6\",\r\n \"terminateReason\": \"TaskFailed\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"performexitoptionsjobaction\"\r\n },\r\n {\r\n \"id\": \"testDisableEnableTerminateJobSchedule:job-1\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/testDisableEnableTerminateJobSchedule:job-1\",\r\n \"eTag\": \"0x8D80C98DC293DC1\",\r\n \"lastModified\": \"2020-06-09T17:16:34.1177793Z\",\r\n \"creationTime\": \"2020-06-09T17:16:34.092775Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2020-06-09T17:16:57.1458604Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2020-06-09T17:16:34.1177793Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2020-06-09T17:16:34.1177793Z\",\r\n \"endTime\": \"2020-06-09T17:16:57.1458604Z\",\r\n \"poolId\": \"testPool\",\r\n \"terminateReason\": \"TerminateWorkitem\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n },\r\n {\r\n \"id\": \"testDisableEnableTerminateJobSchedule:job-1\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/testDisableEnableTerminateJobSchedule:job-1\",\r\n \"eTag\": \"0x8D80BFA19BC0BCD\",\r\n \"lastModified\": \"2020-06-08T22:20:07.4408909Z\",\r\n \"creationTime\": \"2020-06-08T22:20:07.415902Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2020-06-08T22:20:30.3772604Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2020-06-08T22:20:07.4408909Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2020-06-08T22:20:07.4408909Z\",\r\n \"endTime\": \"2020-06-08T22:20:30.3772604Z\",\r\n \"poolId\": \"testPool\",\r\n \"terminateReason\": \"TerminateWorkitem\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#jobs\",\r\n \"value\": [\r\n {\r\n \"id\": \"testJobCompletesWhenTaskFails\",\r\n \"url\": \"https://mikeportal.eastus.batch.azure.com/jobs/testJobCompletesWhenTaskFails\",\r\n \"eTag\": \"0x8D9697490926C5F\",\r\n \"lastModified\": \"2021-08-27T16:06:01.2273759Z\",\r\n \"creationTime\": \"2021-08-27T15:59:39.7617875Z\",\r\n \"state\": \"terminating\",\r\n \"stateTransitionTime\": \"2021-08-27T16:06:01.2273759Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2021-08-27T15:59:39.7827835Z\",\r\n \"priority\": 0,\r\n \"maxParallelTasks\": -1,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"autoPoolSpecification\": {\r\n \"autoPoolIdPrefix\": \"TestSpecPrefix\",\r\n \"poolLifetimeOption\": \"job\",\r\n \"keepAlive\": false,\r\n \"pool\": {\r\n \"vmSize\": \"standard_d1_v2\",\r\n \"taskSlotsPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"resizeTimeout\": \"PT15M\",\r\n \"targetDedicatedNodes\": 1,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"osVersion\": \"*\"\r\n }\r\n }\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2021-08-27T15:59:39.7827835Z\",\r\n \"poolId\": \"TestSpecPrefix_D833BBF0-BF06-4FDC-BE52-740DF2250A49\",\r\n \"terminateReason\": \"TaskFailed\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"performexitoptionsjobaction\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/jobs?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAyMC0wMy0wMS4xMS4w", + "RequestUri": "/jobs?api-version=2021-06-01.14.0", + "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4w", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "3928600e-3479-4782-a162-ea75c49864c3" + "3b249ebd-5f30-4e67-b532-14eed9157da5" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 21:01:31 GMT" + "Fri, 27 Aug 2021 16:07:02 GMT" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/13.0.20.15503", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", "AzurePowershell/Az1.0.0" ] }, @@ -1465,7 +1367,7 @@ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "bd9c21d0-0d77-40aa-bc3f-39b8aed6292c" + "df801282-a536-49cc-8e87-8fe3fc8f14a4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1477,35 +1379,35 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 21:01:31 GMT" + "Fri, 27 Aug 2021 16:07:01 GMT" ], "Content-Type": [ "application/json; odata=minimalmetadata" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://prodtest6.francecentral.batch.azure.com/$metadata#jobs\",\r\n \"value\": [\r\n {\r\n \"id\": \"j1\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/j1\",\r\n \"eTag\": \"0x8D6EDE6BFE7A605\",\r\n \"lastModified\": \"2019-06-10T21:01:03.7394437Z\",\r\n \"creationTime\": \"2019-06-10T21:01:03.7183957Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2019-06-10T21:01:03.7394437Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"p1\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2019-06-10T21:01:03.7394437Z\",\r\n \"poolId\": \"p1\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n },\r\n {\r\n \"id\": \"js1:job-1\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/js1:job-1\",\r\n \"eTag\": \"0x8D6EDE6B58581C8\",\r\n \"lastModified\": \"2019-06-10T21:00:46.3190472Z\",\r\n \"creationTime\": \"2019-06-10T21:00:46.2950489Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2019-06-10T21:00:46.3190472Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"p1\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2019-06-10T21:00:46.3190472Z\",\r\n \"poolId\": \"p1\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n },\r\n {\r\n \"id\": \"test-aztk\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/test-aztk\",\r\n \"eTag\": \"0x8D7F5DD2D017DA9\",\r\n \"lastModified\": \"2020-05-11T18:57:38.7864489Z\",\r\n \"creationTime\": \"2020-05-11T18:57:38.7664384Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2020-05-11T18:57:38.7864489Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"test-aztk\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2020-05-11T18:57:38.7864489Z\",\r\n \"poolId\": \"test-aztk\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n },\r\n {\r\n \"id\": \"test-aztk-importlib-131\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/test-aztk-importlib-131\",\r\n \"eTag\": \"0x8D7F5DE7FDD4326\",\r\n \"lastModified\": \"2020-05-11T19:07:07.2966438Z\",\r\n \"creationTime\": \"2020-05-11T19:07:07.2746077Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2020-05-11T19:07:07.2966438Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"test-aztk-importlib-131\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2020-05-11T19:07:07.2966438Z\",\r\n \"poolId\": \"test-aztk-importlib-131\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n },\r\n {\r\n \"id\": \"test-aztk-no-fix\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/test-aztk-no-fix\",\r\n \"eTag\": \"0x8D7F5DDA00F0A5A\",\r\n \"lastModified\": \"2020-05-11T19:00:51.8132314Z\",\r\n \"creationTime\": \"2020-05-11T19:00:51.7922225Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2020-05-11T19:00:51.8132314Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"test-aztk-no-fix\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2020-05-11T19:00:51.8132314Z\",\r\n \"poolId\": \"test-aztk-no-fix\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n },\r\n {\r\n \"id\": \"testJobCompletesWhenTaskFails\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/testJobCompletesWhenTaskFails\",\r\n \"eTag\": \"0x8D80CB81203E1C9\",\r\n \"lastModified\": \"2020-06-09T20:59:58.8685257Z\",\r\n \"creationTime\": \"2020-06-09T20:53:05.1970818Z\",\r\n \"state\": \"terminating\",\r\n \"stateTransitionTime\": \"2020-06-09T20:59:58.8685257Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2020-06-09T20:53:05.2160828Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"autoPoolSpecification\": {\r\n \"autoPoolIdPrefix\": \"TestSpecPrefix\",\r\n \"poolLifetimeOption\": \"job\",\r\n \"keepAlive\": false,\r\n \"pool\": {\r\n \"vmSize\": \"small\",\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"resizeTimeout\": \"PT15M\",\r\n \"targetDedicatedNodes\": 3,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"osVersion\": \"*\"\r\n }\r\n }\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2020-06-09T20:53:05.2160828Z\",\r\n \"poolId\": \"TestSpecPrefix_FB6183E5-4DA2-4802-87C3-44CF977C3CB6\",\r\n \"terminateReason\": \"TaskFailed\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"performexitoptionsjobaction\"\r\n },\r\n {\r\n \"id\": \"testDisableEnableTerminateJobSchedule:job-1\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/testDisableEnableTerminateJobSchedule:job-1\",\r\n \"eTag\": \"0x8D80C98DC293DC1\",\r\n \"lastModified\": \"2020-06-09T17:16:34.1177793Z\",\r\n \"creationTime\": \"2020-06-09T17:16:34.092775Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2020-06-09T17:16:57.1458604Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2020-06-09T17:16:34.1177793Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2020-06-09T17:16:34.1177793Z\",\r\n \"endTime\": \"2020-06-09T17:16:57.1458604Z\",\r\n \"poolId\": \"testPool\",\r\n \"terminateReason\": \"TerminateWorkitem\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n },\r\n {\r\n \"id\": \"testDisableEnableTerminateJobSchedule:job-1\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/testDisableEnableTerminateJobSchedule:job-1\",\r\n \"eTag\": \"0x8D80BFA19BC0BCD\",\r\n \"lastModified\": \"2020-06-08T22:20:07.4408909Z\",\r\n \"creationTime\": \"2020-06-08T22:20:07.415902Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2020-06-08T22:20:30.3772604Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2020-06-08T22:20:07.4408909Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2020-06-08T22:20:07.4408909Z\",\r\n \"endTime\": \"2020-06-08T22:20:30.3772604Z\",\r\n \"poolId\": \"testPool\",\r\n \"terminateReason\": \"TerminateWorkitem\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#jobs\",\r\n \"value\": [\r\n {\r\n \"id\": \"testJobCompletesWhenTaskFails\",\r\n \"url\": \"https://mikeportal.eastus.batch.azure.com/jobs/testJobCompletesWhenTaskFails\",\r\n \"eTag\": \"0x8D9697490926C5F\",\r\n \"lastModified\": \"2021-08-27T16:06:01.2273759Z\",\r\n \"creationTime\": \"2021-08-27T15:59:39.7617875Z\",\r\n \"state\": \"terminating\",\r\n \"stateTransitionTime\": \"2021-08-27T16:06:01.2273759Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2021-08-27T15:59:39.7827835Z\",\r\n \"priority\": 0,\r\n \"maxParallelTasks\": -1,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"autoPoolSpecification\": {\r\n \"autoPoolIdPrefix\": \"TestSpecPrefix\",\r\n \"poolLifetimeOption\": \"job\",\r\n \"keepAlive\": false,\r\n \"pool\": {\r\n \"vmSize\": \"standard_d1_v2\",\r\n \"taskSlotsPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"resizeTimeout\": \"PT15M\",\r\n \"targetDedicatedNodes\": 1,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"osVersion\": \"*\"\r\n }\r\n }\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2021-08-27T15:59:39.7827835Z\",\r\n \"poolId\": \"TestSpecPrefix_D833BBF0-BF06-4FDC-BE52-740DF2250A49\",\r\n \"terminateReason\": \"TaskFailed\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"performexitoptionsjobaction\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/jobs?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAyMC0wMy0wMS4xMS4w", + "RequestUri": "/jobs?api-version=2021-06-01.14.0", + "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4w", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "a4270028-36dd-471d-ba2f-478caade02a6" + "7373ad58-862f-45e7-a578-cd86be032b08" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 21:01:51 GMT" + "Fri, 27 Aug 2021 16:07:22 GMT" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/13.0.20.15503", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", "AzurePowershell/Az1.0.0" ] }, @@ -1517,7 +1419,7 @@ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "02a43e4f-4e82-4974-8380-e6c59828d68b" + "12564209-edd8-4009-a99a-1aeedf55c093" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1529,35 +1431,35 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 21:01:51 GMT" + "Fri, 27 Aug 2021 16:07:21 GMT" ], "Content-Type": [ "application/json; odata=minimalmetadata" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://prodtest6.francecentral.batch.azure.com/$metadata#jobs\",\r\n \"value\": [\r\n {\r\n \"id\": \"j1\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/j1\",\r\n \"eTag\": \"0x8D6EDE6BFE7A605\",\r\n \"lastModified\": \"2019-06-10T21:01:03.7394437Z\",\r\n \"creationTime\": \"2019-06-10T21:01:03.7183957Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2019-06-10T21:01:03.7394437Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"p1\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2019-06-10T21:01:03.7394437Z\",\r\n \"poolId\": \"p1\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n },\r\n {\r\n \"id\": \"js1:job-1\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/js1:job-1\",\r\n \"eTag\": \"0x8D6EDE6B58581C8\",\r\n \"lastModified\": \"2019-06-10T21:00:46.3190472Z\",\r\n \"creationTime\": \"2019-06-10T21:00:46.2950489Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2019-06-10T21:00:46.3190472Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"p1\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2019-06-10T21:00:46.3190472Z\",\r\n \"poolId\": \"p1\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n },\r\n {\r\n \"id\": \"test-aztk\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/test-aztk\",\r\n \"eTag\": \"0x8D7F5DD2D017DA9\",\r\n \"lastModified\": \"2020-05-11T18:57:38.7864489Z\",\r\n \"creationTime\": \"2020-05-11T18:57:38.7664384Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2020-05-11T18:57:38.7864489Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"test-aztk\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2020-05-11T18:57:38.7864489Z\",\r\n \"poolId\": \"test-aztk\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n },\r\n {\r\n \"id\": \"test-aztk-importlib-131\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/test-aztk-importlib-131\",\r\n \"eTag\": \"0x8D7F5DE7FDD4326\",\r\n \"lastModified\": \"2020-05-11T19:07:07.2966438Z\",\r\n \"creationTime\": \"2020-05-11T19:07:07.2746077Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2020-05-11T19:07:07.2966438Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"test-aztk-importlib-131\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2020-05-11T19:07:07.2966438Z\",\r\n \"poolId\": \"test-aztk-importlib-131\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n },\r\n {\r\n \"id\": \"test-aztk-no-fix\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/test-aztk-no-fix\",\r\n \"eTag\": \"0x8D7F5DDA00F0A5A\",\r\n \"lastModified\": \"2020-05-11T19:00:51.8132314Z\",\r\n \"creationTime\": \"2020-05-11T19:00:51.7922225Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2020-05-11T19:00:51.8132314Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"test-aztk-no-fix\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2020-05-11T19:00:51.8132314Z\",\r\n \"poolId\": \"test-aztk-no-fix\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n },\r\n {\r\n \"id\": \"testJobCompletesWhenTaskFails\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/testJobCompletesWhenTaskFails\",\r\n \"eTag\": \"0x8D80CB81203E1C9\",\r\n \"lastModified\": \"2020-06-09T20:59:58.8685257Z\",\r\n \"creationTime\": \"2020-06-09T20:53:05.1970818Z\",\r\n \"state\": \"terminating\",\r\n \"stateTransitionTime\": \"2020-06-09T20:59:58.8685257Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2020-06-09T20:53:05.2160828Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"autoPoolSpecification\": {\r\n \"autoPoolIdPrefix\": \"TestSpecPrefix\",\r\n \"poolLifetimeOption\": \"job\",\r\n \"keepAlive\": false,\r\n \"pool\": {\r\n \"vmSize\": \"small\",\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"resizeTimeout\": \"PT15M\",\r\n \"targetDedicatedNodes\": 3,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"osVersion\": \"*\"\r\n }\r\n }\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2020-06-09T20:53:05.2160828Z\",\r\n \"poolId\": \"TestSpecPrefix_FB6183E5-4DA2-4802-87C3-44CF977C3CB6\",\r\n \"terminateReason\": \"TaskFailed\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"performexitoptionsjobaction\"\r\n },\r\n {\r\n \"id\": \"testDisableEnableTerminateJobSchedule:job-1\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/testDisableEnableTerminateJobSchedule:job-1\",\r\n \"eTag\": \"0x8D80C98DC293DC1\",\r\n \"lastModified\": \"2020-06-09T17:16:34.1177793Z\",\r\n \"creationTime\": \"2020-06-09T17:16:34.092775Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2020-06-09T17:16:57.1458604Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2020-06-09T17:16:34.1177793Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2020-06-09T17:16:34.1177793Z\",\r\n \"endTime\": \"2020-06-09T17:16:57.1458604Z\",\r\n \"poolId\": \"testPool\",\r\n \"terminateReason\": \"TerminateWorkitem\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n },\r\n {\r\n \"id\": \"testDisableEnableTerminateJobSchedule:job-1\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/testDisableEnableTerminateJobSchedule:job-1\",\r\n \"eTag\": \"0x8D80BFA19BC0BCD\",\r\n \"lastModified\": \"2020-06-08T22:20:07.4408909Z\",\r\n \"creationTime\": \"2020-06-08T22:20:07.415902Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2020-06-08T22:20:30.3772604Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2020-06-08T22:20:07.4408909Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2020-06-08T22:20:07.4408909Z\",\r\n \"endTime\": \"2020-06-08T22:20:30.3772604Z\",\r\n \"poolId\": \"testPool\",\r\n \"terminateReason\": \"TerminateWorkitem\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#jobs\",\r\n \"value\": [\r\n {\r\n \"id\": \"testJobCompletesWhenTaskFails\",\r\n \"url\": \"https://mikeportal.eastus.batch.azure.com/jobs/testJobCompletesWhenTaskFails\",\r\n \"eTag\": \"0x8D9697490926C5F\",\r\n \"lastModified\": \"2021-08-27T16:06:01.2273759Z\",\r\n \"creationTime\": \"2021-08-27T15:59:39.7617875Z\",\r\n \"state\": \"terminating\",\r\n \"stateTransitionTime\": \"2021-08-27T16:06:01.2273759Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2021-08-27T15:59:39.7827835Z\",\r\n \"priority\": 0,\r\n \"maxParallelTasks\": -1,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"autoPoolSpecification\": {\r\n \"autoPoolIdPrefix\": \"TestSpecPrefix\",\r\n \"poolLifetimeOption\": \"job\",\r\n \"keepAlive\": false,\r\n \"pool\": {\r\n \"vmSize\": \"standard_d1_v2\",\r\n \"taskSlotsPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"resizeTimeout\": \"PT15M\",\r\n \"targetDedicatedNodes\": 1,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"osVersion\": \"*\"\r\n }\r\n }\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2021-08-27T15:59:39.7827835Z\",\r\n \"poolId\": \"TestSpecPrefix_D833BBF0-BF06-4FDC-BE52-740DF2250A49\",\r\n \"terminateReason\": \"TaskFailed\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"performexitoptionsjobaction\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/jobs?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAyMC0wMy0wMS4xMS4w", + "RequestUri": "/jobs?api-version=2021-06-01.14.0", + "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4w", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "fe61d113-10dd-4c53-97b0-62a6dbaa2582" + "2af8334d-874d-4993-b4b6-c9e9491184a1" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 21:02:11 GMT" + "Fri, 27 Aug 2021 16:07:42 GMT" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/13.0.20.15503", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", "AzurePowershell/Az1.0.0" ] }, @@ -1569,7 +1471,7 @@ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "5fda4ae4-8a0c-4005-94de-d5df900aac1d" + "814db624-ff58-4655-a818-f881cbc0a375" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1581,35 +1483,35 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 21:02:11 GMT" + "Fri, 27 Aug 2021 16:07:41 GMT" ], "Content-Type": [ "application/json; odata=minimalmetadata" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://prodtest6.francecentral.batch.azure.com/$metadata#jobs\",\r\n \"value\": [\r\n {\r\n \"id\": \"j1\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/j1\",\r\n \"eTag\": \"0x8D6EDE6BFE7A605\",\r\n \"lastModified\": \"2019-06-10T21:01:03.7394437Z\",\r\n \"creationTime\": \"2019-06-10T21:01:03.7183957Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2019-06-10T21:01:03.7394437Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"p1\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2019-06-10T21:01:03.7394437Z\",\r\n \"poolId\": \"p1\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n },\r\n {\r\n \"id\": \"js1:job-1\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/js1:job-1\",\r\n \"eTag\": \"0x8D6EDE6B58581C8\",\r\n \"lastModified\": \"2019-06-10T21:00:46.3190472Z\",\r\n \"creationTime\": \"2019-06-10T21:00:46.2950489Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2019-06-10T21:00:46.3190472Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"p1\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2019-06-10T21:00:46.3190472Z\",\r\n \"poolId\": \"p1\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n },\r\n {\r\n \"id\": \"test-aztk\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/test-aztk\",\r\n \"eTag\": \"0x8D7F5DD2D017DA9\",\r\n \"lastModified\": \"2020-05-11T18:57:38.7864489Z\",\r\n \"creationTime\": \"2020-05-11T18:57:38.7664384Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2020-05-11T18:57:38.7864489Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"test-aztk\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2020-05-11T18:57:38.7864489Z\",\r\n \"poolId\": \"test-aztk\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n },\r\n {\r\n \"id\": \"test-aztk-importlib-131\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/test-aztk-importlib-131\",\r\n \"eTag\": \"0x8D7F5DE7FDD4326\",\r\n \"lastModified\": \"2020-05-11T19:07:07.2966438Z\",\r\n \"creationTime\": \"2020-05-11T19:07:07.2746077Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2020-05-11T19:07:07.2966438Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"test-aztk-importlib-131\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2020-05-11T19:07:07.2966438Z\",\r\n \"poolId\": \"test-aztk-importlib-131\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n },\r\n {\r\n \"id\": \"test-aztk-no-fix\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/test-aztk-no-fix\",\r\n \"eTag\": \"0x8D7F5DDA00F0A5A\",\r\n \"lastModified\": \"2020-05-11T19:00:51.8132314Z\",\r\n \"creationTime\": \"2020-05-11T19:00:51.7922225Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2020-05-11T19:00:51.8132314Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"test-aztk-no-fix\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2020-05-11T19:00:51.8132314Z\",\r\n \"poolId\": \"test-aztk-no-fix\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n },\r\n {\r\n \"id\": \"testJobCompletesWhenTaskFails\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/testJobCompletesWhenTaskFails\",\r\n \"eTag\": \"0x8D80CB81203E1C9\",\r\n \"lastModified\": \"2020-06-09T20:59:58.8685257Z\",\r\n \"creationTime\": \"2020-06-09T20:53:05.1970818Z\",\r\n \"state\": \"terminating\",\r\n \"stateTransitionTime\": \"2020-06-09T20:59:58.8685257Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2020-06-09T20:53:05.2160828Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"autoPoolSpecification\": {\r\n \"autoPoolIdPrefix\": \"TestSpecPrefix\",\r\n \"poolLifetimeOption\": \"job\",\r\n \"keepAlive\": false,\r\n \"pool\": {\r\n \"vmSize\": \"small\",\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"resizeTimeout\": \"PT15M\",\r\n \"targetDedicatedNodes\": 3,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"osVersion\": \"*\"\r\n }\r\n }\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2020-06-09T20:53:05.2160828Z\",\r\n \"poolId\": \"TestSpecPrefix_FB6183E5-4DA2-4802-87C3-44CF977C3CB6\",\r\n \"terminateReason\": \"TaskFailed\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"performexitoptionsjobaction\"\r\n },\r\n {\r\n \"id\": \"testDisableEnableTerminateJobSchedule:job-1\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/testDisableEnableTerminateJobSchedule:job-1\",\r\n \"eTag\": \"0x8D80C98DC293DC1\",\r\n \"lastModified\": \"2020-06-09T17:16:34.1177793Z\",\r\n \"creationTime\": \"2020-06-09T17:16:34.092775Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2020-06-09T17:16:57.1458604Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2020-06-09T17:16:34.1177793Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2020-06-09T17:16:34.1177793Z\",\r\n \"endTime\": \"2020-06-09T17:16:57.1458604Z\",\r\n \"poolId\": \"testPool\",\r\n \"terminateReason\": \"TerminateWorkitem\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n },\r\n {\r\n \"id\": \"testDisableEnableTerminateJobSchedule:job-1\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/testDisableEnableTerminateJobSchedule:job-1\",\r\n \"eTag\": \"0x8D80BFA19BC0BCD\",\r\n \"lastModified\": \"2020-06-08T22:20:07.4408909Z\",\r\n \"creationTime\": \"2020-06-08T22:20:07.415902Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2020-06-08T22:20:30.3772604Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2020-06-08T22:20:07.4408909Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2020-06-08T22:20:07.4408909Z\",\r\n \"endTime\": \"2020-06-08T22:20:30.3772604Z\",\r\n \"poolId\": \"testPool\",\r\n \"terminateReason\": \"TerminateWorkitem\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#jobs\",\r\n \"value\": [\r\n {\r\n \"id\": \"testJobCompletesWhenTaskFails\",\r\n \"url\": \"https://mikeportal.eastus.batch.azure.com/jobs/testJobCompletesWhenTaskFails\",\r\n \"eTag\": \"0x8D9697490926C5F\",\r\n \"lastModified\": \"2021-08-27T16:06:01.2273759Z\",\r\n \"creationTime\": \"2021-08-27T15:59:39.7617875Z\",\r\n \"state\": \"terminating\",\r\n \"stateTransitionTime\": \"2021-08-27T16:06:01.2273759Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2021-08-27T15:59:39.7827835Z\",\r\n \"priority\": 0,\r\n \"maxParallelTasks\": -1,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"autoPoolSpecification\": {\r\n \"autoPoolIdPrefix\": \"TestSpecPrefix\",\r\n \"poolLifetimeOption\": \"job\",\r\n \"keepAlive\": false,\r\n \"pool\": {\r\n \"vmSize\": \"standard_d1_v2\",\r\n \"taskSlotsPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"resizeTimeout\": \"PT15M\",\r\n \"targetDedicatedNodes\": 1,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"osVersion\": \"*\"\r\n }\r\n }\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2021-08-27T15:59:39.7827835Z\",\r\n \"poolId\": \"TestSpecPrefix_D833BBF0-BF06-4FDC-BE52-740DF2250A49\",\r\n \"terminateReason\": \"TaskFailed\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"performexitoptionsjobaction\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/jobs?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAyMC0wMy0wMS4xMS4w", + "RequestUri": "/jobs?api-version=2021-06-01.14.0", + "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4w", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "c6a3407b-e94d-4213-b04b-c276e98a35a0" + "f50e3d17-743c-4070-a522-1de2a900dabc" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 21:02:32 GMT" + "Fri, 27 Aug 2021 16:08:03 GMT" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/13.0.20.15503", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", "AzurePowershell/Az1.0.0" ] }, @@ -1621,7 +1523,7 @@ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "ed7bcff9-c3b2-4a79-98e2-cd9aa132a2e1" + "42ebb326-2109-440f-9b3e-448be5271f45" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1633,35 +1535,35 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 21:02:32 GMT" + "Fri, 27 Aug 2021 16:08:01 GMT" ], "Content-Type": [ "application/json; odata=minimalmetadata" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://prodtest6.francecentral.batch.azure.com/$metadata#jobs\",\r\n \"value\": [\r\n {\r\n \"id\": \"j1\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/j1\",\r\n \"eTag\": \"0x8D6EDE6BFE7A605\",\r\n \"lastModified\": \"2019-06-10T21:01:03.7394437Z\",\r\n \"creationTime\": \"2019-06-10T21:01:03.7183957Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2019-06-10T21:01:03.7394437Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"p1\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2019-06-10T21:01:03.7394437Z\",\r\n \"poolId\": \"p1\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n },\r\n {\r\n \"id\": \"js1:job-1\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/js1:job-1\",\r\n \"eTag\": \"0x8D6EDE6B58581C8\",\r\n \"lastModified\": \"2019-06-10T21:00:46.3190472Z\",\r\n \"creationTime\": \"2019-06-10T21:00:46.2950489Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2019-06-10T21:00:46.3190472Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"p1\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2019-06-10T21:00:46.3190472Z\",\r\n \"poolId\": \"p1\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n },\r\n {\r\n \"id\": \"test-aztk\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/test-aztk\",\r\n \"eTag\": \"0x8D7F5DD2D017DA9\",\r\n \"lastModified\": \"2020-05-11T18:57:38.7864489Z\",\r\n \"creationTime\": \"2020-05-11T18:57:38.7664384Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2020-05-11T18:57:38.7864489Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"test-aztk\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2020-05-11T18:57:38.7864489Z\",\r\n \"poolId\": \"test-aztk\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n },\r\n {\r\n \"id\": \"test-aztk-importlib-131\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/test-aztk-importlib-131\",\r\n \"eTag\": \"0x8D7F5DE7FDD4326\",\r\n \"lastModified\": \"2020-05-11T19:07:07.2966438Z\",\r\n \"creationTime\": \"2020-05-11T19:07:07.2746077Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2020-05-11T19:07:07.2966438Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"test-aztk-importlib-131\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2020-05-11T19:07:07.2966438Z\",\r\n \"poolId\": \"test-aztk-importlib-131\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n },\r\n {\r\n \"id\": \"test-aztk-no-fix\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/test-aztk-no-fix\",\r\n \"eTag\": \"0x8D7F5DDA00F0A5A\",\r\n \"lastModified\": \"2020-05-11T19:00:51.8132314Z\",\r\n \"creationTime\": \"2020-05-11T19:00:51.7922225Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2020-05-11T19:00:51.8132314Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"test-aztk-no-fix\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2020-05-11T19:00:51.8132314Z\",\r\n \"poolId\": \"test-aztk-no-fix\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n },\r\n {\r\n \"id\": \"testDisableEnableTerminateJobSchedule:job-1\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/testDisableEnableTerminateJobSchedule:job-1\",\r\n \"eTag\": \"0x8D80C98DC293DC1\",\r\n \"lastModified\": \"2020-06-09T17:16:34.1177793Z\",\r\n \"creationTime\": \"2020-06-09T17:16:34.092775Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2020-06-09T17:16:57.1458604Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2020-06-09T17:16:34.1177793Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2020-06-09T17:16:34.1177793Z\",\r\n \"endTime\": \"2020-06-09T17:16:57.1458604Z\",\r\n \"poolId\": \"testPool\",\r\n \"terminateReason\": \"TerminateWorkitem\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n },\r\n {\r\n \"id\": \"testDisableEnableTerminateJobSchedule:job-1\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/testDisableEnableTerminateJobSchedule:job-1\",\r\n \"eTag\": \"0x8D80BFA19BC0BCD\",\r\n \"lastModified\": \"2020-06-08T22:20:07.4408909Z\",\r\n \"creationTime\": \"2020-06-08T22:20:07.415902Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2020-06-08T22:20:30.3772604Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2020-06-08T22:20:07.4408909Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2020-06-08T22:20:07.4408909Z\",\r\n \"endTime\": \"2020-06-08T22:20:30.3772604Z\",\r\n \"poolId\": \"testPool\",\r\n \"terminateReason\": \"TerminateWorkitem\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n },\r\n {\r\n \"id\": \"testJobCompletesWhenTaskFails\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/testJobCompletesWhenTaskFails\",\r\n \"eTag\": \"0x8D80CB81203E1C9\",\r\n \"lastModified\": \"2020-06-09T20:59:58.8685257Z\",\r\n \"creationTime\": \"2020-06-09T20:53:05.1970818Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2020-06-09T21:02:29.1571339Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2020-06-09T20:53:05.2160828Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"autoPoolSpecification\": {\r\n \"autoPoolIdPrefix\": \"TestSpecPrefix\",\r\n \"poolLifetimeOption\": \"job\",\r\n \"keepAlive\": false,\r\n \"pool\": {\r\n \"vmSize\": \"small\",\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"resizeTimeout\": \"PT15M\",\r\n \"targetDedicatedNodes\": 3,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"osVersion\": \"*\"\r\n }\r\n }\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2020-06-09T20:53:05.2160828Z\",\r\n \"endTime\": \"2020-06-09T21:02:29.1571339Z\",\r\n \"poolId\": \"TestSpecPrefix_FB6183E5-4DA2-4802-87C3-44CF977C3CB6\",\r\n \"terminateReason\": \"TaskFailed\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"performexitoptionsjobaction\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#jobs\",\r\n \"value\": [\r\n {\r\n \"id\": \"testJobCompletesWhenTaskFails\",\r\n \"url\": \"https://mikeportal.eastus.batch.azure.com/jobs/testJobCompletesWhenTaskFails\",\r\n \"eTag\": \"0x8D9697490926C5F\",\r\n \"lastModified\": \"2021-08-27T16:06:01.2273759Z\",\r\n \"creationTime\": \"2021-08-27T15:59:39.7617875Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2021-08-27T16:07:47.221505Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2021-08-27T15:59:39.7827835Z\",\r\n \"priority\": 0,\r\n \"maxParallelTasks\": -1,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"autoPoolSpecification\": {\r\n \"autoPoolIdPrefix\": \"TestSpecPrefix\",\r\n \"poolLifetimeOption\": \"job\",\r\n \"keepAlive\": false,\r\n \"pool\": {\r\n \"vmSize\": \"standard_d1_v2\",\r\n \"taskSlotsPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"resizeTimeout\": \"PT15M\",\r\n \"targetDedicatedNodes\": 1,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"osVersion\": \"*\"\r\n }\r\n }\r\n }\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2021-08-27T15:59:39.7827835Z\",\r\n \"endTime\": \"2021-08-27T16:07:47.221505Z\",\r\n \"poolId\": \"TestSpecPrefix_D833BBF0-BF06-4FDC-BE52-740DF2250A49\",\r\n \"terminateReason\": \"TaskFailed\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"performexitoptionsjobaction\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/jobs/testJobCompletesWhenTaskFails?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L2pvYnMvdGVzdEpvYkNvbXBsZXRlc1doZW5UYXNrRmFpbHM/YXBpLXZlcnNpb249MjAyMC0wMy0wMS4xMS4w", + "RequestUri": "/jobs/testJobCompletesWhenTaskFails?api-version=2021-06-01.14.0", + "EncodedRequestUri": "L2pvYnMvdGVzdEpvYkNvbXBsZXRlc1doZW5UYXNrRmFpbHM/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4w", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "91ef3a0f-16e5-476a-b7ae-9752bab191a4" + "8c911d70-2570-4ad0-a61f-cf7ad80c4111" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 21:02:52 GMT" + "Fri, 27 Aug 2021 16:08:23 GMT" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/13.0.20.15503", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", "AzurePowershell/Az1.0.0" ], "Content-Length": [ @@ -1676,7 +1578,7 @@ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "d8f06cdb-7902-44d2-8ecd-0c9c731f3c26" + "84f4c0d2-eda5-4f15-8ac2-462c1521d04d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1688,7 +1590,7 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 21:02:52 GMT" + "Fri, 27 Aug 2021 16:08:21 GMT" ] }, "ResponseBody": "", @@ -1697,9 +1599,9 @@ ], "Names": {}, "Variables": { - "SubscriptionId": "21abd678-18c5-4660-9fdd-8c5ba6b6fe1f", - "AZURE_BATCH_ACCOUNT": "prodtest6", - "AZURE_BATCH_ENDPOINT": "https://prodtest6.francecentral.batch.azure.com", - "AZURE_BATCH_RESOURCE_GROUP": "abc" + "SubscriptionId": "ba2358c2-42f2-4138-88df-7c68cf608bea", + "AZURE_BATCH_ACCOUNT": "mikeportal", + "AZURE_BATCH_ENDPOINT": "https://mikeportal.eastus.batch.azure.com", + "AZURE_BATCH_RESOURCE_GROUP": "batchportal" } } \ No newline at end of file diff --git a/src/Batch/Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.JobTests/TestDisableEnableTerminateJob.json b/src/Batch/Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.JobTests/TestDisableEnableTerminateJob.json index 6d09404476d1..29e876a47087 100644 --- a/src/Batch/Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.JobTests/TestDisableEnableTerminateJob.json +++ b/src/Batch/Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.JobTests/TestDisableEnableTerminateJob.json @@ -1,25 +1,25 @@ { "Entries": [ { - "RequestUri": "/jobs?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAyMC0wMy0wMS4xMS4w", + "RequestUri": "/jobs?api-version=2021-06-01.14.0", + "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4w", "RequestMethod": "POST", "RequestBody": "{\r\n \"id\": \"testDisableEnableTerminateJob\",\r\n \"priority\": 0,\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n}", "RequestHeaders": { "client-request-id": [ - "2228e6ec-2ba6-41f6-bc19-2569dac96244" + "56851fed-754d-422b-a15b-ce0a5122435b" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 20:51:44 GMT" + "Fri, 27 Aug 2021 15:59:26 GMT" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/13.0.20.15503", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", "AzurePowershell/Az1.0.0" ], "Content-Type": [ @@ -34,16 +34,16 @@ "chunked" ], "ETag": [ - "0x8D80CB6F88C197F" + "0x8D96973A4A18EDA" ], "Location": [ - "https://prodtest6.francecentral.batch.azure.com/jobs/job-1" + "https://mikeportal.eastus.batch.azure.com/jobs/job-1" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "424a434d-0006-42ec-9360-6a25ac7d4a0a" + "2a41fb53-eddc-43f4-875e-0e2ae3d1d2c1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -55,38 +55,41 @@ "3.0" ], "DataServiceId": [ - "https://prodtest6.francecentral.batch.azure.com/jobs/job-1" + "https://mikeportal.eastus.batch.azure.com/jobs/job-1" ], "Date": [ - "Tue, 09 Jun 2020 20:52:06 GMT" + "Fri, 27 Aug 2021 15:59:24 GMT" ], "Last-Modified": [ - "Tue, 09 Jun 2020 20:52:06 GMT" + "Fri, 27 Aug 2021 15:59:25 GMT" ] }, "ResponseBody": "", "StatusCode": 201 }, { - "RequestUri": "/jobs/testDisableEnableTerminateJob/disable?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L2pvYnMvdGVzdERpc2FibGVFbmFibGVUZXJtaW5hdGVKb2IvZGlzYWJsZT9hcGktdmVyc2lvbj0yMDIwLTAzLTAxLjExLjA=", + "RequestUri": "/jobs/testDisableEnableTerminateJob/disable?api-version=2021-06-01.14.0", + "EncodedRequestUri": "L2pvYnMvdGVzdERpc2FibGVFbmFibGVUZXJtaW5hdGVKb2IvZGlzYWJsZT9hcGktdmVyc2lvbj0yMDIxLTA2LTAxLjE0LjA=", "RequestMethod": "POST", "RequestBody": "{\r\n \"disableTasks\": \"terminate\"\r\n}", "RequestHeaders": { "client-request-id": [ - "c52aaffb-270c-45b0-aa1c-1ec82e9e1aac" + "95891489-9a5f-43e4-9248-62e3db410889" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 20:52:07 GMT" + "Fri, 27 Aug 2021 15:59:26 GMT" + ], + "x-ms-client-request-id": [ + "53785b76-d21d-4353-b437-b9c6fe5ffdb5" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/13.0.20.15503", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", "AzurePowershell/Az1.0.0" ], "Content-Type": [ @@ -101,13 +104,13 @@ "chunked" ], "ETag": [ - "0x8D80CB705C7F592" + "0x8D96973A51BB148" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "74d6f599-6233-40b7-984b-879cfa7a7e87" + "623d5837-7ff3-4f79-9650-509d2bf500d4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -119,38 +122,41 @@ "3.0" ], "DataServiceId": [ - "https://prodtest6.francecentral.batch.azure.com/jobs/testDisableEnableTerminateJob/disable" + "https://mikeportal.eastus.batch.azure.com/jobs/testDisableEnableTerminateJob/disable" ], "Date": [ - "Tue, 09 Jun 2020 20:52:28 GMT" + "Fri, 27 Aug 2021 15:59:25 GMT" ], "Last-Modified": [ - "Tue, 09 Jun 2020 20:52:28 GMT" + "Fri, 27 Aug 2021 15:59:26 GMT" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/jobs/testDisableEnableTerminateJob?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L2pvYnMvdGVzdERpc2FibGVFbmFibGVUZXJtaW5hdGVKb2I/YXBpLXZlcnNpb249MjAyMC0wMy0wMS4xMS4w", + "RequestUri": "/jobs/testDisableEnableTerminateJob?api-version=2021-06-01.14.0", + "EncodedRequestUri": "L2pvYnMvdGVzdERpc2FibGVFbmFibGVUZXJtaW5hdGVKb2I/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4w", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "3e2af29b-c398-4621-9f55-0d54fb6cce1f" + "25a45903-9982-4f6c-9bee-c6797e7c3e60" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 20:52:38 GMT" + "Fri, 27 Aug 2021 15:59:37 GMT" + ], + "x-ms-client-request-id": [ + "b2107ecd-4e34-4d22-b6bc-01a936d6c9fe" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/13.0.20.15503", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", "AzurePowershell/Az1.0.0" ] }, @@ -159,13 +165,13 @@ "chunked" ], "ETag": [ - "0x8D80CB705C7F592" + "0x8D96973A51BB148" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "bdb1c793-0773-4aad-b7b0-0641b6dff040" + "fcd70b28-7713-4199-b7ba-22b729e030d9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -177,38 +183,41 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 20:52:39 GMT" + "Fri, 27 Aug 2021 15:59:35 GMT" ], "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Tue, 09 Jun 2020 20:52:28 GMT" + "Fri, 27 Aug 2021 15:59:26 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://prodtest6.francecentral.batch.azure.com/$metadata#jobs/@Element\",\r\n \"id\": \"testDisableEnableTerminateJob\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/testDisableEnableTerminateJob\",\r\n \"eTag\": \"0x8D80CB705C7F592\",\r\n \"lastModified\": \"2020-06-09T20:52:28.8464274Z\",\r\n \"creationTime\": \"2020-06-09T20:52:06.6257475Z\",\r\n \"state\": \"disabled\",\r\n \"stateTransitionTime\": \"2020-06-09T20:52:28.8884309Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2020-06-09T20:52:06.6437503Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2020-06-09T20:52:06.6437503Z\",\r\n \"poolId\": \"testPool\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#jobs/@Element\",\r\n \"id\": \"testDisableEnableTerminateJob\",\r\n \"url\": \"https://mikeportal.eastus.batch.azure.com/jobs/testDisableEnableTerminateJob\",\r\n \"eTag\": \"0x8D96973A51BB148\",\r\n \"lastModified\": \"2021-08-27T15:59:26.1846856Z\",\r\n \"creationTime\": \"2021-08-27T15:59:25.3442629Z\",\r\n \"state\": \"disabled\",\r\n \"stateTransitionTime\": \"2021-08-27T15:59:26.7814797Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2021-08-27T15:59:25.384265Z\",\r\n \"priority\": 0,\r\n \"maxParallelTasks\": -1,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2021-08-27T15:59:25.384265Z\",\r\n \"poolId\": \"testPool\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/jobs/testDisableEnableTerminateJob?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L2pvYnMvdGVzdERpc2FibGVFbmFibGVUZXJtaW5hdGVKb2I/YXBpLXZlcnNpb249MjAyMC0wMy0wMS4xMS4w", + "RequestUri": "/jobs/testDisableEnableTerminateJob?api-version=2021-06-01.14.0", + "EncodedRequestUri": "L2pvYnMvdGVzdERpc2FibGVFbmFibGVUZXJtaW5hdGVKb2I/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4w", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "006c0bfc-95df-4908-a978-932a1db981df" + "ddb0aa41-52d0-4b08-83ac-5bce72b9ead9" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 20:52:39 GMT" + "Fri, 27 Aug 2021 15:59:37 GMT" + ], + "x-ms-client-request-id": [ + "a7d401ee-cacd-46ff-a750-27a4873b9c0e" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/13.0.20.15503", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", "AzurePowershell/Az1.0.0" ] }, @@ -217,13 +226,13 @@ "chunked" ], "ETag": [ - "0x8D80CB70C4CD3E9" + "0x8D96973AB5B1A6F" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "ab93416e-a826-4038-8c46-16a009c4562c" + "ec1b076f-8283-4d25-98d1-a5ce6b1da4ed" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -235,38 +244,41 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 20:52:39 GMT" + "Fri, 27 Aug 2021 15:59:35 GMT" ], "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Tue, 09 Jun 2020 20:52:39 GMT" + "Fri, 27 Aug 2021 15:59:36 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://prodtest6.francecentral.batch.azure.com/$metadata#jobs/@Element\",\r\n \"id\": \"testDisableEnableTerminateJob\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/testDisableEnableTerminateJob\",\r\n \"eTag\": \"0x8D80CB70C4CD3E9\",\r\n \"lastModified\": \"2020-06-09T20:52:39.7835241Z\",\r\n \"creationTime\": \"2020-06-09T20:52:06.6257475Z\",\r\n \"state\": \"terminating\",\r\n \"stateTransitionTime\": \"2020-06-09T20:52:39.7835241Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2020-06-09T20:52:39.3395123Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2020-06-09T20:52:06.6437503Z\",\r\n \"poolId\": \"testPool\",\r\n \"terminateReason\": \"UserTerminate\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#jobs/@Element\",\r\n \"id\": \"testDisableEnableTerminateJob\",\r\n \"url\": \"https://mikeportal.eastus.batch.azure.com/jobs/testDisableEnableTerminateJob\",\r\n \"eTag\": \"0x8D96973AB5B1A6F\",\r\n \"lastModified\": \"2021-08-27T15:59:36.6665839Z\",\r\n \"creationTime\": \"2021-08-27T15:59:25.3442629Z\",\r\n \"state\": \"terminating\",\r\n \"stateTransitionTime\": \"2021-08-27T15:59:36.6665839Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2021-08-27T15:59:36.5015162Z\",\r\n \"priority\": 0,\r\n \"maxParallelTasks\": -1,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2021-08-27T15:59:25.384265Z\",\r\n \"poolId\": \"testPool\",\r\n \"terminateReason\": \"UserTerminate\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/jobs/testDisableEnableTerminateJob/enable?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L2pvYnMvdGVzdERpc2FibGVFbmFibGVUZXJtaW5hdGVKb2IvZW5hYmxlP2FwaS12ZXJzaW9uPTIwMjAtMDMtMDEuMTEuMA==", + "RequestUri": "/jobs/testDisableEnableTerminateJob/enable?api-version=2021-06-01.14.0", + "EncodedRequestUri": "L2pvYnMvdGVzdERpc2FibGVFbmFibGVUZXJtaW5hdGVKb2IvZW5hYmxlP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDEuMTQuMA==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "e6d75288-d1b7-4db5-afaf-39b45ae8749f" + "ceb82c00-910d-46bc-be7d-983855768c8d" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 20:52:39 GMT" + "Fri, 27 Aug 2021 15:59:37 GMT" + ], + "x-ms-client-request-id": [ + "aaeac647-c874-485d-90c7-6c7a1738352c" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/13.0.20.15503", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", "AzurePowershell/Az1.0.0" ], "Content-Length": [ @@ -278,13 +290,13 @@ "chunked" ], "ETag": [ - "0x8D80CB70C0913B3" + "0x8D96973AB41EA7A" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "0f0d7996-835f-4ed4-8533-df36ebaffa1d" + "2ef5b872-6ef6-4f5b-80cb-a8327dbd5dd8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -296,38 +308,41 @@ "3.0" ], "DataServiceId": [ - "https://prodtest6.francecentral.batch.azure.com/jobs/testDisableEnableTerminateJob/enable" + "https://mikeportal.eastus.batch.azure.com/jobs/testDisableEnableTerminateJob/enable" ], "Date": [ - "Tue, 09 Jun 2020 20:52:39 GMT" + "Fri, 27 Aug 2021 15:59:35 GMT" ], "Last-Modified": [ - "Tue, 09 Jun 2020 20:52:39 GMT" + "Fri, 27 Aug 2021 15:59:36 GMT" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/jobs?api-version=2020-03-01.11.0&$filter=id%20eq%20%27testDisableEnableTerminateJob%27", - "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAyMC0wMy0wMS4xMS4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3REaXNhYmxlRW5hYmxlVGVybWluYXRlSm9iJTI3", + "RequestUri": "/jobs?api-version=2021-06-01.14.0&$filter=id%20eq%20%27testDisableEnableTerminateJob%27", + "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3REaXNhYmxlRW5hYmxlVGVybWluYXRlSm9iJTI3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "a639af05-8df5-4ee8-8fda-3ee6935d612e" + "5ba24187-044b-4489-bdd8-649586d64695" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 20:52:39 GMT" + "Fri, 27 Aug 2021 15:59:37 GMT" + ], + "x-ms-client-request-id": [ + "d173776d-c9bd-4350-93b3-c296eac9ad2d" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/13.0.20.15503", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", "AzurePowershell/Az1.0.0" ] }, @@ -339,7 +354,7 @@ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "9f773298-c999-4632-97fc-61984286873b" + "66670887-5d0b-4b53-9c29-a32f5934e026" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -351,35 +366,38 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 20:52:39 GMT" + "Fri, 27 Aug 2021 15:59:35 GMT" ], "Content-Type": [ "application/json; odata=minimalmetadata" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://prodtest6.francecentral.batch.azure.com/$metadata#jobs\",\r\n \"value\": [\r\n {\r\n \"id\": \"testDisableEnableTerminateJob\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/testDisableEnableTerminateJob\",\r\n \"eTag\": \"0x8D80CB70C0913B3\",\r\n \"lastModified\": \"2020-06-09T20:52:39.3395123Z\",\r\n \"creationTime\": \"2020-06-09T20:52:06.6257475Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2020-06-09T20:52:39.3395123Z\",\r\n \"previousState\": \"disabled\",\r\n \"previousStateTransitionTime\": \"2020-06-09T20:52:28.8884309Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2020-06-09T20:52:06.6437503Z\",\r\n \"poolId\": \"testPool\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#jobs\",\r\n \"value\": [\r\n {\r\n \"id\": \"testDisableEnableTerminateJob\",\r\n \"url\": \"https://mikeportal.eastus.batch.azure.com/jobs/testDisableEnableTerminateJob\",\r\n \"eTag\": \"0x8D96973AB41EA7A\",\r\n \"lastModified\": \"2021-08-27T15:59:36.5015162Z\",\r\n \"creationTime\": \"2021-08-27T15:59:25.3442629Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2021-08-27T15:59:36.5015162Z\",\r\n \"previousState\": \"disabled\",\r\n \"previousStateTransitionTime\": \"2021-08-27T15:59:26.7814797Z\",\r\n \"priority\": 0,\r\n \"maxParallelTasks\": -1,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2021-08-27T15:59:25.384265Z\",\r\n \"poolId\": \"testPool\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/jobs/testDisableEnableTerminateJob/terminate?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L2pvYnMvdGVzdERpc2FibGVFbmFibGVUZXJtaW5hdGVKb2IvdGVybWluYXRlP2FwaS12ZXJzaW9uPTIwMjAtMDMtMDEuMTEuMA==", + "RequestUri": "/jobs/testDisableEnableTerminateJob/terminate?api-version=2021-06-01.14.0", + "EncodedRequestUri": "L2pvYnMvdGVzdERpc2FibGVFbmFibGVUZXJtaW5hdGVKb2IvdGVybWluYXRlP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDEuMTQuMA==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "390bec50-7e88-4f42-a653-6e536d019277" + "357bcb6b-8c07-48b7-860b-c85d685e9b09" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 20:52:39 GMT" + "Fri, 27 Aug 2021 15:59:37 GMT" + ], + "x-ms-client-request-id": [ + "65d6c0ab-7145-4807-a736-626a5bbcd747" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/13.0.20.15503", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", "AzurePowershell/Az1.0.0" ], "Content-Length": [ @@ -391,13 +409,13 @@ "chunked" ], "ETag": [ - "0x8D80CB70C4CD3E9" + "0x8D96973AB5B1A6F" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "67ef15bb-f17c-4bb8-b5ce-e74e8dfa5ffd" + "7998ecf8-b37d-4270-8b1f-179b2ccec7fb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -409,38 +427,38 @@ "3.0" ], "DataServiceId": [ - "https://prodtest6.francecentral.batch.azure.com/jobs/testDisableEnableTerminateJob/terminate" + "https://mikeportal.eastus.batch.azure.com/jobs/testDisableEnableTerminateJob/terminate" ], "Date": [ - "Tue, 09 Jun 2020 20:52:39 GMT" + "Fri, 27 Aug 2021 15:59:35 GMT" ], "Last-Modified": [ - "Tue, 09 Jun 2020 20:52:39 GMT" + "Fri, 27 Aug 2021 15:59:36 GMT" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/jobs/testDisableEnableTerminateJob?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L2pvYnMvdGVzdERpc2FibGVFbmFibGVUZXJtaW5hdGVKb2I/YXBpLXZlcnNpb249MjAyMC0wMy0wMS4xMS4w", + "RequestUri": "/jobs/testDisableEnableTerminateJob?api-version=2021-06-01.14.0", + "EncodedRequestUri": "L2pvYnMvdGVzdERpc2FibGVFbmFibGVUZXJtaW5hdGVKb2I/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4w", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "ebb7a325-70dd-4b4d-ac46-b60b44dd79c3" + "74aa21e0-3119-438c-8211-9c403d53e339" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 20:52:40 GMT" + "Fri, 27 Aug 2021 15:59:37 GMT" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/13.0.20.15503", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", "AzurePowershell/Az1.0.0" ], "Content-Length": [ @@ -455,7 +473,7 @@ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "0abd7c0c-112c-4fde-8771-a6a6c3b0b565" + "9b5e6e4b-bb5e-4622-8b52-07d63cc67a23" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -467,7 +485,7 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 20:52:41 GMT" + "Fri, 27 Aug 2021 15:59:36 GMT" ] }, "ResponseBody": "", @@ -476,9 +494,9 @@ ], "Names": {}, "Variables": { - "SubscriptionId": "21abd678-18c5-4660-9fdd-8c5ba6b6fe1f", - "AZURE_BATCH_ACCOUNT": "prodtest6", - "AZURE_BATCH_ENDPOINT": "https://prodtest6.francecentral.batch.azure.com", - "AZURE_BATCH_RESOURCE_GROUP": "abc" + "SubscriptionId": "ba2358c2-42f2-4138-88df-7c68cf608bea", + "AZURE_BATCH_ACCOUNT": "mikeportal", + "AZURE_BATCH_ENDPOINT": "https://mikeportal.eastus.batch.azure.com", + "AZURE_BATCH_RESOURCE_GROUP": "batchportal" } } \ No newline at end of file diff --git a/src/Batch/Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.JobTests/TestJobCRUD.json b/src/Batch/Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.JobTests/TestJobCRUD.json index 0a037a004293..880b1feb6995 100644 --- a/src/Batch/Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.JobTests/TestJobCRUD.json +++ b/src/Batch/Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.JobTests/TestJobCRUD.json @@ -1,25 +1,28 @@ { "Entries": [ { - "RequestUri": "/jobs?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAyMC0wMy0wMS4xMS4w", + "RequestUri": "/jobs?api-version=2021-06-01.14.0", + "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4w", "RequestMethod": "POST", "RequestBody": "{\r\n \"id\": \"job1\",\r\n \"priority\": 0,\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n },\r\n \"usesTaskDependencies\": false\r\n}", "RequestHeaders": { "client-request-id": [ - "d811efe9-0ab2-4dd6-928e-3490e239fcbe" + "b2d7f623-8ea7-479d-a470-58c22f6a3f28" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 21:02:54 GMT" + "Fri, 27 Aug 2021 16:08:29 GMT" + ], + "x-ms-client-request-id": [ + "04f3f819-fb01-4885-9db1-edefb324aedf" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/13.0.20.15503", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", "AzurePowershell/Az1.0.0" ], "Content-Type": [ @@ -34,16 +37,16 @@ "chunked" ], "ETag": [ - "0x8D80CB8879C3DE0" + "0x8D96974E871AB06" ], "Location": [ - "https://prodtest6.francecentral.batch.azure.com/jobs/job-1" + "https://mikeportal.eastus.batch.azure.com/jobs/job-1" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "f7f9b856-a06b-43fb-8d51-e00ab0c5e865" + "d1ed690a-2385-4f73-acee-211cae788000" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -55,38 +58,41 @@ "3.0" ], "DataServiceId": [ - "https://prodtest6.francecentral.batch.azure.com/jobs/job-1" + "https://mikeportal.eastus.batch.azure.com/jobs/job-1" ], "Date": [ - "Tue, 09 Jun 2020 21:03:16 GMT" + "Fri, 27 Aug 2021 16:08:28 GMT" ], "Last-Modified": [ - "Tue, 09 Jun 2020 21:03:16 GMT" + "Fri, 27 Aug 2021 16:08:28 GMT" ] }, "ResponseBody": "", "StatusCode": 201 }, { - "RequestUri": "/jobs?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAyMC0wMy0wMS4xMS4w", + "RequestUri": "/jobs?api-version=2021-06-01.14.0", + "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4w", "RequestMethod": "POST", "RequestBody": "{\r\n \"id\": \"job2\",\r\n \"priority\": 3,\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool2\"\r\n },\r\n \"usesTaskDependencies\": false\r\n}", "RequestHeaders": { "client-request-id": [ - "2e777c31-0a1c-4cc8-8a9a-6d2088996333" + "ba8f9a72-b9aa-4557-bc0e-0b8bed7f3a8e" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 21:03:16 GMT" + "Fri, 27 Aug 2021 16:08:29 GMT" + ], + "x-ms-client-request-id": [ + "2a40cf2c-e6ae-425e-b853-3555d9a6b273" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/13.0.20.15503", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", "AzurePowershell/Az1.0.0" ], "Content-Type": [ @@ -101,16 +107,16 @@ "chunked" ], "ETag": [ - "0x8D80CB887BC74F5" + "0x8D96974E8855A0F" ], "Location": [ - "https://prodtest6.francecentral.batch.azure.com/jobs/job-1" + "https://mikeportal.eastus.batch.azure.com/jobs/job-1" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "b00e4ed5-453a-4b87-a47e-679c3e4d1275" + "ad58fb3a-37f2-47b0-85de-14e99af1e316" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -122,38 +128,41 @@ "3.0" ], "DataServiceId": [ - "https://prodtest6.francecentral.batch.azure.com/jobs/job-1" + "https://mikeportal.eastus.batch.azure.com/jobs/job-1" ], "Date": [ - "Tue, 09 Jun 2020 21:03:16 GMT" + "Fri, 27 Aug 2021 16:08:28 GMT" ], "Last-Modified": [ - "Tue, 09 Jun 2020 21:03:16 GMT" + "Fri, 27 Aug 2021 16:08:28 GMT" ] }, "ResponseBody": "", "StatusCode": 201 }, { - "RequestUri": "/jobs?api-version=2020-03-01.11.0&$filter=id%20eq%20%27job1%27%20or%20id%20eq%20%27job2%27", - "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAyMC0wMy0wMS4xMS4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN2pvYjElMjclMjBvciUyMGlkJTIwZXElMjAlMjdqb2IyJTI3", + "RequestUri": "/jobs?api-version=2021-06-01.14.0&$filter=id%20eq%20%27job1%27%20or%20id%20eq%20%27job2%27", + "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN2pvYjElMjclMjBvciUyMGlkJTIwZXElMjAlMjdqb2IyJTI3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "16828132-4461-48c0-b9cc-9431ebe7a055" + "498c1378-2a22-47e0-99b1-25b93c2c5d16" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 21:03:16 GMT" + "Fri, 27 Aug 2021 16:08:29 GMT" + ], + "x-ms-client-request-id": [ + "bdfcd9d7-e7e4-4a06-8e81-766505b30a80" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/13.0.20.15503", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", "AzurePowershell/Az1.0.0" ] }, @@ -165,7 +174,7 @@ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "71244db0-c726-4985-9b7b-15f2bf33457f" + "f63ac4a8-ea83-49ed-a8d4-63eafc94508e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -177,35 +186,38 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 21:03:16 GMT" + "Fri, 27 Aug 2021 16:08:28 GMT" ], "Content-Type": [ "application/json; odata=minimalmetadata" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://prodtest6.francecentral.batch.azure.com/$metadata#jobs\",\r\n \"value\": [\r\n {\r\n \"id\": \"job1\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/job1\",\r\n \"eTag\": \"0x8D80CB8879C3DE0\",\r\n \"lastModified\": \"2020-06-09T21:03:16.1604576Z\",\r\n \"creationTime\": \"2020-06-09T21:03:16.1394551Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2020-06-09T21:03:16.1604576Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2020-06-09T21:03:16.1604576Z\",\r\n \"poolId\": \"testPool\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n },\r\n {\r\n \"id\": \"job2\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/job2\",\r\n \"eTag\": \"0x8D80CB887BC74F5\",\r\n \"lastModified\": \"2020-06-09T21:03:16.3715829Z\",\r\n \"creationTime\": \"2020-06-09T21:03:16.3522682Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2020-06-09T21:03:16.3715829Z\",\r\n \"priority\": 3,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool2\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2020-06-09T21:03:16.3715829Z\",\r\n \"poolId\": \"testPool2\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#jobs\",\r\n \"value\": [\r\n {\r\n \"id\": \"job1\",\r\n \"url\": \"https://mikeportal.eastus.batch.azure.com/jobs/job1\",\r\n \"eTag\": \"0x8D96974E871AB06\",\r\n \"lastModified\": \"2021-08-27T16:08:28.6522118Z\",\r\n \"creationTime\": \"2021-08-27T16:08:28.635208Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2021-08-27T16:08:28.6522118Z\",\r\n \"priority\": 0,\r\n \"maxParallelTasks\": -1,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2021-08-27T16:08:28.6522118Z\",\r\n \"poolId\": \"testPool\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n },\r\n {\r\n \"id\": \"job2\",\r\n \"url\": \"https://mikeportal.eastus.batch.azure.com/jobs/job2\",\r\n \"eTag\": \"0x8D96974E8855A0F\",\r\n \"lastModified\": \"2021-08-27T16:08:28.7812111Z\",\r\n \"creationTime\": \"2021-08-27T16:08:28.7642117Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2021-08-27T16:08:28.7812111Z\",\r\n \"priority\": 3,\r\n \"maxParallelTasks\": -1,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool2\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2021-08-27T16:08:28.7812111Z\",\r\n \"poolId\": \"testPool2\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/jobs/job2?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L2pvYnMvam9iMj9hcGktdmVyc2lvbj0yMDIwLTAzLTAxLjExLjA=", + "RequestUri": "/jobs/job2?api-version=2021-06-01.14.0", + "EncodedRequestUri": "L2pvYnMvam9iMj9hcGktdmVyc2lvbj0yMDIxLTA2LTAxLjE0LjA=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"priority\": 5,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool2\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\"\r\n}", "RequestHeaders": { "client-request-id": [ - "fb026eb0-d15a-4007-8853-f1c0b282a70e" + "19ca55ce-57d9-49bb-a014-fe69cd12fcb5" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 21:03:16 GMT" + "Fri, 27 Aug 2021 16:08:29 GMT" + ], + "x-ms-client-request-id": [ + "1cd924d4-e127-4b7a-83e3-cb863a6aed16" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/13.0.20.15503", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", "AzurePowershell/Az1.0.0" ], "Content-Type": [ @@ -220,13 +232,13 @@ "chunked" ], "ETag": [ - "0x8D80CB887F90CDD" + "0x8D96974E8AB9313" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "02d95bf0-477d-4a32-844f-706927817794" + "58116081-89d3-4499-8cd3-923de96d5f7a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -238,38 +250,41 @@ "3.0" ], "DataServiceId": [ - "https://prodtest6.francecentral.batch.azure.com/jobs/job2" + "https://mikeportal.eastus.batch.azure.com/jobs/job2" ], "Date": [ - "Tue, 09 Jun 2020 21:03:16 GMT" + "Fri, 27 Aug 2021 16:08:28 GMT" ], "Last-Modified": [ - "Tue, 09 Jun 2020 21:03:16 GMT" + "Fri, 27 Aug 2021 16:08:29 GMT" ] }, "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/jobs/job2?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L2pvYnMvam9iMj9hcGktdmVyc2lvbj0yMDIwLTAzLTAxLjExLjA=", + "RequestUri": "/jobs/job2?api-version=2021-06-01.14.0", + "EncodedRequestUri": "L2pvYnMvam9iMj9hcGktdmVyc2lvbj0yMDIxLTA2LTAxLjE0LjA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "60749693-153b-4df3-8880-78025f08be9a" + "48baf4ba-728a-4531-b1b4-83e1ae348753" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 21:03:16 GMT" + "Fri, 27 Aug 2021 16:08:30 GMT" + ], + "x-ms-client-request-id": [ + "db46040c-8c38-4941-ae8a-90a11d244b2f" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/13.0.20.15503", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", "AzurePowershell/Az1.0.0" ] }, @@ -278,13 +293,13 @@ "chunked" ], "ETag": [ - "0x8D80CB887F90CDD" + "0x8D96974E8AB9313" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "159fd4fc-e6c9-41c2-80f6-08f6dbcbc8c2" + "b3c597f0-7630-4a39-8d7c-38bd15cd97c2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -296,38 +311,41 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 21:03:16 GMT" + "Fri, 27 Aug 2021 16:08:28 GMT" ], "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Tue, 09 Jun 2020 21:03:16 GMT" + "Fri, 27 Aug 2021 16:08:29 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://prodtest6.francecentral.batch.azure.com/$metadata#jobs/@Element\",\r\n \"id\": \"job2\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/job2\",\r\n \"eTag\": \"0x8D80CB887F90CDD\",\r\n \"lastModified\": \"2020-06-09T21:03:16.7686877Z\",\r\n \"creationTime\": \"2020-06-09T21:03:16.3522682Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2020-06-09T21:03:16.3715829Z\",\r\n \"priority\": 5,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool2\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2020-06-09T21:03:16.3715829Z\",\r\n \"poolId\": \"testPool2\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#jobs/@Element\",\r\n \"id\": \"job2\",\r\n \"url\": \"https://mikeportal.eastus.batch.azure.com/jobs/job2\",\r\n \"eTag\": \"0x8D96974E8AB9313\",\r\n \"lastModified\": \"2021-08-27T16:08:29.0317075Z\",\r\n \"creationTime\": \"2021-08-27T16:08:28.7642117Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2021-08-27T16:08:28.7812111Z\",\r\n \"priority\": 5,\r\n \"maxParallelTasks\": -1,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool2\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2021-08-27T16:08:28.7812111Z\",\r\n \"poolId\": \"testPool2\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/jobs/job1?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L2pvYnMvam9iMT9hcGktdmVyc2lvbj0yMDIwLTAzLTAxLjExLjA=", + "RequestUri": "/jobs/job1?api-version=2021-06-01.14.0", + "EncodedRequestUri": "L2pvYnMvam9iMT9hcGktdmVyc2lvbj0yMDIxLTA2LTAxLjE0LjA=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "0b93f176-9f91-410b-939b-f3e6bbd54d94" + "14c129b7-b1e4-47a4-90b3-295d354aab90" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 21:03:16 GMT" + "Fri, 27 Aug 2021 16:08:30 GMT" + ], + "x-ms-client-request-id": [ + "c42a9d83-7f0d-441c-a89a-8fa6f8faebe3" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/13.0.20.15503", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", "AzurePowershell/Az1.0.0" ], "Content-Length": [ @@ -342,7 +360,7 @@ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "c5cd3019-4e8b-40a1-a097-48a2122c2d4d" + "c3ef9186-000d-47e4-a141-1b9f79265e2f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -354,32 +372,35 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 21:03:17 GMT" + "Fri, 27 Aug 2021 16:08:28 GMT" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/jobs/job2?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L2pvYnMvam9iMj9hcGktdmVyc2lvbj0yMDIwLTAzLTAxLjExLjA=", + "RequestUri": "/jobs/job2?api-version=2021-06-01.14.0", + "EncodedRequestUri": "L2pvYnMvam9iMj9hcGktdmVyc2lvbj0yMDIxLTA2LTAxLjE0LjA=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "7f2ff972-a4ea-4a83-8d47-313b115033ac" + "a537d0f2-e72f-4fc8-b973-e7029d499d11" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 21:03:17 GMT" + "Fri, 27 Aug 2021 16:08:30 GMT" + ], + "x-ms-client-request-id": [ + "60b309d2-0d34-439a-9e20-b2059127a1fc" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/13.0.20.15503", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", "AzurePowershell/Az1.0.0" ], "Content-Length": [ @@ -394,7 +415,7 @@ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "c8649d1f-f623-4908-9220-9032933a12aa" + "da0471ee-62cd-4f93-abfd-1380d15b48da" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -406,32 +427,35 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 21:03:17 GMT" + "Fri, 27 Aug 2021 16:08:28 GMT" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/jobs?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAyMC0wMy0wMS4xMS4w", + "RequestUri": "/jobs?api-version=2021-06-01.14.0", + "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4w", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "5e21d6e7-ab6a-4cbd-8147-54b3d2aa9307" + "e4517e04-c2cb-4b2c-8211-98036c6bbfe1" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 21:03:17 GMT" + "Fri, 27 Aug 2021 16:08:30 GMT" + ], + "x-ms-client-request-id": [ + "185c0c6f-fd69-4cae-a6d0-a2dc7af94214" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/13.0.20.15503", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", "AzurePowershell/Az1.0.0" ] }, @@ -443,7 +467,7 @@ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "24320807-7516-4d5c-9d05-617f54e7c61f" + "788ff20b-8e53-46ca-b03b-5b444bbd4773" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -455,21 +479,21 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 21:03:17 GMT" + "Fri, 27 Aug 2021 16:08:28 GMT" ], "Content-Type": [ "application/json; odata=minimalmetadata" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://prodtest6.francecentral.batch.azure.com/$metadata#jobs\",\r\n \"value\": [\r\n {\r\n \"id\": \"j1\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/j1\",\r\n \"eTag\": \"0x8D6EDE6BFE7A605\",\r\n \"lastModified\": \"2019-06-10T21:01:03.7394437Z\",\r\n \"creationTime\": \"2019-06-10T21:01:03.7183957Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2019-06-10T21:01:03.7394437Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"p1\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2019-06-10T21:01:03.7394437Z\",\r\n \"poolId\": \"p1\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n },\r\n {\r\n \"id\": \"js1:job-1\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/js1:job-1\",\r\n \"eTag\": \"0x8D6EDE6B58581C8\",\r\n \"lastModified\": \"2019-06-10T21:00:46.3190472Z\",\r\n \"creationTime\": \"2019-06-10T21:00:46.2950489Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2019-06-10T21:00:46.3190472Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"p1\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2019-06-10T21:00:46.3190472Z\",\r\n \"poolId\": \"p1\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n },\r\n {\r\n \"id\": \"test-aztk\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/test-aztk\",\r\n \"eTag\": \"0x8D7F5DD2D017DA9\",\r\n \"lastModified\": \"2020-05-11T18:57:38.7864489Z\",\r\n \"creationTime\": \"2020-05-11T18:57:38.7664384Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2020-05-11T18:57:38.7864489Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"test-aztk\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2020-05-11T18:57:38.7864489Z\",\r\n \"poolId\": \"test-aztk\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n },\r\n {\r\n \"id\": \"test-aztk-importlib-131\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/test-aztk-importlib-131\",\r\n \"eTag\": \"0x8D7F5DE7FDD4326\",\r\n \"lastModified\": \"2020-05-11T19:07:07.2966438Z\",\r\n \"creationTime\": \"2020-05-11T19:07:07.2746077Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2020-05-11T19:07:07.2966438Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"test-aztk-importlib-131\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2020-05-11T19:07:07.2966438Z\",\r\n \"poolId\": \"test-aztk-importlib-131\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n },\r\n {\r\n \"id\": \"test-aztk-no-fix\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/test-aztk-no-fix\",\r\n \"eTag\": \"0x8D7F5DDA00F0A5A\",\r\n \"lastModified\": \"2020-05-11T19:00:51.8132314Z\",\r\n \"creationTime\": \"2020-05-11T19:00:51.7922225Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2020-05-11T19:00:51.8132314Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"test-aztk-no-fix\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2020-05-11T19:00:51.8132314Z\",\r\n \"poolId\": \"test-aztk-no-fix\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n },\r\n {\r\n \"id\": \"testDisableEnableTerminateJobSchedule:job-1\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/testDisableEnableTerminateJobSchedule:job-1\",\r\n \"eTag\": \"0x8D80C98DC293DC1\",\r\n \"lastModified\": \"2020-06-09T17:16:34.1177793Z\",\r\n \"creationTime\": \"2020-06-09T17:16:34.092775Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2020-06-09T17:16:57.1458604Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2020-06-09T17:16:34.1177793Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2020-06-09T17:16:34.1177793Z\",\r\n \"endTime\": \"2020-06-09T17:16:57.1458604Z\",\r\n \"poolId\": \"testPool\",\r\n \"terminateReason\": \"TerminateWorkitem\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n },\r\n {\r\n \"id\": \"testDisableEnableTerminateJobSchedule:job-1\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/testDisableEnableTerminateJobSchedule:job-1\",\r\n \"eTag\": \"0x8D80BFA19BC0BCD\",\r\n \"lastModified\": \"2020-06-08T22:20:07.4408909Z\",\r\n \"creationTime\": \"2020-06-08T22:20:07.415902Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2020-06-08T22:20:30.3772604Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2020-06-08T22:20:07.4408909Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2020-06-08T22:20:07.4408909Z\",\r\n \"endTime\": \"2020-06-08T22:20:30.3772604Z\",\r\n \"poolId\": \"testPool\",\r\n \"terminateReason\": \"TerminateWorkitem\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#jobs\",\r\n \"value\": [\r\n {\r\n \"id\": \"job1\",\r\n \"url\": \"https://mikeportal.eastus.batch.azure.com/jobs/job1\",\r\n \"eTag\": \"0x8D96974E871AB06\",\r\n \"lastModified\": \"2021-08-27T16:08:28.6522118Z\",\r\n \"creationTime\": \"2021-08-27T16:08:28.635208Z\",\r\n \"state\": \"deleting\",\r\n \"stateTransitionTime\": \"2021-08-27T16:08:29.1807109Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2021-08-27T16:08:28.6522118Z\",\r\n \"priority\": 0,\r\n \"maxParallelTasks\": -1,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2021-08-27T16:08:28.6522118Z\",\r\n \"poolId\": \"testPool\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n }\r\n ]\r\n}", "StatusCode": 200 } ], "Names": {}, "Variables": { - "SubscriptionId": "21abd678-18c5-4660-9fdd-8c5ba6b6fe1f", - "AZURE_BATCH_ACCOUNT": "prodtest6", - "AZURE_BATCH_ENDPOINT": "https://prodtest6.francecentral.batch.azure.com", - "AZURE_BATCH_RESOURCE_GROUP": "abc" + "SubscriptionId": "ba2358c2-42f2-4138-88df-7c68cf608bea", + "AZURE_BATCH_ACCOUNT": "mikeportal", + "AZURE_BATCH_ENDPOINT": "https://mikeportal.eastus.batch.azure.com", + "AZURE_BATCH_RESOURCE_GROUP": "batchportal" } } \ No newline at end of file diff --git a/src/Batch/Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.LocationTests/TestGetLocationQuotas.json b/src/Batch/Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.LocationTests/TestGetLocationQuotas.json index 8a647a1913dc..adbe04b9224c 100644 --- a/src/Batch/Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.LocationTests/TestGetLocationQuotas.json +++ b/src/Batch/Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.LocationTests/TestGetLocationQuotas.json @@ -1,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2g/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/ba2358c2-42f2-4138-88df-7c68cf608bea/providers/Microsoft.Batch?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmEyMzU4YzItNDJmMi00MTM4LTg4ZGYtN2M2OGNmNjA4YmVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2g/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3d9edb4a-b8f3-4c88-b33c-be69c76c6aaf" + "a3a6d198-7970-4159-8930-5f8a52d6234f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.43" ] }, "ResponseHeaders": { @@ -30,13 +30,13 @@ "11999" ], "x-ms-request-id": [ - "e8318cba-f3c6-447f-b94c-27ccd3bc38cb" + "a2f02a43-edaf-421f-8a14-058ec75650b5" ], "x-ms-correlation-request-id": [ - "e8318cba-f3c6-447f-b94c-27ccd3bc38cb" + "a2f02a43-edaf-421f-8a14-058ec75650b5" ], "x-ms-routing-request-id": [ - "WESTUS:20200609T221412Z:e8318cba-f3c6-447f-b94c-27ccd3bc38cb" + "NORTHCENTRALUS:20210827T161532Z:a2f02a43-edaf-421f-8a14-058ec75650b5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -45,7 +45,7 @@ "nosniff" ], "Date": [ - "Tue, 09 Jun 2020 22:14:12 GMT" + "Fri, 27 Aug 2021 16:15:31 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -54,29 +54,29 @@ "-1" ], "Content-Length": [ - "4461" + "7565" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch\",\r\n \"namespace\": \"Microsoft.Batch\",\r\n \"authorization\": {\r\n \"applicationId\": \"ddbf3205-c6bd-46ae-8127-60eb93363864\",\r\n \"roleDefinitionId\": \"b7f84953-1d03-4eab-9ea4-45f065258ff8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"batchAccounts\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\",\r\n \"2015-07-01\",\r\n \"2014-05-01-privatepreview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/accountOperationResults\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\",\r\n \"2015-07-01\",\r\n \"2014-05-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/ba2358c2-42f2-4138-88df-7c68cf608bea/providers/Microsoft.Batch\",\r\n \"namespace\": \"Microsoft.Batch\",\r\n \"authorization\": {\r\n \"applicationId\": \"ddbf3205-c6bd-46ae-8127-60eb93363864\",\r\n \"roleDefinitionId\": \"b7f84953-1d03-4eab-9ea4-45f065258ff8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"batchAccounts\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Jio India West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Norway East\",\r\n \"Brazil Southeast\",\r\n \"West US 3\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\",\r\n \"2015-07-01\",\r\n \"2014-05-01-privatepreview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"batchAccounts/pools\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Jio India West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Norway East\",\r\n \"Brazil Southeast\",\r\n \"West US 3\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"batchAccounts/certificates\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Jio India West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Norway East\",\r\n \"Brazil Southeast\",\r\n \"West US 3\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Jio India West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Norway East\",\r\n \"Brazil Southeast\",\r\n \"West US 3\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Jio India West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Norway East\",\r\n \"Brazil Southeast\",\r\n \"West US 3\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Jio India West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Norway East\",\r\n \"Brazil Southeast\",\r\n \"West US 3\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/accountOperationResults\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Jio India West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Norway East\",\r\n \"Brazil Southeast\",\r\n \"West US 3\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\",\r\n \"2015-07-01\",\r\n \"2014-05-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/virtualMachineSkus\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Jio India West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Norway East\",\r\n \"Brazil Southeast\",\r\n \"West US 3\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/cloudServiceSkus\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Jio India West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Norway East\",\r\n \"Brazil Southeast\",\r\n \"West US 3\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/westus/quotas?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL3dlc3R1cy9xdW90YXM/YXBpLXZlcnNpb249MjAyMC0wNS0wMQ==", + "RequestUri": "/subscriptions/ba2358c2-42f2-4138-88df-7c68cf608bea/providers/Microsoft.Batch/locations/westus/quotas?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmEyMzU4YzItNDJmMi00MTM4LTg4ZGYtN2M2OGNmNjA4YmVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL3dlc3R1cy9xdW90YXM/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "79a2bb11-dd83-4402-b52f-6c678a84bfa1" + "44af4f4e-a988-40bf-8906-4c33d125cf2a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/11.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Batch.BatchManagementClient/14.0.0.0" ] }, "ResponseHeaders": { @@ -90,7 +90,7 @@ "11999" ], "x-ms-request-id": [ - "3f7b5d89-b0ca-491d-a986-3a41758990cb" + "dbed23bf-66c2-4b30-aa69-0db57f5613e0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -102,16 +102,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-correlation-request-id": [ - "d4a5130d-99b9-4ae0-87d1-accee2e39d22" + "0962c75e-2cdf-46c7-aa7b-101d11c14a50" ], "x-ms-routing-request-id": [ - "WESTUS:20200609T221412Z:d4a5130d-99b9-4ae0-87d1-accee2e39d22" + "NORTHCENTRALUS:20210827T161532Z:0962c75e-2cdf-46c7-aa7b-101d11c14a50" ], "Date": [ - "Tue, 09 Jun 2020 22:14:11 GMT" + "Fri, 27 Aug 2021 16:15:31 GMT" ], "Content-Length": [ - "19" + "18" ], "Content-Type": [ "application/json; charset=utf-8" @@ -120,15 +120,15 @@ "-1" ] }, - "ResponseBody": "{\r\n \"accountQuota\": 50\r\n}", + "ResponseBody": "{\r\n \"accountQuota\": 3\r\n}", "StatusCode": 200 } ], "Names": {}, "Variables": { - "SubscriptionId": "21abd678-18c5-4660-9fdd-8c5ba6b6fe1f", - "AZURE_BATCH_ACCOUNT": "prodtest6", - "AZURE_BATCH_ENDPOINT": "https://prodtest6.francecentral.batch.azure.com", - "AZURE_BATCH_RESOURCE_GROUP": "abc" + "SubscriptionId": "ba2358c2-42f2-4138-88df-7c68cf608bea", + "AZURE_BATCH_ACCOUNT": "mikeportal", + "AZURE_BATCH_ENDPOINT": "https://mikeportal.eastus.batch.azure.com", + "AZURE_BATCH_RESOURCE_GROUP": "batchportal" } } \ No newline at end of file diff --git a/src/Batch/Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.PoolTests/TestAutoScaleActions.json b/src/Batch/Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.PoolTests/TestAutoScaleActions.json index 757df0b6b34b..12dcaa78b354 100644 --- a/src/Batch/Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.PoolTests/TestAutoScaleActions.json +++ b/src/Batch/Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.PoolTests/TestAutoScaleActions.json @@ -1,32 +1,32 @@ { "Entries": [ { - "RequestUri": "/pools?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L3Bvb2xzP2FwaS12ZXJzaW9uPTIwMjAtMDMtMDEuMTEuMA==", + "RequestUri": "/pools?api-version=2021-06-01.14.0", + "EncodedRequestUri": "L3Bvb2xzP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDEuMTQuMA==", "RequestMethod": "POST", - "RequestBody": "{\r\n \"id\": \"autoscalePool\",\r\n \"vmSize\": \"small\",\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"osVersion\": \"*\"\r\n },\r\n \"targetDedicatedNodes\": 0,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableInterNodeCommunication\": true\r\n}", + "RequestBody": "{\r\n \"id\": \"autoscalePool\",\r\n \"vmSize\": \"standard_d1_v2\",\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"osVersion\": \"*\"\r\n },\r\n \"targetDedicatedNodes\": 0,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableInterNodeCommunication\": true\r\n}", "RequestHeaders": { "client-request-id": [ - "46c015b8-3c5c-4275-9397-6ce30c54c304" + "3032432d-7413-4563-8417-d89471fa01f5" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:30:46 GMT" + "Fri, 27 Aug 2021 16:26:52 GMT" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/13.0.20.15503", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", "AzurePowershell/Az1.0.0" ], "Content-Type": [ "application/json; odata=minimalmetadata; charset=utf-8" ], "Content-Length": [ - "238" + "247" ] }, "ResponseHeaders": { @@ -34,16 +34,16 @@ "chunked" ], "ETag": [ - "0x8D80CC4CDEFCE4F" + "0x8D969777A158D35" ], "Location": [ - "https://prodtest6.francecentral.batch.azure.com/pools/autoscalePool" + "https://mikeportal.eastus.batch.azure.com/pools/autoscalePool" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "1bdba6a4-94e8-4aca-9b0b-a59e4cfb0c7b" + "a9211835-0c11-420b-a133-6bc5e7fb732d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -55,38 +55,41 @@ "3.0" ], "DataServiceId": [ - "https://prodtest6.francecentral.batch.azure.com/pools/autoscalePool" + "https://mikeportal.eastus.batch.azure.com/pools/autoscalePool" ], "Date": [ - "Tue, 09 Jun 2020 22:31:08 GMT" + "Fri, 27 Aug 2021 16:26:51 GMT" ], "Last-Modified": [ - "Tue, 09 Jun 2020 22:31:08 GMT" + "Fri, 27 Aug 2021 16:26:51 GMT" ] }, "ResponseBody": "", "StatusCode": 201 }, { - "RequestUri": "/pools/autoscalePool?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L3Bvb2xzL2F1dG9zY2FsZVBvb2w/YXBpLXZlcnNpb249MjAyMC0wMy0wMS4xMS4w", + "RequestUri": "/pools/autoscalePool?api-version=2021-06-01.14.0", + "EncodedRequestUri": "L3Bvb2xzL2F1dG9zY2FsZVBvb2w/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4w", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "9e81977a-8bd0-435f-b6b1-3b375e4f61d5" + "749270ad-5d14-4dc9-8418-923392768706" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:31:08 GMT" + "Fri, 27 Aug 2021 16:26:53 GMT" + ], + "x-ms-client-request-id": [ + "3d896193-7770-4a65-ba83-2398030c1a74" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/13.0.20.15503", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", "AzurePowershell/Az1.0.0" ] }, @@ -95,13 +98,13 @@ "chunked" ], "ETag": [ - "0x8D80CC4CDEFCE4F" + "0x8D969777A158D35" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "c8df8686-6604-41cd-8ef4-92d6565a7771" + "66fb9c99-b60f-4658-b4e2-9070341d0e96" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -113,38 +116,41 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 22:31:30 GMT" + "Fri, 27 Aug 2021 16:26:52 GMT" ], "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Tue, 09 Jun 2020 22:31:08 GMT" + "Fri, 27 Aug 2021 16:26:51 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://prodtest6.francecentral.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"autoscalePool\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/pools/autoscalePool\",\r\n \"eTag\": \"0x8D80CC4CDEFCE4F\",\r\n \"lastModified\": \"2020-06-09T22:31:08.1093711Z\",\r\n \"creationTime\": \"2020-06-09T22:31:08.1093711Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2020-06-09T22:31:08.1093711Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2020-06-09T22:31:09.3985661Z\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT15M\",\r\n \"currentDedicatedNodes\": 0,\r\n \"targetDedicatedNodes\": 0,\r\n \"currentLowPriorityNodes\": 0,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": true,\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"osVersion\": \"*\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"autoscalePool\",\r\n \"url\": \"https://mikeportal.eastus.batch.azure.com/pools/autoscalePool\",\r\n \"eTag\": \"0x8D969777A158D35\",\r\n \"lastModified\": \"2021-08-27T16:26:51.9893301Z\",\r\n \"creationTime\": \"2021-08-27T16:26:51.9893301Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2021-08-27T16:26:51.9893301Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2021-08-27T16:26:51.9893301Z\",\r\n \"vmSize\": \"standard_d1_v2\",\r\n \"resizeTimeout\": \"PT15M\",\r\n \"currentDedicatedNodes\": 0,\r\n \"targetDedicatedNodes\": 0,\r\n \"currentLowPriorityNodes\": 0,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": true,\r\n \"taskSlotsPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"osVersion\": \"*\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/pools/autoscalePool?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L3Bvb2xzL2F1dG9zY2FsZVBvb2w/YXBpLXZlcnNpb249MjAyMC0wMy0wMS4xMS4w", + "RequestUri": "/pools/autoscalePool?api-version=2021-06-01.14.0", + "EncodedRequestUri": "L3Bvb2xzL2F1dG9zY2FsZVBvb2w/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4w", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "ed107bbe-fb3b-401c-9db9-7c93c25e2a42" + "b190f723-a62d-4b2a-9f7e-18c09794fcb1" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:31:31 GMT" + "Fri, 27 Aug 2021 16:26:54 GMT" + ], + "x-ms-client-request-id": [ + "704e269f-0fd8-41b2-a91e-cc97febefe84" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/13.0.20.15503", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", "AzurePowershell/Az1.0.0" ] }, @@ -153,13 +159,13 @@ "chunked" ], "ETag": [ - "0x8D80CC4DBA80528" + "0x8D969777B28ABA9" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "614009b1-c427-4b5e-a703-8586f01dc1ad" + "570d11dd-a4ba-40bf-828f-77498c92ff02" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -171,38 +177,41 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 22:31:31 GMT" + "Fri, 27 Aug 2021 16:26:53 GMT" ], "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Tue, 09 Jun 2020 22:31:31 GMT" + "Fri, 27 Aug 2021 16:26:53 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://prodtest6.francecentral.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"autoscalePool\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/pools/autoscalePool\",\r\n \"eTag\": \"0x8D80CC4DBA80528\",\r\n \"lastModified\": \"2020-06-09T22:31:31.1270184Z\",\r\n \"creationTime\": \"2020-06-09T22:31:08.1093711Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2020-06-09T22:31:08.1093711Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2020-06-09T22:31:31.1940498Z\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT15M\",\r\n \"currentDedicatedNodes\": 0,\r\n \"targetDedicatedNodes\": 0,\r\n \"currentLowPriorityNodes\": 0,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": true,\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"osVersion\": \"*\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"autoscalePool\",\r\n \"url\": \"https://mikeportal.eastus.batch.azure.com/pools/autoscalePool\",\r\n \"eTag\": \"0x8D969777B28ABA9\",\r\n \"lastModified\": \"2021-08-27T16:26:53.7923497Z\",\r\n \"creationTime\": \"2021-08-27T16:26:51.9893301Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2021-08-27T16:26:51.9893301Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2021-08-27T16:26:53.7923497Z\",\r\n \"vmSize\": \"standard_d1_v2\",\r\n \"resizeTimeout\": \"PT15M\",\r\n \"currentDedicatedNodes\": 0,\r\n \"targetDedicatedNodes\": 0,\r\n \"currentLowPriorityNodes\": 0,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": true,\r\n \"taskSlotsPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"osVersion\": \"*\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/pools/autoscalePool/enableautoscale?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L3Bvb2xzL2F1dG9zY2FsZVBvb2wvZW5hYmxlYXV0b3NjYWxlP2FwaS12ZXJzaW9uPTIwMjAtMDMtMDEuMTEuMA==", + "RequestUri": "/pools/autoscalePool/enableautoscale?api-version=2021-06-01.14.0", + "EncodedRequestUri": "L3Bvb2xzL2F1dG9zY2FsZVBvb2wvZW5hYmxlYXV0b3NjYWxlP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDEuMTQuMA==", "RequestMethod": "POST", "RequestBody": "{\r\n \"autoScaleFormula\": \"$TargetDedicatedNodes=0\",\r\n \"autoScaleEvaluationInterval\": \"PT8M\"\r\n}", "RequestHeaders": { "client-request-id": [ - "3bfdf46e-43c1-4b4e-976a-718475c6ecd2" + "d373ebfc-3212-4c60-8ff6-df032512309d" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:31:30 GMT" + "Fri, 27 Aug 2021 16:26:53 GMT" + ], + "x-ms-client-request-id": [ + "563b2947-c35e-4a5c-a5e6-21003df817ac" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/13.0.20.15503", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", "AzurePowershell/Az1.0.0" ], "Content-Type": [ @@ -217,13 +226,13 @@ "chunked" ], "ETag": [ - "0x8D80CC4DB4B9256" + "0x8D969777A158D35" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "c71c1a38-d682-4648-9ba3-e494bb7bb3c6" + "664bf10e-3ca7-4997-902e-e8187bb0f27a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -235,38 +244,41 @@ "3.0" ], "DataServiceId": [ - "https://prodtest6.francecentral.batch.azure.com/pools/autoscalePool/enableautoscale" + "https://mikeportal.eastus.batch.azure.com/pools/autoscalePool/enableautoscale" ], "Date": [ - "Tue, 09 Jun 2020 22:31:30 GMT" + "Fri, 27 Aug 2021 16:26:52 GMT" ], "Last-Modified": [ - "Tue, 09 Jun 2020 22:31:30 GMT" + "Fri, 27 Aug 2021 16:26:51 GMT" ] }, "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/pools?api-version=2020-03-01.11.0&$filter=id%20eq%20%27autoscalePool%27", - "EncodedRequestUri": "L3Bvb2xzP2FwaS12ZXJzaW9uPTIwMjAtMDMtMDEuMTEuMCYkZmlsdGVyPWlkJTIwZXElMjAlMjdhdXRvc2NhbGVQb29sJTI3", + "RequestUri": "/pools?api-version=2021-06-01.14.0&$filter=id%20eq%20%27autoscalePool%27", + "EncodedRequestUri": "L3Bvb2xzP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDEuMTQuMCYkZmlsdGVyPWlkJTIwZXElMjAlMjdhdXRvc2NhbGVQb29sJTI3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "eef16c44-68a9-4aca-81eb-060c07423d05" + "921b4d0a-896f-41f0-a93b-918f0fd8a628" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:31:30 GMT" + "Fri, 27 Aug 2021 16:26:54 GMT" + ], + "x-ms-client-request-id": [ + "f1437f81-5629-45fc-96df-f25844d7f9f9" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/13.0.20.15503", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", "AzurePowershell/Az1.0.0" ] }, @@ -278,7 +290,7 @@ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "010ab620-c3e9-4eae-a6bc-b3d037ec66fc" + "95125d1c-7152-4021-bc2a-3edd3ad87e7c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -290,35 +302,38 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 22:31:30 GMT" + "Fri, 27 Aug 2021 16:26:52 GMT" ], "Content-Type": [ "application/json; odata=minimalmetadata" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://prodtest6.francecentral.batch.azure.com/$metadata#pools\",\r\n \"value\": [\r\n {\r\n \"id\": \"autoscalePool\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/pools/autoscalePool\",\r\n \"eTag\": \"0x8D80CC4DB4B9256\",\r\n \"lastModified\": \"2020-06-09T22:31:30.5211478Z\",\r\n \"creationTime\": \"2020-06-09T22:31:08.1093711Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2020-06-09T22:31:08.1093711Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2020-06-09T22:31:30.6091543Z\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT15M\",\r\n \"currentDedicatedNodes\": 0,\r\n \"targetDedicatedNodes\": 0,\r\n \"currentLowPriorityNodes\": 0,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": true,\r\n \"autoScaleFormula\": \"$TargetDedicatedNodes=0\",\r\n \"autoScaleEvaluationInterval\": \"PT8M\",\r\n \"autoScaleRun\": {\r\n \"timestamp\": \"2020-06-09T22:31:30.5211478Z\",\r\n \"results\": \"$TargetDedicatedNodes=0;$TargetLowPriorityNodes=0;$NodeDeallocationOption=requeue\"\r\n },\r\n \"enableInterNodeCommunication\": true,\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"osVersion\": \"*\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#pools\",\r\n \"value\": [\r\n {\r\n \"id\": \"autoscalePool\",\r\n \"url\": \"https://mikeportal.eastus.batch.azure.com/pools/autoscalePool\",\r\n \"eTag\": \"0x8D969777A158D35\",\r\n \"lastModified\": \"2021-08-27T16:26:51.9893301Z\",\r\n \"creationTime\": \"2021-08-27T16:26:51.9893301Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2021-08-27T16:26:51.9893301Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2021-08-27T16:26:53.362345Z\",\r\n \"vmSize\": \"standard_d1_v2\",\r\n \"resizeTimeout\": \"PT15M\",\r\n \"currentDedicatedNodes\": 0,\r\n \"targetDedicatedNodes\": 0,\r\n \"currentLowPriorityNodes\": 0,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": true,\r\n \"autoScaleFormula\": \"$TargetDedicatedNodes=0\",\r\n \"autoScaleEvaluationInterval\": \"PT8M\",\r\n \"enableInterNodeCommunication\": true,\r\n \"taskSlotsPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"osVersion\": \"*\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/pools/autoscalePool/evaluateautoscale?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L3Bvb2xzL2F1dG9zY2FsZVBvb2wvZXZhbHVhdGVhdXRvc2NhbGU/YXBpLXZlcnNpb249MjAyMC0wMy0wMS4xMS4w", + "RequestUri": "/pools/autoscalePool/evaluateautoscale?api-version=2021-06-01.14.0", + "EncodedRequestUri": "L3Bvb2xzL2F1dG9zY2FsZVBvb2wvZXZhbHVhdGVhdXRvc2NhbGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4w", "RequestMethod": "POST", "RequestBody": "{\r\n \"autoScaleFormula\": \"$TargetDedicatedNodes=1\"\r\n}", "RequestHeaders": { "client-request-id": [ - "2e9f2868-4e09-49ae-820e-87581263ea5e" + "aa18fe8e-5fc2-4469-a304-f3ea9a236ab9" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:31:30 GMT" + "Fri, 27 Aug 2021 16:26:54 GMT" + ], + "x-ms-client-request-id": [ + "15819fa7-0d35-4eb3-bc90-9e9ac1ec242a" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/13.0.20.15503", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", "AzurePowershell/Az1.0.0" ], "Content-Type": [ @@ -336,7 +351,7 @@ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "b7274790-f1b1-45ba-a39d-d2743cb2e161" + "2a0cc678-0ba9-407b-b15f-a0695211c13e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -348,38 +363,41 @@ "3.0" ], "DataServiceId": [ - "https://prodtest6.francecentral.batch.azure.com/pools/autoscalePool/evaluateautoscale" + "https://mikeportal.eastus.batch.azure.com/pools/autoscalePool/evaluateautoscale" ], "Date": [ - "Tue, 09 Jun 2020 22:31:30 GMT" + "Fri, 27 Aug 2021 16:26:52 GMT" ], "Content-Type": [ "application/json; odata=minimalmetadata" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://prodtest6.francecentral.batch.azure.com/$metadata#Microsoft.Azure.Batch.Protocol.Entities.AutoScaleRun\",\r\n \"timestamp\": \"2020-06-09T22:31:30.9280948Z\",\r\n \"results\": \"$TargetDedicatedNodes=1;$TargetLowPriorityNodes=0;$NodeDeallocationOption=requeue\"\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#Microsoft.Azure.Batch.Protocol.Entities.AutoScaleRun\",\r\n \"timestamp\": \"2021-08-27T16:26:53.6497696Z\",\r\n \"results\": \"$TargetDedicatedNodes=1;$TargetLowPriorityNodes=0;$NodeDeallocationOption=requeue\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/pools/autoscalePool/disableautoscale?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L3Bvb2xzL2F1dG9zY2FsZVBvb2wvZGlzYWJsZWF1dG9zY2FsZT9hcGktdmVyc2lvbj0yMDIwLTAzLTAxLjExLjA=", + "RequestUri": "/pools/autoscalePool/disableautoscale?api-version=2021-06-01.14.0", + "EncodedRequestUri": "L3Bvb2xzL2F1dG9zY2FsZVBvb2wvZGlzYWJsZWF1dG9zY2FsZT9hcGktdmVyc2lvbj0yMDIxLTA2LTAxLjE0LjA=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "c7d892c7-8289-48d0-bd23-afe782d0c366" + "ec00ab8e-fea0-4160-b5eb-4f6f6dee02cc" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:31:31 GMT" + "Fri, 27 Aug 2021 16:26:54 GMT" + ], + "x-ms-client-request-id": [ + "aa9cde1a-bd61-43ab-b5b3-d6a946878cc7" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/13.0.20.15503", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", "AzurePowershell/Az1.0.0" ], "Content-Length": [ @@ -391,13 +409,13 @@ "chunked" ], "ETag": [ - "0x8D80CC4DBA80528" + "0x8D969777B28ABA9" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "f1aead4a-82dd-4d7f-902a-ea1c6afed619" + "9673d25a-bfed-4e63-82a3-8f72a9741ddf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -409,38 +427,38 @@ "3.0" ], "DataServiceId": [ - "https://prodtest6.francecentral.batch.azure.com/pools/autoscalePool/disableautoscale" + "https://mikeportal.eastus.batch.azure.com/pools/autoscalePool/disableautoscale" ], "Date": [ - "Tue, 09 Jun 2020 22:31:30 GMT" + "Fri, 27 Aug 2021 16:26:53 GMT" ], "Last-Modified": [ - "Tue, 09 Jun 2020 22:31:31 GMT" + "Fri, 27 Aug 2021 16:26:53 GMT" ] }, "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/pools/autoscalePool?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L3Bvb2xzL2F1dG9zY2FsZVBvb2w/YXBpLXZlcnNpb249MjAyMC0wMy0wMS4xMS4w", + "RequestUri": "/pools/autoscalePool?api-version=2021-06-01.14.0", + "EncodedRequestUri": "L3Bvb2xzL2F1dG9zY2FsZVBvb2w/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4w", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "aeb2d4dd-8c58-42a8-a9f1-331581cfe029" + "4abc3974-775f-404b-80ad-958c10771da4" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:31:31 GMT" + "Fri, 27 Aug 2021 16:26:54 GMT" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/13.0.20.15503", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", "AzurePowershell/Az1.0.0" ], "Content-Length": [ @@ -455,7 +473,7 @@ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "b6dab311-ef67-423d-aac3-599fbcbca79c" + "3ad37b49-ea6a-446a-8d06-54acb959de8f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -467,7 +485,7 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 22:31:31 GMT" + "Fri, 27 Aug 2021 16:27:01 GMT" ] }, "ResponseBody": "", @@ -476,9 +494,9 @@ ], "Names": {}, "Variables": { - "SubscriptionId": "21abd678-18c5-4660-9fdd-8c5ba6b6fe1f", - "AZURE_BATCH_ACCOUNT": "prodtest6", - "AZURE_BATCH_ENDPOINT": "https://prodtest6.francecentral.batch.azure.com", - "AZURE_BATCH_RESOURCE_GROUP": "abc" + "SubscriptionId": "ba2358c2-42f2-4138-88df-7c68cf608bea", + "AZURE_BATCH_ACCOUNT": "mikeportal", + "AZURE_BATCH_ENDPOINT": "https://mikeportal.eastus.batch.azure.com", + "AZURE_BATCH_RESOURCE_GROUP": "batchportal" } } \ No newline at end of file diff --git a/src/Batch/Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.PoolTests/TestPoolCRUD.json b/src/Batch/Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.PoolTests/TestPoolCRUD.json index 2ab0e0d21467..00d6cc3c2652 100644 --- a/src/Batch/Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.PoolTests/TestPoolCRUD.json +++ b/src/Batch/Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.PoolTests/TestPoolCRUD.json @@ -1,25 +1,28 @@ { "Entries": [ { - "RequestUri": "/pools?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L3Bvb2xzP2FwaS12ZXJzaW9uPTIwMjAtMDMtMDEuMTEuMA==", + "RequestUri": "/pools?api-version=2021-06-01.14.0", + "EncodedRequestUri": "L3Bvb2xzP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDEuMTQuMA==", "RequestMethod": "POST", "RequestBody": "{\r\n \"id\": \"pool1\",\r\n \"vmSize\": \"small\",\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"osVersion\": \"*\"\r\n },\r\n \"targetDedicatedNodes\": 0,\r\n \"enableInterNodeCommunication\": false\r\n}", "RequestHeaders": { "client-request-id": [ - "17114dce-98d9-40ce-9fd4-cbfdb7f8299f" + "70f7dbb2-595e-4d88-8c16-ea6ce48b76de" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:30:19 GMT" + "Fri, 27 Aug 2021 16:26:48 GMT" + ], + "x-ms-client-request-id": [ + "cdb5500f-8c75-447c-954c-ce39316c5d84" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/13.0.20.15503", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", "AzurePowershell/Az1.0.0" ], "Content-Type": [ @@ -34,16 +37,16 @@ "chunked" ], "ETag": [ - "0x8D80CC4BDBE59D4" + "0x8D9697777A96D2A" ], "Location": [ - "https://prodtest6.francecentral.batch.azure.com/pools/pool1" + "https://mikeportal.eastus.batch.azure.com/pools/pool1" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "ba204a1b-810a-4df2-a1b7-2e186a9c0c68" + "c6ad1f21-995a-486f-b159-51ec6e77d131" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -55,38 +58,41 @@ "3.0" ], "DataServiceId": [ - "https://prodtest6.francecentral.batch.azure.com/pools/pool1" + "https://mikeportal.eastus.batch.azure.com/pools/pool1" ], "Date": [ - "Tue, 09 Jun 2020 22:30:40 GMT" + "Fri, 27 Aug 2021 16:26:47 GMT" ], "Last-Modified": [ - "Tue, 09 Jun 2020 22:30:40 GMT" + "Fri, 27 Aug 2021 16:26:47 GMT" ] }, "ResponseBody": "", "StatusCode": 201 }, { - "RequestUri": "/pools?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L3Bvb2xzP2FwaS12ZXJzaW9uPTIwMjAtMDMtMDEuMTEuMA==", + "RequestUri": "/pools?api-version=2021-06-01.14.0", + "EncodedRequestUri": "L3Bvb2xzP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDEuMTQuMA==", "RequestMethod": "POST", "RequestBody": "{\r\n \"id\": \"pool2\",\r\n \"vmSize\": \"standard_d1_v2\",\r\n \"virtualMachineConfiguration\": {\r\n \"imageReference\": {\r\n \"publisher\": \"microsoft-azure-batch\",\r\n \"offer\": \"ubuntu-server-container\",\r\n \"sku\": \"16-04-lts\"\r\n },\r\n \"nodeAgentSKUId\": \"batch.node.ubuntu 16.04\",\r\n \"containerConfiguration\": {\r\n \"containerImageNames\": [\r\n \"test\"\r\n ],\r\n \"type\": \"dockerCompatible\"\r\n }\r\n },\r\n \"targetDedicatedNodes\": 0,\r\n \"enableInterNodeCommunication\": false\r\n}", "RequestHeaders": { "client-request-id": [ - "303b47ba-7b69-4389-8f76-aae6107877c3" + "c9acde7b-1b41-40ff-b5eb-0e853509c4f8" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:30:41 GMT" + "Fri, 27 Aug 2021 16:26:49 GMT" + ], + "x-ms-client-request-id": [ + "f556b11f-4b29-473c-9f39-dfb005d18f55" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/13.0.20.15503", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", "AzurePowershell/Az1.0.0" ], "Content-Type": [ @@ -101,16 +107,16 @@ "chunked" ], "ETag": [ - "0x8D80CC4BDFFB911" + "0x8D9697777D7342A" ], "Location": [ - "https://prodtest6.francecentral.batch.azure.com/pools/pool2" + "https://mikeportal.eastus.batch.azure.com/pools/pool2" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "76501931-d51e-4cad-8311-cae3a8b200f8" + "b83da767-a8cd-4c32-ab44-6572bd78103a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -122,38 +128,41 @@ "3.0" ], "DataServiceId": [ - "https://prodtest6.francecentral.batch.azure.com/pools/pool2" + "https://mikeportal.eastus.batch.azure.com/pools/pool2" ], "Date": [ - "Tue, 09 Jun 2020 22:30:40 GMT" + "Fri, 27 Aug 2021 16:26:47 GMT" ], "Last-Modified": [ - "Tue, 09 Jun 2020 22:30:41 GMT" + "Fri, 27 Aug 2021 16:26:48 GMT" ] }, "ResponseBody": "", "StatusCode": 201 }, { - "RequestUri": "/pools?api-version=2020-03-01.11.0&$filter=id%20eq%20%27pool1%27%20or%20id%20eq%20%27pool2%27", - "EncodedRequestUri": "L3Bvb2xzP2FwaS12ZXJzaW9uPTIwMjAtMDMtMDEuMTEuMCYkZmlsdGVyPWlkJTIwZXElMjAlMjdwb29sMSUyNyUyMG9yJTIwaWQlMjBlcSUyMCUyN3Bvb2wyJTI3", + "RequestUri": "/pools?api-version=2021-06-01.14.0&$filter=id%20eq%20%27pool1%27%20or%20id%20eq%20%27pool2%27", + "EncodedRequestUri": "L3Bvb2xzP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDEuMTQuMCYkZmlsdGVyPWlkJTIwZXElMjAlMjdwb29sMSUyNyUyMG9yJTIwaWQlMjBlcSUyMCUyN3Bvb2wyJTI3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "c95f4248-80ce-4107-b4e7-97fe3756b50a" + "1fc0c47b-dedc-4492-8e17-fd8059f3498e" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:30:41 GMT" + "Fri, 27 Aug 2021 16:26:49 GMT" + ], + "x-ms-client-request-id": [ + "a1eee6f4-16c3-4d78-8a35-ab65e0455dd0" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/13.0.20.15503", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", "AzurePowershell/Az1.0.0" ] }, @@ -165,7 +174,7 @@ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "faa8d6e0-a956-484b-ab88-a670477220cb" + "3ce06c30-fa8f-40bd-814a-f57ced012b17" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -177,35 +186,38 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 22:30:40 GMT" + "Fri, 27 Aug 2021 16:26:47 GMT" ], "Content-Type": [ "application/json; odata=minimalmetadata" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://prodtest6.francecentral.batch.azure.com/$metadata#pools\",\r\n \"value\": [\r\n {\r\n \"id\": \"pool1\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/pools/pool1\",\r\n \"eTag\": \"0x8D80CC4BDBE59D4\",\r\n \"lastModified\": \"2020-06-09T22:30:40.9417172Z\",\r\n \"creationTime\": \"2020-06-09T22:30:40.9417172Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2020-06-09T22:30:40.9417172Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2020-06-09T22:30:40.9417172Z\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT15M\",\r\n \"currentDedicatedNodes\": 0,\r\n \"targetDedicatedNodes\": 0,\r\n \"currentLowPriorityNodes\": 0,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"osVersion\": \"*\"\r\n }\r\n },\r\n {\r\n \"id\": \"pool2\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/pools/pool2\",\r\n \"eTag\": \"0x8D80CC4BDFFB911\",\r\n \"lastModified\": \"2020-06-09T22:30:41.3701393Z\",\r\n \"creationTime\": \"2020-06-09T22:30:41.3701393Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2020-06-09T22:30:41.3701393Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2020-06-09T22:30:41.3701393Z\",\r\n \"vmSize\": \"standard_d1_v2\",\r\n \"resizeTimeout\": \"PT15M\",\r\n \"currentDedicatedNodes\": 0,\r\n \"targetDedicatedNodes\": 0,\r\n \"currentLowPriorityNodes\": 0,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"virtualMachineConfiguration\": {\r\n \"imageReference\": {\r\n \"publisher\": \"microsoft-azure-batch\",\r\n \"offer\": \"ubuntu-server-container\",\r\n \"sku\": \"16-04-lts\",\r\n \"version\": \"latest\"\r\n },\r\n \"nodeAgentSKUId\": \"batch.node.ubuntu 16.04\",\r\n \"containerConfiguration\": {\r\n \"type\": \"dockerCompatible\",\r\n \"containerImageNames\": [\r\n \"test\"\r\n ]\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#pools\",\r\n \"value\": [\r\n {\r\n \"id\": \"pool1\",\r\n \"url\": \"https://mikeportal.eastus.batch.azure.com/pools/pool1\",\r\n \"eTag\": \"0x8D9697777A96D2A\",\r\n \"lastModified\": \"2021-08-27T16:26:47.9252778Z\",\r\n \"creationTime\": \"2021-08-27T16:26:47.9252778Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2021-08-27T16:26:47.9252778Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2021-08-27T16:26:47.9252778Z\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT15M\",\r\n \"currentDedicatedNodes\": 0,\r\n \"targetDedicatedNodes\": 0,\r\n \"currentLowPriorityNodes\": 0,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"taskSlotsPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"osVersion\": \"*\"\r\n }\r\n },\r\n {\r\n \"id\": \"pool2\",\r\n \"url\": \"https://mikeportal.eastus.batch.azure.com/pools/pool2\",\r\n \"eTag\": \"0x8D9697777D7342A\",\r\n \"lastModified\": \"2021-08-27T16:26:48.2252842Z\",\r\n \"creationTime\": \"2021-08-27T16:26:48.2252842Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2021-08-27T16:26:48.2252842Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2021-08-27T16:26:48.2252842Z\",\r\n \"vmSize\": \"standard_d1_v2\",\r\n \"resizeTimeout\": \"PT15M\",\r\n \"currentDedicatedNodes\": 0,\r\n \"targetDedicatedNodes\": 0,\r\n \"currentLowPriorityNodes\": 0,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"taskSlotsPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"virtualMachineConfiguration\": {\r\n \"imageReference\": {\r\n \"publisher\": \"microsoft-azure-batch\",\r\n \"offer\": \"ubuntu-server-container\",\r\n \"sku\": \"16-04-lts\",\r\n \"version\": \"latest\"\r\n },\r\n \"nodeAgentSKUId\": \"batch.node.ubuntu 16.04\",\r\n \"containerConfiguration\": {\r\n \"type\": \"dockerCompatible\",\r\n \"containerImageNames\": [\r\n \"test\"\r\n ]\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/pools/pool2/updateproperties?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L3Bvb2xzL3Bvb2wyL3VwZGF0ZXByb3BlcnRpZXM/YXBpLXZlcnNpb249MjAyMC0wMy0wMS4xMS4w", + "RequestUri": "/pools/pool2/updateproperties?api-version=2021-06-01.14.0", + "EncodedRequestUri": "L3Bvb2xzL3Bvb2wyL3VwZGF0ZXByb3BlcnRpZXM/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4w", "RequestMethod": "POST", "RequestBody": "{\r\n \"startTask\": {\r\n \"commandLine\": \"/bin/bash -c 'echo start task'\"\r\n },\r\n \"certificateReferences\": [],\r\n \"applicationPackageReferences\": [],\r\n \"metadata\": []\r\n}", "RequestHeaders": { "client-request-id": [ - "088e4e36-4f58-4486-a908-b4dfcb945c00" + "028b242f-5669-4bb9-ba18-cb8368e70adf" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:30:41 GMT" + "Fri, 27 Aug 2021 16:26:49 GMT" + ], + "x-ms-client-request-id": [ + "be9e8a86-7682-4ed2-8709-00fcff3df5c0" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/13.0.20.15503", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", "AzurePowershell/Az1.0.0" ], "Content-Type": [ @@ -217,13 +229,13 @@ }, "ResponseHeaders": { "ETag": [ - "0x8D80CC4BFDC7973" + "0x8D969777898AFDC" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "3929a6f4-ca61-4656-a797-d06b4b337865" + "eda78dac-4a1c-488e-b2ba-d25076942855" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -235,41 +247,44 @@ "3.0" ], "DataServiceId": [ - "https://prodtest6.francecentral.batch.azure.com/pools/pool2/updateproperties" + "https://mikeportal.eastus.batch.azure.com/pools/pool2/updateproperties" ], "Date": [ - "Tue, 09 Jun 2020 22:30:43 GMT" + "Fri, 27 Aug 2021 16:26:48 GMT" ], "Content-Length": [ "0" ], "Last-Modified": [ - "Tue, 09 Jun 2020 22:30:44 GMT" + "Fri, 27 Aug 2021 16:26:49 GMT" ] }, "ResponseBody": "", "StatusCode": 204 }, { - "RequestUri": "/pools/pool2?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L3Bvb2xzL3Bvb2wyP2FwaS12ZXJzaW9uPTIwMjAtMDMtMDEuMTEuMA==", + "RequestUri": "/pools/pool2?api-version=2021-06-01.14.0", + "EncodedRequestUri": "L3Bvb2xzL3Bvb2wyP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDEuMTQuMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "394b77cb-48af-430a-937a-cc2a329e6e7d" + "ab10971c-ed0c-4b95-885a-085f703caa0f" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:30:44 GMT" + "Fri, 27 Aug 2021 16:26:50 GMT" + ], + "x-ms-client-request-id": [ + "2190495a-af8c-4b13-b839-0fa3c9910d23" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/13.0.20.15503", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", "AzurePowershell/Az1.0.0" ] }, @@ -278,13 +293,13 @@ "chunked" ], "ETag": [ - "0x8D80CC4BFDC7973" + "0x8D969777898AFDC" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "240e7f20-768a-4e82-b521-98bb2c42553a" + "af0e8f93-d138-4d50-838d-49668e9782c4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -296,38 +311,41 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 22:30:43 GMT" + "Fri, 27 Aug 2021 16:26:49 GMT" ], "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Tue, 09 Jun 2020 22:30:44 GMT" + "Fri, 27 Aug 2021 16:26:49 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://prodtest6.francecentral.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"pool2\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/pools/pool2\",\r\n \"eTag\": \"0x8D80CC4BFDC7973\",\r\n \"lastModified\": \"2020-06-09T22:30:44.4945779Z\",\r\n \"creationTime\": \"2020-06-09T22:30:41.3701393Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2020-06-09T22:30:41.3701393Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2020-06-09T22:30:44.4795756Z\",\r\n \"vmSize\": \"standard_d1_v2\",\r\n \"resizeTimeout\": \"PT15M\",\r\n \"currentDedicatedNodes\": 0,\r\n \"targetDedicatedNodes\": 0,\r\n \"currentLowPriorityNodes\": 0,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"/bin/bash -c 'echo start task'\",\r\n \"userIdentity\": {\r\n \"autoUser\": {\r\n \"scope\": \"pool\",\r\n \"elevationLevel\": \"nonadmin\"\r\n }\r\n },\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": true\r\n },\r\n \"certificateReferences\": [],\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"virtualMachineConfiguration\": {\r\n \"imageReference\": {\r\n \"publisher\": \"microsoft-azure-batch\",\r\n \"offer\": \"ubuntu-server-container\",\r\n \"sku\": \"16-04-lts\",\r\n \"version\": \"latest\"\r\n },\r\n \"nodeAgentSKUId\": \"batch.node.ubuntu 16.04\",\r\n \"containerConfiguration\": {\r\n \"type\": \"dockerCompatible\",\r\n \"containerImageNames\": [\r\n \"test\"\r\n ]\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"pool2\",\r\n \"url\": \"https://mikeportal.eastus.batch.azure.com/pools/pool2\",\r\n \"eTag\": \"0x8D969777898AFDC\",\r\n \"lastModified\": \"2021-08-27T16:26:49.4932956Z\",\r\n \"creationTime\": \"2021-08-27T16:26:48.2252842Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2021-08-27T16:26:48.2252842Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2021-08-27T16:26:49.457294Z\",\r\n \"vmSize\": \"standard_d1_v2\",\r\n \"resizeTimeout\": \"PT15M\",\r\n \"currentDedicatedNodes\": 0,\r\n \"targetDedicatedNodes\": 0,\r\n \"currentLowPriorityNodes\": 0,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"/bin/bash -c 'echo start task'\",\r\n \"userIdentity\": {\r\n \"autoUser\": {\r\n \"scope\": \"pool\",\r\n \"elevationLevel\": \"nonadmin\"\r\n }\r\n },\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": true\r\n },\r\n \"certificateReferences\": [],\r\n \"taskSlotsPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"virtualMachineConfiguration\": {\r\n \"imageReference\": {\r\n \"publisher\": \"microsoft-azure-batch\",\r\n \"offer\": \"ubuntu-server-container\",\r\n \"sku\": \"16-04-lts\",\r\n \"version\": \"latest\"\r\n },\r\n \"nodeAgentSKUId\": \"batch.node.ubuntu 16.04\",\r\n \"containerConfiguration\": {\r\n \"type\": \"dockerCompatible\",\r\n \"containerImageNames\": [\r\n \"test\"\r\n ]\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/pools/pool1?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L3Bvb2xzL3Bvb2wxP2FwaS12ZXJzaW9uPTIwMjAtMDMtMDEuMTEuMA==", + "RequestUri": "/pools/pool1?api-version=2021-06-01.14.0", + "EncodedRequestUri": "L3Bvb2xzL3Bvb2wxP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDEuMTQuMA==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "fda2fdb2-0a86-4f47-b9da-33c9896b83d5" + "cd9c300e-9ff0-43e0-8bec-51cd683f4ac7" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:30:44 GMT" + "Fri, 27 Aug 2021 16:26:50 GMT" + ], + "x-ms-client-request-id": [ + "e274c84f-392f-41f2-8d71-eaf4cbb2f5c4" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/13.0.20.15503", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", "AzurePowershell/Az1.0.0" ], "Content-Length": [ @@ -342,7 +360,7 @@ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "39dde690-d584-43f8-a5c2-20c18ec8f1d4" + "52383883-500c-4090-b305-5e69a7c2ce5f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -354,32 +372,35 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 22:30:44 GMT" + "Fri, 27 Aug 2021 16:26:49 GMT" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/pools/pool2?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L3Bvb2xzL3Bvb2wyP2FwaS12ZXJzaW9uPTIwMjAtMDMtMDEuMTEuMA==", + "RequestUri": "/pools/pool2?api-version=2021-06-01.14.0", + "EncodedRequestUri": "L3Bvb2xzL3Bvb2wyP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDEuMTQuMA==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "b663143a-a90f-44e7-b803-ff0ac4c691ba" + "8d839e63-4b93-4f1a-ac27-4dfac848352f" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:30:44 GMT" + "Fri, 27 Aug 2021 16:26:50 GMT" + ], + "x-ms-client-request-id": [ + "ba901a04-81a3-4bec-bcc6-ded502c96bca" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/13.0.20.15503", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", "AzurePowershell/Az1.0.0" ], "Content-Length": [ @@ -394,7 +415,7 @@ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "20a39ffd-3abe-49dc-b456-4493d6f4e578" + "8b6116e9-cffd-4c2d-ade6-7b832abdd33e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -406,32 +427,35 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 22:30:44 GMT" + "Fri, 27 Aug 2021 16:26:49 GMT" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/pools?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L3Bvb2xzP2FwaS12ZXJzaW9uPTIwMjAtMDMtMDEuMTEuMA==", + "RequestUri": "/pools?api-version=2021-06-01.14.0", + "EncodedRequestUri": "L3Bvb2xzP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDEuMTQuMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "8778d7c6-40d1-4e67-afe3-ee7e3434bd01" + "56f46222-7d61-469b-b02f-44ac8d1e5d6f" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:30:45 GMT" + "Fri, 27 Aug 2021 16:26:50 GMT" + ], + "x-ms-client-request-id": [ + "63075b68-b075-43f0-8b3e-516cd8c2f3de" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/13.0.20.15503", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", "AzurePowershell/Az1.0.0" ] }, @@ -443,7 +467,7 @@ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "504303aa-480b-4646-8951-b48f7105b67f" + "c5a743ef-bd19-4f31-9337-cbadf42ac4b5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -455,21 +479,21 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 22:30:44 GMT" + "Fri, 27 Aug 2021 16:26:49 GMT" ], "Content-Type": [ "application/json; odata=minimalmetadata" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://prodtest6.francecentral.batch.azure.com/$metadata#pools\",\r\n \"value\": [\r\n {\r\n \"id\": \"mpiPool\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/pools/mpiPool\",\r\n \"eTag\": \"0x8D80BFAD858C375\",\r\n \"lastModified\": \"2020-06-08T22:25:27.2350581Z\",\r\n \"creationTime\": \"2020-06-08T22:25:27.2350581Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2020-06-08T22:25:27.2350581Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2020-06-08T22:26:44.6359603Z\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT15M\",\r\n \"currentDedicatedNodes\": 3,\r\n \"targetDedicatedNodes\": 3,\r\n \"currentLowPriorityNodes\": 0,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": true,\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"osVersion\": \"*\"\r\n }\r\n },\r\n {\r\n \"id\": \"removenodepool\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/pools/removenodepool\",\r\n \"eTag\": \"0x8D80CC492A45889\",\r\n \"lastModified\": \"2020-06-09T22:29:28.6292617Z\",\r\n \"creationTime\": \"2020-06-09T22:26:35.1510216Z\",\r\n \"state\": \"deleting\",\r\n \"stateTransitionTime\": \"2020-06-09T22:29:28.6292617Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2020-06-09T22:29:32.8290135Z\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT7M9.497S\",\r\n \"currentDedicatedNodes\": 0,\r\n \"targetDedicatedNodes\": 0,\r\n \"currentLowPriorityNodes\": 0,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": true,\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"osVersion\": \"*\"\r\n }\r\n },\r\n {\r\n \"id\": \"test1\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/pools/test1\",\r\n \"eTag\": \"0x8D6FB314F219431\",\r\n \"lastModified\": \"2019-06-27T18:57:31.9073841Z\",\r\n \"creationTime\": \"2019-04-10T23:12:01.6157899Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2019-04-10T23:12:01.6157899Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2019-06-27T18:59:02.3643195Z\",\r\n \"vmSize\": \"standard_d1_v2\",\r\n \"resizeTimeout\": \"PT15M\",\r\n \"currentDedicatedNodes\": 0,\r\n \"targetDedicatedNodes\": 0,\r\n \"currentLowPriorityNodes\": 0,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"certificateReferences\": [],\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Pack\"\r\n },\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"6\",\r\n \"osVersion\": \"*\"\r\n }\r\n },\r\n {\r\n \"id\": \"testIaasPool\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/pools/testIaasPool\",\r\n \"eTag\": \"0x8D80C929D027240\",\r\n \"lastModified\": \"2020-06-09T16:31:51.1866944Z\",\r\n \"creationTime\": \"2020-06-09T16:31:51.1866944Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2020-06-09T16:31:51.1866944Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2020-06-09T16:33:03.2282492Z\",\r\n \"vmSize\": \"standard_d2_v3\",\r\n \"resizeTimeout\": \"PT15M\",\r\n \"currentDedicatedNodes\": 1,\r\n \"targetDedicatedNodes\": 1,\r\n \"currentLowPriorityNodes\": 0,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"certificateReferences\": [],\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Pack\"\r\n },\r\n \"virtualMachineConfiguration\": {\r\n \"imageReference\": {\r\n \"publisher\": \"canonical\",\r\n \"offer\": \"ubuntuserver\",\r\n \"sku\": \"18.04-lts\",\r\n \"version\": \"latest\"\r\n },\r\n \"nodeAgentSKUId\": \"batch.node.ubuntu 18.04\"\r\n }\r\n },\r\n {\r\n \"id\": \"testPool\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D80C9791199D4A\",\r\n \"lastModified\": \"2020-06-09T17:07:18.6895178Z\",\r\n \"creationTime\": \"2020-06-09T16:24:01.0641346Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2020-06-09T16:24:01.0641346Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2020-06-09T17:08:19.0380872Z\",\r\n \"vmSize\": \"standard_d2_v3\",\r\n \"resizeTimeout\": \"PT15M\",\r\n \"currentDedicatedNodes\": 2,\r\n \"targetDedicatedNodes\": 2,\r\n \"currentLowPriorityNodes\": 0,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c \\\"echo hello\\\"\",\r\n \"userIdentity\": {\r\n \"autoUser\": {\r\n \"scope\": \"pool\",\r\n \"elevationLevel\": \"nonadmin\"\r\n }\r\n },\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": true\r\n },\r\n \"certificateReferences\": [],\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Pack\"\r\n },\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"6\",\r\n \"osVersion\": \"*\"\r\n }\r\n },\r\n {\r\n \"id\": \"zfengautoscalepool\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/pools/zfengautoscalepool\",\r\n \"eTag\": \"0x8D7D48880C5F463\",\r\n \"lastModified\": \"2020-03-30T08:58:23.7312099Z\",\r\n \"creationTime\": \"2019-06-27T18:53:16.5065249Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2019-06-27T18:53:16.5065249Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2020-03-30T09:02:09.5905317Z\",\r\n \"vmSize\": \"standard_a1\",\r\n \"resizeTimeout\": \"PT15M\",\r\n \"currentDedicatedNodes\": 0,\r\n \"targetDedicatedNodes\": 0,\r\n \"currentLowPriorityNodes\": 0,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": true,\r\n \"autoScaleFormula\": \"$curTime = time();\\n$workHours = $curTime.hour >= 8 && $curTime.hour<20;\\n$isWeekday = $curTime.weekday >= 1 && $curTime.weekday <= 5;\\n$isWorkingWeekdayHour = $workHours && $isWeekday;\\n$TargetDedicated = $isWorkingWeekdayHour ? 0:0\",\r\n \"autoScaleEvaluationInterval\": \"PT15M\",\r\n \"autoScaleRun\": {\r\n \"timestamp\": \"2020-06-09T22:26:53.275134Z\",\r\n \"results\": \"$TargetDedicatedNodes=0;$TargetLowPriorityNodes=0;$NodeDeallocationOption=requeue;$curTime=2020-06-09T22:26:53.280Z;$isWeekday=1;$isWorkingWeekdayHour=0;$workHours=0\"\r\n },\r\n \"enableInterNodeCommunication\": false,\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Pack\"\r\n },\r\n \"virtualMachineConfiguration\": {\r\n \"imageReference\": {\r\n \"publisher\": \"microsoft-azure-batch\",\r\n \"offer\": \"centos-container\",\r\n \"sku\": \"7-6\",\r\n \"version\": \"latest\"\r\n },\r\n \"nodeAgentSKUId\": \"batch.node.centos 7\"\r\n }\r\n },\r\n {\r\n \"id\": \"zfengpool\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/pools/zfengpool\",\r\n \"eTag\": \"0x8D6FB5688912351\",\r\n \"lastModified\": \"2019-06-27T23:23:59.6476241Z\",\r\n \"creationTime\": \"2019-06-14T19:35:54.0821847Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2019-06-14T19:35:54.0821847Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2019-06-27T23:23:59.6731401Z\",\r\n \"vmSize\": \"standard_a1\",\r\n \"resizeTimeout\": \"PT15M\",\r\n \"currentDedicatedNodes\": 0,\r\n \"targetDedicatedNodes\": 0,\r\n \"currentLowPriorityNodes\": 0,\r\n \"targetLowPriorityNodes\": 0,\r\n \"resizeErrors\": [\r\n {\r\n \"code\": \"AccountCoreQuotaReached\",\r\n \"message\": \"The specified account has reached core quota\"\r\n }\r\n ],\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Pack\"\r\n },\r\n \"virtualMachineConfiguration\": {\r\n \"imageReference\": {\r\n \"publisher\": \"OpenLogic\",\r\n \"offer\": \"CentOS\",\r\n \"sku\": \"7.6\",\r\n \"version\": \"latest\"\r\n },\r\n \"nodeAgentSKUId\": \"batch.node.centos 7\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#pools\",\r\n \"value\": [\r\n {\r\n \"id\": \"mpiPool\",\r\n \"url\": \"https://mikeportal.eastus.batch.azure.com/pools/mpiPool\",\r\n \"eTag\": \"0x8D96974EC41F09B\",\r\n \"lastModified\": \"2021-08-27T16:08:35.0503067Z\",\r\n \"creationTime\": \"2021-08-27T16:08:35.0503067Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2021-08-27T16:08:35.0503067Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2021-08-27T16:13:54.672443Z\",\r\n \"vmSize\": \"standard_d1_v2\",\r\n \"resizeTimeout\": \"PT15M\",\r\n \"currentDedicatedNodes\": 3,\r\n \"targetDedicatedNodes\": 3,\r\n \"currentLowPriorityNodes\": 0,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": true,\r\n \"taskSlotsPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"osVersion\": \"*\"\r\n }\r\n },\r\n {\r\n \"id\": \"pool1\",\r\n \"url\": \"https://mikeportal.eastus.batch.azure.com/pools/pool1\",\r\n \"eTag\": \"0x8D9697778B5D508\",\r\n \"lastModified\": \"2021-08-27T16:26:49.6843016Z\",\r\n \"creationTime\": \"2021-08-27T16:26:47.9252778Z\",\r\n \"state\": \"deleting\",\r\n \"stateTransitionTime\": \"2021-08-27T16:26:49.6843016Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2021-08-27T16:26:49.6972996Z\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT7M9.497S\",\r\n \"currentDedicatedNodes\": 0,\r\n \"targetDedicatedNodes\": 0,\r\n \"currentLowPriorityNodes\": 0,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"taskSlotsPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"osVersion\": \"*\"\r\n }\r\n },\r\n {\r\n \"id\": \"pool2\",\r\n \"url\": \"https://mikeportal.eastus.batch.azure.com/pools/pool2\",\r\n \"eTag\": \"0x8D9697778C34263\",\r\n \"lastModified\": \"2021-08-27T16:26:49.7722979Z\",\r\n \"creationTime\": \"2021-08-27T16:26:48.2252842Z\",\r\n \"state\": \"deleting\",\r\n \"stateTransitionTime\": \"2021-08-27T16:26:49.7722979Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2021-08-27T16:26:49.7873004Z\",\r\n \"vmSize\": \"standard_d1_v2\",\r\n \"resizeTimeout\": \"PT7M9.497S\",\r\n \"currentDedicatedNodes\": 0,\r\n \"targetDedicatedNodes\": 0,\r\n \"currentLowPriorityNodes\": 0,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"/bin/bash -c 'echo start task'\",\r\n \"userIdentity\": {\r\n \"autoUser\": {\r\n \"scope\": \"pool\",\r\n \"elevationLevel\": \"nonadmin\"\r\n }\r\n },\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": true\r\n },\r\n \"certificateReferences\": [],\r\n \"taskSlotsPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"virtualMachineConfiguration\": {\r\n \"imageReference\": {\r\n \"publisher\": \"microsoft-azure-batch\",\r\n \"offer\": \"ubuntu-server-container\",\r\n \"sku\": \"16-04-lts\",\r\n \"version\": \"latest\"\r\n },\r\n \"nodeAgentSKUId\": \"batch.node.ubuntu 16.04\",\r\n \"containerConfiguration\": {\r\n \"type\": \"dockerCompatible\",\r\n \"containerImageNames\": [\r\n \"test\"\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"removenodepool\",\r\n \"url\": \"https://mikeportal.eastus.batch.azure.com/pools/removenodepool\",\r\n \"eTag\": \"0x8D9697772F64140\",\r\n \"lastModified\": \"2021-08-27T16:26:40.0401728Z\",\r\n \"creationTime\": \"2021-08-27T16:24:47.5397315Z\",\r\n \"state\": \"deleting\",\r\n \"stateTransitionTime\": \"2021-08-27T16:26:40.0401728Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2021-08-27T16:26:45.1162398Z\",\r\n \"vmSize\": \"standard_d1_v2\",\r\n \"resizeTimeout\": \"PT7M9.497S\",\r\n \"currentDedicatedNodes\": 0,\r\n \"targetDedicatedNodes\": 0,\r\n \"currentLowPriorityNodes\": 0,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": true,\r\n \"taskSlotsPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"osVersion\": \"*\"\r\n }\r\n },\r\n {\r\n \"id\": \"resizePool\",\r\n \"url\": \"https://mikeportal.eastus.batch.azure.com/pools/resizePool\",\r\n \"eTag\": \"0x8D96977757992E5\",\r\n \"lastModified\": \"2021-08-27T16:26:44.2562277Z\",\r\n \"creationTime\": \"2021-08-27T16:26:42.4502033Z\",\r\n \"state\": \"deleting\",\r\n \"stateTransitionTime\": \"2021-08-27T16:26:44.2562277Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2021-08-27T16:26:44.2832285Z\",\r\n \"vmSize\": \"standard_d1_v2\",\r\n \"resizeTimeout\": \"PT7M9.497S\",\r\n \"currentDedicatedNodes\": 0,\r\n \"targetDedicatedNodes\": 0,\r\n \"currentLowPriorityNodes\": 0,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": true,\r\n \"taskSlotsPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"osVersion\": \"*\"\r\n }\r\n },\r\n {\r\n \"id\": \"testIaasPool\",\r\n \"url\": \"https://mikeportal.eastus.batch.azure.com/pools/testIaasPool\",\r\n \"eTag\": \"0x8D968F9CE6E8C9D\",\r\n \"lastModified\": \"2021-08-27T01:27:16.9132701Z\",\r\n \"creationTime\": \"2021-08-27T01:27:16.9132701Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2021-08-27T01:27:16.9132701Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2021-08-27T01:28:48.6838483Z\",\r\n \"vmSize\": \"standard_d1_v2\",\r\n \"resizeTimeout\": \"PT15M\",\r\n \"currentDedicatedNodes\": 1,\r\n \"targetDedicatedNodes\": 1,\r\n \"currentLowPriorityNodes\": 0,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"taskSlotsPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"virtualMachineConfiguration\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"nodeAgentSKUId\": \"batch.node.ubuntu 16.04\"\r\n }\r\n },\r\n {\r\n \"id\": \"testPool\",\r\n \"url\": \"https://mikeportal.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D968F9CE3EF0D4\",\r\n \"lastModified\": \"2021-08-27T01:27:16.6012628Z\",\r\n \"creationTime\": \"2021-08-27T01:27:16.6012628Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2021-08-27T01:27:16.6012628Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2021-08-27T01:30:24.1264952Z\",\r\n \"vmSize\": \"standard_d1_v2\",\r\n \"resizeTimeout\": \"PT15M\",\r\n \"currentDedicatedNodes\": 3,\r\n \"targetDedicatedNodes\": 3,\r\n \"currentLowPriorityNodes\": 0,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": false,\r\n \"startTask\": {\r\n \"commandLine\": \"cmd /c echo hello\",\r\n \"userIdentity\": {\r\n \"autoUser\": {\r\n \"scope\": \"pool\",\r\n \"elevationLevel\": \"nonadmin\"\r\n }\r\n },\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": true\r\n },\r\n \"taskSlotsPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"osVersion\": \"*\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 } ], "Names": {}, "Variables": { - "SubscriptionId": "21abd678-18c5-4660-9fdd-8c5ba6b6fe1f", - "AZURE_BATCH_ACCOUNT": "prodtest6", - "AZURE_BATCH_ENDPOINT": "https://prodtest6.francecentral.batch.azure.com", - "AZURE_BATCH_RESOURCE_GROUP": "abc" + "SubscriptionId": "ba2358c2-42f2-4138-88df-7c68cf608bea", + "AZURE_BATCH_ACCOUNT": "mikeportal", + "AZURE_BATCH_ENDPOINT": "https://mikeportal.eastus.batch.azure.com", + "AZURE_BATCH_RESOURCE_GROUP": "batchportal" } } \ No newline at end of file diff --git a/src/Batch/Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.PoolTests/TestResizeAndStopResizePool.json b/src/Batch/Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.PoolTests/TestResizeAndStopResizePool.json index 4dfc37fc7ea2..0c24b13a5c22 100644 --- a/src/Batch/Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.PoolTests/TestResizeAndStopResizePool.json +++ b/src/Batch/Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.PoolTests/TestResizeAndStopResizePool.json @@ -1,32 +1,32 @@ { "Entries": [ { - "RequestUri": "/pools?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L3Bvb2xzP2FwaS12ZXJzaW9uPTIwMjAtMDMtMDEuMTEuMA==", + "RequestUri": "/pools?api-version=2021-06-01.14.0", + "EncodedRequestUri": "L3Bvb2xzP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDEuMTQuMA==", "RequestMethod": "POST", - "RequestBody": "{\r\n \"id\": \"resizePool\",\r\n \"vmSize\": \"small\",\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"osVersion\": \"*\"\r\n },\r\n \"targetDedicatedNodes\": 0,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableInterNodeCommunication\": true\r\n}", + "RequestBody": "{\r\n \"id\": \"resizePool\",\r\n \"vmSize\": \"standard_d1_v2\",\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"osVersion\": \"*\"\r\n },\r\n \"targetDedicatedNodes\": 0,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableInterNodeCommunication\": true\r\n}", "RequestHeaders": { "client-request-id": [ - "0bf64ba5-06bd-4bbf-978e-5bb80e3c1084" + "ee3aaf09-9dfa-48c2-af65-a72331f67dd7" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:29:30 GMT" + "Fri, 27 Aug 2021 16:31:51 GMT" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/13.0.20.15503", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", "AzurePowershell/Az1.0.0" ], "Content-Type": [ "application/json; odata=minimalmetadata; charset=utf-8" ], "Content-Length": [ - "235" + "244" ] }, "ResponseHeaders": { @@ -34,16 +34,16 @@ "chunked" ], "ETag": [ - "0x8D80CC4A081457A" + "0x8D969782C3804B9" ], "Location": [ - "https://prodtest6.francecentral.batch.azure.com/pools/resizePool" + "https://mikeportal.eastus.batch.azure.com/pools/resizePool" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "8778fcb1-34b2-41c0-992f-c30f19276d1a" + "6d751e15-9511-420b-9af8-4bdd4d764d8d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -55,38 +55,41 @@ "3.0" ], "DataServiceId": [ - "https://prodtest6.francecentral.batch.azure.com/pools/resizePool" + "https://mikeportal.eastus.batch.azure.com/pools/resizePool" ], "Date": [ - "Tue, 09 Jun 2020 22:29:51 GMT" + "Fri, 27 Aug 2021 16:31:50 GMT" ], "Last-Modified": [ - "Tue, 09 Jun 2020 22:29:51 GMT" + "Fri, 27 Aug 2021 16:31:50 GMT" ] }, "ResponseBody": "", "StatusCode": 201 }, { - "RequestUri": "/pools/resizePool?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L3Bvb2xzL3Jlc2l6ZVBvb2w/YXBpLXZlcnNpb249MjAyMC0wMy0wMS4xMS4w", + "RequestUri": "/pools/resizePool?api-version=2021-06-01.14.0", + "EncodedRequestUri": "L3Bvb2xzL3Jlc2l6ZVBvb2w/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4w", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "c3c97ff4-b347-4bc3-ad31-26625ee18b2d" + "659c71f3-e623-418a-ae4b-5986e48d4aa6" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:29:52 GMT" + "Fri, 27 Aug 2021 16:31:54 GMT" + ], + "x-ms-client-request-id": [ + "9941378f-7d4b-4d15-bcf7-b3adf125653f" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/13.0.20.15503", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", "AzurePowershell/Az1.0.0" ] }, @@ -95,13 +98,13 @@ "chunked" ], "ETag": [ - "0x8D80CC4A081457A" + "0x8D969782C3804B9" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "2ae568be-7651-44fe-a9b9-31d8c06c2d77" + "906c7035-2273-484a-902c-486e0836ddc0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -113,38 +116,41 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 22:30:14 GMT" + "Fri, 27 Aug 2021 16:31:52 GMT" ], "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Tue, 09 Jun 2020 22:29:51 GMT" + "Fri, 27 Aug 2021 16:31:50 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://prodtest6.francecentral.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"resizePool\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/pools/resizePool\",\r\n \"eTag\": \"0x8D80CC4A081457A\",\r\n \"lastModified\": \"2020-06-09T22:29:51.8875002Z\",\r\n \"creationTime\": \"2020-06-09T22:29:51.8875002Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2020-06-09T22:29:51.8875002Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2020-06-09T22:29:53.04759Z\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT15M\",\r\n \"currentDedicatedNodes\": 0,\r\n \"targetDedicatedNodes\": 0,\r\n \"currentLowPriorityNodes\": 0,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": true,\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"osVersion\": \"*\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"resizePool\",\r\n \"url\": \"https://mikeportal.eastus.batch.azure.com/pools/resizePool\",\r\n \"eTag\": \"0x8D969782C3804B9\",\r\n \"lastModified\": \"2021-08-27T16:31:50.8496569Z\",\r\n \"creationTime\": \"2021-08-27T16:31:50.8496569Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2021-08-27T16:31:50.8496569Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2021-08-27T16:31:52.2526803Z\",\r\n \"vmSize\": \"standard_d1_v2\",\r\n \"resizeTimeout\": \"PT15M\",\r\n \"currentDedicatedNodes\": 0,\r\n \"targetDedicatedNodes\": 0,\r\n \"currentLowPriorityNodes\": 0,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": true,\r\n \"taskSlotsPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"osVersion\": \"*\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/pools/resizePool?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L3Bvb2xzL3Jlc2l6ZVBvb2w/YXBpLXZlcnNpb249MjAyMC0wMy0wMS4xMS4w", + "RequestUri": "/pools/resizePool?api-version=2021-06-01.14.0", + "EncodedRequestUri": "L3Bvb2xzL3Jlc2l6ZVBvb2w/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4w", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "272ae7dc-0ac5-4a3f-9943-013866f25590" + "e74aeae3-d487-4820-9431-5292772a2f80" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:30:14 GMT" + "Fri, 27 Aug 2021 16:31:54 GMT" + ], + "x-ms-client-request-id": [ + "56ebcd9b-4e7b-4d42-8a9a-d75489076aa6" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/13.0.20.15503", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", "AzurePowershell/Az1.0.0" ] }, @@ -153,13 +159,13 @@ "chunked" ], "ETag": [ - "0x8D80CC4ADE9845D" + "0x8D969782DBEF48E" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "000132ad-6ae9-47bf-8aec-7de81d44b9cf" + "0fcd5a11-a722-4aa4-bf41-2d6d4b7fc87f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -171,38 +177,41 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 22:30:14 GMT" + "Fri, 27 Aug 2021 16:31:52 GMT" ], "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Tue, 09 Jun 2020 22:30:14 GMT" + "Fri, 27 Aug 2021 16:31:53 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://prodtest6.francecentral.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"resizePool\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/pools/resizePool\",\r\n \"eTag\": \"0x8D80CC4ADE9845D\",\r\n \"lastModified\": \"2020-06-09T22:30:14.3810653Z\",\r\n \"creationTime\": \"2020-06-09T22:29:51.8875002Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2020-06-09T22:29:51.8875002Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2020-06-09T22:30:14.3810653Z\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT15M\",\r\n \"currentDedicatedNodes\": 0,\r\n \"targetDedicatedNodes\": 1,\r\n \"currentLowPriorityNodes\": 0,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": true,\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"osVersion\": \"*\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"resizePool\",\r\n \"url\": \"https://mikeportal.eastus.batch.azure.com/pools/resizePool\",\r\n \"eTag\": \"0x8D969782DBEF48E\",\r\n \"lastModified\": \"2021-08-27T16:31:53.4117006Z\",\r\n \"creationTime\": \"2021-08-27T16:31:50.8496569Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2021-08-27T16:31:50.8496569Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2021-08-27T16:31:53.4117006Z\",\r\n \"vmSize\": \"standard_d1_v2\",\r\n \"resizeTimeout\": \"PT15M\",\r\n \"currentDedicatedNodes\": 0,\r\n \"targetDedicatedNodes\": 1,\r\n \"currentLowPriorityNodes\": 0,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": true,\r\n \"taskSlotsPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"osVersion\": \"*\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/pools/resizePool?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L3Bvb2xzL3Jlc2l6ZVBvb2w/YXBpLXZlcnNpb249MjAyMC0wMy0wMS4xMS4w", + "RequestUri": "/pools/resizePool?api-version=2021-06-01.14.0", + "EncodedRequestUri": "L3Bvb2xzL3Jlc2l6ZVBvb2w/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4w", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "7afc67f0-e3b0-4918-a02f-61111776e72e" + "ba259888-5c49-4e3e-a71c-045828a770be" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:30:14 GMT" + "Fri, 27 Aug 2021 16:31:54 GMT" + ], + "x-ms-client-request-id": [ + "3d348169-6be7-4ecc-b26c-4e050c3a74ac" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/13.0.20.15503", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", "AzurePowershell/Az1.0.0" ] }, @@ -211,13 +220,13 @@ "chunked" ], "ETag": [ - "0x8D80CC4ADE9845D" + "0x8D969782DBEF48E" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "b30a2b98-1ab3-48ee-b467-a8e82450379e" + "f2efb972-6b3d-411b-9aad-707054d757e7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -229,38 +238,41 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 22:30:14 GMT" + "Fri, 27 Aug 2021 16:31:53 GMT" ], "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Tue, 09 Jun 2020 22:30:14 GMT" + "Fri, 27 Aug 2021 16:31:53 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://prodtest6.francecentral.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"resizePool\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/pools/resizePool\",\r\n \"eTag\": \"0x8D80CC4ADE9845D\",\r\n \"lastModified\": \"2020-06-09T22:30:14.3810653Z\",\r\n \"creationTime\": \"2020-06-09T22:29:51.8875002Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2020-06-09T22:29:51.8875002Z\",\r\n \"allocationState\": \"stopping\",\r\n \"allocationStateTransitionTime\": \"2020-06-09T22:30:14.7587257Z\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT15M\",\r\n \"currentDedicatedNodes\": 0,\r\n \"targetDedicatedNodes\": 1,\r\n \"currentLowPriorityNodes\": 0,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": true,\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"osVersion\": \"*\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"resizePool\",\r\n \"url\": \"https://mikeportal.eastus.batch.azure.com/pools/resizePool\",\r\n \"eTag\": \"0x8D969782DBEF48E\",\r\n \"lastModified\": \"2021-08-27T16:31:53.4117006Z\",\r\n \"creationTime\": \"2021-08-27T16:31:50.8496569Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2021-08-27T16:31:50.8496569Z\",\r\n \"allocationState\": \"stopping\",\r\n \"allocationStateTransitionTime\": \"2021-08-27T16:31:53.6047051Z\",\r\n \"vmSize\": \"standard_d1_v2\",\r\n \"resizeTimeout\": \"PT15M\",\r\n \"currentDedicatedNodes\": 0,\r\n \"targetDedicatedNodes\": 1,\r\n \"currentLowPriorityNodes\": 0,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": true,\r\n \"taskSlotsPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"osVersion\": \"*\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/pools/resizePool/resize?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L3Bvb2xzL3Jlc2l6ZVBvb2wvcmVzaXplP2FwaS12ZXJzaW9uPTIwMjAtMDMtMDEuMTEuMA==", + "RequestUri": "/pools/resizePool/resize?api-version=2021-06-01.14.0", + "EncodedRequestUri": "L3Bvb2xzL3Jlc2l6ZVBvb2wvcmVzaXplP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDEuMTQuMA==", "RequestMethod": "POST", "RequestBody": "{\r\n \"targetDedicatedNodes\": 1\r\n}", "RequestHeaders": { "client-request-id": [ - "7b4068ea-2f48-4b8e-b6a1-1045718c95c0" + "0bae91fb-07f1-4e42-9ffe-ff42e38bd8df" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:30:14 GMT" + "Fri, 27 Aug 2021 16:31:54 GMT" + ], + "x-ms-client-request-id": [ + "b1b1f70c-9535-447f-a88f-628e9247956f" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/13.0.20.15503", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", "AzurePowershell/Az1.0.0" ], "Content-Type": [ @@ -275,13 +287,13 @@ "chunked" ], "ETag": [ - "0x8D80CC4ADE9845D" + "0x8D969782DBEF48E" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "e9cc340f-8098-4697-aa7c-19349db90bfe" + "fb66c7d5-7696-4f75-9faf-2b357be60cb2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -293,38 +305,41 @@ "3.0" ], "DataServiceId": [ - "https://prodtest6.francecentral.batch.azure.com/pools/resizePool/resize" + "https://mikeportal.eastus.batch.azure.com/pools/resizePool/resize" ], "Date": [ - "Tue, 09 Jun 2020 22:30:14 GMT" + "Fri, 27 Aug 2021 16:31:52 GMT" ], "Last-Modified": [ - "Tue, 09 Jun 2020 22:30:14 GMT" + "Fri, 27 Aug 2021 16:31:53 GMT" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/pools/resizePool/stopresize?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L3Bvb2xzL3Jlc2l6ZVBvb2wvc3RvcHJlc2l6ZT9hcGktdmVyc2lvbj0yMDIwLTAzLTAxLjExLjA=", + "RequestUri": "/pools/resizePool/stopresize?api-version=2021-06-01.14.0", + "EncodedRequestUri": "L3Bvb2xzL3Jlc2l6ZVBvb2wvc3RvcHJlc2l6ZT9hcGktdmVyc2lvbj0yMDIxLTA2LTAxLjE0LjA=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "07dbb2d4-58cc-4036-8b10-bc55df09c925" + "f8275ea1-b4c4-4f4a-8714-cbffc31ca01a" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:30:14 GMT" + "Fri, 27 Aug 2021 16:31:54 GMT" + ], + "x-ms-client-request-id": [ + "7fbb2363-2ab0-4462-abe0-5cbef43917d5" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/13.0.20.15503", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", "AzurePowershell/Az1.0.0" ], "Content-Length": [ @@ -336,13 +351,13 @@ "chunked" ], "ETag": [ - "0x8D80CC4ADE9845D" + "0x8D969782DBEF48E" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "7205de5a-7a59-4f0d-ac51-f4411c13dfce" + "70c3102e-2566-4a8a-9ed7-6e95e1b7af36" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -354,38 +369,38 @@ "3.0" ], "DataServiceId": [ - "https://prodtest6.francecentral.batch.azure.com/pools/resizePool/stopresize" + "https://mikeportal.eastus.batch.azure.com/pools/resizePool/stopresize" ], "Date": [ - "Tue, 09 Jun 2020 22:30:14 GMT" + "Fri, 27 Aug 2021 16:31:53 GMT" ], "Last-Modified": [ - "Tue, 09 Jun 2020 22:30:14 GMT" + "Fri, 27 Aug 2021 16:31:53 GMT" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/pools/resizePool?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L3Bvb2xzL3Jlc2l6ZVBvb2w/YXBpLXZlcnNpb249MjAyMC0wMy0wMS4xMS4w", + "RequestUri": "/pools/resizePool?api-version=2021-06-01.14.0", + "EncodedRequestUri": "L3Bvb2xzL3Jlc2l6ZVBvb2w/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4w", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "880c199d-0f45-4c49-a260-7ee016e4f4c4" + "8b1cca22-9d96-40ab-8a43-238918281f91" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:30:15 GMT" + "Fri, 27 Aug 2021 16:31:54 GMT" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/13.0.20.15503", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", "AzurePowershell/Az1.0.0" ], "Content-Length": [ @@ -400,7 +415,7 @@ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "bfbf8bee-9ed9-4785-8eff-e918c8d07545" + "a9f523e8-07c9-43b8-90b5-9dcce6311277" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -412,7 +427,7 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 22:30:15 GMT" + "Fri, 27 Aug 2021 16:32:04 GMT" ] }, "ResponseBody": "", @@ -421,9 +436,9 @@ ], "Names": {}, "Variables": { - "SubscriptionId": "21abd678-18c5-4660-9fdd-8c5ba6b6fe1f", - "AZURE_BATCH_ACCOUNT": "prodtest6", - "AZURE_BATCH_ENDPOINT": "https://prodtest6.francecentral.batch.azure.com", - "AZURE_BATCH_RESOURCE_GROUP": "abc" + "SubscriptionId": "ba2358c2-42f2-4138-88df-7c68cf608bea", + "AZURE_BATCH_ACCOUNT": "mikeportal", + "AZURE_BATCH_ENDPOINT": "https://mikeportal.eastus.batch.azure.com", + "AZURE_BATCH_RESOURCE_GROUP": "batchportal" } } \ No newline at end of file diff --git a/src/Batch/Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.TaskTests/TestCreateTaskCollection.json b/src/Batch/Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.TaskTests/TestCreateTaskCollection.json index ab20d8844392..bf1e2950d448 100644 --- a/src/Batch/Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.TaskTests/TestCreateTaskCollection.json +++ b/src/Batch/Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.TaskTests/TestCreateTaskCollection.json @@ -1,25 +1,25 @@ { "Entries": [ { - "RequestUri": "/jobs?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAyMC0wMy0wMS4xMS4w", + "RequestUri": "/jobs?api-version=2021-06-01.14.0", + "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4w", "RequestMethod": "POST", "RequestBody": "{\r\n \"id\": \"createTaskCollectionJob\",\r\n \"priority\": 0,\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n}", "RequestHeaders": { "client-request-id": [ - "67b3f1b4-1173-4bc8-9117-c3849bb972f6" + "50320824-ce24-4745-b2ba-9358565cff82" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:31:32 GMT" + "Fri, 27 Aug 2021 16:08:31 GMT" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/13.0.20.15503", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", "AzurePowershell/Az1.0.0" ], "Content-Type": [ @@ -34,16 +34,16 @@ "chunked" ], "ETag": [ - "0x8D80CC4E989D3D3" + "0x8D96974E9FCDC34" ], "Location": [ - "https://prodtest6.francecentral.batch.azure.com/jobs/job-1" + "https://mikeportal.eastus.batch.azure.com/jobs/job-1" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "664d731a-3010-46f4-9cfa-cc5997ba218e" + "b532b1bf-5baa-4f40-8edb-615b9dc80f28" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -55,38 +55,41 @@ "3.0" ], "DataServiceId": [ - "https://prodtest6.francecentral.batch.azure.com/jobs/job-1" + "https://mikeportal.eastus.batch.azure.com/jobs/job-1" ], "Date": [ - "Tue, 09 Jun 2020 22:31:54 GMT" + "Fri, 27 Aug 2021 16:08:30 GMT" ], "Last-Modified": [ - "Tue, 09 Jun 2020 22:31:54 GMT" + "Fri, 27 Aug 2021 16:08:31 GMT" ] }, "ResponseBody": "", "StatusCode": 201 }, { - "RequestUri": "/jobs/createTaskCollectionJob?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L2pvYnMvY3JlYXRlVGFza0NvbGxlY3Rpb25Kb2I/YXBpLXZlcnNpb249MjAyMC0wMy0wMS4xMS4w", + "RequestUri": "/jobs/createTaskCollectionJob?api-version=2021-06-01.14.0", + "EncodedRequestUri": "L2pvYnMvY3JlYXRlVGFza0NvbGxlY3Rpb25Kb2I/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4w", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "a15f71b1-e526-4f35-a188-256002313f29" + "74c4b57f-879b-45c5-bebb-2572b3f45c90" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:31:54 GMT" + "Fri, 27 Aug 2021 16:08:32 GMT" + ], + "x-ms-client-request-id": [ + "c4e01625-e516-41dc-b2e4-e4bccaaa0f91" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/13.0.20.15503", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", "AzurePowershell/Az1.0.0" ] }, @@ -95,13 +98,13 @@ "chunked" ], "ETag": [ - "0x8D80CC4E989D3D3" + "0x8D96974E9FCDC34" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "fc918c03-5b4d-408b-a251-21bcfd5609fd" + "7d33dd7b-202f-4fbe-b897-b8c091771015" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -113,38 +116,41 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 22:32:16 GMT" + "Fri, 27 Aug 2021 16:08:32 GMT" ], "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Tue, 09 Jun 2020 22:31:54 GMT" + "Fri, 27 Aug 2021 16:08:31 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://prodtest6.francecentral.batch.azure.com/$metadata#jobs/@Element\",\r\n \"id\": \"createTaskCollectionJob\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/createTaskCollectionJob\",\r\n \"eTag\": \"0x8D80CC4E989D3D3\",\r\n \"lastModified\": \"2020-06-09T22:31:54.4172499Z\",\r\n \"creationTime\": \"2020-06-09T22:31:54.3952455Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2020-06-09T22:31:54.4172499Z\",\r\n \"priority\": 0,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2020-06-09T22:31:54.4172499Z\",\r\n \"poolId\": \"testPool\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#jobs/@Element\",\r\n \"id\": \"createTaskCollectionJob\",\r\n \"url\": \"https://mikeportal.eastus.batch.azure.com/jobs/createTaskCollectionJob\",\r\n \"eTag\": \"0x8D96974E9FCDC34\",\r\n \"lastModified\": \"2021-08-27T16:08:31.2421428Z\",\r\n \"creationTime\": \"2021-08-27T16:08:31.2241426Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2021-08-27T16:08:31.2421428Z\",\r\n \"priority\": 0,\r\n \"maxParallelTasks\": -1,\r\n \"usesTaskDependencies\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2021-08-27T16:08:31.2421428Z\",\r\n \"poolId\": \"testPool\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/jobs/createTaskCollectionJob/addtaskcollection?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L2pvYnMvY3JlYXRlVGFza0NvbGxlY3Rpb25Kb2IvYWRkdGFza2NvbGxlY3Rpb24/YXBpLXZlcnNpb249MjAyMC0wMy0wMS4xMS4w", + "RequestUri": "/jobs/createTaskCollectionJob/addtaskcollection?api-version=2021-06-01.14.0", + "EncodedRequestUri": "L2pvYnMvY3JlYXRlVGFza0NvbGxlY3Rpb25Kb2IvYWRkdGFza2NvbGxlY3Rpb24/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4w", "RequestMethod": "POST", "RequestBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"simple1\",\r\n \"commandLine\": \"cmd /c dir /s\"\r\n },\r\n {\r\n \"id\": \"simple2\",\r\n \"commandLine\": \"cmd /c dir /s\"\r\n }\r\n ]\r\n}", "RequestHeaders": { "client-request-id": [ - "031e48e2-f4b9-45de-b92b-fb008380fe78" + "f6c31bf7-5588-47fd-8147-c0c0ebea9f4a" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:32:16 GMT" + "Fri, 27 Aug 2021 16:08:33 GMT" + ], + "x-ms-client-request-id": [ + "c4e01625-e516-41dc-b2e4-e4bccaaa0f91" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/13.0.20.15503", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", "AzurePowershell/Az1.0.0" ], "Content-Type": [ @@ -162,7 +168,7 @@ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "19991f68-0645-4b47-a192-cdab79ba07c7" + "b6235710-37c6-48a8-b70e-69cdfd794686" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -174,35 +180,38 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 22:32:16 GMT" + "Fri, 27 Aug 2021 16:08:32 GMT" ], "Content-Type": [ "application/json; odata=minimalmetadata" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://prodtest6.francecentral.batch.azure.com/$metadata#taskaddresult\",\r\n \"value\": [\r\n {\r\n \"status\": \"Success\",\r\n \"taskId\": \"simple1\",\r\n \"eTag\": \"0x8D80CC4F6E226B8\",\r\n \"lastModified\": \"2020-06-09T22:32:16.8064696Z\",\r\n \"location\": \"https://prodtest6.francecentral.batch.azure.com/jobs/createTaskCollectionJob/tasks/simple1\"\r\n },\r\n {\r\n \"status\": \"Success\",\r\n \"taskId\": \"simple2\",\r\n \"eTag\": \"0x8D80CC4F6E83482\",\r\n \"lastModified\": \"2020-06-09T22:32:16.8461442Z\",\r\n \"location\": \"https://prodtest6.francecentral.batch.azure.com/jobs/createTaskCollectionJob/tasks/simple2\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#taskaddresult\",\r\n \"value\": [\r\n {\r\n \"status\": \"Success\",\r\n \"taskId\": \"simple1\",\r\n \"eTag\": \"0x8D96974EAAD16B1\",\r\n \"lastModified\": \"2021-08-27T16:08:32.3970737Z\",\r\n \"location\": \"https://mikeportal.eastus.batch.azure.com/jobs/createTaskCollectionJob/tasks/simple1\"\r\n },\r\n {\r\n \"status\": \"Success\",\r\n \"taskId\": \"simple2\",\r\n \"eTag\": \"0x8D96974EAAD3D9D\",\r\n \"lastModified\": \"2021-08-27T16:08:32.3980701Z\",\r\n \"location\": \"https://mikeportal.eastus.batch.azure.com/jobs/createTaskCollectionJob/tasks/simple2\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/jobs/createTaskCollectionJob/addtaskcollection?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L2pvYnMvY3JlYXRlVGFza0NvbGxlY3Rpb25Kb2IvYWRkdGFza2NvbGxlY3Rpb24/YXBpLXZlcnNpb249MjAyMC0wMy0wMS4xMS4w", + "RequestUri": "/jobs/createTaskCollectionJob/addtaskcollection?api-version=2021-06-01.14.0", + "EncodedRequestUri": "L2pvYnMvY3JlYXRlVGFza0NvbGxlY3Rpb25Kb2IvYWRkdGFza2NvbGxlY3Rpb24/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4w", "RequestMethod": "POST", - "RequestBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"complex1\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"resourceFiles\": [\r\n {\r\n \"httpUrl\": \"https://testacct.blob.core.windows.net/\",\r\n \"filePath\": \"file1\"\r\n }\r\n ],\r\n \"environmentSettings\": [\r\n {\r\n \"name\": \"env1\",\r\n \"value\": \"value1\"\r\n },\r\n {\r\n \"name\": \"env2\",\r\n \"value\": \"value2\"\r\n }\r\n ],\r\n \"affinityInfo\": {\r\n \"affinityId\": \"affinityId\"\r\n },\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P1D\",\r\n \"retentionTime\": \"P2D\",\r\n \"maxTaskRetryCount\": 5\r\n },\r\n \"multiInstanceSettings\": {\r\n \"numberOfInstances\": 3,\r\n \"coordinationCommandLine\": \"cmd /c echo coordinating\",\r\n \"commonResourceFiles\": [\r\n {\r\n \"httpUrl\": \"https://common.blob.core.windows.net/\",\r\n \"filePath\": \"common.exe\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"simple3\",\r\n \"commandLine\": \"cmd /c dir /s\"\r\n }\r\n ]\r\n}", + "RequestBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"complex1\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"resourceFiles\": [\r\n {\r\n \"httpUrl\": \"https://testacct.blob.core.windows.net/\",\r\n \"filePath\": \"file1\"\r\n }\r\n ],\r\n \"environmentSettings\": [\r\n {\r\n \"name\": \"env2\",\r\n \"value\": \"value2\"\r\n },\r\n {\r\n \"name\": \"env1\",\r\n \"value\": \"value1\"\r\n }\r\n ],\r\n \"affinityInfo\": {\r\n \"affinityId\": \"affinityId\"\r\n },\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P1D\",\r\n \"retentionTime\": \"P2D\",\r\n \"maxTaskRetryCount\": 5\r\n },\r\n \"multiInstanceSettings\": {\r\n \"numberOfInstances\": 3,\r\n \"coordinationCommandLine\": \"cmd /c echo coordinating\",\r\n \"commonResourceFiles\": [\r\n {\r\n \"httpUrl\": \"https://common.blob.core.windows.net/\",\r\n \"filePath\": \"common.exe\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"simple3\",\r\n \"commandLine\": \"cmd /c dir /s\"\r\n }\r\n ]\r\n}", "RequestHeaders": { "client-request-id": [ - "26a2e505-f296-4264-9beb-d3b01bb6f3c0" + "d49c990d-c19e-4d3e-91cf-768b0072149b" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:32:17 GMT" + "Fri, 27 Aug 2021 16:08:33 GMT" + ], + "x-ms-client-request-id": [ + "cecb8ae8-a9c7-4ad7-8754-b5c20a1ca75c" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/13.0.20.15503", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", "AzurePowershell/Az1.0.0" ], "Content-Type": [ @@ -220,7 +229,7 @@ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "dc551187-36a6-4340-b846-f2c357a52885" + "880f365d-fc10-490a-8618-6a9592258326" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -232,35 +241,38 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 22:32:16 GMT" + "Fri, 27 Aug 2021 16:08:32 GMT" ], "Content-Type": [ "application/json; odata=minimalmetadata" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://prodtest6.francecentral.batch.azure.com/$metadata#taskaddresult\",\r\n \"value\": [\r\n {\r\n \"status\": \"Success\",\r\n \"taskId\": \"complex1\",\r\n \"eTag\": \"0x8D80CC4F74441E5\",\r\n \"lastModified\": \"2020-06-09T22:32:17.4494181Z\",\r\n \"location\": \"https://prodtest6.francecentral.batch.azure.com/jobs/createTaskCollectionJob/tasks/complex1\"\r\n },\r\n {\r\n \"status\": \"Success\",\r\n \"taskId\": \"simple3\",\r\n \"eTag\": \"0x8D80CC4F7449023\",\r\n \"lastModified\": \"2020-06-09T22:32:17.4514211Z\",\r\n \"location\": \"https://prodtest6.francecentral.batch.azure.com/jobs/createTaskCollectionJob/tasks/simple3\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#taskaddresult\",\r\n \"value\": [\r\n {\r\n \"status\": \"Success\",\r\n \"taskId\": \"simple3\",\r\n \"eTag\": \"0x8D96974EAEA6DD5\",\r\n \"lastModified\": \"2021-08-27T16:08:32.7990741Z\",\r\n \"location\": \"https://mikeportal.eastus.batch.azure.com/jobs/createTaskCollectionJob/tasks/simple3\"\r\n },\r\n {\r\n \"status\": \"Success\",\r\n \"taskId\": \"complex1\",\r\n \"eTag\": \"0x8D96974EAEA6DD5\",\r\n \"lastModified\": \"2021-08-27T16:08:32.7990741Z\",\r\n \"location\": \"https://mikeportal.eastus.batch.azure.com/jobs/createTaskCollectionJob/tasks/complex1\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/jobs/createTaskCollectionJob/tasks/simple1?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L2pvYnMvY3JlYXRlVGFza0NvbGxlY3Rpb25Kb2IvdGFza3Mvc2ltcGxlMT9hcGktdmVyc2lvbj0yMDIwLTAzLTAxLjExLjA=", + "RequestUri": "/jobs/createTaskCollectionJob/tasks/simple1?api-version=2021-06-01.14.0", + "EncodedRequestUri": "L2pvYnMvY3JlYXRlVGFza0NvbGxlY3Rpb25Kb2IvdGFza3Mvc2ltcGxlMT9hcGktdmVyc2lvbj0yMDIxLTA2LTAxLjE0LjA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "483b3fc5-1ed3-4e7c-9a88-30a6bdc81b08" + "a5ffad8f-5d95-426c-9864-55ad6c89874b" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:32:16 GMT" + "Fri, 27 Aug 2021 16:08:33 GMT" + ], + "x-ms-client-request-id": [ + "2b059d30-582c-4ccb-aab5-019f5e2fd48c" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/13.0.20.15503", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", "AzurePowershell/Az1.0.0" ] }, @@ -269,13 +281,13 @@ "chunked" ], "ETag": [ - "0x8D80CC4F6E226B8" + "0x8D96974EAAD16B1" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "560488b5-64d7-4158-bf40-8f73fffe1019" + "259c979d-df19-4042-95b4-9fba6c2e6238" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -287,38 +299,41 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 22:32:16 GMT" + "Fri, 27 Aug 2021 16:08:32 GMT" ], "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Tue, 09 Jun 2020 22:32:16 GMT" + "Fri, 27 Aug 2021 16:08:32 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://prodtest6.francecentral.batch.azure.com/$metadata#tasks/@Element\",\r\n \"id\": \"simple1\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/createTaskCollectionJob/tasks/simple1\",\r\n \"eTag\": \"0x8D80CC4F6E226B8\",\r\n \"creationTime\": \"2020-06-09T22:32:16.8064696Z\",\r\n \"lastModified\": \"2020-06-09T22:32:16.8064696Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2020-06-09T22:32:16.8064696Z\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"userIdentity\": {\r\n \"autoUser\": {\r\n \"scope\": \"pool\",\r\n \"elevationLevel\": \"nonadmin\"\r\n }\r\n },\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"retentionTime\": \"P7D\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"executionInfo\": {\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#tasks/@Element\",\r\n \"id\": \"simple1\",\r\n \"url\": \"https://mikeportal.eastus.batch.azure.com/jobs/createTaskCollectionJob/tasks/simple1\",\r\n \"eTag\": \"0x8D96974EAAD16B1\",\r\n \"creationTime\": \"2021-08-27T16:08:32.3970737Z\",\r\n \"lastModified\": \"2021-08-27T16:08:32.3970737Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2021-08-27T16:08:32.3970737Z\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"userIdentity\": {\r\n \"autoUser\": {\r\n \"scope\": \"pool\",\r\n \"elevationLevel\": \"nonadmin\"\r\n }\r\n },\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"retentionTime\": \"P7D\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"requiredSlots\": 1,\r\n \"executionInfo\": {\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/jobs/createTaskCollectionJob/tasks/simple2?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L2pvYnMvY3JlYXRlVGFza0NvbGxlY3Rpb25Kb2IvdGFza3Mvc2ltcGxlMj9hcGktdmVyc2lvbj0yMDIwLTAzLTAxLjExLjA=", + "RequestUri": "/jobs/createTaskCollectionJob/tasks/simple2?api-version=2021-06-01.14.0", + "EncodedRequestUri": "L2pvYnMvY3JlYXRlVGFza0NvbGxlY3Rpb25Kb2IvdGFza3Mvc2ltcGxlMj9hcGktdmVyc2lvbj0yMDIxLTA2LTAxLjE0LjA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "03f49739-37a1-4f3e-bf91-268b5bf18a80" + "fef7c497-bdae-4128-993d-d02ffa5fae01" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:32:17 GMT" + "Fri, 27 Aug 2021 16:08:33 GMT" + ], + "x-ms-client-request-id": [ + "75b3b7dc-8b93-416a-8d5f-26a499c56c78" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/13.0.20.15503", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", "AzurePowershell/Az1.0.0" ] }, @@ -327,13 +342,13 @@ "chunked" ], "ETag": [ - "0x8D80CC4F6E83482" + "0x8D96974EAAD3D9D" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "56f36a73-c4d2-4ab5-a9cb-d7394613db96" + "a2b514f0-c791-4295-af2c-7d548177662b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -345,38 +360,41 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 22:32:16 GMT" + "Fri, 27 Aug 2021 16:08:32 GMT" ], "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Tue, 09 Jun 2020 22:32:16 GMT" + "Fri, 27 Aug 2021 16:08:32 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://prodtest6.francecentral.batch.azure.com/$metadata#tasks/@Element\",\r\n \"id\": \"simple2\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/createTaskCollectionJob/tasks/simple2\",\r\n \"eTag\": \"0x8D80CC4F6E83482\",\r\n \"creationTime\": \"2020-06-09T22:32:16.8461442Z\",\r\n \"lastModified\": \"2020-06-09T22:32:16.8461442Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2020-06-09T22:32:16.8461442Z\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"userIdentity\": {\r\n \"autoUser\": {\r\n \"scope\": \"pool\",\r\n \"elevationLevel\": \"nonadmin\"\r\n }\r\n },\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"retentionTime\": \"P7D\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"executionInfo\": {\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#tasks/@Element\",\r\n \"id\": \"simple2\",\r\n \"url\": \"https://mikeportal.eastus.batch.azure.com/jobs/createTaskCollectionJob/tasks/simple2\",\r\n \"eTag\": \"0x8D96974EAAD3D9D\",\r\n \"creationTime\": \"2021-08-27T16:08:32.3980701Z\",\r\n \"lastModified\": \"2021-08-27T16:08:32.3980701Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2021-08-27T16:08:32.3980701Z\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"userIdentity\": {\r\n \"autoUser\": {\r\n \"scope\": \"pool\",\r\n \"elevationLevel\": \"nonadmin\"\r\n }\r\n },\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"retentionTime\": \"P7D\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"requiredSlots\": 1,\r\n \"executionInfo\": {\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/jobs/createTaskCollectionJob/tasks/complex1?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L2pvYnMvY3JlYXRlVGFza0NvbGxlY3Rpb25Kb2IvdGFza3MvY29tcGxleDE/YXBpLXZlcnNpb249MjAyMC0wMy0wMS4xMS4w", + "RequestUri": "/jobs/createTaskCollectionJob/tasks/complex1?api-version=2021-06-01.14.0", + "EncodedRequestUri": "L2pvYnMvY3JlYXRlVGFza0NvbGxlY3Rpb25Kb2IvdGFza3MvY29tcGxleDE/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4w", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "550276a8-95a7-43ad-87a0-e3d78316eee9" + "4896d257-0920-4a6c-9d17-88e55cf25f78" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:32:17 GMT" + "Fri, 27 Aug 2021 16:08:33 GMT" + ], + "x-ms-client-request-id": [ + "e3eaeb29-c1a3-475d-a996-1e9b541766ef" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/13.0.20.15503", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", "AzurePowershell/Az1.0.0" ] }, @@ -385,13 +403,13 @@ "chunked" ], "ETag": [ - "0x8D80CC4F74441E5" + "0x8D96974EAEA6DD5" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "cb96ada8-72c8-4f80-b7a3-6dd1e5606d47" + "18dd3e3c-c109-4bee-8398-af05cec8e774" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -403,38 +421,41 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 22:32:17 GMT" + "Fri, 27 Aug 2021 16:08:32 GMT" ], "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Tue, 09 Jun 2020 22:32:17 GMT" + "Fri, 27 Aug 2021 16:08:32 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://prodtest6.francecentral.batch.azure.com/$metadata#tasks/@Element\",\r\n \"id\": \"complex1\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/createTaskCollectionJob/tasks/complex1\",\r\n \"eTag\": \"0x8D80CC4F74441E5\",\r\n \"creationTime\": \"2020-06-09T22:32:17.4494181Z\",\r\n \"lastModified\": \"2020-06-09T22:32:17.4494181Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2020-06-09T22:32:17.4494181Z\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"resourceFiles\": [\r\n {\r\n \"httpUrl\": \"https://testacct.blob.core.windows.net/\",\r\n \"filePath\": \"file1\"\r\n }\r\n ],\r\n \"environmentSettings\": [\r\n {\r\n \"name\": \"env1\",\r\n \"value\": \"value1\"\r\n },\r\n {\r\n \"name\": \"env2\",\r\n \"value\": \"value2\"\r\n }\r\n ],\r\n \"affinityInfo\": {\r\n \"affinityId\": \"affinityId\"\r\n },\r\n \"userIdentity\": {\r\n \"autoUser\": {\r\n \"scope\": \"pool\",\r\n \"elevationLevel\": \"nonadmin\"\r\n }\r\n },\r\n \"multiInstanceSettings\": {\r\n \"numberOfInstances\": 3,\r\n \"coordinationCommandLine\": \"cmd /c echo coordinating\",\r\n \"commonResourceFiles\": [\r\n {\r\n \"httpUrl\": \"https://common.blob.core.windows.net/\",\r\n \"filePath\": \"common.exe\"\r\n }\r\n ]\r\n },\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P1D\",\r\n \"retentionTime\": \"P2D\",\r\n \"maxTaskRetryCount\": 5\r\n },\r\n \"executionInfo\": {\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#tasks/@Element\",\r\n \"id\": \"complex1\",\r\n \"url\": \"https://mikeportal.eastus.batch.azure.com/jobs/createTaskCollectionJob/tasks/complex1\",\r\n \"eTag\": \"0x8D96974EAEA6DD5\",\r\n \"creationTime\": \"2021-08-27T16:08:32.7990741Z\",\r\n \"lastModified\": \"2021-08-27T16:08:32.7990741Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2021-08-27T16:08:32.7990741Z\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"resourceFiles\": [\r\n {\r\n \"httpUrl\": \"https://testacct.blob.core.windows.net/\",\r\n \"filePath\": \"file1\"\r\n }\r\n ],\r\n \"environmentSettings\": [\r\n {\r\n \"name\": \"env2\",\r\n \"value\": \"value2\"\r\n },\r\n {\r\n \"name\": \"env1\",\r\n \"value\": \"value1\"\r\n }\r\n ],\r\n \"affinityInfo\": {\r\n \"affinityId\": \"affinityId\"\r\n },\r\n \"userIdentity\": {\r\n \"autoUser\": {\r\n \"scope\": \"pool\",\r\n \"elevationLevel\": \"nonadmin\"\r\n }\r\n },\r\n \"multiInstanceSettings\": {\r\n \"numberOfInstances\": 3,\r\n \"coordinationCommandLine\": \"cmd /c echo coordinating\",\r\n \"commonResourceFiles\": [\r\n {\r\n \"httpUrl\": \"https://common.blob.core.windows.net/\",\r\n \"filePath\": \"common.exe\"\r\n }\r\n ]\r\n },\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P1D\",\r\n \"retentionTime\": \"P2D\",\r\n \"maxTaskRetryCount\": 5\r\n },\r\n \"requiredSlots\": 1,\r\n \"executionInfo\": {\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/jobs/createTaskCollectionJob/tasks/simple3?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L2pvYnMvY3JlYXRlVGFza0NvbGxlY3Rpb25Kb2IvdGFza3Mvc2ltcGxlMz9hcGktdmVyc2lvbj0yMDIwLTAzLTAxLjExLjA=", + "RequestUri": "/jobs/createTaskCollectionJob/tasks/simple3?api-version=2021-06-01.14.0", + "EncodedRequestUri": "L2pvYnMvY3JlYXRlVGFza0NvbGxlY3Rpb25Kb2IvdGFza3Mvc2ltcGxlMz9hcGktdmVyc2lvbj0yMDIxLTA2LTAxLjE0LjA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "97f9e0f7-46ee-4203-b5e7-bc1b12585f13" + "65848152-45f6-41e8-94b0-15702efd3366" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:32:17 GMT" + "Fri, 27 Aug 2021 16:08:33 GMT" + ], + "x-ms-client-request-id": [ + "213b17a0-ec63-43b7-9eb2-05040a9f6450" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/13.0.20.15503", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", "AzurePowershell/Az1.0.0" ] }, @@ -443,13 +464,13 @@ "chunked" ], "ETag": [ - "0x8D80CC4F7449023" + "0x8D96974EAEA6DD5" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "d84b37fb-8b91-4e72-8d0b-d4969616327e" + "0a5af897-8ba2-4aee-9934-37dfbc3ec98b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -461,38 +482,38 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 22:32:17 GMT" + "Fri, 27 Aug 2021 16:08:32 GMT" ], "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Tue, 09 Jun 2020 22:32:17 GMT" + "Fri, 27 Aug 2021 16:08:32 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://prodtest6.francecentral.batch.azure.com/$metadata#tasks/@Element\",\r\n \"id\": \"simple3\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/createTaskCollectionJob/tasks/simple3\",\r\n \"eTag\": \"0x8D80CC4F7449023\",\r\n \"creationTime\": \"2020-06-09T22:32:17.4514211Z\",\r\n \"lastModified\": \"2020-06-09T22:32:17.4514211Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2020-06-09T22:32:17.4514211Z\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"userIdentity\": {\r\n \"autoUser\": {\r\n \"scope\": \"pool\",\r\n \"elevationLevel\": \"nonadmin\"\r\n }\r\n },\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"retentionTime\": \"P7D\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"executionInfo\": {\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#tasks/@Element\",\r\n \"id\": \"simple3\",\r\n \"url\": \"https://mikeportal.eastus.batch.azure.com/jobs/createTaskCollectionJob/tasks/simple3\",\r\n \"eTag\": \"0x8D96974EAEA6DD5\",\r\n \"creationTime\": \"2021-08-27T16:08:32.7990741Z\",\r\n \"lastModified\": \"2021-08-27T16:08:32.7990741Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2021-08-27T16:08:32.7990741Z\",\r\n \"commandLine\": \"cmd /c dir /s\",\r\n \"userIdentity\": {\r\n \"autoUser\": {\r\n \"scope\": \"pool\",\r\n \"elevationLevel\": \"nonadmin\"\r\n }\r\n },\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"retentionTime\": \"P7D\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"requiredSlots\": 1,\r\n \"executionInfo\": {\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/jobs/createTaskCollectionJob?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L2pvYnMvY3JlYXRlVGFza0NvbGxlY3Rpb25Kb2I/YXBpLXZlcnNpb249MjAyMC0wMy0wMS4xMS4w", + "RequestUri": "/jobs/createTaskCollectionJob?api-version=2021-06-01.14.0", + "EncodedRequestUri": "L2pvYnMvY3JlYXRlVGFza0NvbGxlY3Rpb25Kb2I/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4w", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "606110c5-30c5-4d72-b460-8e122c0fdadd" + "aeb1d365-27f9-40f4-b374-18b0bdddabde" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:32:17 GMT" + "Fri, 27 Aug 2021 16:08:34 GMT" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/13.0.20.15503", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", "AzurePowershell/Az1.0.0" ], "Content-Length": [ @@ -507,7 +528,7 @@ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "8381ff7b-cfba-49a6-b9b3-ef48054162f4" + "6243aec2-87d2-4ae2-8936-64d9557f0aa6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -519,7 +540,7 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 22:32:18 GMT" + "Fri, 27 Aug 2021 16:08:32 GMT" ] }, "ResponseBody": "", @@ -528,9 +549,9 @@ ], "Names": {}, "Variables": { - "SubscriptionId": "21abd678-18c5-4660-9fdd-8c5ba6b6fe1f", - "AZURE_BATCH_ACCOUNT": "prodtest6", - "AZURE_BATCH_ENDPOINT": "https://prodtest6.francecentral.batch.azure.com", - "AZURE_BATCH_RESOURCE_GROUP": "abc" + "SubscriptionId": "ba2358c2-42f2-4138-88df-7c68cf608bea", + "AZURE_BATCH_ACCOUNT": "mikeportal", + "AZURE_BATCH_ENDPOINT": "https://mikeportal.eastus.batch.azure.com", + "AZURE_BATCH_RESOURCE_GROUP": "batchportal" } } \ No newline at end of file diff --git a/src/Batch/Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.TaskTests/TestListAllSubtasks.json b/src/Batch/Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.TaskTests/TestListAllSubtasks.json index 440eb72aa40c..e83f1c5ab7a8 100644 --- a/src/Batch/Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.TaskTests/TestListAllSubtasks.json +++ b/src/Batch/Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.TaskTests/TestListAllSubtasks.json @@ -1,40 +1,101 @@ { "Entries": [ { - "RequestUri": "/pools/mpiPool?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L3Bvb2xzL21waVBvb2w/YXBpLXZlcnNpb249MjAyMC0wMy0wMS4xMS4w", + "RequestUri": "/pools/mpiPool?api-version=2021-06-01.14.0", + "EncodedRequestUri": "L3Bvb2xzL21waVBvb2w/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4w", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "14e19ef5-8d06-4012-b100-55fc55497d1f" + "e379b927-e24f-4293-adb1-27626e2be755" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:32:19 GMT" + "Fri, 27 Aug 2021 16:08:35 GMT" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/13.0.20.15503", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", "AzurePowershell/Az1.0.0" ] }, + "ResponseHeaders": { + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "8197deec-e1f3-491c-bf77-2d9f3f0c6a89" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Fri, 27 Aug 2021 16:08:34 GMT" + ], + "Content-Length": [ + "331" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#Microsoft.Azure.Batch.Protocol.Entities.Container.errors/@Element\",\r\n \"code\": \"PoolNotFound\",\r\n \"message\": {\r\n \"lang\": \"en-US\",\r\n \"value\": \"The specified pool does not exist.\\nRequestId:8197deec-e1f3-491c-bf77-2d9f3f0c6a89\\nTime:2021-08-27T16:08:34.9570160Z\"\r\n }\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/pools?api-version=2021-06-01.14.0", + "EncodedRequestUri": "L3Bvb2xzP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDEuMTQuMA==", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"id\": \"mpiPool\",\r\n \"vmSize\": \"standard_d1_v2\",\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"osVersion\": \"*\"\r\n },\r\n \"targetDedicatedNodes\": 3,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableInterNodeCommunication\": true\r\n}", + "RequestHeaders": { + "client-request-id": [ + "5abce7de-f8a4-4e93-bb20-014a4f38e09c" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Fri, 27 Aug 2021 16:08:36 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", + "AzurePowershell/Az1.0.0" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; charset=utf-8" + ], + "Content-Length": [ + "241" + ] + }, "ResponseHeaders": { "Transfer-Encoding": [ "chunked" ], "ETag": [ - "0x8D80BFAD858C375" + "0x8D96974EC41F09B" + ], + "Location": [ + "https://mikeportal.eastus.batch.azure.com/pools/mpiPool" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "ae135b6f-3616-4c6c-8205-7a9014a09f80" + "620c9568-daf6-4fad-97df-9a38aa8efa00" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -45,39 +106,39 @@ "DataServiceVersion": [ "3.0" ], - "Date": [ - "Tue, 09 Jun 2020 22:32:40 GMT" + "DataServiceId": [ + "https://mikeportal.eastus.batch.azure.com/pools/mpiPool" ], - "Content-Type": [ - "application/json; odata=minimalmetadata" + "Date": [ + "Fri, 27 Aug 2021 16:08:34 GMT" ], "Last-Modified": [ - "Mon, 08 Jun 2020 22:25:27 GMT" + "Fri, 27 Aug 2021 16:08:35 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://prodtest6.francecentral.batch.azure.com/$metadata#pools/@Element\",\r\n \"id\": \"mpiPool\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/pools/mpiPool\",\r\n \"eTag\": \"0x8D80BFAD858C375\",\r\n \"lastModified\": \"2020-06-08T22:25:27.2350581Z\",\r\n \"creationTime\": \"2020-06-08T22:25:27.2350581Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2020-06-08T22:25:27.2350581Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2020-06-08T22:26:44.6359603Z\",\r\n \"vmSize\": \"small\",\r\n \"resizeTimeout\": \"PT15M\",\r\n \"currentDedicatedNodes\": 3,\r\n \"targetDedicatedNodes\": 3,\r\n \"currentLowPriorityNodes\": 0,\r\n \"targetLowPriorityNodes\": 0,\r\n \"enableAutoScale\": false,\r\n \"enableInterNodeCommunication\": true,\r\n \"maxTasksPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"4\",\r\n \"osVersion\": \"*\"\r\n }\r\n}", - "StatusCode": 200 + "ResponseBody": "", + "StatusCode": 201 }, { - "RequestUri": "/jobs?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAyMC0wMy0wMS4xMS4w", + "RequestUri": "/jobs?api-version=2021-06-01.14.0", + "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4w", "RequestMethod": "POST", "RequestBody": "{\r\n \"id\": \"listSubtaskJob\",\r\n \"priority\": 0,\r\n \"poolInfo\": {\r\n \"poolId\": \"mpiPool\"\r\n }\r\n}", "RequestHeaders": { "client-request-id": [ - "e43f684e-8177-43f6-9a70-d8919aede0f2" + "5fec729a-9c1e-419c-9e43-d7a7e9e71981" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:32:40 GMT" + "Fri, 27 Aug 2021 16:08:36 GMT" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/13.0.20.15503", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", "AzurePowershell/Az1.0.0" ], "Content-Type": [ @@ -92,16 +153,16 @@ "chunked" ], "ETag": [ - "0x8D80CC505618091" + "0x8D96974EC5D1580" ], "Location": [ - "https://prodtest6.francecentral.batch.azure.com/jobs/job-1" + "https://mikeportal.eastus.batch.azure.com/jobs/job-1" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "0d86b104-ea87-419b-b83d-93789c82e590" + "9b2e72fb-2af1-47ce-8e69-36211a8cd138" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -113,38 +174,38 @@ "3.0" ], "DataServiceId": [ - "https://prodtest6.francecentral.batch.azure.com/jobs/job-1" + "https://mikeportal.eastus.batch.azure.com/jobs/job-1" ], "Date": [ - "Tue, 09 Jun 2020 22:32:40 GMT" + "Fri, 27 Aug 2021 16:08:35 GMT" ], "Last-Modified": [ - "Tue, 09 Jun 2020 22:32:41 GMT" + "Fri, 27 Aug 2021 16:08:35 GMT" ] }, "ResponseBody": "", "StatusCode": 201 }, { - "RequestUri": "/jobs/listSubtaskJob/tasks?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMC0wMy0wMS4xMS4w", + "RequestUri": "/jobs/listSubtaskJob/tasks?api-version=2021-06-01.14.0", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4w", "RequestMethod": "POST", "RequestBody": "{\r\n \"id\": \"testTask\",\r\n \"commandLine\": \"cmd /c hostname\",\r\n \"userIdentity\": {\r\n \"autoUser\": {\r\n \"scope\": \"task\",\r\n \"elevationLevel\": \"nonadmin\"\r\n }\r\n },\r\n \"multiInstanceSettings\": {\r\n \"numberOfInstances\": 3,\r\n \"coordinationCommandLine\": \"cmd /c echo coordinating\"\r\n }\r\n}", "RequestHeaders": { "client-request-id": [ - "669300e7-40cf-4aa6-9a6f-c69e65d89b4d" + "089785a9-ae38-4e6d-8b54-52fc94cc554a" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:32:41 GMT" + "Fri, 27 Aug 2021 16:08:36 GMT" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/13.0.20.15503", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", "AzurePowershell/Az1.0.0" ], "Content-Type": [ @@ -159,16 +220,16 @@ "chunked" ], "ETag": [ - "0x8D80CC5057E5E44" + "0x8D96974EC6FD3F1" ], "Location": [ - "https://prodtest6.francecentral.batch.azure.com/jobs/listSubtaskJob/tasks/testTask" + "https://mikeportal.eastus.batch.azure.com/jobs/listSubtaskJob/tasks/testTask" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "9bff4ddc-8a8f-4ce4-90dc-490aa6e856b8" + "16572a75-86f4-4966-9919-d69d95d75d54" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -180,38 +241,38 @@ "3.0" ], "DataServiceId": [ - "https://prodtest6.francecentral.batch.azure.com/jobs/listSubtaskJob/tasks/testTask" + "https://mikeportal.eastus.batch.azure.com/jobs/listSubtaskJob/tasks/testTask" ], "Date": [ - "Tue, 09 Jun 2020 22:32:40 GMT" + "Fri, 27 Aug 2021 16:08:35 GMT" ], "Last-Modified": [ - "Tue, 09 Jun 2020 22:32:41 GMT" + "Fri, 27 Aug 2021 16:08:35 GMT" ] }, "ResponseBody": "", "StatusCode": 201 }, { - "RequestUri": "/jobs/listSubtaskJob/tasks/testTask?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3MvdGVzdFRhc2s/YXBpLXZlcnNpb249MjAyMC0wMy0wMS4xMS4w", + "RequestUri": "/jobs/listSubtaskJob/tasks/testTask?api-version=2021-06-01.14.0", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3MvdGVzdFRhc2s/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4w", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "55657a2f-0209-4ef4-af4b-d8c1d90888ec" + "b1ff9b58-973a-42c0-9e55-c908a94c6118" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:32:41 GMT" + "Fri, 27 Aug 2021 16:08:36 GMT" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/13.0.20.15503", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", "AzurePowershell/Az1.0.0" ] }, @@ -220,13 +281,13 @@ "chunked" ], "ETag": [ - "0x8D80CC5057E5E44" + "0x8D96974EC6FD3F1" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "8700e723-5419-41d6-ab80-c4b64ff35697" + "d27d29a0-2674-43fa-9019-580726933502" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -238,38 +299,41 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 22:32:40 GMT" + "Fri, 27 Aug 2021 16:08:35 GMT" ], "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Tue, 09 Jun 2020 22:32:41 GMT" + "Fri, 27 Aug 2021 16:08:35 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://prodtest6.francecentral.batch.azure.com/$metadata#tasks/@Element\",\r\n \"id\": \"testTask\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/listSubtaskJob/tasks/testTask\",\r\n \"eTag\": \"0x8D80CC5057E5E44\",\r\n \"creationTime\": \"2020-06-09T22:32:41.3183556Z\",\r\n \"lastModified\": \"2020-06-09T22:32:41.3183556Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2020-06-09T22:32:41.3183556Z\",\r\n \"commandLine\": \"cmd /c hostname\",\r\n \"userIdentity\": {\r\n \"autoUser\": {\r\n \"scope\": \"task\",\r\n \"elevationLevel\": \"nonadmin\"\r\n }\r\n },\r\n \"multiInstanceSettings\": {\r\n \"numberOfInstances\": 3,\r\n \"coordinationCommandLine\": \"cmd /c echo coordinating\"\r\n },\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"retentionTime\": \"P7D\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"executionInfo\": {\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#tasks/@Element\",\r\n \"id\": \"testTask\",\r\n \"url\": \"https://mikeportal.eastus.batch.azure.com/jobs/listSubtaskJob/tasks/testTask\",\r\n \"eTag\": \"0x8D96974EC6FD3F1\",\r\n \"creationTime\": \"2021-08-27T16:08:35.3510385Z\",\r\n \"lastModified\": \"2021-08-27T16:08:35.3510385Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2021-08-27T16:08:35.3510385Z\",\r\n \"commandLine\": \"cmd /c hostname\",\r\n \"userIdentity\": {\r\n \"autoUser\": {\r\n \"scope\": \"task\",\r\n \"elevationLevel\": \"nonadmin\"\r\n }\r\n },\r\n \"multiInstanceSettings\": {\r\n \"numberOfInstances\": 3,\r\n \"coordinationCommandLine\": \"cmd /c echo coordinating\"\r\n },\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"retentionTime\": \"P7D\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"requiredSlots\": 1,\r\n \"executionInfo\": {\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/jobs/listSubtaskJob/tasks/testTask?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3MvdGVzdFRhc2s/YXBpLXZlcnNpb249MjAyMC0wMy0wMS4xMS4w", + "RequestUri": "/jobs/listSubtaskJob/tasks/testTask?api-version=2021-06-01.14.0", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3MvdGVzdFRhc2s/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4w", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "6e622959-c129-4cec-afea-ed11c1857e15" + "023e9964-011f-4d45-8cd8-480bffcffd27" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:33:08 GMT" + "Fri, 27 Aug 2021 16:15:22 GMT" + ], + "x-ms-client-request-id": [ + "0777bede-953e-404c-91e8-6ce789495d14" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/13.0.20.15503", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", "AzurePowershell/Az1.0.0" ] }, @@ -278,13 +342,13 @@ "chunked" ], "ETag": [ - "0x8D80CC5057E5E44" + "0x8D96974EC6FD3F1" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "33b8e934-0f6d-4b34-bffd-6b5ef15ef005" + "44ae879c-3d66-460b-b9b6-de82d27b9fba" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -296,38 +360,246 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 22:33:08 GMT" + "Fri, 27 Aug 2021 16:15:20 GMT" ], "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Tue, 09 Jun 2020 22:32:41 GMT" + "Fri, 27 Aug 2021 16:08:35 GMT" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#tasks/@Element\",\r\n \"id\": \"testTask\",\r\n \"url\": \"https://mikeportal.eastus.batch.azure.com/jobs/listSubtaskJob/tasks/testTask\",\r\n \"eTag\": \"0x8D96974EC6FD3F1\",\r\n \"creationTime\": \"2021-08-27T16:08:35.3510385Z\",\r\n \"lastModified\": \"2021-08-27T16:08:35.3510385Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2021-08-27T16:15:19.624375Z\",\r\n \"previousState\": \"running\",\r\n \"previousStateTransitionTime\": \"2021-08-27T16:15:16.431391Z\",\r\n \"commandLine\": \"cmd /c hostname\",\r\n \"userIdentity\": {\r\n \"autoUser\": {\r\n \"scope\": \"task\",\r\n \"elevationLevel\": \"nonadmin\"\r\n }\r\n },\r\n \"multiInstanceSettings\": {\r\n \"numberOfInstances\": 3,\r\n \"coordinationCommandLine\": \"cmd /c echo coordinating\"\r\n },\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"retentionTime\": \"P7D\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"requiredSlots\": 1,\r\n \"executionInfo\": {\r\n \"startTime\": \"2021-08-27T16:15:16.494312Z\",\r\n \"endTime\": \"2021-08-27T16:15:19.624375Z\",\r\n \"exitCode\": 0,\r\n \"result\": \"success\",\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n },\r\n \"nodeInfo\": {\r\n \"affinityId\": \"TVM:tvmps_4d6151a657576f744763619e8a833f52a45e9275892de31b0bed714b573ac6d0_d\",\r\n \"nodeUrl\": \"https://mikeportal.eastus.batch.azure.com/pools/mpiPool/nodes/tvmps_4d6151a657576f744763619e8a833f52a45e9275892de31b0bed714b573ac6d0_d\",\r\n \"poolId\": \"mpiPool\",\r\n \"nodeId\": \"tvmps_4d6151a657576f744763619e8a833f52a45e9275892de31b0bed714b573ac6d0_d\",\r\n \"taskRootDirectory\": \"workitems\\\\listSubtaskJob\\\\job-1\\\\testTask\",\r\n \"taskRootDirectoryUrl\": \"https://mikeportal.eastus.batch.azure.com/pools/mpiPool/nodes/tvmps_4d6151a657576f744763619e8a833f52a45e9275892de31b0bed714b573ac6d0_d/files/workitems/listSubtaskJob/job-1/testTask\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/listSubtaskJob/tasks?api-version=2021-06-01.14.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "d82408de-2c53-4ec8-9700-583b72221139" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Fri, 27 Aug 2021 16:08:36 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "b31458e4-601b-4a33-81d2-eb38a7b6e33b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Fri, 27 Aug 2021 16:08:35 GMT" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/listSubtaskJob/tasks?api-version=2021-06-01.14.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "0bf08af3-2a8e-4d65-abb4-01cc95482d3f" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Fri, 27 Aug 2021 16:08:38 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "f013b643-6d5a-4e07-bb95-fb14815f519f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Fri, 27 Aug 2021 16:08:37 GMT" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/listSubtaskJob/tasks?api-version=2021-06-01.14.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "7b1b7cf0-f5fe-42fb-a20c-6031f44adef6" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Fri, 27 Aug 2021 16:08:40 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "ae66fbf6-b08b-4d6a-ac33-ae91a63cd605" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Fri, 27 Aug 2021 16:08:39 GMT" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/listSubtaskJob/tasks?api-version=2021-06-01.14.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "e15679e6-1e7e-49dc-ad3c-4881c302fb1f" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Fri, 27 Aug 2021 16:08:42 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "2b108d1c-760c-4703-b75d-38325bb51e1c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Fri, 27 Aug 2021 16:08:41 GMT" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://prodtest6.francecentral.batch.azure.com/$metadata#tasks/@Element\",\r\n \"id\": \"testTask\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/listSubtaskJob/tasks/testTask\",\r\n \"eTag\": \"0x8D80CC5057E5E44\",\r\n \"creationTime\": \"2020-06-09T22:32:41.3183556Z\",\r\n \"lastModified\": \"2020-06-09T22:32:41.3183556Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2020-06-09T22:32:45.654626Z\",\r\n \"previousState\": \"running\",\r\n \"previousStateTransitionTime\": \"2020-06-09T22:32:42.181325Z\",\r\n \"commandLine\": \"cmd /c hostname\",\r\n \"userIdentity\": {\r\n \"autoUser\": {\r\n \"scope\": \"task\",\r\n \"elevationLevel\": \"nonadmin\"\r\n }\r\n },\r\n \"multiInstanceSettings\": {\r\n \"numberOfInstances\": 3,\r\n \"coordinationCommandLine\": \"cmd /c echo coordinating\"\r\n },\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"retentionTime\": \"P7D\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2020-06-09T22:32:42.259507Z\",\r\n \"endTime\": \"2020-06-09T22:32:45.654626Z\",\r\n \"exitCode\": 0,\r\n \"result\": \"success\",\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n },\r\n \"nodeInfo\": {\r\n \"affinityId\": \"TVM:tvmps_0885d4555b6fc379ff567ae9918e924de275e61ab92c37251e524d65048c5731_d\",\r\n \"nodeUrl\": \"https://prodtest6.francecentral.batch.azure.com/pools/mpiPool/nodes/tvmps_0885d4555b6fc379ff567ae9918e924de275e61ab92c37251e524d65048c5731_d\",\r\n \"poolId\": \"mpiPool\",\r\n \"nodeId\": \"tvmps_0885d4555b6fc379ff567ae9918e924de275e61ab92c37251e524d65048c5731_d\",\r\n \"taskRootDirectory\": \"workitems\\\\listSubtaskJob\\\\job-1\\\\testTask\",\r\n \"taskRootDirectoryUrl\": \"https://prodtest6.francecentral.batch.azure.com/pools/mpiPool/nodes/tvmps_0885d4555b6fc379ff567ae9918e924de275e61ab92c37251e524d65048c5731_d/files/workitems/listSubtaskJob/job-1/testTask\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/jobs/listSubtaskJob/tasks?api-version=2020-03-01.11.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", - "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMC0wMy0wMS4xMS4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestUri": "/jobs/listSubtaskJob/tasks?api-version=2021-06-01.14.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "56b13606-98b6-4fcd-8980-4fd228388800" + "3ab06fa5-901f-4833-bb3f-2b4e755d6edd" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:32:41 GMT" + "Fri, 27 Aug 2021 16:08:44 GMT" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/13.0.20.15503", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", "AzurePowershell/Az1.0.0" ] }, @@ -339,7 +611,7 @@ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "42ff6267-6c4d-4a91-8224-883ee107886d" + "6547c7ea-8ea7-4056-90c4-062727a971cc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -351,35 +623,35 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 22:32:40 GMT" + "Fri, 27 Aug 2021 16:08:43 GMT" ], "Content-Type": [ "application/json; odata=minimalmetadata" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://prodtest6.francecentral.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/jobs/listSubtaskJob/tasks?api-version=2020-03-01.11.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", - "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMC0wMy0wMS4xMS4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestUri": "/jobs/listSubtaskJob/tasks?api-version=2021-06-01.14.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "b9f878a1-0db9-4257-9228-df974630dc72" + "0fa51623-2ae2-4871-807a-385536f11d0e" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:32:43 GMT" + "Fri, 27 Aug 2021 16:08:46 GMT" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/13.0.20.15503", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", "AzurePowershell/Az1.0.0" ] }, @@ -391,7 +663,7 @@ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "9e81b9a9-5b00-4cce-9a37-4e05978b122b" + "f45d42b1-733d-4304-87f5-3faaa6dd7d84" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -403,35 +675,35 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 22:32:43 GMT" + "Fri, 27 Aug 2021 16:08:45 GMT" ], "Content-Type": [ "application/json; odata=minimalmetadata" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://prodtest6.francecentral.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"running\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/jobs/listSubtaskJob/tasks?api-version=2020-03-01.11.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", - "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMC0wMy0wMS4xMS4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestUri": "/jobs/listSubtaskJob/tasks?api-version=2021-06-01.14.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "bc0a3503-8733-46c4-918e-1b3a4d686eec" + "1e54e6c0-8040-4c29-97f0-2fe5084e201f" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:32:45 GMT" + "Fri, 27 Aug 2021 16:08:48 GMT" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/13.0.20.15503", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", "AzurePowershell/Az1.0.0" ] }, @@ -443,7 +715,7 @@ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "35382561-5fed-4fb4-a0b7-e4377b8d1c60" + "cdce38d8-1b6f-4439-8f2e-6a93bd8e6b1f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -455,35 +727,35 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 22:32:45 GMT" + "Fri, 27 Aug 2021 16:08:47 GMT" ], "Content-Type": [ "application/json; odata=minimalmetadata" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://prodtest6.francecentral.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"completed\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/jobs/listSubtaskJob/tasks/testTask/subtasksinfo?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3MvdGVzdFRhc2svc3VidGFza3NpbmZvP2FwaS12ZXJzaW9uPTIwMjAtMDMtMDEuMTEuMA==", + "RequestUri": "/jobs/listSubtaskJob/tasks?api-version=2021-06-01.14.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "6dccefd6-505d-47f2-9798-2c88d591c12c" + "c0107ce1-12b2-4de8-9b1d-7ab7a109e5b6" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:32:46 GMT" + "Fri, 27 Aug 2021 16:08:51 GMT" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/13.0.20.15503", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", "AzurePowershell/Az1.0.0" ] }, @@ -495,7 +767,7 @@ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "f8bd4961-ac46-4978-a5cb-d85967e74ea3" + "1f58120d-5727-49ce-9b15-06d70a43f616" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -507,35 +779,9921 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 22:33:08 GMT" + "Fri, 27 Aug 2021 16:08:49 GMT" ], "Content-Type": [ "application/json; odata=minimalmetadata" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://prodtest6.francecentral.batch.azure.com/$metadata#subtaskinfo\",\r\n \"value\": [\r\n {\r\n \"id\": 1,\r\n \"startTime\": \"2020-06-09T22:32:42.271372Z\",\r\n \"endTime\": \"2020-06-09T22:32:45.559366Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2020-06-09T22:32:45.559366Z\",\r\n \"previousState\": \"running\",\r\n \"previousStateTransitionTime\": \"2020-06-09T22:32:42.145288Z\",\r\n \"result\": \"success\",\r\n \"exitCode\": 0,\r\n \"nodeInfo\": {\r\n \"affinityId\": \"TVM:tvmps_7ef4c0220208d7045620dd9e7a078a01693e5ac45b02a43c75611192f27d56f7_d\",\r\n \"nodeUrl\": \"https://prodtest6.francecentral.batch.azure.com/pools/mpiPool/nodes/tvmps_7ef4c0220208d7045620dd9e7a078a01693e5ac45b02a43c75611192f27d56f7_d\",\r\n \"poolId\": \"mpiPool\",\r\n \"nodeId\": \"tvmps_7ef4c0220208d7045620dd9e7a078a01693e5ac45b02a43c75611192f27d56f7_d\",\r\n \"taskRootDirectory\": \"workitems\\\\listSubtaskJob\\\\job-1\\\\testTask\",\r\n \"taskRootDirectoryUrl\": \"https://prodtest6.francecentral.batch.azure.com/pools/mpiPool/nodes/tvmps_7ef4c0220208d7045620dd9e7a078a01693e5ac45b02a43c75611192f27d56f7_d/files/workitems/listSubtaskJob/job-1/testTask\"\r\n }\r\n },\r\n {\r\n \"id\": 2,\r\n \"startTime\": \"2020-06-09T22:32:42.229088Z\",\r\n \"endTime\": \"2020-06-09T22:32:45.54492Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2020-06-09T22:32:45.54492Z\",\r\n \"previousState\": \"running\",\r\n \"previousStateTransitionTime\": \"2020-06-09T22:32:42.15398Z\",\r\n \"result\": \"success\",\r\n \"exitCode\": 0,\r\n \"nodeInfo\": {\r\n \"affinityId\": \"TVM:tvmps_5c2f945688a02f0abd6e1e161bca42c9c41be7b051d638148c33d6045c32dd17_d\",\r\n \"nodeUrl\": \"https://prodtest6.francecentral.batch.azure.com/pools/mpiPool/nodes/tvmps_5c2f945688a02f0abd6e1e161bca42c9c41be7b051d638148c33d6045c32dd17_d\",\r\n \"poolId\": \"mpiPool\",\r\n \"nodeId\": \"tvmps_5c2f945688a02f0abd6e1e161bca42c9c41be7b051d638148c33d6045c32dd17_d\",\r\n \"taskRootDirectory\": \"workitems\\\\listSubtaskJob\\\\job-1\\\\testTask\",\r\n \"taskRootDirectoryUrl\": \"https://prodtest6.francecentral.batch.azure.com/pools/mpiPool/nodes/tvmps_5c2f945688a02f0abd6e1e161bca42c9c41be7b051d638148c33d6045c32dd17_d/files/workitems/listSubtaskJob/job-1/testTask\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/jobs/listSubtaskJob/tasks/testTask/subtasksinfo?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3MvdGVzdFRhc2svc3VidGFza3NpbmZvP2FwaS12ZXJzaW9uPTIwMjAtMDMtMDEuMTEuMA==", + "RequestUri": "/jobs/listSubtaskJob/tasks?api-version=2021-06-01.14.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "58e98286-50ed-4678-95c2-7904e9568f6d" + "0ba0defe-1309-4b8c-9c47-5accc142ab12" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:33:08 GMT" + "Fri, 27 Aug 2021 16:08:53 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "0c80b17b-2937-4621-8313-86425f07e19a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Fri, 27 Aug 2021 16:08:51 GMT" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/listSubtaskJob/tasks?api-version=2021-06-01.14.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "7f6790c4-f6ec-441a-850c-618134616891" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Fri, 27 Aug 2021 16:08:55 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "262df584-c62b-4607-8f2e-a5beb12e615f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Fri, 27 Aug 2021 16:08:53 GMT" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/listSubtaskJob/tasks?api-version=2021-06-01.14.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "e4889371-4868-4811-adb3-628a3edb8bf4" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Fri, 27 Aug 2021 16:08:57 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "f4d962b7-dd94-47db-88d8-978c3a3307dd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Fri, 27 Aug 2021 16:08:55 GMT" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/listSubtaskJob/tasks?api-version=2021-06-01.14.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "6ddc3c01-7d1f-4fd0-a284-11aea405c707" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Fri, 27 Aug 2021 16:08:59 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "222f26d4-c7c2-477b-8d57-4cf8def36f63" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Fri, 27 Aug 2021 16:08:57 GMT" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/listSubtaskJob/tasks?api-version=2021-06-01.14.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "0bc6e804-98d4-4ba8-b99d-9552cba1125c" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Fri, 27 Aug 2021 16:09:01 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "58d381c7-993d-42bb-8352-e91ddb9d844f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Fri, 27 Aug 2021 16:08:59 GMT" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/listSubtaskJob/tasks?api-version=2021-06-01.14.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "b0950dd0-3413-46da-8ae5-4cc8bb849864" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Fri, 27 Aug 2021 16:09:03 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "50a90ef5-18bb-4860-97bf-6115180b021f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Fri, 27 Aug 2021 16:09:01 GMT" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/listSubtaskJob/tasks?api-version=2021-06-01.14.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "311ec34f-b7f6-4543-893c-ff772ca799eb" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Fri, 27 Aug 2021 16:09:05 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "da0324ef-c714-4a84-9620-1b3025ddcff9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Fri, 27 Aug 2021 16:09:03 GMT" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/listSubtaskJob/tasks?api-version=2021-06-01.14.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "8686fb14-d022-4314-a36c-5900df8e596c" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Fri, 27 Aug 2021 16:09:07 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "6b46af4f-942d-4bb1-b91e-d9501da4c63a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Fri, 27 Aug 2021 16:09:06 GMT" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/listSubtaskJob/tasks?api-version=2021-06-01.14.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "1c376646-447e-40eb-a1e2-21bfb42a84b5" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Fri, 27 Aug 2021 16:09:09 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "9e8ca02d-6eba-44dd-b131-a7ec8a606c10" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Fri, 27 Aug 2021 16:09:08 GMT" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/listSubtaskJob/tasks?api-version=2021-06-01.14.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "e7c52fcb-2633-4df2-a07f-54d73f2ebb34" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Fri, 27 Aug 2021 16:09:11 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "4c3736c9-dc89-42e7-b15a-5aeaf4f8f57f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Fri, 27 Aug 2021 16:09:10 GMT" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/listSubtaskJob/tasks?api-version=2021-06-01.14.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "62ff94ce-5c5e-4d24-86e6-24c4f00b05f1" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Fri, 27 Aug 2021 16:09:13 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "a2de62cb-0ea5-42ed-94a0-a03106ff82f3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Fri, 27 Aug 2021 16:09:12 GMT" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/listSubtaskJob/tasks?api-version=2021-06-01.14.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "2d8d9c2e-a6ee-4660-ad17-ef99020961a8" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Fri, 27 Aug 2021 16:09:15 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "8aea84d2-b633-467e-8f00-cceb774d0781" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Fri, 27 Aug 2021 16:09:14 GMT" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/listSubtaskJob/tasks?api-version=2021-06-01.14.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "66906be3-ccec-4572-b4e8-8946d134f8f8" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Fri, 27 Aug 2021 16:09:17 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "0f820920-70f8-44f7-a63f-271a6006aa90" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Fri, 27 Aug 2021 16:09:16 GMT" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/listSubtaskJob/tasks?api-version=2021-06-01.14.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "31ed303d-f22a-46b7-822d-141ba97ca5d8" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Fri, 27 Aug 2021 16:09:19 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "4a84b784-8459-44ea-aec4-aba8b91ce25c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Fri, 27 Aug 2021 16:09:18 GMT" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/listSubtaskJob/tasks?api-version=2021-06-01.14.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "95c4cebf-a3c4-4b76-864b-e057515e1ebd" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Fri, 27 Aug 2021 16:09:21 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "b02f9631-d464-4814-ade8-23c1a19a9727" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Fri, 27 Aug 2021 16:09:20 GMT" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/listSubtaskJob/tasks?api-version=2021-06-01.14.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "1ebe5a5f-7750-4946-848d-45a92dc60ab9" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Fri, 27 Aug 2021 16:09:24 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "201ff1fc-171f-4547-902b-b6bae00592a0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Fri, 27 Aug 2021 16:09:22 GMT" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/listSubtaskJob/tasks?api-version=2021-06-01.14.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "8fa68de7-2f27-4b38-b882-87c9df836891" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Fri, 27 Aug 2021 16:09:26 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "6d3e2adb-63c5-40a2-8bc8-e93dcd33033b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Fri, 27 Aug 2021 16:09:24 GMT" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/listSubtaskJob/tasks?api-version=2021-06-01.14.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "2dd183fb-acef-4b36-9274-fc7c9a7055ab" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Fri, 27 Aug 2021 16:09:28 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "34c4d7b4-9b57-417e-9b74-4121661468b3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Fri, 27 Aug 2021 16:09:26 GMT" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/listSubtaskJob/tasks?api-version=2021-06-01.14.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "4c6d3453-def1-4551-8385-f00ed80a9912" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Fri, 27 Aug 2021 16:09:30 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "5a1d4323-f21c-46c9-815f-99130c26d076" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Fri, 27 Aug 2021 16:09:28 GMT" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/listSubtaskJob/tasks?api-version=2021-06-01.14.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "ec03c974-2469-43f1-bd9f-d7a8d2c8eada" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Fri, 27 Aug 2021 16:09:32 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "9fc593a3-3d5a-4e3d-805e-6f7a8b033d77" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Fri, 27 Aug 2021 16:09:30 GMT" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/listSubtaskJob/tasks?api-version=2021-06-01.14.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "d2d4e028-f15f-495f-ac8f-632320409138" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Fri, 27 Aug 2021 16:09:34 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "a4de9d08-95e9-4784-a978-eff56fe2b81e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Fri, 27 Aug 2021 16:09:32 GMT" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/listSubtaskJob/tasks?api-version=2021-06-01.14.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "daf27361-6167-49c0-86b2-6c6e20c19094" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Fri, 27 Aug 2021 16:09:36 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "7177296f-41b1-48d6-a0ba-d9d40c196a7b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Fri, 27 Aug 2021 16:09:34 GMT" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/listSubtaskJob/tasks?api-version=2021-06-01.14.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "3fc23ffe-0da8-44cc-a421-5f41e4e47670" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Fri, 27 Aug 2021 16:09:38 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "1467c478-367f-4c28-8f3b-0b10295ecc0a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Fri, 27 Aug 2021 16:09:36 GMT" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/listSubtaskJob/tasks?api-version=2021-06-01.14.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "7179bd94-7295-4eb2-ad3a-e647112c4a49" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Fri, 27 Aug 2021 16:09:40 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "df402ff9-040c-477f-94b0-8250239f0fc9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Fri, 27 Aug 2021 16:09:38 GMT" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/listSubtaskJob/tasks?api-version=2021-06-01.14.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "0f60d44c-8f09-43c2-a760-1885a15a3ccf" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Fri, 27 Aug 2021 16:09:42 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "e6bf4978-3048-4e7b-9e33-e7a23c5e8828" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Fri, 27 Aug 2021 16:09:40 GMT" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/listSubtaskJob/tasks?api-version=2021-06-01.14.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "9d949b67-d381-4454-bcc1-0609abb7ef36" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Fri, 27 Aug 2021 16:09:44 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "2c710d76-49c3-423a-b4ec-7b9e4f1793b9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Fri, 27 Aug 2021 16:09:42 GMT" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/listSubtaskJob/tasks?api-version=2021-06-01.14.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "6b820488-9b3b-4063-9b4b-2689694491f3" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Fri, 27 Aug 2021 16:09:46 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "06800c16-eebe-45ac-adc8-802fe0af0809" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Fri, 27 Aug 2021 16:09:45 GMT" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/listSubtaskJob/tasks?api-version=2021-06-01.14.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "36ec38f5-526d-4817-8b12-d2e164369ca5" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Fri, 27 Aug 2021 16:09:48 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "809126d0-9ef2-4686-9ace-1570a7fc5966" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Fri, 27 Aug 2021 16:09:47 GMT" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/listSubtaskJob/tasks?api-version=2021-06-01.14.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "6d368129-1368-4cf7-bea7-70428a275b77" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Fri, 27 Aug 2021 16:09:50 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "66d811c7-fe28-46c5-923d-a3950319e290" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Fri, 27 Aug 2021 16:09:49 GMT" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/listSubtaskJob/tasks?api-version=2021-06-01.14.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "0581aff5-aafb-47c2-abfa-bdc2272adf7e" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Fri, 27 Aug 2021 16:09:52 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "1afce2d2-d537-487e-8dcd-1b0eb46fae59" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Fri, 27 Aug 2021 16:09:51 GMT" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/listSubtaskJob/tasks?api-version=2021-06-01.14.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "a0abf7f0-6a9f-4a61-9982-48f9b8797ea5" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Fri, 27 Aug 2021 16:09:55 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "b74a0f3a-76c9-40fd-a58b-48fd3afb3730" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Fri, 27 Aug 2021 16:09:53 GMT" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/listSubtaskJob/tasks?api-version=2021-06-01.14.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "94a4f9b5-a838-4c14-ad90-c86c909d6d98" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Fri, 27 Aug 2021 16:09:57 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "62127d7b-ee1f-4d2f-9a70-fa15077f35d3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Fri, 27 Aug 2021 16:09:56 GMT" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/listSubtaskJob/tasks?api-version=2021-06-01.14.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "9422df11-f889-416f-91f0-ce026d93fb6d" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Fri, 27 Aug 2021 16:09:59 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "dce269ba-398e-4d95-a628-693a9f5e91b4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Fri, 27 Aug 2021 16:09:58 GMT" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/listSubtaskJob/tasks?api-version=2021-06-01.14.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "16f8d51e-03bc-48ef-aac1-47f77b048937" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Fri, 27 Aug 2021 16:10:01 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "0b824968-ddad-4a9b-81ed-02e264a6ae24" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Fri, 27 Aug 2021 16:10:00 GMT" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/listSubtaskJob/tasks?api-version=2021-06-01.14.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "1ae7a71b-2314-4d7c-9ee2-dba54ff00d60" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Fri, 27 Aug 2021 16:10:03 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "1eef383a-1f41-4503-b8a4-d030f681112d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Fri, 27 Aug 2021 16:10:02 GMT" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/listSubtaskJob/tasks?api-version=2021-06-01.14.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "d79e96ff-3fb7-4f65-a770-e456a1a9e392" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Fri, 27 Aug 2021 16:10:05 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "61507709-7b75-4913-80fe-c6c9c965a7fa" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Fri, 27 Aug 2021 16:10:04 GMT" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/listSubtaskJob/tasks?api-version=2021-06-01.14.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "887b0bb4-1384-4a27-955f-bd5c5990e5e6" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Fri, 27 Aug 2021 16:10:07 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "0cce0bfa-f614-4c4e-a116-1ef424e343b2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Fri, 27 Aug 2021 16:10:06 GMT" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/listSubtaskJob/tasks?api-version=2021-06-01.14.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "2812bc0f-06c3-45a9-9faa-76c18d46a502" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Fri, 27 Aug 2021 16:10:09 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "d2cee1e4-8e26-4cc6-a12f-ec23e2149e4f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Fri, 27 Aug 2021 16:10:08 GMT" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/listSubtaskJob/tasks?api-version=2021-06-01.14.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "dcbb2259-214e-4736-956e-bc8b8086888a" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Fri, 27 Aug 2021 16:10:11 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "0da1209f-1f20-447e-9afd-b18e0e74956b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Fri, 27 Aug 2021 16:10:10 GMT" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/listSubtaskJob/tasks?api-version=2021-06-01.14.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "22a82495-c515-4b17-814f-7c7ff134d2fe" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Fri, 27 Aug 2021 16:10:13 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "5bbbf5bc-7bee-4c6c-8a33-6991e4f616bb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Fri, 27 Aug 2021 16:10:12 GMT" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/listSubtaskJob/tasks?api-version=2021-06-01.14.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "3b0b9acd-4bf8-4d4c-a9f2-d91fe784fbd2" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Fri, 27 Aug 2021 16:10:15 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "017d5990-1ed9-41cd-9753-7a58c582041f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Fri, 27 Aug 2021 16:10:14 GMT" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/listSubtaskJob/tasks?api-version=2021-06-01.14.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "15523447-a34c-485d-b858-749e492b04c8" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Fri, 27 Aug 2021 16:10:17 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "c40c4eee-1405-4ba6-b3d5-74bdfe8a99b2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Fri, 27 Aug 2021 16:10:16 GMT" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/listSubtaskJob/tasks?api-version=2021-06-01.14.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "a56065b0-5417-4bde-baca-bf2017e0b6e7" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Fri, 27 Aug 2021 16:10:19 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "14a9ad82-2fae-4851-80f2-00b035f9cd05" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Fri, 27 Aug 2021 16:10:18 GMT" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/listSubtaskJob/tasks?api-version=2021-06-01.14.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "2957c2b6-c281-4633-b944-cf046bc42deb" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Fri, 27 Aug 2021 16:10:21 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "0e58b003-ade7-4542-9bfc-2fb47fcf31e9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Fri, 27 Aug 2021 16:10:20 GMT" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/listSubtaskJob/tasks?api-version=2021-06-01.14.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "b5817f93-c9a1-49ce-bb54-9b17c9b0f788" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Fri, 27 Aug 2021 16:10:23 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "076d2ca0-600d-4716-b056-54e06e8d599c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Fri, 27 Aug 2021 16:10:22 GMT" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/listSubtaskJob/tasks?api-version=2021-06-01.14.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "cb697e58-3bb3-43c9-9439-9e7013c2111b" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Fri, 27 Aug 2021 16:10:26 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "dc910d6d-0534-4d0d-84b1-f00fe60f4c02" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Fri, 27 Aug 2021 16:10:24 GMT" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/listSubtaskJob/tasks?api-version=2021-06-01.14.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "937e4228-fbe8-4dc2-b954-97185a89ba1b" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Fri, 27 Aug 2021 16:10:28 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "083f1d29-3179-4ffa-bf68-8b515f973299" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Fri, 27 Aug 2021 16:10:26 GMT" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/listSubtaskJob/tasks?api-version=2021-06-01.14.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "10616b79-45e4-4b8a-9e48-64f5fb50d785" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Fri, 27 Aug 2021 16:10:30 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "50d9b732-7de5-42d5-88bb-aff1d3afc17d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Fri, 27 Aug 2021 16:10:28 GMT" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/listSubtaskJob/tasks?api-version=2021-06-01.14.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "d42b4de3-42d8-4689-b4e0-1367df8cfb96" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Fri, 27 Aug 2021 16:10:32 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "944d29fa-6a07-4b71-996f-687d6ddc33f9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Fri, 27 Aug 2021 16:10:30 GMT" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/listSubtaskJob/tasks?api-version=2021-06-01.14.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "41e63300-846a-4ace-adde-264835bc9421" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Fri, 27 Aug 2021 16:10:34 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "55cf3b5c-b45f-4412-8c9c-1f6f782f01ac" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Fri, 27 Aug 2021 16:10:32 GMT" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/listSubtaskJob/tasks?api-version=2021-06-01.14.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "181a461f-bcec-4c97-947e-80fa44ed14da" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Fri, 27 Aug 2021 16:10:36 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "ecbe64ec-2ffc-4b5b-8690-d081b98ba059" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Fri, 27 Aug 2021 16:10:34 GMT" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/listSubtaskJob/tasks?api-version=2021-06-01.14.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "81b7a011-31f8-4d46-9ae4-095680c0b405" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Fri, 27 Aug 2021 16:10:38 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "6a3c7f57-03dc-4fa4-b47c-96acb72802bf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Fri, 27 Aug 2021 16:10:36 GMT" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/listSubtaskJob/tasks?api-version=2021-06-01.14.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "b958c710-1de3-43e3-a34a-e764245308cc" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Fri, 27 Aug 2021 16:10:40 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "46323e37-52ee-4b4d-856c-1ecdbda9d2ef" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Fri, 27 Aug 2021 16:10:38 GMT" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/listSubtaskJob/tasks?api-version=2021-06-01.14.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "d54458ad-413c-409d-abd3-da8f671eec76" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Fri, 27 Aug 2021 16:10:42 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "cd19870e-1511-47da-9d39-330e7bb6d59f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Fri, 27 Aug 2021 16:10:40 GMT" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/listSubtaskJob/tasks?api-version=2021-06-01.14.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "1856d038-221b-4fbe-94ad-7ced9d191812" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Fri, 27 Aug 2021 16:10:44 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "6ba21396-9dbc-48dc-bb6d-892508db609a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Fri, 27 Aug 2021 16:10:42 GMT" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/listSubtaskJob/tasks?api-version=2021-06-01.14.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "4d47057c-8895-493d-8309-40f04b361a4e" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Fri, 27 Aug 2021 16:10:46 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "58c2aba5-ad64-4b93-bfa7-9ee3eefa28be" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Fri, 27 Aug 2021 16:10:44 GMT" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/listSubtaskJob/tasks?api-version=2021-06-01.14.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "b196ecb0-5f0f-436d-9de4-10cc535e3c0a" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Fri, 27 Aug 2021 16:10:48 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "0ae9bfa1-de54-4752-ae5f-157cabfe8808" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Fri, 27 Aug 2021 16:10:47 GMT" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/listSubtaskJob/tasks?api-version=2021-06-01.14.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "bc497cb5-2fa9-48a7-a086-94fd40bad4f8" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Fri, 27 Aug 2021 16:10:50 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "1e7a0625-d045-4b07-9074-86632c2ab1b3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Fri, 27 Aug 2021 16:10:49 GMT" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/listSubtaskJob/tasks?api-version=2021-06-01.14.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "f76a74ec-7ab0-40d5-b3a0-b9c90be895c9" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Fri, 27 Aug 2021 16:10:52 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "ee6d753f-7666-43cf-adfd-7751b51abc7b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Fri, 27 Aug 2021 16:10:51 GMT" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/listSubtaskJob/tasks?api-version=2021-06-01.14.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "063fc1d5-668e-4758-a278-723e2fe668ba" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Fri, 27 Aug 2021 16:10:54 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "6fd538e7-88b3-43da-b97c-d8926dbc3a17" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Fri, 27 Aug 2021 16:10:53 GMT" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/listSubtaskJob/tasks?api-version=2021-06-01.14.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "851bbc94-2c9b-4d1b-a489-9597315fc61e" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Fri, 27 Aug 2021 16:10:56 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "dd12da43-2ded-4f51-8a2f-5bdbcd7610ce" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Fri, 27 Aug 2021 16:10:55 GMT" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/listSubtaskJob/tasks?api-version=2021-06-01.14.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "cecad42d-1995-4178-a7c0-f82f127a6011" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Fri, 27 Aug 2021 16:10:59 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "2050e367-e831-48c4-93f0-841f3fabab8e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Fri, 27 Aug 2021 16:10:57 GMT" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/listSubtaskJob/tasks?api-version=2021-06-01.14.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "a6c96b9c-d07a-460e-9658-74a9f14f4872" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Fri, 27 Aug 2021 16:11:01 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "3eab7605-95d3-4c20-8972-7f7b34bdf71a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Fri, 27 Aug 2021 16:10:59 GMT" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/listSubtaskJob/tasks?api-version=2021-06-01.14.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "7e9662da-dfa6-499f-b57b-44739a523711" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Fri, 27 Aug 2021 16:11:03 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "70ebac97-3f1e-4894-9a25-aa4a67fa5da5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Fri, 27 Aug 2021 16:11:01 GMT" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/listSubtaskJob/tasks?api-version=2021-06-01.14.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "db859d82-5a59-4deb-a226-02a01bc2dede" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Fri, 27 Aug 2021 16:11:05 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "9171df88-b81a-4b5d-9374-c6882ed84ddf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Fri, 27 Aug 2021 16:11:03 GMT" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/listSubtaskJob/tasks?api-version=2021-06-01.14.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "87669c59-15f0-4e65-8c62-a0c006cb21a9" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Fri, 27 Aug 2021 16:11:07 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "8336d030-c12a-4f3f-8aaf-9b5789729a91" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Fri, 27 Aug 2021 16:11:05 GMT" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/listSubtaskJob/tasks?api-version=2021-06-01.14.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "fd8e9f63-2c23-46cd-ae88-ec333b2f6060" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Fri, 27 Aug 2021 16:11:09 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "37c77568-7221-48ee-b25d-e8c8c855d93c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Fri, 27 Aug 2021 16:11:07 GMT" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/listSubtaskJob/tasks?api-version=2021-06-01.14.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "01792bf3-6c7f-4f53-9453-332ef6bab006" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Fri, 27 Aug 2021 16:11:11 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "47f837f7-5ee7-4614-ab34-cd282b6310d6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Fri, 27 Aug 2021 16:11:09 GMT" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/listSubtaskJob/tasks?api-version=2021-06-01.14.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "35f5157b-a5d4-437c-a549-29d7fd4f7bf4" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Fri, 27 Aug 2021 16:11:13 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "99919c05-02cc-4df9-aaf6-bf454f174a4f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Fri, 27 Aug 2021 16:11:11 GMT" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/listSubtaskJob/tasks?api-version=2021-06-01.14.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "4cbc5a46-d42e-498d-ba53-b27a324d5691" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Fri, 27 Aug 2021 16:11:15 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "00668680-b8a0-49f8-b0a0-00eec5cb2afd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Fri, 27 Aug 2021 16:11:13 GMT" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/listSubtaskJob/tasks?api-version=2021-06-01.14.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "55e40ee9-43ed-47b5-9b46-6f112b6897a9" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Fri, 27 Aug 2021 16:11:17 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "731a57f0-6c11-4d64-9b72-4f0192aceb40" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Fri, 27 Aug 2021 16:11:15 GMT" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/listSubtaskJob/tasks?api-version=2021-06-01.14.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "0e6bf83e-69b1-4d15-bdd8-f4be904ccb5e" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Fri, 27 Aug 2021 16:11:19 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "efe296d4-6925-495f-95ef-695a2f2236b1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Fri, 27 Aug 2021 16:11:17 GMT" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/listSubtaskJob/tasks?api-version=2021-06-01.14.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "cf65e1c3-0d77-4476-873a-1e6b918ab9f5" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Fri, 27 Aug 2021 16:11:21 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "f383fc0b-2feb-4ba1-8b56-2f688e5c8268" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Fri, 27 Aug 2021 16:11:19 GMT" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/listSubtaskJob/tasks?api-version=2021-06-01.14.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "a7f0d484-ae54-485a-b173-8c2837ba48fc" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Fri, 27 Aug 2021 16:11:23 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "aef0e086-1cac-45b6-8ea8-9f17921f12fe" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Fri, 27 Aug 2021 16:11:22 GMT" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/listSubtaskJob/tasks?api-version=2021-06-01.14.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "75b1b487-11d7-4679-ba67-1b2eb84f78d0" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Fri, 27 Aug 2021 16:11:25 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "17d51d6b-f892-4990-93af-a0ae46a979d5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Fri, 27 Aug 2021 16:11:24 GMT" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/listSubtaskJob/tasks?api-version=2021-06-01.14.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "32443bd1-61a8-4588-9b0d-b9377a6b2192" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Fri, 27 Aug 2021 16:11:28 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "610fdde1-7c3c-4b87-83a5-6300b2102153" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Fri, 27 Aug 2021 16:11:26 GMT" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/listSubtaskJob/tasks?api-version=2021-06-01.14.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "6ea9e2b0-b939-4c46-9b73-09a62aa26bc0" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Fri, 27 Aug 2021 16:11:30 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "e87b5b5d-7409-4de9-b8ba-a854689f932a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Fri, 27 Aug 2021 16:11:29 GMT" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/listSubtaskJob/tasks?api-version=2021-06-01.14.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "d1ae5cda-8e68-4dae-a006-2c7cdddc97fe" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Fri, 27 Aug 2021 16:11:32 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "ed6a462c-946a-4dc1-9472-5726a9af27e4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Fri, 27 Aug 2021 16:11:31 GMT" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/listSubtaskJob/tasks?api-version=2021-06-01.14.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "da39dfa5-0441-40ed-8967-46c4fe026524" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Fri, 27 Aug 2021 16:11:34 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "8ca72c3a-84b5-4f03-a453-bac3be2b6d2a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Fri, 27 Aug 2021 16:11:33 GMT" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/listSubtaskJob/tasks?api-version=2021-06-01.14.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "18744884-b7a6-44c5-8729-dade7ba2da93" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Fri, 27 Aug 2021 16:11:36 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "20c79b47-b1a4-4983-82e0-d96c2f90645a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Fri, 27 Aug 2021 16:11:35 GMT" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/listSubtaskJob/tasks?api-version=2021-06-01.14.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "fa31f9d1-ab63-4b0f-a3bb-c66ee50a8c06" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Fri, 27 Aug 2021 16:11:38 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "b523f455-dcc5-4664-9b7f-7204b2213d39" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Fri, 27 Aug 2021 16:11:37 GMT" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/listSubtaskJob/tasks?api-version=2021-06-01.14.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "349e7214-6055-4ecf-8a9e-e56d937f7b67" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Fri, 27 Aug 2021 16:11:40 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "c042cc20-42d6-4e3d-8ab8-6619fc2d4ac5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Fri, 27 Aug 2021 16:11:39 GMT" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/listSubtaskJob/tasks?api-version=2021-06-01.14.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "ecc938e0-dddc-4b80-b83f-0c6a139713ac" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Fri, 27 Aug 2021 16:11:42 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "79450740-3ed2-4b8f-9968-3f6ebfb00bbc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Fri, 27 Aug 2021 16:11:41 GMT" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/listSubtaskJob/tasks?api-version=2021-06-01.14.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "d498e8d2-a9f9-4984-8b0e-8d581e207e48" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Fri, 27 Aug 2021 16:11:44 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "f192f5b3-9c64-4968-ad78-b1900589b85a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Fri, 27 Aug 2021 16:11:43 GMT" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/listSubtaskJob/tasks?api-version=2021-06-01.14.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "35bf388d-3690-456c-8396-039b862a4112" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Fri, 27 Aug 2021 16:11:46 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "ec4cb355-867a-4f7a-bafc-9236078e93c8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Fri, 27 Aug 2021 16:11:45 GMT" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/listSubtaskJob/tasks?api-version=2021-06-01.14.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "6cab8043-7452-4112-864c-32daf3a24f3d" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Fri, 27 Aug 2021 16:11:48 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "dba6ee11-99e6-4053-b5a3-80076d7d40d4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Fri, 27 Aug 2021 16:11:47 GMT" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/listSubtaskJob/tasks?api-version=2021-06-01.14.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "12c922b6-3658-4129-8d1a-e92170d37b6a" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Fri, 27 Aug 2021 16:11:50 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "a8ec09c4-9c50-4e1a-b36a-6666c855852e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Fri, 27 Aug 2021 16:11:49 GMT" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/listSubtaskJob/tasks?api-version=2021-06-01.14.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "7fe4a67a-0ec7-4da6-9ca2-df6ddae948c0" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Fri, 27 Aug 2021 16:11:52 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "3357cd57-64a0-4bd7-8f0c-634d2b97d22e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Fri, 27 Aug 2021 16:11:51 GMT" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/listSubtaskJob/tasks?api-version=2021-06-01.14.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "53fdf608-f4fb-4c27-8fdb-393c66bed9d6" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Fri, 27 Aug 2021 16:11:54 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "8dcb01b5-cb33-46e5-845e-98ded6fc1844" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Fri, 27 Aug 2021 16:11:53 GMT" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/listSubtaskJob/tasks?api-version=2021-06-01.14.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "39cc767f-0d4b-4c00-8e7c-c8ef20a662a3" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Fri, 27 Aug 2021 16:11:56 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "9ff643ff-1562-4704-ade7-e0dca50a5d8f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Fri, 27 Aug 2021 16:11:55 GMT" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/listSubtaskJob/tasks?api-version=2021-06-01.14.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "e244e4f4-7eb9-4787-aaae-49875479b95a" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Fri, 27 Aug 2021 16:11:58 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "5a7236a6-732b-497c-a971-08040f54b81d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Fri, 27 Aug 2021 16:11:57 GMT" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/listSubtaskJob/tasks?api-version=2021-06-01.14.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "abb02eb2-b1ed-4160-8f09-58d50f4da452" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Fri, 27 Aug 2021 16:12:01 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "0cfba803-57ca-4e2e-a7c6-35b728b93c42" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Fri, 27 Aug 2021 16:11:59 GMT" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/listSubtaskJob/tasks?api-version=2021-06-01.14.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "af8b1469-3454-465e-af1e-2121f816008f" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Fri, 27 Aug 2021 16:12:03 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "ccb5b0c2-c9c7-4309-9d10-d44c3fe697e6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Fri, 27 Aug 2021 16:12:01 GMT" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/listSubtaskJob/tasks?api-version=2021-06-01.14.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "4a2b935c-c6ea-4c60-b6db-ad14d34a4d7e" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Fri, 27 Aug 2021 16:12:05 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "aa8602ff-8c74-4a8d-b8a7-eb7600176ae8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Fri, 27 Aug 2021 16:12:03 GMT" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/listSubtaskJob/tasks?api-version=2021-06-01.14.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "c4a0f717-08ab-4e55-b33c-2cd4985c84c6" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Fri, 27 Aug 2021 16:12:07 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "89a5919b-4559-4f80-aa85-afdadb89ccb8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Fri, 27 Aug 2021 16:12:05 GMT" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/listSubtaskJob/tasks?api-version=2021-06-01.14.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "841b5eb0-a358-4554-9f59-1be3c241911b" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Fri, 27 Aug 2021 16:12:09 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "41267a7e-c486-4287-bc53-a59e60a9a910" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Fri, 27 Aug 2021 16:12:07 GMT" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/listSubtaskJob/tasks?api-version=2021-06-01.14.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "de934665-9217-4ec1-bd02-3f0616c1df7f" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Fri, 27 Aug 2021 16:12:11 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "64fa5ec1-44c8-4f10-b00b-9857e9a815c5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Fri, 27 Aug 2021 16:12:09 GMT" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/listSubtaskJob/tasks?api-version=2021-06-01.14.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "4801ab23-94e2-419b-b5dc-fb64450d49fc" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Fri, 27 Aug 2021 16:12:13 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "1f6efeb3-b443-46b7-b854-22c7b799b66f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Fri, 27 Aug 2021 16:12:12 GMT" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/listSubtaskJob/tasks?api-version=2021-06-01.14.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "ee8fc5a6-2370-4404-8736-63af6a73eb96" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Fri, 27 Aug 2021 16:12:15 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "6be569cf-1bd4-4b2a-9180-b524e9023327" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Fri, 27 Aug 2021 16:12:14 GMT" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/listSubtaskJob/tasks?api-version=2021-06-01.14.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "5af90533-b27c-4a58-856e-a76ca8fb3f73" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Fri, 27 Aug 2021 16:12:17 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "91989324-5569-4dff-a0c6-20684adb0f77" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Fri, 27 Aug 2021 16:12:16 GMT" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/listSubtaskJob/tasks?api-version=2021-06-01.14.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "5dab5ec3-98c6-47b2-90ca-0a056a464109" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Fri, 27 Aug 2021 16:12:19 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "01442b2e-9262-4999-bc9f-dd798ab40c44" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Fri, 27 Aug 2021 16:12:18 GMT" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/listSubtaskJob/tasks?api-version=2021-06-01.14.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "1e6a98bf-6ea4-4722-a05a-d188a42fd416" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Fri, 27 Aug 2021 16:12:21 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "40d2922e-2e68-43be-b8a4-b033c83def95" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Fri, 27 Aug 2021 16:12:20 GMT" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/listSubtaskJob/tasks?api-version=2021-06-01.14.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "7f174339-11b2-49f3-b1f4-fdcaad8f99b3" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Fri, 27 Aug 2021 16:12:23 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "a34ec864-3fca-4aad-9138-6ee82684cd2c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Fri, 27 Aug 2021 16:12:22 GMT" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/listSubtaskJob/tasks?api-version=2021-06-01.14.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "6b3da523-8fde-490f-9d0a-7682283c8a74" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Fri, 27 Aug 2021 16:12:25 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "f434aecf-ab7e-420d-a94f-4be7c2892a98" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Fri, 27 Aug 2021 16:12:24 GMT" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/listSubtaskJob/tasks?api-version=2021-06-01.14.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "ae30b832-0cfd-4095-a672-7c6c00a17c92" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Fri, 27 Aug 2021 16:12:27 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "13c9839a-fa49-4962-98b5-7024b075d0ff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Fri, 27 Aug 2021 16:12:26 GMT" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/listSubtaskJob/tasks?api-version=2021-06-01.14.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "f4936c71-2945-4a3e-8946-b73320e55bb7" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Fri, 27 Aug 2021 16:12:29 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "7c0d97c8-5461-49f6-b3cf-174332d806d1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Fri, 27 Aug 2021 16:12:28 GMT" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/listSubtaskJob/tasks?api-version=2021-06-01.14.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "5d82df18-1e77-42ae-bfbf-27371170888c" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Fri, 27 Aug 2021 16:12:31 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "171ed6e2-6af9-4e4f-9690-84c44a7200c1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Fri, 27 Aug 2021 16:12:30 GMT" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/listSubtaskJob/tasks?api-version=2021-06-01.14.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "9fd67d0d-6eeb-4564-a9f4-63db6fda2927" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Fri, 27 Aug 2021 16:12:34 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "5ba6e9bf-9247-40f3-a9d0-cb7cde82f266" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Fri, 27 Aug 2021 16:12:32 GMT" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/listSubtaskJob/tasks?api-version=2021-06-01.14.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "4843ce72-ef02-4df9-933f-05952fed9b43" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Fri, 27 Aug 2021 16:12:36 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "4c69c665-ceb0-45f5-807a-86e02154b0c9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Fri, 27 Aug 2021 16:12:34 GMT" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/listSubtaskJob/tasks?api-version=2021-06-01.14.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "c9178995-cbc9-467f-aa22-137b325d9575" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Fri, 27 Aug 2021 16:12:38 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "4580f1ac-edce-4a47-b1c3-a71a4e605c58" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Fri, 27 Aug 2021 16:12:36 GMT" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/listSubtaskJob/tasks?api-version=2021-06-01.14.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "430f78ef-40f6-4e62-8cee-1c725d86e76a" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Fri, 27 Aug 2021 16:12:40 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "c15df927-a8f0-44bf-9804-b90b5e145ea3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Fri, 27 Aug 2021 16:12:38 GMT" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/listSubtaskJob/tasks?api-version=2021-06-01.14.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "64656666-dff7-4228-a471-8033d3652a86" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Fri, 27 Aug 2021 16:12:42 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "02d5a738-8f36-4439-bb73-cec13312123a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Fri, 27 Aug 2021 16:12:40 GMT" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/listSubtaskJob/tasks?api-version=2021-06-01.14.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "ec6ea885-ee7c-43de-85dc-b5621a10a4f2" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Fri, 27 Aug 2021 16:12:44 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "e2278ca8-6be8-4341-af04-95f622cdb548" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Fri, 27 Aug 2021 16:12:42 GMT" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/listSubtaskJob/tasks?api-version=2021-06-01.14.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "f65a5fc8-88df-4cb9-b0bf-27b98872ff01" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Fri, 27 Aug 2021 16:12:46 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "d40820c4-9afa-4825-b31e-7809711ecf50" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Fri, 27 Aug 2021 16:12:44 GMT" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/listSubtaskJob/tasks?api-version=2021-06-01.14.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "5be361f5-e37c-4f6a-a8af-6e85eb020654" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Fri, 27 Aug 2021 16:12:48 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "2c5d8bad-9074-44b7-ad27-772bdca665a2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Fri, 27 Aug 2021 16:12:46 GMT" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/listSubtaskJob/tasks?api-version=2021-06-01.14.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "c34ee4c6-f64d-41e9-851f-45bb0db8458f" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Fri, 27 Aug 2021 16:12:50 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "1e7b6049-0a52-4832-b2bc-e02534d1b60e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Fri, 27 Aug 2021 16:12:48 GMT" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/listSubtaskJob/tasks?api-version=2021-06-01.14.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "492b2ff9-dffa-452a-ad0f-7f32e8414e69" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Fri, 27 Aug 2021 16:12:52 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "9add965c-ace8-47d6-9b13-587ab504bbff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Fri, 27 Aug 2021 16:12:50 GMT" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/listSubtaskJob/tasks?api-version=2021-06-01.14.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "e4367cca-7f32-413a-8126-414a06aa9acd" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Fri, 27 Aug 2021 16:12:54 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "cd5470c8-815b-4cf0-a828-0dbd1d861d44" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Fri, 27 Aug 2021 16:12:52 GMT" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/listSubtaskJob/tasks?api-version=2021-06-01.14.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "507bf15b-392a-4ba7-8ac4-8f6033290a86" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Fri, 27 Aug 2021 16:12:56 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "64d52f62-6050-4e3c-b8e9-8f77a5130b97" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Fri, 27 Aug 2021 16:12:55 GMT" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/listSubtaskJob/tasks?api-version=2021-06-01.14.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "b7e07fe9-9b9e-493a-bf5d-ebf31d3d8d1c" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Fri, 27 Aug 2021 16:12:58 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "dba839a8-606f-496f-abfb-72b2e3c49f47" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Fri, 27 Aug 2021 16:12:57 GMT" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/listSubtaskJob/tasks?api-version=2021-06-01.14.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "31772def-fda1-433e-a45f-a640e710c4df" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Fri, 27 Aug 2021 16:13:00 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "558676cb-c6ce-4b69-aa1d-1d4899c2ff58" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Fri, 27 Aug 2021 16:12:59 GMT" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/listSubtaskJob/tasks?api-version=2021-06-01.14.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "f01bf8ac-ad79-4105-82de-56c0b9a5f4bf" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Fri, 27 Aug 2021 16:13:02 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "d163b696-960a-4758-a4fa-efc90a0640b5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Fri, 27 Aug 2021 16:13:01 GMT" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/listSubtaskJob/tasks?api-version=2021-06-01.14.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "af7dca17-d5d0-453c-8d45-a1ef60870a9d" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Fri, 27 Aug 2021 16:13:05 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "2a71c780-42da-4540-8373-e912b69ef4e5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Fri, 27 Aug 2021 16:13:03 GMT" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/listSubtaskJob/tasks?api-version=2021-06-01.14.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "cdf354f6-5424-4b90-acb6-c7f04ab7fba4" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Fri, 27 Aug 2021 16:13:07 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "6a1dc9be-dc5a-48ba-8546-45417c684aef" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Fri, 27 Aug 2021 16:13:05 GMT" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/listSubtaskJob/tasks?api-version=2021-06-01.14.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "2773cacc-fb92-4af5-aef4-2dc2c8262c88" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Fri, 27 Aug 2021 16:13:09 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "488fa624-87d1-4656-ab1d-0851bf38248f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Fri, 27 Aug 2021 16:13:08 GMT" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/listSubtaskJob/tasks?api-version=2021-06-01.14.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "b42f97e6-874b-4ba1-8785-b79afb9563bd" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Fri, 27 Aug 2021 16:13:11 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "64f8834b-2d85-4e47-a1b0-49c9b578cfcd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Fri, 27 Aug 2021 16:13:10 GMT" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/listSubtaskJob/tasks?api-version=2021-06-01.14.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "36aab537-3189-48ed-a21f-d5dbcda2f86e" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Fri, 27 Aug 2021 16:13:13 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "44afad2f-737a-4a1d-9eb5-71ae0b9ec930" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Fri, 27 Aug 2021 16:13:12 GMT" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/listSubtaskJob/tasks?api-version=2021-06-01.14.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "a63682f0-a69c-449e-bd72-f8bde7a7c43a" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Fri, 27 Aug 2021 16:13:15 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "82aae5e7-fc17-4d40-8f61-f126768013ec" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Fri, 27 Aug 2021 16:13:14 GMT" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/listSubtaskJob/tasks?api-version=2021-06-01.14.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "3ce41f2a-04a3-4260-bb28-7c2c255a44e3" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Fri, 27 Aug 2021 16:13:17 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "c0ef4b32-352a-4227-94c8-8be6b0a9f699" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Fri, 27 Aug 2021 16:13:16 GMT" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/listSubtaskJob/tasks?api-version=2021-06-01.14.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "d37c87df-f054-4052-ac2f-99900a6f0674" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Fri, 27 Aug 2021 16:13:19 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "dbef01ca-62b3-4130-a4cd-ffd43e47e7ae" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Fri, 27 Aug 2021 16:13:18 GMT" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/listSubtaskJob/tasks?api-version=2021-06-01.14.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "f5dfbe33-e743-4918-9d87-2b2a1f0335b2" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Fri, 27 Aug 2021 16:13:21 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "1dc5672b-80c4-40ab-8fe9-9a02bce7941d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Fri, 27 Aug 2021 16:13:20 GMT" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/listSubtaskJob/tasks?api-version=2021-06-01.14.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "6814423a-ce4f-4f52-8b07-fc4691776d50" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Fri, 27 Aug 2021 16:13:23 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "e83d9f0a-b579-4189-858b-95eb08067ee7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Fri, 27 Aug 2021 16:13:22 GMT" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/listSubtaskJob/tasks?api-version=2021-06-01.14.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "f2ccdf7f-95d0-4a79-baf7-12b22bae71f4" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Fri, 27 Aug 2021 16:13:25 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "697a1bfd-3a07-4c4b-b126-ab4e1a99109b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Fri, 27 Aug 2021 16:13:24 GMT" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/listSubtaskJob/tasks?api-version=2021-06-01.14.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "cf388640-badc-425f-8ae5-edee8c1c6c2a" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Fri, 27 Aug 2021 16:13:27 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "03469fd0-3623-41f1-a74c-0f478f69f24e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Fri, 27 Aug 2021 16:13:26 GMT" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/listSubtaskJob/tasks?api-version=2021-06-01.14.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "25a29c33-20a7-42cc-bb3f-da5f29427134" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Fri, 27 Aug 2021 16:13:29 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "c860615e-fc54-494f-992c-7fc418c482c2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Fri, 27 Aug 2021 16:13:28 GMT" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/listSubtaskJob/tasks?api-version=2021-06-01.14.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "e0dc0dfc-060e-45f7-9ede-6d6ca32d9238" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Fri, 27 Aug 2021 16:13:31 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "707871f1-3f4d-45bf-ae72-b05d376ce460" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Fri, 27 Aug 2021 16:13:30 GMT" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/listSubtaskJob/tasks?api-version=2021-06-01.14.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "76ad827d-d104-4bb9-9941-a191e2a57b7e" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Fri, 27 Aug 2021 16:13:33 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "8e6bd74f-bd0f-42f6-bccd-60accedc9ef6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Fri, 27 Aug 2021 16:13:32 GMT" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/listSubtaskJob/tasks?api-version=2021-06-01.14.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "f1b27478-a1c1-4a35-84cd-bd0d431b02e8" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Fri, 27 Aug 2021 16:13:35 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "f7d5d243-7554-4c3f-aa53-c2df7094d7ec" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Fri, 27 Aug 2021 16:13:34 GMT" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/listSubtaskJob/tasks?api-version=2021-06-01.14.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "75962b74-9d3b-449b-80f2-728a7e491b3c" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Fri, 27 Aug 2021 16:13:38 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "a7f1f309-57fb-4306-b2ce-fec992424904" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Fri, 27 Aug 2021 16:13:36 GMT" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/listSubtaskJob/tasks?api-version=2021-06-01.14.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "76000666-eced-4945-a418-4d8bc0a7713e" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Fri, 27 Aug 2021 16:13:40 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "868fe00c-f02e-4f82-b2d0-3250e9fa510c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Fri, 27 Aug 2021 16:13:38 GMT" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/listSubtaskJob/tasks?api-version=2021-06-01.14.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "80bacfd7-bf4e-4d50-9c25-405bbcedb9f9" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Fri, 27 Aug 2021 16:13:42 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "884027ec-5f5b-41ba-91dc-4c3c1434ea5f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Fri, 27 Aug 2021 16:13:40 GMT" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/listSubtaskJob/tasks?api-version=2021-06-01.14.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "93da360b-cfe2-4320-92ab-a4fa7a0d8233" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Fri, 27 Aug 2021 16:13:44 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "229ff94e-dc76-4a44-a711-132abd3f65ac" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Fri, 27 Aug 2021 16:13:42 GMT" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/listSubtaskJob/tasks?api-version=2021-06-01.14.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "f54836df-9145-4967-ae87-a424e945cfc5" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Fri, 27 Aug 2021 16:13:46 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "b880805f-3f96-44fa-86bb-eeea651713ee" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Fri, 27 Aug 2021 16:13:44 GMT" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/listSubtaskJob/tasks?api-version=2021-06-01.14.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "2d3354a8-2778-4a8d-a115-f7a696f9626e" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Fri, 27 Aug 2021 16:13:48 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "abd2a4df-1c3e-4642-8fad-2eca207dca86" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Fri, 27 Aug 2021 16:13:46 GMT" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/listSubtaskJob/tasks?api-version=2021-06-01.14.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "24583542-3869-4b3d-a173-500dc1d7cb8d" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Fri, 27 Aug 2021 16:13:50 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "12036a82-ef18-4eee-9d7f-b91bce5ccb23" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Fri, 27 Aug 2021 16:13:48 GMT" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/listSubtaskJob/tasks?api-version=2021-06-01.14.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "dddae165-b651-41ca-8f52-7cf103151247" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Fri, 27 Aug 2021 16:13:52 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "59d090c2-9532-4056-9127-0f6c9a9544c5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Fri, 27 Aug 2021 16:13:50 GMT" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/listSubtaskJob/tasks?api-version=2021-06-01.14.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "39cd61b0-aef2-4e6c-8b25-0ea115f282dc" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Fri, 27 Aug 2021 16:13:54 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "1901e368-bcb8-4b5e-8613-ae488e400a68" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Fri, 27 Aug 2021 16:13:52 GMT" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/listSubtaskJob/tasks?api-version=2021-06-01.14.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "2ab40593-2b50-4d31-9a24-c4254f935e14" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Fri, 27 Aug 2021 16:13:56 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "198c32a6-8efd-47e8-9f78-31655f3e9233" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Fri, 27 Aug 2021 16:13:54 GMT" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/listSubtaskJob/tasks?api-version=2021-06-01.14.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "50c7e90c-0b9c-4d85-a639-adeb9b9acd9c" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Fri, 27 Aug 2021 16:13:58 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "f8736cb9-5e8d-448b-a362-6a01342ac06d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Fri, 27 Aug 2021 16:13:56 GMT" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/listSubtaskJob/tasks?api-version=2021-06-01.14.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "78ac4c08-bec1-475c-b108-57135711a48a" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Fri, 27 Aug 2021 16:14:00 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "8ee44da2-9cf9-4d7a-af08-d8bdf9bf4a25" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Fri, 27 Aug 2021 16:13:58 GMT" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/listSubtaskJob/tasks?api-version=2021-06-01.14.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "e34f4222-8126-43ef-bea2-b612dc8e9fa6" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Fri, 27 Aug 2021 16:14:02 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "dc08da36-d31e-4591-bb82-64daeaceddda" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Fri, 27 Aug 2021 16:14:00 GMT" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/listSubtaskJob/tasks?api-version=2021-06-01.14.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "320a8535-c0ef-41aa-bd7f-adfd36e94167" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Fri, 27 Aug 2021 16:14:04 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "6e256caf-b32e-43cf-96a9-f868eda6db84" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Fri, 27 Aug 2021 16:14:03 GMT" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/listSubtaskJob/tasks?api-version=2021-06-01.14.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "656c8b03-566a-40aa-9aae-cd41f89cfce7" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Fri, 27 Aug 2021 16:14:06 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "7050cff0-d57d-48aa-b95a-e3e8f905e43c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Fri, 27 Aug 2021 16:14:05 GMT" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/listSubtaskJob/tasks?api-version=2021-06-01.14.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "41c4fadf-f333-4ea5-9e2b-75c50f6c299c" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Fri, 27 Aug 2021 16:14:08 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "7f47a189-7658-4012-aa2a-2d45b2a90552" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Fri, 27 Aug 2021 16:14:07 GMT" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/listSubtaskJob/tasks?api-version=2021-06-01.14.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "a3081b1f-af0f-483a-8087-ceb7145d7ec4" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Fri, 27 Aug 2021 16:14:11 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "d4096870-3d04-4304-a6d2-ec02ef56b78e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Fri, 27 Aug 2021 16:14:09 GMT" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/listSubtaskJob/tasks?api-version=2021-06-01.14.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "8dc2c0de-b67b-47ac-a9df-746166a677de" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Fri, 27 Aug 2021 16:14:13 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "1b6c5e5e-58d2-47e6-a8d2-b6acc967853b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Fri, 27 Aug 2021 16:14:11 GMT" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/listSubtaskJob/tasks?api-version=2021-06-01.14.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "4d2ccef8-c645-4b6e-9575-4bb58d49a37e" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Fri, 27 Aug 2021 16:14:15 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "90cf835c-c0bf-4f92-8275-90cf71d6b6b5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Fri, 27 Aug 2021 16:14:13 GMT" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/listSubtaskJob/tasks?api-version=2021-06-01.14.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "c8dcf617-847f-4afd-a677-3a649c5c8077" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Fri, 27 Aug 2021 16:14:17 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "997cb815-7c34-42d3-9538-e539e7ec2325" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Fri, 27 Aug 2021 16:14:15 GMT" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/listSubtaskJob/tasks?api-version=2021-06-01.14.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "8a70e572-cf20-4c40-9e6a-3e174a996003" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Fri, 27 Aug 2021 16:14:19 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "18f9019b-434e-4350-9067-4c5bab337095" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Fri, 27 Aug 2021 16:14:17 GMT" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/listSubtaskJob/tasks?api-version=2021-06-01.14.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "a141db86-70cd-485f-a3d5-9ec47491dee5" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Fri, 27 Aug 2021 16:14:21 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "16eb1839-bb5a-4242-9455-7c290ce38557" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Fri, 27 Aug 2021 16:14:19 GMT" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/listSubtaskJob/tasks?api-version=2021-06-01.14.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "79ec423f-2ddb-43c4-9e9c-d21564459db8" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Fri, 27 Aug 2021 16:14:23 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "857a8c58-d07f-420c-99ab-a6b85245d533" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Fri, 27 Aug 2021 16:14:22 GMT" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/listSubtaskJob/tasks?api-version=2021-06-01.14.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "b611e266-28ac-411d-9be9-3304868bb8ba" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Fri, 27 Aug 2021 16:14:25 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "18355d36-992a-41ad-bab1-326d2dcb3847" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Fri, 27 Aug 2021 16:14:24 GMT" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/listSubtaskJob/tasks?api-version=2021-06-01.14.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "9cbebf12-f958-4f9c-a27c-4a0d4754f04e" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Fri, 27 Aug 2021 16:14:27 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "6e4cb2d0-54ac-4979-a6ec-677b8fbebbb5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Fri, 27 Aug 2021 16:14:26 GMT" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/listSubtaskJob/tasks?api-version=2021-06-01.14.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "68612ec7-9173-4d30-8d35-aa9dcdc61538" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Fri, 27 Aug 2021 16:14:29 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "b0447f2a-014f-4e90-9d63-ac122541d814" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Fri, 27 Aug 2021 16:14:28 GMT" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/listSubtaskJob/tasks?api-version=2021-06-01.14.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "a946fa2e-1135-4445-b6de-2b2cb431c799" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Fri, 27 Aug 2021 16:14:31 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "6a3309fb-540f-42eb-9a1f-2216b99f12fb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Fri, 27 Aug 2021 16:14:30 GMT" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/listSubtaskJob/tasks?api-version=2021-06-01.14.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "03d67792-a030-43fb-bd56-52492ef37375" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Fri, 27 Aug 2021 16:14:33 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "309077b9-97d5-4105-a81d-db488c2fc72b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Fri, 27 Aug 2021 16:14:32 GMT" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/listSubtaskJob/tasks?api-version=2021-06-01.14.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "13af28df-005e-4e59-ba73-f72032128a72" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Fri, 27 Aug 2021 16:14:35 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "e04acf8a-4ad4-4b56-a19d-0fedbff7c905" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Fri, 27 Aug 2021 16:14:34 GMT" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/listSubtaskJob/tasks?api-version=2021-06-01.14.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "e7a26e61-a45b-4ff9-8e6e-662cd932df0e" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Fri, 27 Aug 2021 16:14:37 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "1a1a2f9d-faca-4ba3-a82a-60969e4dfd58" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Fri, 27 Aug 2021 16:14:36 GMT" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/listSubtaskJob/tasks?api-version=2021-06-01.14.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "d53ea249-2dbe-4173-a5d5-bbf57b08bfed" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Fri, 27 Aug 2021 16:14:39 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "71fa4245-1e3e-4159-96fd-d1afa9980108" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Fri, 27 Aug 2021 16:14:38 GMT" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/listSubtaskJob/tasks?api-version=2021-06-01.14.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "b12ceedd-c5ba-42c0-9583-7bc4fea25d6d" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Fri, 27 Aug 2021 16:14:41 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "4d1b9030-0d8d-4590-8614-c1cce1bdf612" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Fri, 27 Aug 2021 16:14:40 GMT" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/listSubtaskJob/tasks?api-version=2021-06-01.14.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "d1500fa5-4942-4ca9-9a04-72df1b2e3c91" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Fri, 27 Aug 2021 16:14:44 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "193676e3-79c9-475b-b868-7997ef745c60" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Fri, 27 Aug 2021 16:14:42 GMT" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/listSubtaskJob/tasks?api-version=2021-06-01.14.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "1eccf47b-c53f-4844-806e-9dc955cf8eac" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Fri, 27 Aug 2021 16:14:46 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "3611ca93-e312-45ce-bf42-fb77e931becc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Fri, 27 Aug 2021 16:14:44 GMT" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/listSubtaskJob/tasks?api-version=2021-06-01.14.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "ac07837b-ba02-45a6-9def-9e013309969d" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Fri, 27 Aug 2021 16:14:48 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "067b5d23-39d4-43b6-afda-c95c88f59240" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Fri, 27 Aug 2021 16:14:46 GMT" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/listSubtaskJob/tasks?api-version=2021-06-01.14.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "7107c401-873f-43fe-af7a-b46a609fd50a" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Fri, 27 Aug 2021 16:14:50 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "22ae2e11-67a7-4f0a-9e35-2f8cf29857ed" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Fri, 27 Aug 2021 16:14:48 GMT" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/listSubtaskJob/tasks?api-version=2021-06-01.14.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "52ade7a3-78a2-4588-9801-f77f5a109569" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Fri, 27 Aug 2021 16:14:52 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "2312e818-66f9-417e-a043-85c07351728a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Fri, 27 Aug 2021 16:14:50 GMT" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/listSubtaskJob/tasks?api-version=2021-06-01.14.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "594c2fa6-a5c8-47c7-a47e-2660e8d2f055" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Fri, 27 Aug 2021 16:14:54 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "77fe75c7-144a-45e3-ab37-92e328b01d59" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Fri, 27 Aug 2021 16:14:52 GMT" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/listSubtaskJob/tasks?api-version=2021-06-01.14.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "cac0a648-3b77-4821-90d8-4243fea065d9" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Fri, 27 Aug 2021 16:14:56 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "88fb716f-3891-4b5f-91b7-e7bd30843390" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Fri, 27 Aug 2021 16:14:55 GMT" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/listSubtaskJob/tasks?api-version=2021-06-01.14.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "0f0e629e-48d4-47ad-9261-48519db16265" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Fri, 27 Aug 2021 16:14:58 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "fcab3faf-2332-4a52-b94e-7157642f7256" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Fri, 27 Aug 2021 16:14:57 GMT" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/listSubtaskJob/tasks?api-version=2021-06-01.14.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "2c631585-2ec3-490f-967e-fc6c529c16a2" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Fri, 27 Aug 2021 16:15:00 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "a75f4625-a317-4c38-a3aa-982e1c2dda30" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Fri, 27 Aug 2021 16:14:59 GMT" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/listSubtaskJob/tasks?api-version=2021-06-01.14.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "ab8e3828-0046-481b-88f4-5b6e3832c60a" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Fri, 27 Aug 2021 16:15:02 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "cfca4a2d-6fcf-42a7-911a-d1338df98bb1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Fri, 27 Aug 2021 16:15:01 GMT" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/listSubtaskJob/tasks?api-version=2021-06-01.14.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "466459be-c46b-43fe-9b4d-2fcb00de3d8e" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Fri, 27 Aug 2021 16:15:04 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "db49d438-4427-4836-9e14-4d7623cf6740" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Fri, 27 Aug 2021 16:15:03 GMT" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/listSubtaskJob/tasks?api-version=2021-06-01.14.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "8c0e805e-5a80-4611-bed6-48ab6512efea" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Fri, 27 Aug 2021 16:15:06 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "d348680b-3a36-4598-b2e5-0b43233da4c9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Fri, 27 Aug 2021 16:15:05 GMT" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/listSubtaskJob/tasks?api-version=2021-06-01.14.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "e2ad2265-f530-4e5a-8434-16f0cc380ef3" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Fri, 27 Aug 2021 16:15:08 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "28da26f8-5584-47f3-a39c-3d5c14533ab0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Fri, 27 Aug 2021 16:15:07 GMT" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/listSubtaskJob/tasks?api-version=2021-06-01.14.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "419584f3-64e9-4778-9772-c17b48b4575f" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Fri, 27 Aug 2021 16:15:10 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "56e30175-e8bc-4e94-931e-c4fb56dc9b33" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Fri, 27 Aug 2021 16:15:09 GMT" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/listSubtaskJob/tasks?api-version=2021-06-01.14.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "7d682b95-f540-4bba-a401-c0500cc68305" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Fri, 27 Aug 2021 16:15:12 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "0cf055f7-087d-4afd-be8f-ccc9606e6a60" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Fri, 27 Aug 2021 16:15:11 GMT" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/listSubtaskJob/tasks?api-version=2021-06-01.14.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "d9198be8-fa7c-4683-b715-f9b02cb84cc5" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Fri, 27 Aug 2021 16:15:14 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "338f864f-8373-41ea-98a6-e7f83acca300" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Fri, 27 Aug 2021 16:15:13 GMT" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/listSubtaskJob/tasks?api-version=2021-06-01.14.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "2cf31070-efc7-4eed-939b-1ffb0b839ebe" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Fri, 27 Aug 2021 16:15:16 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "aa4e5b72-4434-4c58-a0e0-ed5f5be3aac7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Fri, 27 Aug 2021 16:15:15 GMT" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"active\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/listSubtaskJob/tasks?api-version=2021-06-01.14.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "d6f6e997-8fb6-4e17-9eb2-d10b504797fa" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Fri, 27 Aug 2021 16:15:19 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "a9c5f32d-6c4c-4639-8916-3e9296c285ff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Fri, 27 Aug 2021 16:15:17 GMT" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"running\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/listSubtaskJob/tasks?api-version=2021-06-01.14.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "b0a945a6-3f6b-4328-be09-ff1d8b20e4db" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Fri, 27 Aug 2021 16:15:21 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "a9b910b8-a8c4-4d06-bd30-7744b5189907" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Fri, 27 Aug 2021 16:15:19 GMT" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask\",\r\n \"state\": \"completed\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/listSubtaskJob/tasks/testTask/subtasksinfo?api-version=2021-06-01.14.0", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3MvdGVzdFRhc2svc3VidGFza3NpbmZvP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDEuMTQuMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "16f9777f-f820-4ee0-9b84-2ba079eb6ba7" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Fri, 27 Aug 2021 16:15:21 GMT" + ], + "x-ms-client-request-id": [ + "52202fd1-bf20-4c84-a889-c04226b93a5e" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "51a9a34b-291f-4b39-8a9f-291d773cfc94" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Fri, 27 Aug 2021 16:15:20 GMT" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#subtaskinfo\",\r\n \"value\": [\r\n {\r\n \"id\": 1,\r\n \"startTime\": \"2021-08-27T16:15:16.448561Z\",\r\n \"endTime\": \"2021-08-27T16:15:19.614127Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2021-08-27T16:15:19.614127Z\",\r\n \"previousState\": \"running\",\r\n \"previousStateTransitionTime\": \"2021-08-27T16:15:16.401721Z\",\r\n \"result\": \"success\",\r\n \"exitCode\": 0,\r\n \"nodeInfo\": {\r\n \"affinityId\": \"TVM:tvmps_c13591163d05864b3b8380f610b1a3e6d4763c7c4090c3c3bd1de80fa3626797_d\",\r\n \"nodeUrl\": \"https://mikeportal.eastus.batch.azure.com/pools/mpiPool/nodes/tvmps_c13591163d05864b3b8380f610b1a3e6d4763c7c4090c3c3bd1de80fa3626797_d\",\r\n \"poolId\": \"mpiPool\",\r\n \"nodeId\": \"tvmps_c13591163d05864b3b8380f610b1a3e6d4763c7c4090c3c3bd1de80fa3626797_d\",\r\n \"taskRootDirectory\": \"workitems\\\\listSubtaskJob\\\\job-1\\\\testTask\",\r\n \"taskRootDirectoryUrl\": \"https://mikeportal.eastus.batch.azure.com/pools/mpiPool/nodes/tvmps_c13591163d05864b3b8380f610b1a3e6d4763c7c4090c3c3bd1de80fa3626797_d/files/workitems/listSubtaskJob/job-1/testTask\"\r\n }\r\n },\r\n {\r\n \"id\": 2,\r\n \"startTime\": \"2021-08-27T16:15:16.444287Z\",\r\n \"endTime\": \"2021-08-27T16:15:19.614507Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2021-08-27T16:15:19.614507Z\",\r\n \"previousState\": \"running\",\r\n \"previousStateTransitionTime\": \"2021-08-27T16:15:16.397493Z\",\r\n \"result\": \"success\",\r\n \"exitCode\": 0,\r\n \"nodeInfo\": {\r\n \"affinityId\": \"TVM:tvmps_1a533e7bd28a755ed88374af03f4262e00947949f2c06d26ec581f22f363d3b2_d\",\r\n \"nodeUrl\": \"https://mikeportal.eastus.batch.azure.com/pools/mpiPool/nodes/tvmps_1a533e7bd28a755ed88374af03f4262e00947949f2c06d26ec581f22f363d3b2_d\",\r\n \"poolId\": \"mpiPool\",\r\n \"nodeId\": \"tvmps_1a533e7bd28a755ed88374af03f4262e00947949f2c06d26ec581f22f363d3b2_d\",\r\n \"taskRootDirectory\": \"workitems\\\\listSubtaskJob\\\\job-1\\\\testTask\",\r\n \"taskRootDirectoryUrl\": \"https://mikeportal.eastus.batch.azure.com/pools/mpiPool/nodes/tvmps_1a533e7bd28a755ed88374af03f4262e00947949f2c06d26ec581f22f363d3b2_d/files/workitems/listSubtaskJob/job-1/testTask\"\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/listSubtaskJob/tasks/testTask/subtasksinfo?api-version=2021-06-01.14.0", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3MvdGVzdFRhc2svc3VidGFza3NpbmZvP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDEuMTQuMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "29b3abae-75db-4576-b52b-af75a186fecd" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Fri, 27 Aug 2021 16:15:22 GMT" + ], + "x-ms-client-request-id": [ + "0777bede-953e-404c-91e8-6ce789495d14" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/13.0.20.15503", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", "AzurePowershell/Az1.0.0" ] }, @@ -547,7 +10705,7 @@ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "0a9d4734-cd93-4331-8e15-1458417ee595" + "47d5c585-090c-4bd3-a069-a1c019e55bfc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -559,35 +10717,35 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 22:33:08 GMT" + "Fri, 27 Aug 2021 16:15:20 GMT" ], "Content-Type": [ "application/json; odata=minimalmetadata" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://prodtest6.francecentral.batch.azure.com/$metadata#subtaskinfo\",\r\n \"value\": [\r\n {\r\n \"id\": 1,\r\n \"startTime\": \"2020-06-09T22:32:42.271372Z\",\r\n \"endTime\": \"2020-06-09T22:32:45.559366Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2020-06-09T22:32:45.559366Z\",\r\n \"previousState\": \"running\",\r\n \"previousStateTransitionTime\": \"2020-06-09T22:32:42.145288Z\",\r\n \"result\": \"success\",\r\n \"exitCode\": 0,\r\n \"nodeInfo\": {\r\n \"affinityId\": \"TVM:tvmps_7ef4c0220208d7045620dd9e7a078a01693e5ac45b02a43c75611192f27d56f7_d\",\r\n \"nodeUrl\": \"https://prodtest6.francecentral.batch.azure.com/pools/mpiPool/nodes/tvmps_7ef4c0220208d7045620dd9e7a078a01693e5ac45b02a43c75611192f27d56f7_d\",\r\n \"poolId\": \"mpiPool\",\r\n \"nodeId\": \"tvmps_7ef4c0220208d7045620dd9e7a078a01693e5ac45b02a43c75611192f27d56f7_d\",\r\n \"taskRootDirectory\": \"workitems\\\\listSubtaskJob\\\\job-1\\\\testTask\",\r\n \"taskRootDirectoryUrl\": \"https://prodtest6.francecentral.batch.azure.com/pools/mpiPool/nodes/tvmps_7ef4c0220208d7045620dd9e7a078a01693e5ac45b02a43c75611192f27d56f7_d/files/workitems/listSubtaskJob/job-1/testTask\"\r\n }\r\n },\r\n {\r\n \"id\": 2,\r\n \"startTime\": \"2020-06-09T22:32:42.229088Z\",\r\n \"endTime\": \"2020-06-09T22:32:45.54492Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2020-06-09T22:32:45.54492Z\",\r\n \"previousState\": \"running\",\r\n \"previousStateTransitionTime\": \"2020-06-09T22:32:42.15398Z\",\r\n \"result\": \"success\",\r\n \"exitCode\": 0,\r\n \"nodeInfo\": {\r\n \"affinityId\": \"TVM:tvmps_5c2f945688a02f0abd6e1e161bca42c9c41be7b051d638148c33d6045c32dd17_d\",\r\n \"nodeUrl\": \"https://prodtest6.francecentral.batch.azure.com/pools/mpiPool/nodes/tvmps_5c2f945688a02f0abd6e1e161bca42c9c41be7b051d638148c33d6045c32dd17_d\",\r\n \"poolId\": \"mpiPool\",\r\n \"nodeId\": \"tvmps_5c2f945688a02f0abd6e1e161bca42c9c41be7b051d638148c33d6045c32dd17_d\",\r\n \"taskRootDirectory\": \"workitems\\\\listSubtaskJob\\\\job-1\\\\testTask\",\r\n \"taskRootDirectoryUrl\": \"https://prodtest6.francecentral.batch.azure.com/pools/mpiPool/nodes/tvmps_5c2f945688a02f0abd6e1e161bca42c9c41be7b051d638148c33d6045c32dd17_d/files/workitems/listSubtaskJob/job-1/testTask\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#subtaskinfo\",\r\n \"value\": [\r\n {\r\n \"id\": 1,\r\n \"startTime\": \"2021-08-27T16:15:16.448561Z\",\r\n \"endTime\": \"2021-08-27T16:15:19.614127Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2021-08-27T16:15:19.614127Z\",\r\n \"previousState\": \"running\",\r\n \"previousStateTransitionTime\": \"2021-08-27T16:15:16.401721Z\",\r\n \"result\": \"success\",\r\n \"exitCode\": 0,\r\n \"nodeInfo\": {\r\n \"affinityId\": \"TVM:tvmps_c13591163d05864b3b8380f610b1a3e6d4763c7c4090c3c3bd1de80fa3626797_d\",\r\n \"nodeUrl\": \"https://mikeportal.eastus.batch.azure.com/pools/mpiPool/nodes/tvmps_c13591163d05864b3b8380f610b1a3e6d4763c7c4090c3c3bd1de80fa3626797_d\",\r\n \"poolId\": \"mpiPool\",\r\n \"nodeId\": \"tvmps_c13591163d05864b3b8380f610b1a3e6d4763c7c4090c3c3bd1de80fa3626797_d\",\r\n \"taskRootDirectory\": \"workitems\\\\listSubtaskJob\\\\job-1\\\\testTask\",\r\n \"taskRootDirectoryUrl\": \"https://mikeportal.eastus.batch.azure.com/pools/mpiPool/nodes/tvmps_c13591163d05864b3b8380f610b1a3e6d4763c7c4090c3c3bd1de80fa3626797_d/files/workitems/listSubtaskJob/job-1/testTask\"\r\n }\r\n },\r\n {\r\n \"id\": 2,\r\n \"startTime\": \"2021-08-27T16:15:16.444287Z\",\r\n \"endTime\": \"2021-08-27T16:15:19.614507Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2021-08-27T16:15:19.614507Z\",\r\n \"previousState\": \"running\",\r\n \"previousStateTransitionTime\": \"2021-08-27T16:15:16.397493Z\",\r\n \"result\": \"success\",\r\n \"exitCode\": 0,\r\n \"nodeInfo\": {\r\n \"affinityId\": \"TVM:tvmps_1a533e7bd28a755ed88374af03f4262e00947949f2c06d26ec581f22f363d3b2_d\",\r\n \"nodeUrl\": \"https://mikeportal.eastus.batch.azure.com/pools/mpiPool/nodes/tvmps_1a533e7bd28a755ed88374af03f4262e00947949f2c06d26ec581f22f363d3b2_d\",\r\n \"poolId\": \"mpiPool\",\r\n \"nodeId\": \"tvmps_1a533e7bd28a755ed88374af03f4262e00947949f2c06d26ec581f22f363d3b2_d\",\r\n \"taskRootDirectory\": \"workitems\\\\listSubtaskJob\\\\job-1\\\\testTask\",\r\n \"taskRootDirectoryUrl\": \"https://mikeportal.eastus.batch.azure.com/pools/mpiPool/nodes/tvmps_1a533e7bd28a755ed88374af03f4262e00947949f2c06d26ec581f22f363d3b2_d/files/workitems/listSubtaskJob/job-1/testTask\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/jobs/listSubtaskJob?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2I/YXBpLXZlcnNpb249MjAyMC0wMy0wMS4xMS4w", + "RequestUri": "/jobs/listSubtaskJob?api-version=2021-06-01.14.0", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2I/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4w", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "7115fbad-c58a-491a-bc36-94ff7c872e25" + "c5dc9e8a-e7d5-4010-880a-f3ca715fa537" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:33:08 GMT" + "Fri, 27 Aug 2021 16:15:22 GMT" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/13.0.20.15503", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", "AzurePowershell/Az1.0.0" ], "Content-Length": [ @@ -602,7 +10760,7 @@ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "4e371537-00b2-4f06-87b0-319aeadbed45" + "9f36ae46-cee8-4df6-9ae8-dad0df04fa73" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -614,7 +10772,7 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 22:33:08 GMT" + "Fri, 27 Aug 2021 16:15:20 GMT" ] }, "ResponseBody": "", @@ -623,9 +10781,9 @@ ], "Names": {}, "Variables": { - "SubscriptionId": "21abd678-18c5-4660-9fdd-8c5ba6b6fe1f", - "AZURE_BATCH_ACCOUNT": "prodtest6", - "AZURE_BATCH_ENDPOINT": "https://prodtest6.francecentral.batch.azure.com", - "AZURE_BATCH_RESOURCE_GROUP": "abc" + "SubscriptionId": "ba2358c2-42f2-4138-88df-7c68cf608bea", + "AZURE_BATCH_ACCOUNT": "mikeportal", + "AZURE_BATCH_ENDPOINT": "https://mikeportal.eastus.batch.azure.com", + "AZURE_BATCH_RESOURCE_GROUP": "batchportal" } } \ No newline at end of file diff --git a/src/Batch/Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.TaskTests/TestTaskCRUD.json b/src/Batch/Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.TaskTests/TestTaskCRUD.json index e0fd73733d64..220708e20c79 100644 --- a/src/Batch/Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.TaskTests/TestTaskCRUD.json +++ b/src/Batch/Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.TaskTests/TestTaskCRUD.json @@ -1,25 +1,25 @@ { "Entries": [ { - "RequestUri": "/jobs?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAyMC0wMy0wMS4xMS4w", + "RequestUri": "/jobs?api-version=2021-06-01.14.0", + "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4w", "RequestMethod": "POST", "RequestBody": "{\r\n \"id\": \"taskCrudJob\",\r\n \"priority\": 0,\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n}", "RequestHeaders": { "client-request-id": [ - "bd84f4c6-b477-42a6-9535-f877aa8a11b2" + "f8ab26ea-5ea0-4b84-8b69-ffc10e522b5b" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:33:10 GMT" + "Fri, 27 Aug 2021 16:15:24 GMT" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/13.0.20.15503", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", "AzurePowershell/Az1.0.0" ], "Content-Type": [ @@ -34,16 +34,16 @@ "chunked" ], "ETag": [ - "0x8D80CC523A9DCFE" + "0x8D96975DFD288B2" ], "Location": [ - "https://prodtest6.francecentral.batch.azure.com/jobs/job-1" + "https://mikeportal.eastus.batch.azure.com/jobs/job-1" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "53e6d7b1-d10a-46f1-b30c-cce2b2a3bc6a" + "276e3b3b-b7b4-4b28-9b82-69bf51809dbf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -55,38 +55,41 @@ "3.0" ], "DataServiceId": [ - "https://prodtest6.francecentral.batch.azure.com/jobs/job-1" + "https://mikeportal.eastus.batch.azure.com/jobs/job-1" ], "Date": [ - "Tue, 09 Jun 2020 22:33:31 GMT" + "Fri, 27 Aug 2021 16:15:22 GMT" ], "Last-Modified": [ - "Tue, 09 Jun 2020 22:33:31 GMT" + "Fri, 27 Aug 2021 16:15:23 GMT" ] }, "ResponseBody": "", "StatusCode": 201 }, { - "RequestUri": "/jobs/taskCrudJob/tasks?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L2pvYnMvdGFza0NydWRKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMC0wMy0wMS4xMS4w", + "RequestUri": "/jobs/taskCrudJob/tasks?api-version=2021-06-01.14.0", + "EncodedRequestUri": "L2pvYnMvdGFza0NydWRKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4w", "RequestMethod": "POST", "RequestBody": "{\r\n \"id\": \"task1\",\r\n \"commandLine\": \"cmd /c echo task1\"\r\n}", "RequestHeaders": { "client-request-id": [ - "44c1f8c6-cd30-4e44-a77d-76397fa507cb" + "e980a4a6-c46a-43d2-9166-27b483bc0e6d" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:33:32 GMT" + "Fri, 27 Aug 2021 16:15:25 GMT" + ], + "x-ms-client-request-id": [ + "39f27039-abf5-429d-a5ed-50366bb09192" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/13.0.20.15503", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", "AzurePowershell/Az1.0.0" ], "Content-Type": [ @@ -101,16 +104,16 @@ "chunked" ], "ETag": [ - "0x8D80CC530E550B4" + "0x8D96975E0554FBC" ], "Location": [ - "https://prodtest6.francecentral.batch.azure.com/jobs/taskCrudJob/tasks/task1" + "https://mikeportal.eastus.batch.azure.com/jobs/taskCrudJob/tasks/task1" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "d23bdccd-4f35-49f1-a9d2-874e1efb6500" + "056a2d37-63eb-49db-a011-90d8cdf9a16b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -122,38 +125,41 @@ "3.0" ], "DataServiceId": [ - "https://prodtest6.francecentral.batch.azure.com/jobs/taskCrudJob/tasks/task1" + "https://mikeportal.eastus.batch.azure.com/jobs/taskCrudJob/tasks/task1" ], "Date": [ - "Tue, 09 Jun 2020 22:33:54 GMT" + "Fri, 27 Aug 2021 16:15:23 GMT" ], "Last-Modified": [ - "Tue, 09 Jun 2020 22:33:54 GMT" + "Fri, 27 Aug 2021 16:15:24 GMT" ] }, "ResponseBody": "", "StatusCode": 201 }, { - "RequestUri": "/jobs/taskCrudJob/tasks?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L2pvYnMvdGFza0NydWRKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMC0wMy0wMS4xMS4w", + "RequestUri": "/jobs/taskCrudJob/tasks?api-version=2021-06-01.14.0", + "EncodedRequestUri": "L2pvYnMvdGFza0NydWRKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4w", "RequestMethod": "POST", "RequestBody": "{\r\n \"id\": \"task2\",\r\n \"commandLine\": \"cmd /c echo task2\"\r\n}", "RequestHeaders": { "client-request-id": [ - "99b6741a-2c59-4e19-be2e-a1eae096594a" + "e7719f07-9f96-46eb-a38e-d572581c1abd" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:33:54 GMT" + "Fri, 27 Aug 2021 16:15:25 GMT" + ], + "x-ms-client-request-id": [ + "ecd555ee-7618-421a-82e0-dae12ea4689a" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/13.0.20.15503", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", "AzurePowershell/Az1.0.0" ], "Content-Type": [ @@ -168,16 +174,16 @@ "chunked" ], "ETag": [ - "0x8D80CC53102E3C1" + "0x8D96975E060E8AA" ], "Location": [ - "https://prodtest6.francecentral.batch.azure.com/jobs/taskCrudJob/tasks/task2" + "https://mikeportal.eastus.batch.azure.com/jobs/taskCrudJob/tasks/task2" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "d4af284e-d88d-46f6-a5d2-63ebf2aa8d1c" + "1684feb0-e7a3-4a94-b268-1b3fe3d3290e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -189,38 +195,41 @@ "3.0" ], "DataServiceId": [ - "https://prodtest6.francecentral.batch.azure.com/jobs/taskCrudJob/tasks/task2" + "https://mikeportal.eastus.batch.azure.com/jobs/taskCrudJob/tasks/task2" ], "Date": [ - "Tue, 09 Jun 2020 22:33:54 GMT" + "Fri, 27 Aug 2021 16:15:24 GMT" ], "Last-Modified": [ - "Tue, 09 Jun 2020 22:33:54 GMT" + "Fri, 27 Aug 2021 16:15:24 GMT" ] }, "ResponseBody": "", "StatusCode": 201 }, { - "RequestUri": "/jobs/taskCrudJob/tasks?api-version=2020-03-01.11.0&$filter=id%20eq%20%27task1%27%20or%20id%20eq%20%27task2%27", - "EncodedRequestUri": "L2pvYnMvdGFza0NydWRKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMC0wMy0wMS4xMS4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rhc2sxJTI3JTIwb3IlMjBpZCUyMGVxJTIwJTI3dGFzazIlMjc=", + "RequestUri": "/jobs/taskCrudJob/tasks?api-version=2021-06-01.14.0&$filter=id%20eq%20%27task1%27%20or%20id%20eq%20%27task2%27", + "EncodedRequestUri": "L2pvYnMvdGFza0NydWRKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rhc2sxJTI3JTIwb3IlMjBpZCUyMGVxJTIwJTI3dGFzazIlMjc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "c8a48bfd-1dc9-46cd-8248-40e27165385c" + "8a38834f-eb37-4320-a1f4-c5752c872404" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:33:54 GMT" + "Fri, 27 Aug 2021 16:15:25 GMT" + ], + "x-ms-client-request-id": [ + "aa5ee3d9-c255-49ca-b7b1-1253cd0a4c69" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/13.0.20.15503", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", "AzurePowershell/Az1.0.0" ] }, @@ -232,7 +241,7 @@ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "4c728dbb-8b9c-412c-a42d-5c8d1efada32" + "6b9feed5-8e43-4665-a249-a041626659e9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -244,35 +253,38 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 22:33:54 GMT" + "Fri, 27 Aug 2021 16:15:24 GMT" ], "Content-Type": [ "application/json; odata=minimalmetadata" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://prodtest6.francecentral.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"task1\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/taskCrudJob/tasks/task1\",\r\n \"eTag\": \"0x8D80CC530E550B4\",\r\n \"creationTime\": \"2020-06-09T22:33:54.135058Z\",\r\n \"lastModified\": \"2020-06-09T22:33:54.135058Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2020-06-09T22:33:54.135058Z\",\r\n \"commandLine\": \"cmd /c echo task1\",\r\n \"userIdentity\": {\r\n \"autoUser\": {\r\n \"scope\": \"pool\",\r\n \"elevationLevel\": \"nonadmin\"\r\n }\r\n },\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"retentionTime\": \"P7D\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"executionInfo\": {\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n }\r\n },\r\n {\r\n \"id\": \"task2\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/taskCrudJob/tasks/task2\",\r\n \"eTag\": \"0x8D80CC53102E3C1\",\r\n \"creationTime\": \"2020-06-09T22:33:54.3288769Z\",\r\n \"lastModified\": \"2020-06-09T22:33:54.3288769Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2020-06-09T22:33:54.3288769Z\",\r\n \"commandLine\": \"cmd /c echo task2\",\r\n \"userIdentity\": {\r\n \"autoUser\": {\r\n \"scope\": \"pool\",\r\n \"elevationLevel\": \"nonadmin\"\r\n }\r\n },\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"retentionTime\": \"P7D\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"executionInfo\": {\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"task1\",\r\n \"url\": \"https://mikeportal.eastus.batch.azure.com/jobs/taskCrudJob/tasks/task1\",\r\n \"eTag\": \"0x8D96975E0554FBC\",\r\n \"creationTime\": \"2021-08-27T16:15:24.5413308Z\",\r\n \"lastModified\": \"2021-08-27T16:15:24.5413308Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2021-08-27T16:15:24.5413308Z\",\r\n \"commandLine\": \"cmd /c echo task1\",\r\n \"userIdentity\": {\r\n \"autoUser\": {\r\n \"scope\": \"pool\",\r\n \"elevationLevel\": \"nonadmin\"\r\n }\r\n },\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"retentionTime\": \"P7D\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"requiredSlots\": 1,\r\n \"executionInfo\": {\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n }\r\n },\r\n {\r\n \"id\": \"task2\",\r\n \"url\": \"https://mikeportal.eastus.batch.azure.com/jobs/taskCrudJob/tasks/task2\",\r\n \"eTag\": \"0x8D96975E060E8AA\",\r\n \"creationTime\": \"2021-08-27T16:15:24.6173354Z\",\r\n \"lastModified\": \"2021-08-27T16:15:24.6173354Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2021-08-27T16:15:24.6173354Z\",\r\n \"commandLine\": \"cmd /c echo task2\",\r\n \"userIdentity\": {\r\n \"autoUser\": {\r\n \"scope\": \"pool\",\r\n \"elevationLevel\": \"nonadmin\"\r\n }\r\n },\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"retentionTime\": \"P7D\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"requiredSlots\": 1,\r\n \"executionInfo\": {\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/jobs/taskCrudJob/tasks/task2?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L2pvYnMvdGFza0NydWRKb2IvdGFza3MvdGFzazI/YXBpLXZlcnNpb249MjAyMC0wMy0wMS4xMS4w", + "RequestUri": "/jobs/taskCrudJob/tasks/task2?api-version=2021-06-01.14.0", + "EncodedRequestUri": "L2pvYnMvdGFza0NydWRKb2IvdGFza3MvdGFzazI/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4w", "RequestMethod": "PUT", "RequestBody": "{\r\n \"constraints\": {\r\n \"maxTaskRetryCount\": 3\r\n }\r\n}", "RequestHeaders": { "client-request-id": [ - "bf322370-fae1-41c7-a340-86dcad0a4d2c" + "5ac34ba7-509a-4e7c-bb63-688237bf5d2d" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:33:54 GMT" + "Fri, 27 Aug 2021 16:15:25 GMT" + ], + "x-ms-client-request-id": [ + "88045c30-547b-421e-87a5-d7721d1bf82c" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/13.0.20.15503", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", "AzurePowershell/Az1.0.0" ], "Content-Type": [ @@ -287,13 +299,13 @@ "chunked" ], "ETag": [ - "0x8D80CC53143EDEA" + "0x8D96975E087EA02" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "61a03e90-efd4-451e-b753-2e7106b5fe1b" + "72b16020-35a4-427c-b748-819ecfcbfca7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -305,38 +317,41 @@ "3.0" ], "DataServiceId": [ - "https://prodtest6.francecentral.batch.azure.com/jobs/taskCrudJob/tasks/task2" + "https://mikeportal.eastus.batch.azure.com/jobs/taskCrudJob/tasks/task2" ], "Date": [ - "Tue, 09 Jun 2020 22:33:54 GMT" + "Fri, 27 Aug 2021 16:15:24 GMT" ], "Last-Modified": [ - "Tue, 09 Jun 2020 22:33:54 GMT" + "Fri, 27 Aug 2021 16:15:24 GMT" ] }, "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/jobs/taskCrudJob/tasks/task2?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L2pvYnMvdGFza0NydWRKb2IvdGFza3MvdGFzazI/YXBpLXZlcnNpb249MjAyMC0wMy0wMS4xMS4w", + "RequestUri": "/jobs/taskCrudJob/tasks/task2?api-version=2021-06-01.14.0", + "EncodedRequestUri": "L2pvYnMvdGFza0NydWRKb2IvdGFza3MvdGFzazI/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4w", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "fbc1423d-ef75-41bc-8371-74fd3341d3bc" + "c43069fe-7028-4360-a608-b05b870bcc59" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:33:54 GMT" + "Fri, 27 Aug 2021 16:15:25 GMT" + ], + "x-ms-client-request-id": [ + "3d4c2507-b9a4-43b1-a3a0-2b2e00f92948" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/13.0.20.15503", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", "AzurePowershell/Az1.0.0" ] }, @@ -345,13 +360,13 @@ "chunked" ], "ETag": [ - "0x8D80CC53143EDEA" + "0x8D96975E087EA02" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "a35a026c-b62a-4c46-a1d5-d96978527d8b" + "35997049-da2a-4bca-b3b5-fc89e25cd124" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -363,38 +378,41 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 22:33:54 GMT" + "Fri, 27 Aug 2021 16:15:24 GMT" ], "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Tue, 09 Jun 2020 22:33:54 GMT" + "Fri, 27 Aug 2021 16:15:24 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://prodtest6.francecentral.batch.azure.com/$metadata#tasks/@Element\",\r\n \"id\": \"task2\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/taskCrudJob/tasks/task2\",\r\n \"eTag\": \"0x8D80CC53143EDEA\",\r\n \"creationTime\": \"2020-06-09T22:33:54.3288769Z\",\r\n \"lastModified\": \"2020-06-09T22:33:54.755121Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2020-06-09T22:33:54.3288769Z\",\r\n \"commandLine\": \"cmd /c echo task2\",\r\n \"userIdentity\": {\r\n \"autoUser\": {\r\n \"scope\": \"pool\",\r\n \"elevationLevel\": \"nonadmin\"\r\n }\r\n },\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"retentionTime\": \"P7D\",\r\n \"maxTaskRetryCount\": 3\r\n },\r\n \"executionInfo\": {\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#tasks/@Element\",\r\n \"id\": \"task2\",\r\n \"url\": \"https://mikeportal.eastus.batch.azure.com/jobs/taskCrudJob/tasks/task2\",\r\n \"eTag\": \"0x8D96975E087EA02\",\r\n \"creationTime\": \"2021-08-27T16:15:24.6173354Z\",\r\n \"lastModified\": \"2021-08-27T16:15:24.8729602Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2021-08-27T16:15:24.6173354Z\",\r\n \"commandLine\": \"cmd /c echo task2\",\r\n \"userIdentity\": {\r\n \"autoUser\": {\r\n \"scope\": \"pool\",\r\n \"elevationLevel\": \"nonadmin\"\r\n }\r\n },\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"retentionTime\": \"P7D\",\r\n \"maxTaskRetryCount\": 3\r\n },\r\n \"requiredSlots\": 1,\r\n \"executionInfo\": {\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/jobs/taskCrudJob/tasks?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L2pvYnMvdGFza0NydWRKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMC0wMy0wMS4xMS4w", + "RequestUri": "/jobs/taskCrudJob/tasks?api-version=2021-06-01.14.0", + "EncodedRequestUri": "L2pvYnMvdGFza0NydWRKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4w", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "230f2d72-de8c-417f-af06-d8589dc83eed" + "73160335-d276-4299-beff-c53d4b1966f8" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:33:55 GMT" + "Fri, 27 Aug 2021 16:15:25 GMT" + ], + "x-ms-client-request-id": [ + "93c6b612-bf76-47e7-bdf8-0ebd31580d0b" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/13.0.20.15503", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", "AzurePowershell/Az1.0.0" ] }, @@ -406,7 +424,7 @@ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "6a15867d-b345-4036-894f-0474b5a26673" + "3b5bdada-1382-4e27-8ed0-cab26f1c029d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -418,35 +436,38 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 22:33:54 GMT" + "Fri, 27 Aug 2021 16:15:24 GMT" ], "Content-Type": [ "application/json; odata=minimalmetadata" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://prodtest6.francecentral.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"task1\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/taskCrudJob/tasks/task1\",\r\n \"eTag\": \"0x8D80CC530E550B4\",\r\n \"creationTime\": \"2020-06-09T22:33:54.135058Z\",\r\n \"lastModified\": \"2020-06-09T22:33:54.135058Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2020-06-09T22:33:54.135058Z\",\r\n \"commandLine\": \"cmd /c echo task1\",\r\n \"userIdentity\": {\r\n \"autoUser\": {\r\n \"scope\": \"pool\",\r\n \"elevationLevel\": \"nonadmin\"\r\n }\r\n },\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"retentionTime\": \"P7D\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"executionInfo\": {\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n }\r\n },\r\n {\r\n \"id\": \"task2\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/taskCrudJob/tasks/task2\",\r\n \"eTag\": \"0x8D80CC53143EDEA\",\r\n \"creationTime\": \"2020-06-09T22:33:54.3288769Z\",\r\n \"lastModified\": \"2020-06-09T22:33:54.755121Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2020-06-09T22:33:54.3288769Z\",\r\n \"commandLine\": \"cmd /c echo task2\",\r\n \"userIdentity\": {\r\n \"autoUser\": {\r\n \"scope\": \"pool\",\r\n \"elevationLevel\": \"nonadmin\"\r\n }\r\n },\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"retentionTime\": \"P7D\",\r\n \"maxTaskRetryCount\": 3\r\n },\r\n \"executionInfo\": {\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"task1\",\r\n \"url\": \"https://mikeportal.eastus.batch.azure.com/jobs/taskCrudJob/tasks/task1\",\r\n \"eTag\": \"0x8D96975E0554FBC\",\r\n \"creationTime\": \"2021-08-27T16:15:24.5413308Z\",\r\n \"lastModified\": \"2021-08-27T16:15:24.5413308Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2021-08-27T16:15:24.5413308Z\",\r\n \"commandLine\": \"cmd /c echo task1\",\r\n \"userIdentity\": {\r\n \"autoUser\": {\r\n \"scope\": \"pool\",\r\n \"elevationLevel\": \"nonadmin\"\r\n }\r\n },\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"retentionTime\": \"P7D\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"requiredSlots\": 1,\r\n \"executionInfo\": {\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n }\r\n },\r\n {\r\n \"id\": \"task2\",\r\n \"url\": \"https://mikeportal.eastus.batch.azure.com/jobs/taskCrudJob/tasks/task2\",\r\n \"eTag\": \"0x8D96975E087EA02\",\r\n \"creationTime\": \"2021-08-27T16:15:24.6173354Z\",\r\n \"lastModified\": \"2021-08-27T16:15:24.8729602Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2021-08-27T16:15:24.6173354Z\",\r\n \"commandLine\": \"cmd /c echo task2\",\r\n \"userIdentity\": {\r\n \"autoUser\": {\r\n \"scope\": \"pool\",\r\n \"elevationLevel\": \"nonadmin\"\r\n }\r\n },\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"retentionTime\": \"P7D\",\r\n \"maxTaskRetryCount\": 3\r\n },\r\n \"requiredSlots\": 1,\r\n \"executionInfo\": {\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/jobs/taskCrudJob/tasks?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L2pvYnMvdGFza0NydWRKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMC0wMy0wMS4xMS4w", + "RequestUri": "/jobs/taskCrudJob/tasks?api-version=2021-06-01.14.0", + "EncodedRequestUri": "L2pvYnMvdGFza0NydWRKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4w", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "4bb3ff70-4057-4a88-b0c2-99057fe450d7" + "525a3750-c063-4f3e-9d3e-c427e898e1be" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:33:55 GMT" + "Fri, 27 Aug 2021 16:15:26 GMT" + ], + "x-ms-client-request-id": [ + "20b8190b-d6eb-4909-801a-b2b490d280f6" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/13.0.20.15503", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", "AzurePowershell/Az1.0.0" ] }, @@ -458,7 +479,7 @@ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "3c7317a8-3374-4a83-b1b6-8850753dc6ff" + "77d4a896-0c0d-4dab-93ad-b62cc732e89e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -470,35 +491,38 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 22:33:55 GMT" + "Fri, 27 Aug 2021 16:15:24 GMT" ], "Content-Type": [ "application/json; odata=minimalmetadata" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://prodtest6.francecentral.batch.azure.com/$metadata#tasks\",\r\n \"value\": []\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#tasks\",\r\n \"value\": []\r\n}", "StatusCode": 200 }, { - "RequestUri": "/jobs/taskCrudJob/tasks/task1?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L2pvYnMvdGFza0NydWRKb2IvdGFza3MvdGFzazE/YXBpLXZlcnNpb249MjAyMC0wMy0wMS4xMS4w", + "RequestUri": "/jobs/taskCrudJob/tasks/task1?api-version=2021-06-01.14.0", + "EncodedRequestUri": "L2pvYnMvdGFza0NydWRKb2IvdGFza3MvdGFzazE/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4w", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "d6c32e85-f0d0-43e6-a551-18b3f8328125" + "078e52d4-7e97-43f3-b4ad-2f40d744dd6f" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:33:55 GMT" + "Fri, 27 Aug 2021 16:15:26 GMT" + ], + "x-ms-client-request-id": [ + "93c6b612-bf76-47e7-bdf8-0ebd31580d0b" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/13.0.20.15503", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", "AzurePowershell/Az1.0.0" ], "Content-Length": [ @@ -513,7 +537,7 @@ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "5aa05f60-bbc5-426c-a039-630fd716a545" + "879e40d6-e284-4507-8e1f-946721d3030d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -525,32 +549,35 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 22:33:55 GMT" + "Fri, 27 Aug 2021 16:15:24 GMT" ] }, "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/jobs/taskCrudJob/tasks/task2?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L2pvYnMvdGFza0NydWRKb2IvdGFza3MvdGFzazI/YXBpLXZlcnNpb249MjAyMC0wMy0wMS4xMS4w", + "RequestUri": "/jobs/taskCrudJob/tasks/task2?api-version=2021-06-01.14.0", + "EncodedRequestUri": "L2pvYnMvdGFza0NydWRKb2IvdGFza3MvdGFzazI/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4w", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "e7bdb516-5ba7-4fef-812d-b86dae55c5fe" + "f8010414-e93e-4c6f-919a-0d342549bcad" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:33:55 GMT" + "Fri, 27 Aug 2021 16:15:26 GMT" + ], + "x-ms-client-request-id": [ + "93c6b612-bf76-47e7-bdf8-0ebd31580d0b" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/13.0.20.15503", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", "AzurePowershell/Az1.0.0" ], "Content-Length": [ @@ -565,7 +592,7 @@ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "55647722-c833-4f07-8eeb-393b56da8068" + "dfabe36f-5972-4466-9957-f7bf2122fcad" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -577,32 +604,32 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 22:33:55 GMT" + "Fri, 27 Aug 2021 16:15:24 GMT" ] }, "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/jobs/taskCrudJob?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L2pvYnMvdGFza0NydWRKb2I/YXBpLXZlcnNpb249MjAyMC0wMy0wMS4xMS4w", + "RequestUri": "/jobs/taskCrudJob?api-version=2021-06-01.14.0", + "EncodedRequestUri": "L2pvYnMvdGFza0NydWRKb2I/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4w", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "c8c9a04b-78ea-441c-ac97-892f5d59d8ef" + "904c7732-270a-4a86-8b9a-d82dc3c2727f" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:33:55 GMT" + "Fri, 27 Aug 2021 16:15:26 GMT" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/13.0.20.15503", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", "AzurePowershell/Az1.0.0" ], "Content-Length": [ @@ -617,7 +644,7 @@ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "9c7171b0-fa89-47d7-8540-47dac12b5181" + "7ef3295d-14db-4410-8345-f6a3fdad924e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -629,7 +656,7 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 22:33:55 GMT" + "Fri, 27 Aug 2021 16:15:24 GMT" ] }, "ResponseBody": "", @@ -638,9 +665,9 @@ ], "Names": {}, "Variables": { - "SubscriptionId": "21abd678-18c5-4660-9fdd-8c5ba6b6fe1f", - "AZURE_BATCH_ACCOUNT": "prodtest6", - "AZURE_BATCH_ENDPOINT": "https://prodtest6.francecentral.batch.azure.com", - "AZURE_BATCH_RESOURCE_GROUP": "abc" + "SubscriptionId": "ba2358c2-42f2-4138-88df-7c68cf608bea", + "AZURE_BATCH_ACCOUNT": "mikeportal", + "AZURE_BATCH_ENDPOINT": "https://mikeportal.eastus.batch.azure.com", + "AZURE_BATCH_RESOURCE_GROUP": "batchportal" } } \ No newline at end of file diff --git a/src/Batch/Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.TaskTests/TestTerminateTask.json b/src/Batch/Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.TaskTests/TestTerminateTask.json index fdad9b581cb8..ee92e0ac178d 100644 --- a/src/Batch/Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.TaskTests/TestTerminateTask.json +++ b/src/Batch/Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.TaskTests/TestTerminateTask.json @@ -1,25 +1,25 @@ { "Entries": [ { - "RequestUri": "/jobs?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAyMC0wMy0wMS4xMS4w", + "RequestUri": "/jobs?api-version=2021-06-01.14.0", + "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4w", "RequestMethod": "POST", "RequestBody": "{\r\n \"id\": \"testTerminateTaskJob\",\r\n \"priority\": 0,\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n }\r\n}", "RequestHeaders": { "client-request-id": [ - "dc15486f-f1d9-4e76-976b-a98077ed6e7b" + "1e83c4c7-4252-490a-a5ce-15c0ed31eded" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:33:57 GMT" + "Fri, 27 Aug 2021 16:15:28 GMT" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/13.0.20.15503", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", "AzurePowershell/Az1.0.0" ], "Content-Type": [ @@ -34,16 +34,16 @@ "chunked" ], "ETag": [ - "0x8D80CC53F8DF03B" + "0x8D96975E2107856" ], "Location": [ - "https://prodtest6.francecentral.batch.azure.com/jobs/job-1" + "https://mikeportal.eastus.batch.azure.com/jobs/job-1" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "a8de55e5-bafa-498f-a75b-c5ec67092d0b" + "b12f2400-5bf9-41b3-ab75-6e8186568158" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -55,38 +55,38 @@ "3.0" ], "DataServiceId": [ - "https://prodtest6.francecentral.batch.azure.com/jobs/job-1" + "https://mikeportal.eastus.batch.azure.com/jobs/job-1" ], "Date": [ - "Tue, 09 Jun 2020 22:34:18 GMT" + "Fri, 27 Aug 2021 16:15:27 GMT" ], "Last-Modified": [ - "Tue, 09 Jun 2020 22:34:18 GMT" + "Fri, 27 Aug 2021 16:15:27 GMT" ] }, "ResponseBody": "", "StatusCode": 201 }, { - "RequestUri": "/jobs/testTerminateTaskJob/tasks?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L2pvYnMvdGVzdFRlcm1pbmF0ZVRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMC0wMy0wMS4xMS4w", + "RequestUri": "/jobs/testTerminateTaskJob/tasks?api-version=2021-06-01.14.0", + "EncodedRequestUri": "L2pvYnMvdGVzdFRlcm1pbmF0ZVRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4w", "RequestMethod": "POST", "RequestBody": "{\r\n \"id\": \"testTask1\",\r\n \"commandLine\": \"ping -t localhost -w 60\",\r\n \"userIdentity\": {\r\n \"autoUser\": {\r\n \"scope\": \"task\",\r\n \"elevationLevel\": \"admin\"\r\n }\r\n }\r\n}", "RequestHeaders": { "client-request-id": [ - "51857926-646a-4351-9895-2a0ae8bd575f" + "7f3c85c3-8f6d-49da-b94d-a9f41d62f7c7" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:34:18 GMT" + "Fri, 27 Aug 2021 16:15:28 GMT" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/13.0.20.15503", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", "AzurePowershell/Az1.0.0" ], "Content-Type": [ @@ -101,16 +101,16 @@ "chunked" ], "ETag": [ - "0x8D80CC53FAB2597" + "0x8D96975E21D9063" ], "Location": [ - "https://prodtest6.francecentral.batch.azure.com/jobs/testTerminateTaskJob/tasks/testTask1" + "https://mikeportal.eastus.batch.azure.com/jobs/testTerminateTaskJob/tasks/testTask1" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "c5a8ed7e-ac6a-4e37-819e-052b1c5d9de4" + "25d84420-3f78-43b6-8af1-ef4b0d0cda74" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -122,38 +122,38 @@ "3.0" ], "DataServiceId": [ - "https://prodtest6.francecentral.batch.azure.com/jobs/testTerminateTaskJob/tasks/testTask1" + "https://mikeportal.eastus.batch.azure.com/jobs/testTerminateTaskJob/tasks/testTask1" ], "Date": [ - "Tue, 09 Jun 2020 22:34:18 GMT" + "Fri, 27 Aug 2021 16:15:27 GMT" ], "Last-Modified": [ - "Tue, 09 Jun 2020 22:34:18 GMT" + "Fri, 27 Aug 2021 16:15:27 GMT" ] }, "ResponseBody": "", "StatusCode": 201 }, { - "RequestUri": "/jobs/testTerminateTaskJob/tasks?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L2pvYnMvdGVzdFRlcm1pbmF0ZVRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMC0wMy0wMS4xMS4w", + "RequestUri": "/jobs/testTerminateTaskJob/tasks?api-version=2021-06-01.14.0", + "EncodedRequestUri": "L2pvYnMvdGVzdFRlcm1pbmF0ZVRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4w", "RequestMethod": "POST", "RequestBody": "{\r\n \"id\": \"testTask2\",\r\n \"commandLine\": \"ping -t localhost -w 60\",\r\n \"userIdentity\": {\r\n \"autoUser\": {\r\n \"scope\": \"task\",\r\n \"elevationLevel\": \"admin\"\r\n }\r\n }\r\n}", "RequestHeaders": { "client-request-id": [ - "78287b5f-320e-429f-b5ce-94e8d4caf1f4" + "27af74e9-464f-4ba1-98a8-6b2d7cb7ccbc" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:34:18 GMT" + "Fri, 27 Aug 2021 16:15:28 GMT" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/13.0.20.15503", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", "AzurePowershell/Az1.0.0" ], "Content-Type": [ @@ -168,16 +168,16 @@ "chunked" ], "ETag": [ - "0x8D80CC53FC5E180" + "0x8D96975E228B40A" ], "Location": [ - "https://prodtest6.francecentral.batch.azure.com/jobs/testTerminateTaskJob/tasks/testTask2" + "https://mikeportal.eastus.batch.azure.com/jobs/testTerminateTaskJob/tasks/testTask2" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "d9653ef2-0198-45b9-8680-f95ec3c2a3d3" + "979da0c2-2e50-490a-8205-9ead4c201e7e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -189,38 +189,41 @@ "3.0" ], "DataServiceId": [ - "https://prodtest6.francecentral.batch.azure.com/jobs/testTerminateTaskJob/tasks/testTask2" + "https://mikeportal.eastus.batch.azure.com/jobs/testTerminateTaskJob/tasks/testTask2" ], "Date": [ - "Tue, 09 Jun 2020 22:34:18 GMT" + "Fri, 27 Aug 2021 16:15:27 GMT" ], "Last-Modified": [ - "Tue, 09 Jun 2020 22:34:19 GMT" + "Fri, 27 Aug 2021 16:15:27 GMT" ] }, "ResponseBody": "", "StatusCode": 201 }, { - "RequestUri": "/jobs/testTerminateTaskJob/tasks/testTask1/terminate?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L2pvYnMvdGVzdFRlcm1pbmF0ZVRhc2tKb2IvdGFza3MvdGVzdFRhc2sxL3Rlcm1pbmF0ZT9hcGktdmVyc2lvbj0yMDIwLTAzLTAxLjExLjA=", + "RequestUri": "/jobs/testTerminateTaskJob/tasks/testTask1/terminate?api-version=2021-06-01.14.0", + "EncodedRequestUri": "L2pvYnMvdGVzdFRlcm1pbmF0ZVRhc2tKb2IvdGFza3MvdGVzdFRhc2sxL3Rlcm1pbmF0ZT9hcGktdmVyc2lvbj0yMDIxLTA2LTAxLjE0LjA=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "cbc62edd-e6b9-4daa-8480-4e61e29d72f4" + "28e28379-8247-447e-a807-1e3b40aad365" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:34:19 GMT" + "Fri, 27 Aug 2021 16:15:29 GMT" + ], + "x-ms-client-request-id": [ + "9b169c59-56d8-4978-a3e8-b7a799f54c60" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/13.0.20.15503", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", "AzurePowershell/Az1.0.0" ], "Content-Length": [ @@ -229,13 +232,13 @@ }, "ResponseHeaders": { "ETag": [ - "0x8D80CC54D0816FA" + "0x8D96975E2AED6EF" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "eeddde3c-9bdd-472f-8113-d59108844788" + "8930822f-9ac9-4341-bb00-52c4a20e9630" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -247,41 +250,44 @@ "3.0" ], "DataServiceId": [ - "https://prodtest6.francecentral.batch.azure.com/jobs/testTerminateTaskJob/tasks/testTask1/terminate" + "https://mikeportal.eastus.batch.azure.com/jobs/testTerminateTaskJob/tasks/testTask1/terminate" ], "Date": [ - "Tue, 09 Jun 2020 22:34:41 GMT" + "Fri, 27 Aug 2021 16:15:27 GMT" ], "Content-Length": [ "0" ], "Last-Modified": [ - "Tue, 09 Jun 2020 22:34:41 GMT" + "Fri, 27 Aug 2021 16:15:28 GMT" ] }, "ResponseBody": "", "StatusCode": 204 }, { - "RequestUri": "/jobs/testTerminateTaskJob/tasks/testTask2?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L2pvYnMvdGVzdFRlcm1pbmF0ZVRhc2tKb2IvdGFza3MvdGVzdFRhc2syP2FwaS12ZXJzaW9uPTIwMjAtMDMtMDEuMTEuMA==", + "RequestUri": "/jobs/testTerminateTaskJob/tasks/testTask2?api-version=2021-06-01.14.0", + "EncodedRequestUri": "L2pvYnMvdGVzdFRlcm1pbmF0ZVRhc2tKb2IvdGFza3MvdGVzdFRhc2syP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDEuMTQuMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "0fb75631-1b3b-48aa-942a-cd13f6b70ea2" + "2c327f18-4603-45a3-a9ea-0bac261e1de5" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:34:41 GMT" + "Fri, 27 Aug 2021 16:15:29 GMT" + ], + "x-ms-client-request-id": [ + "884f28e2-275e-4495-8ec6-0a773278709d" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/13.0.20.15503", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", "AzurePowershell/Az1.0.0" ] }, @@ -290,13 +296,13 @@ "chunked" ], "ETag": [ - "0x8D80CC53FC5E180" + "0x8D96975E228B40A" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "b01a46e0-f43e-4b86-a90d-b0c10987400f" + "e5b46229-40e4-49a5-b1cf-66863eaeee14" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -308,38 +314,41 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 22:34:41 GMT" + "Fri, 27 Aug 2021 16:15:27 GMT" ], "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Tue, 09 Jun 2020 22:34:19 GMT" + "Fri, 27 Aug 2021 16:15:27 GMT" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://prodtest6.francecentral.batch.azure.com/$metadata#tasks/@Element\",\r\n \"id\": \"testTask2\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/testTerminateTaskJob/tasks/testTask2\",\r\n \"eTag\": \"0x8D80CC53FC5E180\",\r\n \"creationTime\": \"2020-06-09T22:34:19.0948736Z\",\r\n \"lastModified\": \"2020-06-09T22:34:19.0948736Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2020-06-09T22:34:19.0948736Z\",\r\n \"commandLine\": \"ping -t localhost -w 60\",\r\n \"userIdentity\": {\r\n \"autoUser\": {\r\n \"scope\": \"task\",\r\n \"elevationLevel\": \"admin\"\r\n }\r\n },\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"retentionTime\": \"P7D\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"executionInfo\": {\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#tasks/@Element\",\r\n \"id\": \"testTask2\",\r\n \"url\": \"https://mikeportal.eastus.batch.azure.com/jobs/testTerminateTaskJob/tasks/testTask2\",\r\n \"eTag\": \"0x8D96975E228B40A\",\r\n \"creationTime\": \"2021-08-27T16:15:27.6044298Z\",\r\n \"lastModified\": \"2021-08-27T16:15:27.6044298Z\",\r\n \"state\": \"running\",\r\n \"stateTransitionTime\": \"2021-08-27T16:15:28.534774Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2021-08-27T16:15:28.534774Z\",\r\n \"commandLine\": \"ping -t localhost -w 60\",\r\n \"userIdentity\": {\r\n \"autoUser\": {\r\n \"scope\": \"task\",\r\n \"elevationLevel\": \"admin\"\r\n }\r\n },\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"retentionTime\": \"P7D\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"requiredSlots\": 1,\r\n \"executionInfo\": {\r\n \"startTime\": \"2021-08-27T16:15:28.534774Z\",\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n },\r\n \"nodeInfo\": {\r\n \"affinityId\": \"TVM:tvmps_c05b99b79b9007429d25b6be89631ca2778f46762979e27e83ebe323eb0de497_d\",\r\n \"nodeUrl\": \"https://mikeportal.eastus.batch.azure.com/pools/testPool/nodes/tvmps_c05b99b79b9007429d25b6be89631ca2778f46762979e27e83ebe323eb0de497_d\",\r\n \"poolId\": \"testPool\",\r\n \"nodeId\": \"tvmps_c05b99b79b9007429d25b6be89631ca2778f46762979e27e83ebe323eb0de497_d\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/jobs/testTerminateTaskJob/tasks/testTask2/terminate?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L2pvYnMvdGVzdFRlcm1pbmF0ZVRhc2tKb2IvdGFza3MvdGVzdFRhc2syL3Rlcm1pbmF0ZT9hcGktdmVyc2lvbj0yMDIwLTAzLTAxLjExLjA=", + "RequestUri": "/jobs/testTerminateTaskJob/tasks/testTask2/terminate?api-version=2021-06-01.14.0", + "EncodedRequestUri": "L2pvYnMvdGVzdFRlcm1pbmF0ZVRhc2tKb2IvdGFza3MvdGVzdFRhc2syL3Rlcm1pbmF0ZT9hcGktdmVyc2lvbj0yMDIxLTA2LTAxLjE0LjA=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "04d84f8a-7184-4b74-9b03-b862bc892bf5" + "8d613981-d0fe-4cf9-8247-e991c9b7c668" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:34:41 GMT" + "Fri, 27 Aug 2021 16:15:29 GMT" + ], + "x-ms-client-request-id": [ + "884f28e2-275e-4495-8ec6-0a773278709d" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/13.0.20.15503", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", "AzurePowershell/Az1.0.0" ], "Content-Length": [ @@ -348,13 +357,13 @@ }, "ResponseHeaders": { "ETag": [ - "0x8D80CC54D6EC104" + "0x8D96975E2E1F304" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "c0f6083d-059b-46b0-b2f2-25d3fb9de729" + "f17dbabb-1884-45f9-9728-8e321b5a08b1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -366,41 +375,44 @@ "3.0" ], "DataServiceId": [ - "https://prodtest6.francecentral.batch.azure.com/jobs/testTerminateTaskJob/tasks/testTask2/terminate" + "https://mikeportal.eastus.batch.azure.com/jobs/testTerminateTaskJob/tasks/testTask2/terminate" ], "Date": [ - "Tue, 09 Jun 2020 22:34:41 GMT" + "Fri, 27 Aug 2021 16:15:28 GMT" ], "Content-Length": [ "0" ], "Last-Modified": [ - "Tue, 09 Jun 2020 22:34:42 GMT" + "Fri, 27 Aug 2021 16:15:28 GMT" ] }, "ResponseBody": "", "StatusCode": 204 }, { - "RequestUri": "/jobs/testTerminateTaskJob/tasks?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L2pvYnMvdGVzdFRlcm1pbmF0ZVRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMC0wMy0wMS4xMS4w", + "RequestUri": "/jobs/testTerminateTaskJob/tasks?api-version=2021-06-01.14.0", + "EncodedRequestUri": "L2pvYnMvdGVzdFRlcm1pbmF0ZVRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4w", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "66f6d66b-c152-4794-b805-732e6a59ba3e" + "de0c869d-a0ef-4401-8347-217d563e086f" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:34:42 GMT" + "Fri, 27 Aug 2021 16:15:30 GMT" + ], + "x-ms-client-request-id": [ + "4511daea-d70f-49b0-a7c6-39df762776db" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/13.0.20.15503", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", "AzurePowershell/Az1.0.0" ] }, @@ -412,7 +424,7 @@ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "dca65299-9ed5-4254-9c12-c93e244dd91f" + "eb91cd77-921b-4456-bb95-f0795264e500" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -424,35 +436,35 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 22:34:41 GMT" + "Fri, 27 Aug 2021 16:15:28 GMT" ], "Content-Type": [ "application/json; odata=minimalmetadata" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://prodtest6.francecentral.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask1\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/testTerminateTaskJob/tasks/testTask1\",\r\n \"eTag\": \"0x8D80CC53FAB2597\",\r\n \"creationTime\": \"2020-06-09T22:34:18.9196695Z\",\r\n \"lastModified\": \"2020-06-09T22:34:18.9196695Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2020-06-09T22:34:41.354785Z\",\r\n \"previousState\": \"running\",\r\n \"previousStateTransitionTime\": \"2020-06-09T22:34:19.81581Z\",\r\n \"commandLine\": \"ping -t localhost -w 60\",\r\n \"userIdentity\": {\r\n \"autoUser\": {\r\n \"scope\": \"task\",\r\n \"elevationLevel\": \"admin\"\r\n }\r\n },\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"retentionTime\": \"P7D\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2020-06-09T22:34:20.159567Z\",\r\n \"endTime\": \"2020-06-09T22:34:41.354785Z\",\r\n \"exitCode\": -1073741510,\r\n \"failureInfo\": {\r\n \"category\": \"UserError\",\r\n \"code\": \"TaskEnded\",\r\n \"message\": \"Task Was Ended by User Request\",\r\n \"details\": [\r\n {\r\n \"name\": \"AdditionalErrorCode\",\r\n \"value\": \"FailureExitCode\"\r\n }\r\n ]\r\n },\r\n \"result\": \"failure\",\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n },\r\n \"nodeInfo\": {\r\n \"affinityId\": \"TVM:tvmps_67c7cd533daccf422807a8e72192afe6b3bd035d859dc2b1b0844ccd2331aaba_d\",\r\n \"nodeUrl\": \"https://prodtest6.francecentral.batch.azure.com/pools/testPool/nodes/tvmps_67c7cd533daccf422807a8e72192afe6b3bd035d859dc2b1b0844ccd2331aaba_d\",\r\n \"poolId\": \"testPool\",\r\n \"nodeId\": \"tvmps_67c7cd533daccf422807a8e72192afe6b3bd035d859dc2b1b0844ccd2331aaba_d\",\r\n \"taskRootDirectory\": \"workitems\\\\testTerminateTaskJob\\\\job-1\\\\testTask1\",\r\n \"taskRootDirectoryUrl\": \"https://prodtest6.francecentral.batch.azure.com/pools/testPool/nodes/tvmps_67c7cd533daccf422807a8e72192afe6b3bd035d859dc2b1b0844ccd2331aaba_d/files/workitems/testTerminateTaskJob/job-1/testTask1\"\r\n }\r\n },\r\n {\r\n \"id\": \"testTask2\",\r\n \"url\": \"https://prodtest6.francecentral.batch.azure.com/jobs/testTerminateTaskJob/tasks/testTask2\",\r\n \"eTag\": \"0x8D80CC54D6EC104\",\r\n \"creationTime\": \"2020-06-09T22:34:19.0948736Z\",\r\n \"lastModified\": \"2020-06-09T22:34:42.0119812Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2020-06-09T22:34:42.0119812Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2020-06-09T22:34:19.0948736Z\",\r\n \"commandLine\": \"ping -t localhost -w 60\",\r\n \"userIdentity\": {\r\n \"autoUser\": {\r\n \"scope\": \"task\",\r\n \"elevationLevel\": \"admin\"\r\n }\r\n },\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"retentionTime\": \"P7D\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"executionInfo\": {\r\n \"endTime\": \"2020-06-09T22:34:42.0119812Z\",\r\n \"failureInfo\": {\r\n \"category\": \"UserError\",\r\n \"code\": \"TaskEnded\",\r\n \"message\": \"Task Was Ended by User Request\"\r\n },\r\n \"result\": \"failure\",\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n },\r\n \"nodeInfo\": {}\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://mikeportal.eastus.batch.azure.com/$metadata#tasks\",\r\n \"value\": [\r\n {\r\n \"id\": \"testTask1\",\r\n \"url\": \"https://mikeportal.eastus.batch.azure.com/jobs/testTerminateTaskJob/tasks/testTask1\",\r\n \"eTag\": \"0x8D96975E2AED6EF\",\r\n \"creationTime\": \"2021-08-27T16:15:27.5314275Z\",\r\n \"lastModified\": \"2021-08-27T16:15:28.4835055Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2021-08-27T16:15:28.4835055Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2021-08-27T16:15:27.5314275Z\",\r\n \"commandLine\": \"ping -t localhost -w 60\",\r\n \"userIdentity\": {\r\n \"autoUser\": {\r\n \"scope\": \"task\",\r\n \"elevationLevel\": \"admin\"\r\n }\r\n },\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"retentionTime\": \"P7D\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"requiredSlots\": 1,\r\n \"executionInfo\": {\r\n \"endTime\": \"2021-08-27T16:15:28.4835055Z\",\r\n \"failureInfo\": {\r\n \"category\": \"UserError\",\r\n \"code\": \"TaskEnded\",\r\n \"message\": \"Task Was Ended by User Request\"\r\n },\r\n \"result\": \"failure\",\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n },\r\n \"nodeInfo\": {}\r\n },\r\n {\r\n \"id\": \"testTask2\",\r\n \"url\": \"https://mikeportal.eastus.batch.azure.com/jobs/testTerminateTaskJob/tasks/testTask2\",\r\n \"eTag\": \"0x8D96975E228B40A\",\r\n \"creationTime\": \"2021-08-27T16:15:27.6044298Z\",\r\n \"lastModified\": \"2021-08-27T16:15:27.6044298Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2021-08-27T16:15:28.818458Z\",\r\n \"previousState\": \"running\",\r\n \"previousStateTransitionTime\": \"2021-08-27T16:15:28.534774Z\",\r\n \"commandLine\": \"ping -t localhost -w 60\",\r\n \"userIdentity\": {\r\n \"autoUser\": {\r\n \"scope\": \"task\",\r\n \"elevationLevel\": \"admin\"\r\n }\r\n },\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"retentionTime\": \"P7D\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"requiredSlots\": 1,\r\n \"executionInfo\": {\r\n \"startTime\": \"2021-08-27T16:15:28.740332Z\",\r\n \"endTime\": \"2021-08-27T16:15:28.818458Z\",\r\n \"exitCode\": -1073741510,\r\n \"failureInfo\": {\r\n \"category\": \"UserError\",\r\n \"code\": \"TaskEnded\",\r\n \"message\": \"Task Was Ended by User Request\",\r\n \"details\": [\r\n {\r\n \"name\": \"AdditionalErrorCode\",\r\n \"value\": \"FailureExitCode\"\r\n }\r\n ]\r\n },\r\n \"result\": \"failure\",\r\n \"retryCount\": 0,\r\n \"requeueCount\": 0\r\n },\r\n \"nodeInfo\": {\r\n \"affinityId\": \"TVM:tvmps_c05b99b79b9007429d25b6be89631ca2778f46762979e27e83ebe323eb0de497_d\",\r\n \"nodeUrl\": \"https://mikeportal.eastus.batch.azure.com/pools/testPool/nodes/tvmps_c05b99b79b9007429d25b6be89631ca2778f46762979e27e83ebe323eb0de497_d\",\r\n \"poolId\": \"testPool\",\r\n \"nodeId\": \"tvmps_c05b99b79b9007429d25b6be89631ca2778f46762979e27e83ebe323eb0de497_d\",\r\n \"taskRootDirectory\": \"workitems\\\\testTerminateTaskJob\\\\job-1\\\\testTask2\",\r\n \"taskRootDirectoryUrl\": \"https://mikeportal.eastus.batch.azure.com/pools/testPool/nodes/tvmps_c05b99b79b9007429d25b6be89631ca2778f46762979e27e83ebe323eb0de497_d/files/workitems/testTerminateTaskJob/job-1/testTask2\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/jobs/testTerminateTaskJob?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L2pvYnMvdGVzdFRlcm1pbmF0ZVRhc2tKb2I/YXBpLXZlcnNpb249MjAyMC0wMy0wMS4xMS4w", + "RequestUri": "/jobs/testTerminateTaskJob?api-version=2021-06-01.14.0", + "EncodedRequestUri": "L2pvYnMvdGVzdFRlcm1pbmF0ZVRhc2tKb2I/YXBpLXZlcnNpb249MjAyMS0wNi0wMS4xNC4w", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "a08af711-1d55-46b1-bbcd-2c8a8e4c3194" + "9d3180c8-f813-467a-b2db-9172bce6b39f" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:34:42 GMT" + "Fri, 27 Aug 2021 16:15:30 GMT" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.30411.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Batch.Protocol.BatchServiceClient/13.0.20.15503", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.100.21.41103", "AzurePowershell/Az1.0.0" ], "Content-Length": [ @@ -467,7 +479,7 @@ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "b89f7f8a-cf51-4266-9b70-d2d5b7aaeabc" + "12d298f1-c7f3-458a-9e89-8293ca8fd4b5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -479,7 +491,7 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 22:34:42 GMT" + "Fri, 27 Aug 2021 16:15:29 GMT" ] }, "ResponseBody": "", @@ -488,9 +500,9 @@ ], "Names": {}, "Variables": { - "SubscriptionId": "21abd678-18c5-4660-9fdd-8c5ba6b6fe1f", - "AZURE_BATCH_ACCOUNT": "prodtest6", - "AZURE_BATCH_ENDPOINT": "https://prodtest6.francecentral.batch.azure.com", - "AZURE_BATCH_RESOURCE_GROUP": "abc" + "SubscriptionId": "ba2358c2-42f2-4138-88df-7c68cf608bea", + "AZURE_BATCH_ACCOUNT": "mikeportal", + "AZURE_BATCH_ENDPOINT": "https://mikeportal.eastus.batch.azure.com", + "AZURE_BATCH_RESOURCE_GROUP": "batchportal" } } \ No newline at end of file diff --git a/src/Batch/Batch.Test/Tasks/GetBatchTaskCountsCommandTests.cs b/src/Batch/Batch.Test/Tasks/GetBatchTaskCountsCommandTests.cs index 02819368295f..16e482c47516 100644 --- a/src/Batch/Batch.Test/Tasks/GetBatchTaskCountsCommandTests.cs +++ b/src/Batch/Batch.Test/Tasks/GetBatchTaskCountsCommandTests.cs @@ -28,7 +28,7 @@ namespace Microsoft.Azure.Commands.Batch.Test.Tasks { public class GetBatchTaskCountsCommandTests { - private GetBatchTaskCountCommand cmdlet; + private GetBatchTaskCountsCommand cmdlet; private Mock batchClientMock; private Mock commandRuntimeMock; @@ -37,7 +37,7 @@ public GetBatchTaskCountsCommandTests(Xunit.Abstractions.ITestOutputHelper outpu ServiceManagement.Common.Models.XunitTracingInterceptor.AddToContext(new ServiceManagement.Common.Models.XunitTracingInterceptor(output)); batchClientMock = new Mock(); commandRuntimeMock = new Mock(); - cmdlet = new GetBatchTaskCountCommand() + cmdlet = new GetBatchTaskCountsCommand() { CommandRuntime = commandRuntimeMock.Object, BatchClient = batchClientMock.Object, @@ -53,33 +53,37 @@ public void GetBatchTaskCountsTest() cmdlet.BatchContext = context; cmdlet.JobId = "job-1"; + const int requiredSlots = 2; const int active = 3; const int running = 5; const int succeeded = 2; const int failed = 1; // Build a TaskCounts instead of querying the service on a Get TaskCounts call - AzureOperationResponse response = - BatchTestHelpers.CreateTaskCountsGetResponse(active, running, succeeded, failed); + AzureOperationResponse response = + BatchTestHelpers.CreateTaskCountsGetResponse(requiredSlots, active, running, succeeded, failed); + RequestInterceptor interceptor = BatchTestHelpers.CreateFakeServiceResponseInterceptor< ProxyModels.JobGetTaskCountsOptions, - AzureOperationResponse>(response); + AzureOperationResponse>(response); cmdlet.AdditionalBehaviors = new List() { interceptor }; // Setup the cmdlet to write pipeline output to a list that can be examined later PSTaskCounts taskCounts = null; - commandRuntimeMock.Setup(r => - r.WriteObject(It.IsAny())) - .Callback(p => taskCounts = (PSTaskCounts)p); + commandRuntimeMock + .Setup(r => r.WriteObject(It.IsAny())) + .Callback(p => { + taskCounts = (PSTaskCounts)p; + }); cmdlet.ExecuteCmdlet(); - Assert.Equal(active, taskCounts.Active); - Assert.Equal(running, taskCounts.Running); - Assert.Equal(succeeded + failed, taskCounts.Completed); - Assert.Equal(succeeded, taskCounts.Succeeded); - Assert.Equal(failed, taskCounts.Failed); + Assert.Equal(3, taskCounts.Active); + Assert.Equal(5, taskCounts.Running); + Assert.Equal(3, taskCounts.Completed); + Assert.Equal(2, taskCounts.Succeeded); + Assert.Equal(1, taskCounts.Failed); } } } \ No newline at end of file diff --git a/src/Batch/Batch.Test/Tasks/GetBatchTaskSlotCountsCommandTests.cs b/src/Batch/Batch.Test/Tasks/GetBatchTaskSlotCountsCommandTests.cs new file mode 100644 index 000000000000..411bf30411de --- /dev/null +++ b/src/Batch/Batch.Test/Tasks/GetBatchTaskSlotCountsCommandTests.cs @@ -0,0 +1,89 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using Microsoft.Azure.Batch; +using Microsoft.Azure.Batch.Protocol; +using Microsoft.Azure.Commands.Batch.Models; +using Microsoft.Rest.Azure; +using Microsoft.WindowsAzure.Commands.ScenarioTest; +using Moq; +using System.Collections.Generic; +using System.Management.Automation; +using Xunit; +using BatchClient = Microsoft.Azure.Commands.Batch.Models.BatchClient; +using ProxyModels = Microsoft.Azure.Batch.Protocol.Models; + +namespace Microsoft.Azure.Commands.Batch.Test.Tasks +{ + public class GetBatchTaskSlotCountsCommandTests + { + private GetBatchTaskSlotCountsCommand cmdlet; + private Mock batchClientMock; + private Mock commandRuntimeMock; + + public GetBatchTaskSlotCountsCommandTests(Xunit.Abstractions.ITestOutputHelper output) + { + ServiceManagement.Common.Models.XunitTracingInterceptor.AddToContext(new ServiceManagement.Common.Models.XunitTracingInterceptor(output)); + batchClientMock = new Mock(); + commandRuntimeMock = new Mock(); + cmdlet = new GetBatchTaskSlotCountsCommand() + { + CommandRuntime = commandRuntimeMock.Object, + BatchClient = batchClientMock.Object, + }; + } + + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void GetBatchTaskSlotCountsTest() + { + // Setup cmdlet to get task counts by job id + BatchAccountContext context = BatchTestHelpers.CreateBatchContextWithKeys(); + cmdlet.BatchContext = context; + cmdlet.JobId = "job-1"; + + const int requiredSlots = 2; + const int active = 3; + const int running = 5; + const int succeeded = 2; + const int failed = 1; + + // Build a TaskCountsResult instead of querying the service + AzureOperationResponse response = + BatchTestHelpers.CreateTaskCountsGetResponse(requiredSlots, active, running, succeeded, failed); + + RequestInterceptor interceptor = BatchTestHelpers.CreateFakeServiceResponseInterceptor< + ProxyModels.JobGetTaskCountsOptions, + AzureOperationResponse>(response); + + cmdlet.AdditionalBehaviors = new List() { interceptor }; + + // Setup the cmdlet to write pipeline output to a list that can be examined later + PSTaskSlotCounts slotCounts = null; + commandRuntimeMock + .Setup(r => r.WriteObject(It.IsAny())) + .Callback(p => { + slotCounts = (PSTaskSlotCounts)p; + }); + + cmdlet.ExecuteCmdlet(); + + Assert.Equal(6, slotCounts.Active); + Assert.Equal(10, slotCounts.Running); + Assert.Equal(6, slotCounts.Completed); + Assert.Equal(4, slotCounts.Succeeded); + Assert.Equal(2, slotCounts.Failed); + } + } +} \ No newline at end of file diff --git a/src/Batch/Batch.sln b/src/Batch/Batch.sln index e2fdb5007b53..3c1c429fe58f 100644 --- a/src/Batch/Batch.sln +++ b/src/Batch/Batch.sln @@ -1,6 +1,6 @@ Microsoft Visual Studio Solution File, Format Version 12.00 -# Visual Studio 15 -VisualStudioVersion = 15.0.27703.2042 +# Visual Studio Version 16 +VisualStudioVersion = 16.0.31515.178 MinimumVisualStudioVersion = 10.0.40219.1 Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Batch", "Batch\Batch.csproj", "{D470E50A-9607-48D6-A924-4F9F86502704}" EndProject @@ -40,6 +40,10 @@ Global {142D7B0B-388A-4CEB-A228-7F6D423C5C2E}.Debug|Any CPU.Build.0 = Debug|Any CPU {142D7B0B-388A-4CEB-A228-7F6D423C5C2E}.Release|Any CPU.ActiveCfg = Release|Any CPU {142D7B0B-388A-4CEB-A228-7F6D423C5C2E}.Release|Any CPU.Build.0 = Release|Any CPU + {6BD6B80A-06AF-4B5B-9230-69CCFC6C8D64}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {6BD6B80A-06AF-4B5B-9230-69CCFC6C8D64}.Debug|Any CPU.Build.0 = Debug|Any CPU + {6BD6B80A-06AF-4B5B-9230-69CCFC6C8D64}.Release|Any CPU.ActiveCfg = Release|Any CPU + {6BD6B80A-06AF-4B5B-9230-69CCFC6C8D64}.Release|Any CPU.Build.0 = Release|Any CPU {FF81DC73-B8EC-4082-8841-4FBF2B16E7CE}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {FF81DC73-B8EC-4082-8841-4FBF2B16E7CE}.Debug|Any CPU.Build.0 = Debug|Any CPU {FF81DC73-B8EC-4082-8841-4FBF2B16E7CE}.Release|Any CPU.ActiveCfg = Release|Any CPU diff --git a/src/Batch/Batch/Az.Batch.psd1 b/src/Batch/Batch/Az.Batch.psd1 index 06150cf95130..d02fabeb302d 100644 --- a/src/Batch/Batch/Az.Batch.psd1 +++ b/src/Batch/Batch/Az.Batch.psd1 @@ -110,10 +110,11 @@ CmdletsToExport = 'Remove-AzBatchAccount', 'Get-AzBatchAccount', 'Remove-AzBatchComputeNodeUser', 'Enable-AzBatchTask', 'Set-AzBatchTask', 'Stop-AzBatchTask', 'Get-AzBatchComputeNode', 'Get-AzBatchJobSchedule', 'New-AzBatchJobSchedule', - 'Remove-AzBatchJobSchedule', 'Get-AzBatchTaskCount', + 'Remove-AzBatchJobSchedule', 'Get-AzBatchTaskCount', 'Get-AzBatchTaskCounts', 'Get-AzBatchPoolNodeCount', 'Start-AzBatchComputeNodeServiceLogUpload', - 'New-AzBatchResourceFile' + 'New-AzBatchResourceFile', + 'Get-AzBatchSupportedVirtualMachineSkus', 'Get-AzBatchTaskSlotCounts' # Variables to export from this module # VariablesToExport = @() diff --git a/src/Batch/Batch/Batch.csproj b/src/Batch/Batch/Batch.csproj index 6b245826b5bd..b6a71a766f07 100644 --- a/src/Batch/Batch/Batch.csproj +++ b/src/Batch/Batch/Batch.csproj @@ -12,9 +12,15 @@ - - + + + + + True + + + \ No newline at end of file diff --git a/src/Batch/Batch/BatchAccounts/NewBatchAccountCommand.cs b/src/Batch/Batch/BatchAccounts/NewBatchAccountCommand.cs index 26c951f1a3f5..9bb4de295c71 100644 --- a/src/Batch/Batch/BatchAccounts/NewBatchAccountCommand.cs +++ b/src/Batch/Batch/BatchAccounts/NewBatchAccountCommand.cs @@ -16,6 +16,7 @@ using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; using Microsoft.Azure.Management.Batch.Models; using System.Collections; +using System.Collections.Generic; using System.Management.Automation; using Constants = Microsoft.Azure.Commands.Batch.Utils.Constants; @@ -74,7 +75,10 @@ protected override void ExecuteCmdletImpl() KeyVaultUrl = this.KeyVaultUrl, Tags = this.Tag, PublicNetworkAccess = this.PublicNetworkAccess, - Identity = new BatchAccountIdentity(this.IdentityType) + // KLUDGE: This is a workaround for an issue with the BatchAccountIdentity constructor. Currently specifying + // a single argument (ie: `new BatchAccountIdentity(this.IdentityType)`) is ambiguous. This needs to + // be resolved in a new release of the management plane SDK. + Identity = new BatchAccountIdentity(this.IdentityType, null, null, null as IDictionary) }; BatchAccountContext context = BatchClient.CreateAccount(parameters); WriteObject(context); diff --git a/src/Batch/Batch/ChangeLog.md b/src/Batch/Batch/ChangeLog.md index 850a4313fe6f..d528c97e8fbe 100644 --- a/src/Batch/Batch/ChangeLog.md +++ b/src/Batch/Batch/ChangeLog.md @@ -19,6 +19,26 @@ --> ## Upcoming Release +## Version 4.0.0 +* Updated Az.Batch to use `Microsoft.Azure.Batch` SDK version 15.1.0 + - Add ability to assign user-assigned managed identities to `PSCloudPool`. These identities will be made available on each node in the pool, and can be used to access various resources. + - Added `IdentityReference` property to the following models to support accessing resources via managed identity: + - `PSAzureBlobFileSystemConfiguration` + - `PSOutputFileBlobContainerDestination` + - `PSContainerRegistry` + - `PSResourceFile` + - `PSUploadBatchServiceLogsConfiguration` + - Added new `extensions` property to `PSVirtualMachineConfiguration` on `PSCloudPool` to specify virtual machine extensions for nodes + - Added the ability to specify availability zones using a new property `NodePlacementConfiguration` on `VirtualMachineConfiguration` + - Added new `OSDisk` property to `VirtualMachineConfiguration`, which contains settings for the operating system disk of the Virtual Machine. + - The `Placement` property on `PSDiffDiskSettings` specifies the ephemeral disk placement for operating system disks for all VMs in the pool. Setting it to "CacheDisk" will store the ephemeral OS disk on the VM cache. + - Added `MaxParallelTasks` property on `PSCloudJob` to control the maximum allowed tasks per job (defaults to -1, meaning unlimited). + - Added `VirtualMachineInfo` property on `PSComputeNode` which contains information about the current state of the virtual machine, including the exact version of the marketplace image the VM is using. + - Added `RecurrenceInterval` property to `PSSchedule` to control the interval between the start times of two successive job under a job schedule. +* Updated Az.Batch`Microsoft.Azure.Management.Batch` SDK version 14.0.0. + - Added a new `Get-AzBatchSupportedVirtualMachineSkus` command, which gets the list of Batch-supported Virtual Machine VM sizes available at a given location. + - Added a new 'Get-AzBatchTaskSlotCounts' command, which gets the number of task slots required by a given job. + ## Version 3.1.0 * Updated Az.Batch to use `Microsoft.Azure.Management.Batch` SDK version to 11.0.0 * Added the ability to set the BatchAccount Identity in the `New-AzBatchAccount` cmdlet diff --git a/src/Batch/Batch/Locations/GetSupportedVirtualMachineSkusCommand.cs b/src/Batch/Batch/Locations/GetSupportedVirtualMachineSkusCommand.cs new file mode 100644 index 000000000000..a624c771beaa --- /dev/null +++ b/src/Batch/Batch/Locations/GetSupportedVirtualMachineSkusCommand.cs @@ -0,0 +1,34 @@ +using Microsoft.Azure.Commands.Batch.Models; +using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; +using Microsoft.WindowsAzure.Commands.Common.CustomAttributes; +using System.Collections.Generic; +using System.Management.Automation; + +namespace Microsoft.Azure.Commands.Batch +{ + [Cmdlet("Get", ResourceManager.Common.AzureRMConstants.AzurePrefix + "BatchSupportedVirtualMachineSkus"), OutputType(typeof(PSSupportedSku))] + public class GetSupportedVirtualMachineSkusCommand : BatchCmdletBase + { + [Parameter(Position = 0, Mandatory = true, ValueFromPipelineByPropertyName = true, + HelpMessage = "The region to get the supported SKUs from.")] + [LocationCompleter("Microsoft.Batch/locations/quotas")] + [ValidateNotNullOrEmpty] + public string Location { get; set; } + + [Parameter(Position = 1, ValueFromPipelineByPropertyName = true, + HelpMessage = "The maximum number of items to return in the response.")] + [ValidateNotNullOrEmpty] + public int? MaxResults { get; set; } + + [Parameter(Position = 2, ValueFromPipelineByPropertyName = true, + HelpMessage = "OData filter expression. Valid properties for filtering are \"familyName\".")] + [ValidateNotNullOrEmpty] + public string Filter { get; set; } + + protected override void ExecuteCmdletImpl() + { + IList skus = BatchClient.GetSupportedVirtualMachineSkus(Location, MaxResults, Filter); + WriteObject(skus, true); + } + } +} diff --git a/src/Batch/Batch/Models.Generated/PSAddTaskResult.cs b/src/Batch/Batch/Models.Generated/PSAddTaskResult.cs new file mode 100644 index 000000000000..3b3221ad1f61 --- /dev/null +++ b/src/Batch/Batch/Models.Generated/PSAddTaskResult.cs @@ -0,0 +1,124 @@ +// ----------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ----------------------------------------------------------------------------- +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:5.0.9 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace Microsoft.Azure.Commands.Batch.Models +{ + using System; + using System.Collections; + using System.Collections.Generic; + using Microsoft.Azure.Batch; + + + public partial class PSAddTaskResult + { + + internal Microsoft.Azure.Batch.AddTaskResult omObject; + + private PSCloudTask task; + + private PSBatchError error; + + internal PSAddTaskResult(Microsoft.Azure.Batch.AddTaskResult omObject) + { + if ((omObject == null)) + { + throw new System.ArgumentNullException("omObject"); + } + this.omObject = omObject; + } + + public PSCloudTask Task + { + get + { + if (((this.task == null) + && (this.omObject.Task != null))) + { + this.task = new PSCloudTask(this.omObject.Task); + } + return this.task; + } + } + + public int RetryCount + { + get + { + return this.omObject.RetryCount; + } + } + + public PSBatchError Error + { + get + { + if (((this.error == null) + && (this.omObject.Error != null))) + { + this.error = new PSBatchError(this.omObject.Error); + } + return this.error; + } + } + + public string ETag + { + get + { + return this.omObject.ETag; + } + } + + public System.DateTime? LastModified + { + get + { + return this.omObject.LastModified; + } + } + + public string Location + { + get + { + return this.omObject.Location; + } + } + + public Microsoft.Azure.Batch.Common.AddTaskStatus Status + { + get + { + return this.omObject.Status; + } + } + + public string TaskId + { + get + { + return this.omObject.TaskId; + } + } + } +} diff --git a/src/Batch/Batch/Models.Generated/PSAffinityInformation.cs b/src/Batch/Batch/Models.Generated/PSAffinityInformation.cs index 2f1efefbe716..d11106ae671f 100644 --- a/src/Batch/Batch/Models.Generated/PSAffinityInformation.cs +++ b/src/Batch/Batch/Models.Generated/PSAffinityInformation.cs @@ -14,7 +14,7 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. -// Runtime Version:4.0.30319.42000 +// Runtime Version:5.0.9 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. diff --git a/src/Batch/Batch/Models.Generated/PSApplicationPackageReference.cs b/src/Batch/Batch/Models.Generated/PSApplicationPackageReference.cs index 32651a666b96..6c3ebc456172 100644 --- a/src/Batch/Batch/Models.Generated/PSApplicationPackageReference.cs +++ b/src/Batch/Batch/Models.Generated/PSApplicationPackageReference.cs @@ -14,7 +14,7 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. -// Runtime Version:4.0.30319.42000 +// Runtime Version:5.0.9 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. diff --git a/src/Batch/Batch/Models.Generated/PSApplicationSummary.cs b/src/Batch/Batch/Models.Generated/PSApplicationSummary.cs new file mode 100644 index 000000000000..1828c45418e9 --- /dev/null +++ b/src/Batch/Batch/Models.Generated/PSApplicationSummary.cs @@ -0,0 +1,87 @@ +// ----------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ----------------------------------------------------------------------------- +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:5.0.9 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace Microsoft.Azure.Commands.Batch.Models +{ + using System; + using System.Collections; + using System.Collections.Generic; + using Microsoft.Azure.Batch; + + + public partial class PSApplicationSummary + { + + internal Microsoft.Azure.Batch.ApplicationSummary omObject; + + private IReadOnlyList versions; + + internal PSApplicationSummary(Microsoft.Azure.Batch.ApplicationSummary omObject) + { + if ((omObject == null)) + { + throw new System.ArgumentNullException("omObject"); + } + this.omObject = omObject; + } + + public string DisplayName + { + get + { + return this.omObject.DisplayName; + } + } + + public string Id + { + get + { + return this.omObject.Id; + } + } + + public IReadOnlyList Versions + { + get + { + if (((this.versions == null) + && (this.omObject.Versions != null))) + { + List list; + list = new List(); + IEnumerator enumerator; + enumerator = this.omObject.Versions.GetEnumerator(); + for ( + ; enumerator.MoveNext(); + ) + { + list.Add(enumerator.Current); + } + this.versions = list; + } + return this.versions; + } + } + } +} diff --git a/src/Batch/Batch/Models.Generated/PSAuthenticationTokenSettings.cs b/src/Batch/Batch/Models.Generated/PSAuthenticationTokenSettings.cs index 3d8c9e60bc61..9688584ce4a7 100644 --- a/src/Batch/Batch/Models.Generated/PSAuthenticationTokenSettings.cs +++ b/src/Batch/Batch/Models.Generated/PSAuthenticationTokenSettings.cs @@ -14,7 +14,7 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. -// Runtime Version:4.0.30319.42000 +// Runtime Version:5.0.9 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. diff --git a/src/Batch/Batch/Models.Generated/PSAutoPoolSpecification.cs b/src/Batch/Batch/Models.Generated/PSAutoPoolSpecification.cs index 98375361e826..b880b4ed9195 100644 --- a/src/Batch/Batch/Models.Generated/PSAutoPoolSpecification.cs +++ b/src/Batch/Batch/Models.Generated/PSAutoPoolSpecification.cs @@ -14,7 +14,7 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. -// Runtime Version:4.0.30319.42000 +// Runtime Version:5.0.9 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. diff --git a/src/Batch/Batch/Models.Generated/PSAutoScaleRun.cs b/src/Batch/Batch/Models.Generated/PSAutoScaleRun.cs index e32ea19d38fe..c69caba73434 100644 --- a/src/Batch/Batch/Models.Generated/PSAutoScaleRun.cs +++ b/src/Batch/Batch/Models.Generated/PSAutoScaleRun.cs @@ -14,7 +14,7 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. -// Runtime Version:4.0.30319.42000 +// Runtime Version:5.0.9 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. diff --git a/src/Batch/Batch/Models.Generated/PSAutoScaleRunError.cs b/src/Batch/Batch/Models.Generated/PSAutoScaleRunError.cs index fe6c97c372f3..32795985717d 100644 --- a/src/Batch/Batch/Models.Generated/PSAutoScaleRunError.cs +++ b/src/Batch/Batch/Models.Generated/PSAutoScaleRunError.cs @@ -14,7 +14,7 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. -// Runtime Version:4.0.30319.42000 +// Runtime Version:5.0.9 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. diff --git a/src/Batch/Batch/Models.Generated/PSAutoUserSpecification.cs b/src/Batch/Batch/Models.Generated/PSAutoUserSpecification.cs index 2557d9aff63d..db4b4ee047bd 100644 --- a/src/Batch/Batch/Models.Generated/PSAutoUserSpecification.cs +++ b/src/Batch/Batch/Models.Generated/PSAutoUserSpecification.cs @@ -14,7 +14,7 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. -// Runtime Version:4.0.30319.42000 +// Runtime Version:5.0.9 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. diff --git a/src/Batch/Batch/Models.Generated/PSAzureBlobFileSystemConfiguration.cs b/src/Batch/Batch/Models.Generated/PSAzureBlobFileSystemConfiguration.cs index 09943d45517f..8c4f3c288698 100644 --- a/src/Batch/Batch/Models.Generated/PSAzureBlobFileSystemConfiguration.cs +++ b/src/Batch/Batch/Models.Generated/PSAzureBlobFileSystemConfiguration.cs @@ -14,7 +14,7 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. -// Runtime Version:4.0.30319.42000 +// Runtime Version:5.0.9 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. @@ -34,11 +34,18 @@ public partial class PSAzureBlobFileSystemConfiguration internal Microsoft.Azure.Batch.AzureBlobFileSystemConfiguration omObject; + private PSComputeNodeIdentityReference identityReference; + public PSAzureBlobFileSystemConfiguration(string accountName, string containerName, string relativeMountPath, Microsoft.Azure.Batch.AzureStorageAuthenticationKey key, string blobfuseOptions = null) { this.omObject = new Microsoft.Azure.Batch.AzureBlobFileSystemConfiguration(accountName, containerName, relativeMountPath, key, blobfuseOptions); } + public PSAzureBlobFileSystemConfiguration(string accountName, string containerName, string relativeMountPath, PSComputeNodeIdentityReference identityReference, string blobfuseOptions = null) + { + this.omObject = new Microsoft.Azure.Batch.AzureBlobFileSystemConfiguration(accountName, containerName, relativeMountPath, identityReference.omObject, blobfuseOptions); + } + internal PSAzureBlobFileSystemConfiguration(Microsoft.Azure.Batch.AzureBlobFileSystemConfiguration omObject) { if ((omObject == null)) @@ -80,6 +87,31 @@ public string ContainerName } } + public PSComputeNodeIdentityReference IdentityReference + { + get + { + if (((this.identityReference == null) + && (this.omObject.IdentityReference != null))) + { + this.identityReference = new PSComputeNodeIdentityReference(this.omObject.IdentityReference); + } + return this.identityReference; + } + set + { + if ((value == null)) + { + this.omObject.IdentityReference = null; + } + else + { + this.omObject.IdentityReference = value.omObject; + } + this.identityReference = value; + } + } + public string RelativeMountPath { get diff --git a/src/Batch/Batch/Models.Generated/PSAzureFileShareConfiguration.cs b/src/Batch/Batch/Models.Generated/PSAzureFileShareConfiguration.cs index cbff6ebe71e3..219fd4ba8453 100644 --- a/src/Batch/Batch/Models.Generated/PSAzureFileShareConfiguration.cs +++ b/src/Batch/Batch/Models.Generated/PSAzureFileShareConfiguration.cs @@ -14,7 +14,7 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. -// Runtime Version:4.0.30319.42000 +// Runtime Version:5.0.9 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. diff --git a/src/Batch/Batch/Models.Generated/PSBatchError.cs b/src/Batch/Batch/Models.Generated/PSBatchError.cs new file mode 100644 index 000000000000..4c8a1c3c9337 --- /dev/null +++ b/src/Batch/Batch/Models.Generated/PSBatchError.cs @@ -0,0 +1,94 @@ +// ----------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ----------------------------------------------------------------------------- +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:5.0.9 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace Microsoft.Azure.Commands.Batch.Models +{ + using System; + using System.Collections; + using System.Collections.Generic; + using Microsoft.Azure.Batch; + + + public partial class PSBatchError + { + + internal Microsoft.Azure.Batch.BatchError omObject; + + private PSErrorMessage message; + + private IReadOnlyList values; + + internal PSBatchError(Microsoft.Azure.Batch.BatchError omObject) + { + if ((omObject == null)) + { + throw new System.ArgumentNullException("omObject"); + } + this.omObject = omObject; + } + + public string Code + { + get + { + return this.omObject.Code; + } + } + + public PSErrorMessage Message + { + get + { + if (((this.message == null) + && (this.omObject.Message != null))) + { + this.message = new PSErrorMessage(this.omObject.Message); + } + return this.message; + } + } + + public IReadOnlyList Values + { + get + { + if (((this.values == null) + && (this.omObject.Values != null))) + { + List list; + list = new List(); + IEnumerator enumerator; + enumerator = this.omObject.Values.GetEnumerator(); + for ( + ; enumerator.MoveNext(); + ) + { + list.Add(new PSBatchErrorDetail(enumerator.Current)); + } + this.values = list; + } + return this.values; + } + } + } +} diff --git a/src/Batch/Batch/Models.Generated/PSBatchErrorDetail.cs b/src/Batch/Batch/Models.Generated/PSBatchErrorDetail.cs new file mode 100644 index 000000000000..45067193e1d4 --- /dev/null +++ b/src/Batch/Batch/Models.Generated/PSBatchErrorDetail.cs @@ -0,0 +1,62 @@ +// ----------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ----------------------------------------------------------------------------- +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:5.0.9 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace Microsoft.Azure.Commands.Batch.Models +{ + using System; + using System.Collections; + using System.Collections.Generic; + using Microsoft.Azure.Batch; + + + public partial class PSBatchErrorDetail + { + + internal Microsoft.Azure.Batch.BatchErrorDetail omObject; + + internal PSBatchErrorDetail(Microsoft.Azure.Batch.BatchErrorDetail omObject) + { + if ((omObject == null)) + { + throw new System.ArgumentNullException("omObject"); + } + this.omObject = omObject; + } + + public string Key + { + get + { + return this.omObject.Key; + } + } + + public string Value + { + get + { + return this.omObject.Value; + } + } + } +} diff --git a/src/Batch/Batch/Models.Generated/PSBatchPoolIdentity.cs b/src/Batch/Batch/Models.Generated/PSBatchPoolIdentity.cs new file mode 100644 index 000000000000..d4b68a7bddfa --- /dev/null +++ b/src/Batch/Batch/Models.Generated/PSBatchPoolIdentity.cs @@ -0,0 +1,95 @@ +// ----------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ----------------------------------------------------------------------------- +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:5.0.9 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace Microsoft.Azure.Commands.Batch.Models +{ + using System; + using System.Collections; + using System.Collections.Generic; + using Microsoft.Azure.Batch; + + + public partial class PSBatchPoolIdentity + { + + internal Microsoft.Azure.Batch.BatchPoolIdentity omObject; + + private IList userAssignedIdentities; + + internal PSBatchPoolIdentity(Microsoft.Azure.Batch.BatchPoolIdentity omObject) + { + if ((omObject == null)) + { + throw new System.ArgumentNullException("omObject"); + } + this.omObject = omObject; + } + + public Microsoft.Azure.Batch.Common.PoolIdentityType Type + { + get + { + return this.omObject.Type; + } + set + { + this.omObject.Type = value; + } + } + + public IList UserAssignedIdentities + { + get + { + if (((this.userAssignedIdentities == null) + && (this.omObject.UserAssignedIdentities != null))) + { + List list; + list = new List(); + IEnumerator enumerator; + enumerator = this.omObject.UserAssignedIdentities.GetEnumerator(); + for ( + ; enumerator.MoveNext(); + ) + { + list.Add(new PSUserAssignedIdentity(enumerator.Current)); + } + this.userAssignedIdentities = list; + } + return this.userAssignedIdentities; + } + set + { + if ((value == null)) + { + this.omObject.UserAssignedIdentities = null; + } + else + { + this.omObject.UserAssignedIdentities = new List(); + } + this.userAssignedIdentities = value; + } + } + } +} diff --git a/src/Batch/Batch/Models.Generated/PSCertificate.cs b/src/Batch/Batch/Models.Generated/PSCertificate.cs index f808ab4e3868..20eac465adc3 100644 --- a/src/Batch/Batch/Models.Generated/PSCertificate.cs +++ b/src/Batch/Batch/Models.Generated/PSCertificate.cs @@ -14,7 +14,7 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. -// Runtime Version:4.0.30319.42000 +// Runtime Version:5.0.9 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. diff --git a/src/Batch/Batch/Models.Generated/PSCertificateReference.cs b/src/Batch/Batch/Models.Generated/PSCertificateReference.cs index c7ce3a5a6a00..aeb44c3752d3 100644 --- a/src/Batch/Batch/Models.Generated/PSCertificateReference.cs +++ b/src/Batch/Batch/Models.Generated/PSCertificateReference.cs @@ -14,7 +14,7 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. -// Runtime Version:4.0.30319.42000 +// Runtime Version:5.0.9 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. diff --git a/src/Batch/Batch/Models.Generated/PSCifsMountConfiguration.cs b/src/Batch/Batch/Models.Generated/PSCifsMountConfiguration.cs index f7415c680ada..5bbe4384a87a 100644 --- a/src/Batch/Batch/Models.Generated/PSCifsMountConfiguration.cs +++ b/src/Batch/Batch/Models.Generated/PSCifsMountConfiguration.cs @@ -14,7 +14,7 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. -// Runtime Version:4.0.30319.42000 +// Runtime Version:5.0.9 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. diff --git a/src/Batch/Batch/Models.Generated/PSCloudJob.cs b/src/Batch/Batch/Models.Generated/PSCloudJob.cs index dcd8831070b6..35ab61aa63a4 100644 --- a/src/Batch/Batch/Models.Generated/PSCloudJob.cs +++ b/src/Batch/Batch/Models.Generated/PSCloudJob.cs @@ -14,7 +14,7 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. -// Runtime Version:4.0.30319.42000 +// Runtime Version:5.0.9 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. @@ -259,6 +259,18 @@ public System.DateTime? LastModified } } + public System.Int32? MaxParallelTasks + { + get + { + return this.omObject.MaxParallelTasks; + } + set + { + this.omObject.MaxParallelTasks = value; + } + } + public IDictionary Metadata { get diff --git a/src/Batch/Batch/Models.Generated/PSCloudJobSchedule.cs b/src/Batch/Batch/Models.Generated/PSCloudJobSchedule.cs index 82e876d0e49e..12d85515c570 100644 --- a/src/Batch/Batch/Models.Generated/PSCloudJobSchedule.cs +++ b/src/Batch/Batch/Models.Generated/PSCloudJobSchedule.cs @@ -14,7 +14,7 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. -// Runtime Version:4.0.30319.42000 +// Runtime Version:5.0.9 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. diff --git a/src/Batch/Batch/Models.Generated/PSCloudPool.cs b/src/Batch/Batch/Models.Generated/PSCloudPool.cs index b74e4ae3bb10..78e8deef660a 100644 --- a/src/Batch/Batch/Models.Generated/PSCloudPool.cs +++ b/src/Batch/Batch/Models.Generated/PSCloudPool.cs @@ -14,7 +14,7 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. -// Runtime Version:4.0.30319.42000 +// Runtime Version:5.0.9 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. @@ -44,6 +44,8 @@ public partial class PSCloudPool private PSCloudServiceConfiguration cloudServiceConfiguration; + private PSBatchPoolIdentity identity; + private IDictionary metadata; private IList mountConfiguration; @@ -322,35 +324,48 @@ public string Id } } - public System.Boolean? InterComputeNodeCommunicationEnabled + public PSBatchPoolIdentity Identity { get { - return this.omObject.InterComputeNodeCommunicationEnabled; + if (((this.identity == null) + && (this.omObject.Identity != null))) + { + this.identity = new PSBatchPoolIdentity(this.omObject.Identity); + } + return this.identity; } set { - this.omObject.InterComputeNodeCommunicationEnabled = value; + if ((value == null)) + { + this.omObject.Identity = null; + } + else + { + this.omObject.Identity = value.omObject; + } + this.identity = value; } } - public System.DateTime? LastModified + public System.Boolean? InterComputeNodeCommunicationEnabled { get { - return this.omObject.LastModified; + return this.omObject.InterComputeNodeCommunicationEnabled; + } + set + { + this.omObject.InterComputeNodeCommunicationEnabled = value; } } - public System.Int32? MaxTasksPerComputeNode + public System.DateTime? LastModified { get { - return this.omObject.MaxTasksPerComputeNode; - } - set - { - this.omObject.MaxTasksPerComputeNode = value; + return this.omObject.LastModified; } } @@ -587,6 +602,18 @@ public PSTaskSchedulingPolicy TaskSchedulingPolicy } } + public System.Int32? TaskSlotsPerNode + { + get + { + return this.omObject.TaskSlotsPerNode; + } + set + { + this.omObject.TaskSlotsPerNode = value; + } + } + public string Url { get diff --git a/src/Batch/Batch/Models.Generated/PSCloudServiceConfiguration.cs b/src/Batch/Batch/Models.Generated/PSCloudServiceConfiguration.cs index 0c717f4d222b..cd93603a6d2e 100644 --- a/src/Batch/Batch/Models.Generated/PSCloudServiceConfiguration.cs +++ b/src/Batch/Batch/Models.Generated/PSCloudServiceConfiguration.cs @@ -14,7 +14,7 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. -// Runtime Version:4.0.30319.42000 +// Runtime Version:5.0.9 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. diff --git a/src/Batch/Batch/Models.Generated/PSCloudTask.cs b/src/Batch/Batch/Models.Generated/PSCloudTask.cs index 4b06a305cd16..34de8c400119 100644 --- a/src/Batch/Batch/Models.Generated/PSCloudTask.cs +++ b/src/Batch/Batch/Models.Generated/PSCloudTask.cs @@ -14,7 +14,7 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. -// Runtime Version:4.0.30319.42000 +// Runtime Version:5.0.9 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. @@ -460,6 +460,18 @@ public System.DateTime? PreviousStateTransitionTime } } + public System.Int32? RequiredSlots + { + get + { + return this.omObject.RequiredSlots; + } + set + { + this.omObject.RequiredSlots = value; + } + } + public IList ResourceFiles { get diff --git a/src/Batch/Batch/Models.Generated/PSComputeNode.cs b/src/Batch/Batch/Models.Generated/PSComputeNode.cs index fa2ed60848e3..6ccdbd26cd30 100644 --- a/src/Batch/Batch/Models.Generated/PSComputeNode.cs +++ b/src/Batch/Batch/Models.Generated/PSComputeNode.cs @@ -14,7 +14,7 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. -// Runtime Version:4.0.30319.42000 +// Runtime Version:5.0.9 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. @@ -48,6 +48,8 @@ public partial class PSComputeNode private PSStartTaskInformation startTaskInformation; + private PSVirtualMachineInfo virtualMachineInfo; + internal PSComputeNode(Microsoft.Azure.Batch.ComputeNode omObject) { if ((omObject == null)) @@ -208,6 +210,14 @@ public System.Int32? RunningTasksCount } } + public System.Int32? RunningTaskSlotsCount + { + get + { + return this.omObject.RunningTaskSlotsCount; + } + } + public Microsoft.Azure.Batch.Common.SchedulingState? SchedulingState { get @@ -282,6 +292,19 @@ public string Url } } + public PSVirtualMachineInfo VirtualMachineInfo + { + get + { + if (((this.virtualMachineInfo == null) + && (this.omObject.VirtualMachineInfo != null))) + { + this.virtualMachineInfo = new PSVirtualMachineInfo(this.omObject.VirtualMachineInfo); + } + return this.virtualMachineInfo; + } + } + public string VirtualMachineSize { get diff --git a/src/Batch/Batch/Models.Generated/PSComputeNodeEndpointConfiguration.cs b/src/Batch/Batch/Models.Generated/PSComputeNodeEndpointConfiguration.cs index 7a880eccf083..0cb82e55cd5b 100644 --- a/src/Batch/Batch/Models.Generated/PSComputeNodeEndpointConfiguration.cs +++ b/src/Batch/Batch/Models.Generated/PSComputeNodeEndpointConfiguration.cs @@ -14,7 +14,7 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. -// Runtime Version:4.0.30319.42000 +// Runtime Version:5.0.9 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. diff --git a/src/Batch/Batch/Models.Generated/PSComputeNodeError.cs b/src/Batch/Batch/Models.Generated/PSComputeNodeError.cs index ade705dbe893..d87f74bc17c7 100644 --- a/src/Batch/Batch/Models.Generated/PSComputeNodeError.cs +++ b/src/Batch/Batch/Models.Generated/PSComputeNodeError.cs @@ -14,7 +14,7 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. -// Runtime Version:4.0.30319.42000 +// Runtime Version:5.0.9 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. diff --git a/src/Batch/Batch/Models.Generated/PSComputeNodeIdentityReference.cs b/src/Batch/Batch/Models.Generated/PSComputeNodeIdentityReference.cs new file mode 100644 index 000000000000..856b9a7914f6 --- /dev/null +++ b/src/Batch/Batch/Models.Generated/PSComputeNodeIdentityReference.cs @@ -0,0 +1,63 @@ +// ----------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ----------------------------------------------------------------------------- +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:5.0.9 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace Microsoft.Azure.Commands.Batch.Models +{ + using System; + using System.Collections; + using System.Collections.Generic; + using Microsoft.Azure.Batch; + + + public partial class PSComputeNodeIdentityReference + { + + internal Microsoft.Azure.Batch.ComputeNodeIdentityReference omObject; + + public PSComputeNodeIdentityReference() + { + this.omObject = new Microsoft.Azure.Batch.ComputeNodeIdentityReference(); + } + + internal PSComputeNodeIdentityReference(Microsoft.Azure.Batch.ComputeNodeIdentityReference omObject) + { + if ((omObject == null)) + { + throw new System.ArgumentNullException("omObject"); + } + this.omObject = omObject; + } + + public string ResourceId + { + get + { + return this.omObject.ResourceId; + } + set + { + this.omObject.ResourceId = value; + } + } + } +} diff --git a/src/Batch/Batch/Models.Generated/PSComputeNodeInformation.cs b/src/Batch/Batch/Models.Generated/PSComputeNodeInformation.cs index 004eb378f898..41cdebd45e08 100644 --- a/src/Batch/Batch/Models.Generated/PSComputeNodeInformation.cs +++ b/src/Batch/Batch/Models.Generated/PSComputeNodeInformation.cs @@ -14,7 +14,7 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. -// Runtime Version:4.0.30319.42000 +// Runtime Version:5.0.9 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. diff --git a/src/Batch/Batch/Models.Generated/PSComputeNodeUser.cs b/src/Batch/Batch/Models.Generated/PSComputeNodeUser.cs index 9af698cff4d3..f030a08cb0a4 100644 --- a/src/Batch/Batch/Models.Generated/PSComputeNodeUser.cs +++ b/src/Batch/Batch/Models.Generated/PSComputeNodeUser.cs @@ -14,7 +14,7 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. -// Runtime Version:4.0.30319.42000 +// Runtime Version:5.0.9 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. diff --git a/src/Batch/Batch/Models.Generated/PSContainerConfiguration.cs b/src/Batch/Batch/Models.Generated/PSContainerConfiguration.cs index dae131eb94ea..e4267c136bcf 100644 --- a/src/Batch/Batch/Models.Generated/PSContainerConfiguration.cs +++ b/src/Batch/Batch/Models.Generated/PSContainerConfiguration.cs @@ -14,7 +14,7 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. -// Runtime Version:4.0.30319.42000 +// Runtime Version:5.0.9 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. diff --git a/src/Batch/Batch/Models.Generated/PSContainerRegistry.cs b/src/Batch/Batch/Models.Generated/PSContainerRegistry.cs index 3790cef0cb21..ee6f9811fbe8 100644 --- a/src/Batch/Batch/Models.Generated/PSContainerRegistry.cs +++ b/src/Batch/Batch/Models.Generated/PSContainerRegistry.cs @@ -14,7 +14,7 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. -// Runtime Version:4.0.30319.42000 +// Runtime Version:5.0.9 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. @@ -34,9 +34,16 @@ public partial class PSContainerRegistry internal Microsoft.Azure.Batch.ContainerRegistry omObject; - public PSContainerRegistry(string userName, string registryServer = null, string password = null) + private PSComputeNodeIdentityReference identityReference; + + public PSContainerRegistry(string userName = null, string password = null, string registryServer = null, PSComputeNodeIdentityReference identityReference = default(PSComputeNodeIdentityReference)) { - this.omObject = new Microsoft.Azure.Batch.ContainerRegistry(userName, registryServer, password); + Microsoft.Azure.Batch.ComputeNodeIdentityReference identityReferenceOmObject = null; + if ((identityReference != null)) + { + identityReferenceOmObject = identityReference.omObject; + } + this.omObject = new Microsoft.Azure.Batch.ContainerRegistry(userName, password, registryServer, identityReferenceOmObject); } internal PSContainerRegistry(Microsoft.Azure.Batch.ContainerRegistry omObject) @@ -48,6 +55,19 @@ internal PSContainerRegistry(Microsoft.Azure.Batch.ContainerRegistry omObject) this.omObject = omObject; } + public PSComputeNodeIdentityReference IdentityReference + { + get + { + if (((this.identityReference == null) + && (this.omObject.IdentityReference != null))) + { + this.identityReference = new PSComputeNodeIdentityReference(this.omObject.IdentityReference); + } + return this.identityReference; + } + } + public string Password { get diff --git a/src/Batch/Batch/Models.Generated/PSDataDisk.cs b/src/Batch/Batch/Models.Generated/PSDataDisk.cs index bec662e0464f..e7fd1410220f 100644 --- a/src/Batch/Batch/Models.Generated/PSDataDisk.cs +++ b/src/Batch/Batch/Models.Generated/PSDataDisk.cs @@ -14,7 +14,7 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. -// Runtime Version:4.0.30319.42000 +// Runtime Version:5.0.9 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. diff --git a/src/Batch/Batch/Models.Generated/PSDeleteCertificateError.cs b/src/Batch/Batch/Models.Generated/PSDeleteCertificateError.cs index 880e29c11424..dd886e59d287 100644 --- a/src/Batch/Batch/Models.Generated/PSDeleteCertificateError.cs +++ b/src/Batch/Batch/Models.Generated/PSDeleteCertificateError.cs @@ -14,7 +14,7 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. -// Runtime Version:4.0.30319.42000 +// Runtime Version:5.0.9 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. diff --git a/src/Batch/Batch/Models.Generated/PSDiffDiskSettings.cs b/src/Batch/Batch/Models.Generated/PSDiffDiskSettings.cs new file mode 100644 index 000000000000..883171e74c0b --- /dev/null +++ b/src/Batch/Batch/Models.Generated/PSDiffDiskSettings.cs @@ -0,0 +1,63 @@ +// ----------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ----------------------------------------------------------------------------- +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:5.0.9 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace Microsoft.Azure.Commands.Batch.Models +{ + using System; + using System.Collections; + using System.Collections.Generic; + using Microsoft.Azure.Batch; + + + public partial class PSDiffDiskSettings + { + + internal Microsoft.Azure.Batch.DiffDiskSettings omObject; + + public PSDiffDiskSettings() + { + this.omObject = new Microsoft.Azure.Batch.DiffDiskSettings(); + } + + internal PSDiffDiskSettings(Microsoft.Azure.Batch.DiffDiskSettings omObject) + { + if ((omObject == null)) + { + throw new System.ArgumentNullException("omObject"); + } + this.omObject = omObject; + } + + public Microsoft.Azure.Batch.Common.DiffDiskPlacement? Placement + { + get + { + return this.omObject.Placement; + } + set + { + this.omObject.Placement = value; + } + } + } +} diff --git a/src/Batch/Batch/Models.Generated/PSDiskEncryptionConfiguration.cs b/src/Batch/Batch/Models.Generated/PSDiskEncryptionConfiguration.cs index 5820520d4dee..3e992a242178 100644 --- a/src/Batch/Batch/Models.Generated/PSDiskEncryptionConfiguration.cs +++ b/src/Batch/Batch/Models.Generated/PSDiskEncryptionConfiguration.cs @@ -14,7 +14,7 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. -// Runtime Version:4.0.30319.42000 +// Runtime Version:5.0.9 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. diff --git a/src/Batch/Batch/Models.Generated/PSEnvironmentSetting.cs b/src/Batch/Batch/Models.Generated/PSEnvironmentSetting.cs index 70062e45a3b2..007da0200423 100644 --- a/src/Batch/Batch/Models.Generated/PSEnvironmentSetting.cs +++ b/src/Batch/Batch/Models.Generated/PSEnvironmentSetting.cs @@ -14,7 +14,7 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. -// Runtime Version:4.0.30319.42000 +// Runtime Version:5.0.9 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. diff --git a/src/Batch/Batch/Models.Generated/PSErrorMessage.cs b/src/Batch/Batch/Models.Generated/PSErrorMessage.cs new file mode 100644 index 000000000000..bf8683aeb4ce --- /dev/null +++ b/src/Batch/Batch/Models.Generated/PSErrorMessage.cs @@ -0,0 +1,62 @@ +// ----------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ----------------------------------------------------------------------------- +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:5.0.9 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace Microsoft.Azure.Commands.Batch.Models +{ + using System; + using System.Collections; + using System.Collections.Generic; + using Microsoft.Azure.Batch; + + + public partial class PSErrorMessage + { + + internal Microsoft.Azure.Batch.ErrorMessage omObject; + + internal PSErrorMessage(Microsoft.Azure.Batch.ErrorMessage omObject) + { + if ((omObject == null)) + { + throw new System.ArgumentNullException("omObject"); + } + this.omObject = omObject; + } + + public string Language + { + get + { + return this.omObject.Language; + } + } + + public string Value + { + get + { + return this.omObject.Value; + } + } + } +} diff --git a/src/Batch/Batch/Models.Generated/PSExitCodeMapping.cs b/src/Batch/Batch/Models.Generated/PSExitCodeMapping.cs index d2671cceb011..20aad7ce0c6d 100644 --- a/src/Batch/Batch/Models.Generated/PSExitCodeMapping.cs +++ b/src/Batch/Batch/Models.Generated/PSExitCodeMapping.cs @@ -14,7 +14,7 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. -// Runtime Version:4.0.30319.42000 +// Runtime Version:5.0.9 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. diff --git a/src/Batch/Batch/Models.Generated/PSExitCodeRangeMapping.cs b/src/Batch/Batch/Models.Generated/PSExitCodeRangeMapping.cs index ad05e54f23e9..49064b68ec05 100644 --- a/src/Batch/Batch/Models.Generated/PSExitCodeRangeMapping.cs +++ b/src/Batch/Batch/Models.Generated/PSExitCodeRangeMapping.cs @@ -14,7 +14,7 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. -// Runtime Version:4.0.30319.42000 +// Runtime Version:5.0.9 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. diff --git a/src/Batch/Batch/Models.Generated/PSExitConditions.cs b/src/Batch/Batch/Models.Generated/PSExitConditions.cs index d8c6f2066ab3..737b892f2923 100644 --- a/src/Batch/Batch/Models.Generated/PSExitConditions.cs +++ b/src/Batch/Batch/Models.Generated/PSExitConditions.cs @@ -14,7 +14,7 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. -// Runtime Version:4.0.30319.42000 +// Runtime Version:5.0.9 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. diff --git a/src/Batch/Batch/Models.Generated/PSExitOptions.cs b/src/Batch/Batch/Models.Generated/PSExitOptions.cs index 341031bdcab3..0ee88e7f4ecd 100644 --- a/src/Batch/Batch/Models.Generated/PSExitOptions.cs +++ b/src/Batch/Batch/Models.Generated/PSExitOptions.cs @@ -14,7 +14,7 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. -// Runtime Version:4.0.30319.42000 +// Runtime Version:5.0.9 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. diff --git a/src/Batch/Batch/Models.Generated/PSFileProperties.cs b/src/Batch/Batch/Models.Generated/PSFileProperties.cs index bd8d5022b45f..d7b182b53728 100644 --- a/src/Batch/Batch/Models.Generated/PSFileProperties.cs +++ b/src/Batch/Batch/Models.Generated/PSFileProperties.cs @@ -14,7 +14,7 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. -// Runtime Version:4.0.30319.42000 +// Runtime Version:5.0.9 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. diff --git a/src/Batch/Batch/Models.Generated/PSImageInformation.cs b/src/Batch/Batch/Models.Generated/PSImageInformation.cs index 43221af11e65..da08902f7e26 100644 --- a/src/Batch/Batch/Models.Generated/PSImageInformation.cs +++ b/src/Batch/Batch/Models.Generated/PSImageInformation.cs @@ -14,7 +14,7 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. -// Runtime Version:4.0.30319.42000 +// Runtime Version:5.0.9 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. diff --git a/src/Batch/Batch/Models.Generated/PSImageReference.cs b/src/Batch/Batch/Models.Generated/PSImageReference.cs index fa878f105d0e..64088607f49e 100644 --- a/src/Batch/Batch/Models.Generated/PSImageReference.cs +++ b/src/Batch/Batch/Models.Generated/PSImageReference.cs @@ -14,7 +14,7 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. -// Runtime Version:4.0.30319.42000 +// Runtime Version:5.0.9 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. @@ -34,6 +34,11 @@ public partial class PSImageReference internal Microsoft.Azure.Batch.ImageReference omObject; + public PSImageReference() + { + this.omObject = new Microsoft.Azure.Batch.ImageReference(); + } + public PSImageReference(string offer, string publisher, string sku, string version = null) { this.omObject = new Microsoft.Azure.Batch.ImageReference(offer, publisher, sku, version); @@ -53,6 +58,14 @@ internal PSImageReference(Microsoft.Azure.Batch.ImageReference omObject) this.omObject = omObject; } + public string ExactVersion + { + get + { + return this.omObject.ExactVersion; + } + } + public string Offer { get diff --git a/src/Batch/Batch/Models.Generated/PSInboundEndpoint.cs b/src/Batch/Batch/Models.Generated/PSInboundEndpoint.cs index aa13a90b932c..bec0cd263c32 100644 --- a/src/Batch/Batch/Models.Generated/PSInboundEndpoint.cs +++ b/src/Batch/Batch/Models.Generated/PSInboundEndpoint.cs @@ -14,7 +14,7 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. -// Runtime Version:4.0.30319.42000 +// Runtime Version:5.0.9 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. diff --git a/src/Batch/Batch/Models.Generated/PSInboundNatPool.cs b/src/Batch/Batch/Models.Generated/PSInboundNatPool.cs index be17b737be36..b7a32d07468c 100644 --- a/src/Batch/Batch/Models.Generated/PSInboundNatPool.cs +++ b/src/Batch/Batch/Models.Generated/PSInboundNatPool.cs @@ -14,7 +14,7 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. -// Runtime Version:4.0.30319.42000 +// Runtime Version:5.0.9 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. diff --git a/src/Batch/Batch/Models.Generated/PSInstanceViewStatus.cs b/src/Batch/Batch/Models.Generated/PSInstanceViewStatus.cs new file mode 100644 index 000000000000..16b2428c7595 --- /dev/null +++ b/src/Batch/Batch/Models.Generated/PSInstanceViewStatus.cs @@ -0,0 +1,91 @@ +// ----------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ----------------------------------------------------------------------------- +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:5.0.9 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace Microsoft.Azure.Commands.Batch.Models +{ + using System; + using System.Collections; + using System.Collections.Generic; + using Microsoft.Azure.Batch; + + + public partial class PSInstanceViewStatus + { + + internal Microsoft.Azure.Batch.InstanceViewStatus omObject; + + public PSInstanceViewStatus() + { + this.omObject = new Microsoft.Azure.Batch.InstanceViewStatus(); + } + + internal PSInstanceViewStatus(Microsoft.Azure.Batch.InstanceViewStatus omObject) + { + if ((omObject == null)) + { + throw new System.ArgumentNullException("omObject"); + } + this.omObject = omObject; + } + + public string Code + { + get + { + return this.omObject.Code; + } + } + + public string DisplayStatus + { + get + { + return this.omObject.DisplayStatus; + } + } + + public Microsoft.Azure.Batch.Common.StatusLevelTypes? Level + { + get + { + return this.omObject.Level; + } + } + + public string Message + { + get + { + return this.omObject.Message; + } + } + + public string Time + { + get + { + return this.omObject.Time; + } + } + } +} diff --git a/src/Batch/Batch/Models.Generated/PSJobConstraints.cs b/src/Batch/Batch/Models.Generated/PSJobConstraints.cs index 9614bc0f8e87..a8e9e15cca5b 100644 --- a/src/Batch/Batch/Models.Generated/PSJobConstraints.cs +++ b/src/Batch/Batch/Models.Generated/PSJobConstraints.cs @@ -14,7 +14,7 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. -// Runtime Version:4.0.30319.42000 +// Runtime Version:5.0.9 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. diff --git a/src/Batch/Batch/Models.Generated/PSJobExecutionInformation.cs b/src/Batch/Batch/Models.Generated/PSJobExecutionInformation.cs index 73661a15f291..b58c86f1abb1 100644 --- a/src/Batch/Batch/Models.Generated/PSJobExecutionInformation.cs +++ b/src/Batch/Batch/Models.Generated/PSJobExecutionInformation.cs @@ -14,7 +14,7 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. -// Runtime Version:4.0.30319.42000 +// Runtime Version:5.0.9 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. diff --git a/src/Batch/Batch/Models.Generated/PSJobManagerTask.cs b/src/Batch/Batch/Models.Generated/PSJobManagerTask.cs index 3ae2f2a27486..2e7a34a005ff 100644 --- a/src/Batch/Batch/Models.Generated/PSJobManagerTask.cs +++ b/src/Batch/Batch/Models.Generated/PSJobManagerTask.cs @@ -14,7 +14,7 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. -// Runtime Version:4.0.30319.42000 +// Runtime Version:5.0.9 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. @@ -309,6 +309,18 @@ public IList OutputFiles } } + public System.Int32? RequiredSlots + { + get + { + return this.omObject.RequiredSlots; + } + set + { + this.omObject.RequiredSlots = value; + } + } + public IList ResourceFiles { get diff --git a/src/Batch/Batch/Models.Generated/PSJobNetworkConfiguration.cs b/src/Batch/Batch/Models.Generated/PSJobNetworkConfiguration.cs index e4e6699f9248..15872cb75162 100644 --- a/src/Batch/Batch/Models.Generated/PSJobNetworkConfiguration.cs +++ b/src/Batch/Batch/Models.Generated/PSJobNetworkConfiguration.cs @@ -14,7 +14,7 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. -// Runtime Version:4.0.30319.42000 +// Runtime Version:5.0.9 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. diff --git a/src/Batch/Batch/Models.Generated/PSJobPreparationAndReleaseTaskExecutionInformation.cs b/src/Batch/Batch/Models.Generated/PSJobPreparationAndReleaseTaskExecutionInformation.cs index 1aa167bcc557..82c08edcc806 100644 --- a/src/Batch/Batch/Models.Generated/PSJobPreparationAndReleaseTaskExecutionInformation.cs +++ b/src/Batch/Batch/Models.Generated/PSJobPreparationAndReleaseTaskExecutionInformation.cs @@ -14,7 +14,7 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. -// Runtime Version:4.0.30319.42000 +// Runtime Version:5.0.9 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. diff --git a/src/Batch/Batch/Models.Generated/PSJobPreparationTask.cs b/src/Batch/Batch/Models.Generated/PSJobPreparationTask.cs index 0b7d204513d9..06561be0eccb 100644 --- a/src/Batch/Batch/Models.Generated/PSJobPreparationTask.cs +++ b/src/Batch/Batch/Models.Generated/PSJobPreparationTask.cs @@ -14,7 +14,7 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. -// Runtime Version:4.0.30319.42000 +// Runtime Version:5.0.9 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. diff --git a/src/Batch/Batch/Models.Generated/PSJobPreparationTaskExecutionInformation.cs b/src/Batch/Batch/Models.Generated/PSJobPreparationTaskExecutionInformation.cs index 7ff3b00c4e06..367f46587a08 100644 --- a/src/Batch/Batch/Models.Generated/PSJobPreparationTaskExecutionInformation.cs +++ b/src/Batch/Batch/Models.Generated/PSJobPreparationTaskExecutionInformation.cs @@ -14,7 +14,7 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. -// Runtime Version:4.0.30319.42000 +// Runtime Version:5.0.9 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. diff --git a/src/Batch/Batch/Models.Generated/PSJobReleaseTask.cs b/src/Batch/Batch/Models.Generated/PSJobReleaseTask.cs index 2c989a134ffa..ba47091d725b 100644 --- a/src/Batch/Batch/Models.Generated/PSJobReleaseTask.cs +++ b/src/Batch/Batch/Models.Generated/PSJobReleaseTask.cs @@ -14,7 +14,7 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. -// Runtime Version:4.0.30319.42000 +// Runtime Version:5.0.9 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. diff --git a/src/Batch/Batch/Models.Generated/PSJobReleaseTaskExecutionInformation.cs b/src/Batch/Batch/Models.Generated/PSJobReleaseTaskExecutionInformation.cs index 049ea14153fa..42edd0737f7a 100644 --- a/src/Batch/Batch/Models.Generated/PSJobReleaseTaskExecutionInformation.cs +++ b/src/Batch/Batch/Models.Generated/PSJobReleaseTaskExecutionInformation.cs @@ -14,7 +14,7 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. -// Runtime Version:4.0.30319.42000 +// Runtime Version:5.0.9 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. diff --git a/src/Batch/Batch/Models.Generated/PSJobScheduleExecutionInformation.cs b/src/Batch/Batch/Models.Generated/PSJobScheduleExecutionInformation.cs index ffc3c957b0fc..e3152b123aff 100644 --- a/src/Batch/Batch/Models.Generated/PSJobScheduleExecutionInformation.cs +++ b/src/Batch/Batch/Models.Generated/PSJobScheduleExecutionInformation.cs @@ -14,7 +14,7 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. -// Runtime Version:4.0.30319.42000 +// Runtime Version:5.0.9 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. diff --git a/src/Batch/Batch/Models.Generated/PSJobScheduleStatistics.cs b/src/Batch/Batch/Models.Generated/PSJobScheduleStatistics.cs index d56d0336586c..b89a13409325 100644 --- a/src/Batch/Batch/Models.Generated/PSJobScheduleStatistics.cs +++ b/src/Batch/Batch/Models.Generated/PSJobScheduleStatistics.cs @@ -14,7 +14,7 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. -// Runtime Version:4.0.30319.42000 +// Runtime Version:5.0.9 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. diff --git a/src/Batch/Batch/Models.Generated/PSJobSchedulingError.cs b/src/Batch/Batch/Models.Generated/PSJobSchedulingError.cs index a55deb6e1b75..56de572bfceb 100644 --- a/src/Batch/Batch/Models.Generated/PSJobSchedulingError.cs +++ b/src/Batch/Batch/Models.Generated/PSJobSchedulingError.cs @@ -14,7 +14,7 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. -// Runtime Version:4.0.30319.42000 +// Runtime Version:5.0.9 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. diff --git a/src/Batch/Batch/Models.Generated/PSJobSpecification.cs b/src/Batch/Batch/Models.Generated/PSJobSpecification.cs index 08c2ee93eb33..37cbdd258643 100644 --- a/src/Batch/Batch/Models.Generated/PSJobSpecification.cs +++ b/src/Batch/Batch/Models.Generated/PSJobSpecification.cs @@ -14,7 +14,7 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. -// Runtime Version:4.0.30319.42000 +// Runtime Version:5.0.9 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. @@ -216,6 +216,18 @@ public PSJobReleaseTask JobReleaseTask } } + public System.Int32? MaxParallelTasks + { + get + { + return this.omObject.MaxParallelTasks; + } + set + { + this.omObject.MaxParallelTasks = value; + } + } + public IDictionary Metadata { get diff --git a/src/Batch/Batch/Models.Generated/PSJobStatistics.cs b/src/Batch/Batch/Models.Generated/PSJobStatistics.cs index 61b20c46336d..856b2a3c222d 100644 --- a/src/Batch/Batch/Models.Generated/PSJobStatistics.cs +++ b/src/Batch/Batch/Models.Generated/PSJobStatistics.cs @@ -14,7 +14,7 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. -// Runtime Version:4.0.30319.42000 +// Runtime Version:5.0.9 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. diff --git a/src/Batch/Batch/Models.Generated/PSLinuxUserConfiguration.cs b/src/Batch/Batch/Models.Generated/PSLinuxUserConfiguration.cs index 7fe3fb6623a7..c5e428e8c593 100644 --- a/src/Batch/Batch/Models.Generated/PSLinuxUserConfiguration.cs +++ b/src/Batch/Batch/Models.Generated/PSLinuxUserConfiguration.cs @@ -14,7 +14,7 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. -// Runtime Version:4.0.30319.42000 +// Runtime Version:5.0.9 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. diff --git a/src/Batch/Batch/Models.Generated/PSMetadataItem.cs b/src/Batch/Batch/Models.Generated/PSMetadataItem.cs index b07bafa82647..57e65e3f59ce 100644 --- a/src/Batch/Batch/Models.Generated/PSMetadataItem.cs +++ b/src/Batch/Batch/Models.Generated/PSMetadataItem.cs @@ -14,7 +14,7 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. -// Runtime Version:4.0.30319.42000 +// Runtime Version:5.0.9 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. diff --git a/src/Batch/Batch/Models.Generated/PSMountConfiguration.cs b/src/Batch/Batch/Models.Generated/PSMountConfiguration.cs index 8c83724ffb6c..0dee7799e229 100644 --- a/src/Batch/Batch/Models.Generated/PSMountConfiguration.cs +++ b/src/Batch/Batch/Models.Generated/PSMountConfiguration.cs @@ -14,7 +14,7 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. -// Runtime Version:4.0.30319.42000 +// Runtime Version:5.0.9 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. diff --git a/src/Batch/Batch/Models.Generated/PSMultiInstanceSettings.cs b/src/Batch/Batch/Models.Generated/PSMultiInstanceSettings.cs index 1099c21db447..f3914973d8fb 100644 --- a/src/Batch/Batch/Models.Generated/PSMultiInstanceSettings.cs +++ b/src/Batch/Batch/Models.Generated/PSMultiInstanceSettings.cs @@ -14,7 +14,7 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. -// Runtime Version:4.0.30319.42000 +// Runtime Version:5.0.9 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. diff --git a/src/Batch/Batch/Models.Generated/PSNameValuePair.cs b/src/Batch/Batch/Models.Generated/PSNameValuePair.cs index 71683b636f5e..132c34d6948e 100644 --- a/src/Batch/Batch/Models.Generated/PSNameValuePair.cs +++ b/src/Batch/Batch/Models.Generated/PSNameValuePair.cs @@ -14,7 +14,7 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. -// Runtime Version:4.0.30319.42000 +// Runtime Version:5.0.9 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. diff --git a/src/Batch/Batch/Models.Generated/PSNetworkConfiguration.cs b/src/Batch/Batch/Models.Generated/PSNetworkConfiguration.cs index 522b3ef705f4..abb17088a640 100644 --- a/src/Batch/Batch/Models.Generated/PSNetworkConfiguration.cs +++ b/src/Batch/Batch/Models.Generated/PSNetworkConfiguration.cs @@ -14,7 +14,7 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. -// Runtime Version:4.0.30319.42000 +// Runtime Version:5.0.9 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. diff --git a/src/Batch/Batch/Models.Generated/PSNetworkSecurityGroupRule.cs b/src/Batch/Batch/Models.Generated/PSNetworkSecurityGroupRule.cs index 89762dce4cf7..b70375a8c90b 100644 --- a/src/Batch/Batch/Models.Generated/PSNetworkSecurityGroupRule.cs +++ b/src/Batch/Batch/Models.Generated/PSNetworkSecurityGroupRule.cs @@ -14,7 +14,7 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. -// Runtime Version:4.0.30319.42000 +// Runtime Version:5.0.9 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. diff --git a/src/Batch/Batch/Models.Generated/PSNfsMountConfiguration.cs b/src/Batch/Batch/Models.Generated/PSNfsMountConfiguration.cs index 1b8ad63e6365..a2886e34e4a0 100644 --- a/src/Batch/Batch/Models.Generated/PSNfsMountConfiguration.cs +++ b/src/Batch/Batch/Models.Generated/PSNfsMountConfiguration.cs @@ -14,7 +14,7 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. -// Runtime Version:4.0.30319.42000 +// Runtime Version:5.0.9 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. diff --git a/src/Batch/Batch/Models.Generated/PSNodeAgentInformation.cs b/src/Batch/Batch/Models.Generated/PSNodeAgentInformation.cs index d5e718f8802b..780dcf02cc0c 100644 --- a/src/Batch/Batch/Models.Generated/PSNodeAgentInformation.cs +++ b/src/Batch/Batch/Models.Generated/PSNodeAgentInformation.cs @@ -14,7 +14,7 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. -// Runtime Version:4.0.30319.42000 +// Runtime Version:5.0.9 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. diff --git a/src/Batch/Batch/Models.Generated/PSNodeCounts.cs b/src/Batch/Batch/Models.Generated/PSNodeCounts.cs index 934a1ca02e65..64958cfcb4a1 100644 --- a/src/Batch/Batch/Models.Generated/PSNodeCounts.cs +++ b/src/Batch/Batch/Models.Generated/PSNodeCounts.cs @@ -14,7 +14,7 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. -// Runtime Version:4.0.30319.42000 +// Runtime Version:5.0.9 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. diff --git a/src/Batch/Batch/Models.Generated/PSNodeFile.cs b/src/Batch/Batch/Models.Generated/PSNodeFile.cs index bc4f129fc2ce..b6e47f6a4ba2 100644 --- a/src/Batch/Batch/Models.Generated/PSNodeFile.cs +++ b/src/Batch/Batch/Models.Generated/PSNodeFile.cs @@ -14,7 +14,7 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. -// Runtime Version:4.0.30319.42000 +// Runtime Version:5.0.9 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. diff --git a/src/Batch/Batch/Models.Generated/PSNodePlacementConfiguration.cs b/src/Batch/Batch/Models.Generated/PSNodePlacementConfiguration.cs new file mode 100644 index 000000000000..5227ad43a5cc --- /dev/null +++ b/src/Batch/Batch/Models.Generated/PSNodePlacementConfiguration.cs @@ -0,0 +1,59 @@ +// ----------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ----------------------------------------------------------------------------- +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:5.0.9 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace Microsoft.Azure.Commands.Batch.Models +{ + using System; + using System.Collections; + using System.Collections.Generic; + using Microsoft.Azure.Batch; + + + public partial class PSNodePlacementConfiguration + { + + internal Microsoft.Azure.Batch.NodePlacementConfiguration omObject; + + public PSNodePlacementConfiguration(System.Nullable policy) + { + this.omObject = new Microsoft.Azure.Batch.NodePlacementConfiguration(policy); + } + + internal PSNodePlacementConfiguration(Microsoft.Azure.Batch.NodePlacementConfiguration omObject) + { + if ((omObject == null)) + { + throw new System.ArgumentNullException("omObject"); + } + this.omObject = omObject; + } + + public Microsoft.Azure.Batch.Common.NodePlacementPolicyType? Policy + { + get + { + return this.omObject.Policy; + } + } + } +} diff --git a/src/Batch/Batch/Models.Generated/PSNodeVMExtension.cs b/src/Batch/Batch/Models.Generated/PSNodeVMExtension.cs new file mode 100644 index 000000000000..e201568fabc6 --- /dev/null +++ b/src/Batch/Batch/Models.Generated/PSNodeVMExtension.cs @@ -0,0 +1,117 @@ +// ----------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ----------------------------------------------------------------------------- +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:5.0.9 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace Microsoft.Azure.Commands.Batch.Models +{ + using System; + using System.Collections; + using System.Collections.Generic; + using Microsoft.Azure.Batch; + + + public partial class PSNodeVMExtension + { + + internal Microsoft.Azure.Batch.NodeVMExtension omObject; + + private PSVMExtensionInstanceView instanceView; + + private PSVMExtension vmExtension; + + public PSNodeVMExtension() + { + this.omObject = new Microsoft.Azure.Batch.NodeVMExtension(); + } + + internal PSNodeVMExtension(Microsoft.Azure.Batch.NodeVMExtension omObject) + { + if ((omObject == null)) + { + throw new System.ArgumentNullException("omObject"); + } + this.omObject = omObject; + } + + public PSVMExtensionInstanceView InstanceView + { + get + { + if (((this.instanceView == null) + && (this.omObject.InstanceView != null))) + { + this.instanceView = new PSVMExtensionInstanceView(this.omObject.InstanceView); + } + return this.instanceView; + } + set + { + if ((value == null)) + { + this.omObject.InstanceView = null; + } + else + { + this.omObject.InstanceView = value.omObject; + } + this.instanceView = value; + } + } + + public string ProvisioningState + { + get + { + return this.omObject.ProvisioningState; + } + set + { + this.omObject.ProvisioningState = value; + } + } + + public PSVMExtension VmExtension + { + get + { + if (((this.vmExtension == null) + && (this.omObject.VmExtension != null))) + { + this.vmExtension = new PSVMExtension(this.omObject.VmExtension); + } + return this.vmExtension; + } + set + { + if ((value == null)) + { + this.omObject.VmExtension = null; + } + else + { + this.omObject.VmExtension = value.omObject; + } + this.vmExtension = value; + } + } + } +} diff --git a/src/Batch/Batch/Models.Generated/PSOSDisk.cs b/src/Batch/Batch/Models.Generated/PSOSDisk.cs new file mode 100644 index 000000000000..83dc4c083745 --- /dev/null +++ b/src/Batch/Batch/Models.Generated/PSOSDisk.cs @@ -0,0 +1,78 @@ +// ----------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ----------------------------------------------------------------------------- +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:5.0.9 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace Microsoft.Azure.Commands.Batch.Models +{ + using System; + using System.Collections; + using System.Collections.Generic; + using Microsoft.Azure.Batch; + + + public partial class PSOSDisk + { + + internal Microsoft.Azure.Batch.OSDisk omObject; + + private PSDiffDiskSettings ephemeralOSDiskSettings; + + public PSOSDisk() + { + this.omObject = new Microsoft.Azure.Batch.OSDisk(); + } + + internal PSOSDisk(Microsoft.Azure.Batch.OSDisk omObject) + { + if ((omObject == null)) + { + throw new System.ArgumentNullException("omObject"); + } + this.omObject = omObject; + } + + public PSDiffDiskSettings EphemeralOSDiskSettings + { + get + { + if (((this.ephemeralOSDiskSettings == null) + && (this.omObject.EphemeralOSDiskSettings != null))) + { + this.ephemeralOSDiskSettings = new PSDiffDiskSettings(this.omObject.EphemeralOSDiskSettings); + } + return this.ephemeralOSDiskSettings; + } + set + { + if ((value == null)) + { + this.omObject.EphemeralOSDiskSettings = null; + } + else + { + this.omObject.EphemeralOSDiskSettings = value.omObject; + } + this.ephemeralOSDiskSettings = value; + } + } + } +} diff --git a/src/Batch/Batch/Models.Generated/PSOutputFile.cs b/src/Batch/Batch/Models.Generated/PSOutputFile.cs index d069d48300c7..d6ed9e2bc374 100644 --- a/src/Batch/Batch/Models.Generated/PSOutputFile.cs +++ b/src/Batch/Batch/Models.Generated/PSOutputFile.cs @@ -14,7 +14,7 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. -// Runtime Version:4.0.30319.42000 +// Runtime Version:5.0.9 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. diff --git a/src/Batch/Batch/Models.Generated/PSOutputFileBlobContainerDestination.cs b/src/Batch/Batch/Models.Generated/PSOutputFileBlobContainerDestination.cs index 202f29b7aa94..ed48a5c35dbc 100644 --- a/src/Batch/Batch/Models.Generated/PSOutputFileBlobContainerDestination.cs +++ b/src/Batch/Batch/Models.Generated/PSOutputFileBlobContainerDestination.cs @@ -14,7 +14,7 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. -// Runtime Version:4.0.30319.42000 +// Runtime Version:5.0.9 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. @@ -34,11 +34,18 @@ public partial class PSOutputFileBlobContainerDestination internal Microsoft.Azure.Batch.OutputFileBlobContainerDestination omObject; + private PSComputeNodeIdentityReference identityReference; + public PSOutputFileBlobContainerDestination(string containerUrl, string path = null) { this.omObject = new Microsoft.Azure.Batch.OutputFileBlobContainerDestination(containerUrl, path); } + public PSOutputFileBlobContainerDestination(string containerUrl, PSComputeNodeIdentityReference identityReference, string path = null) + { + this.omObject = new Microsoft.Azure.Batch.OutputFileBlobContainerDestination(containerUrl, identityReference.omObject, path); + } + internal PSOutputFileBlobContainerDestination(Microsoft.Azure.Batch.OutputFileBlobContainerDestination omObject) { if ((omObject == null)) @@ -56,6 +63,31 @@ public string ContainerUrl } } + public PSComputeNodeIdentityReference IdentityReference + { + get + { + if (((this.identityReference == null) + && (this.omObject.IdentityReference != null))) + { + this.identityReference = new PSComputeNodeIdentityReference(this.omObject.IdentityReference); + } + return this.identityReference; + } + set + { + if ((value == null)) + { + this.omObject.IdentityReference = null; + } + else + { + this.omObject.IdentityReference = value.omObject; + } + this.identityReference = value; + } + } + public string Path { get diff --git a/src/Batch/Batch/Models.Generated/PSOutputFileDestination.cs b/src/Batch/Batch/Models.Generated/PSOutputFileDestination.cs index 385363ef25b4..e7e6238504b6 100644 --- a/src/Batch/Batch/Models.Generated/PSOutputFileDestination.cs +++ b/src/Batch/Batch/Models.Generated/PSOutputFileDestination.cs @@ -14,7 +14,7 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. -// Runtime Version:4.0.30319.42000 +// Runtime Version:5.0.9 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. diff --git a/src/Batch/Batch/Models.Generated/PSOutputFileUploadOptions.cs b/src/Batch/Batch/Models.Generated/PSOutputFileUploadOptions.cs index 26cf5cf008f2..83eaaa4cbd8e 100644 --- a/src/Batch/Batch/Models.Generated/PSOutputFileUploadOptions.cs +++ b/src/Batch/Batch/Models.Generated/PSOutputFileUploadOptions.cs @@ -14,7 +14,7 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. -// Runtime Version:4.0.30319.42000 +// Runtime Version:5.0.9 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. diff --git a/src/Batch/Batch/Models.Generated/PSPoolEndpointConfiguration.cs b/src/Batch/Batch/Models.Generated/PSPoolEndpointConfiguration.cs index c935132ed5f8..2250ca25e706 100644 --- a/src/Batch/Batch/Models.Generated/PSPoolEndpointConfiguration.cs +++ b/src/Batch/Batch/Models.Generated/PSPoolEndpointConfiguration.cs @@ -14,7 +14,7 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. -// Runtime Version:4.0.30319.42000 +// Runtime Version:5.0.9 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. diff --git a/src/Batch/Batch/Models.Generated/PSPoolInformation.cs b/src/Batch/Batch/Models.Generated/PSPoolInformation.cs index e6b4f8787320..99532cf447c2 100644 --- a/src/Batch/Batch/Models.Generated/PSPoolInformation.cs +++ b/src/Batch/Batch/Models.Generated/PSPoolInformation.cs @@ -14,7 +14,7 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. -// Runtime Version:4.0.30319.42000 +// Runtime Version:5.0.9 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. diff --git a/src/Batch/Batch/Models.Generated/PSPoolNodeCounts.cs b/src/Batch/Batch/Models.Generated/PSPoolNodeCounts.cs index c9e4b8b65999..7f74a3712d97 100644 --- a/src/Batch/Batch/Models.Generated/PSPoolNodeCounts.cs +++ b/src/Batch/Batch/Models.Generated/PSPoolNodeCounts.cs @@ -14,7 +14,7 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. -// Runtime Version:4.0.30319.42000 +// Runtime Version:5.0.9 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. diff --git a/src/Batch/Batch/Models.Generated/PSPoolSpecification.cs b/src/Batch/Batch/Models.Generated/PSPoolSpecification.cs index 291e735a0be3..9d63b39ddfc7 100644 --- a/src/Batch/Batch/Models.Generated/PSPoolSpecification.cs +++ b/src/Batch/Batch/Models.Generated/PSPoolSpecification.cs @@ -14,7 +14,7 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. -// Runtime Version:4.0.30319.42000 +// Runtime Version:5.0.9 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. @@ -260,18 +260,6 @@ public System.Boolean? InterComputeNodeCommunicationEnabled } } - public System.Int32? MaxTasksPerComputeNode - { - get - { - return this.omObject.MaxTasksPerComputeNode; - } - set - { - this.omObject.MaxTasksPerComputeNode = value; - } - } - public IDictionary Metadata { get @@ -453,6 +441,18 @@ public PSTaskSchedulingPolicy TaskSchedulingPolicy } } + public System.Int32? TaskSlotsPerNode + { + get + { + return this.omObject.TaskSlotsPerNode; + } + set + { + this.omObject.TaskSlotsPerNode = value; + } + } + public IList UserAccounts { get diff --git a/src/Batch/Batch/Models.Generated/PSPoolStatistics.cs b/src/Batch/Batch/Models.Generated/PSPoolStatistics.cs index 8348f20af1d6..8d4b8f6692ef 100644 --- a/src/Batch/Batch/Models.Generated/PSPoolStatistics.cs +++ b/src/Batch/Batch/Models.Generated/PSPoolStatistics.cs @@ -14,7 +14,7 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. -// Runtime Version:4.0.30319.42000 +// Runtime Version:5.0.9 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. diff --git a/src/Batch/Batch/Models.Generated/PSPoolUsageMetrics.cs b/src/Batch/Batch/Models.Generated/PSPoolUsageMetrics.cs index b5f5f2fc79c3..55304f5b8570 100644 --- a/src/Batch/Batch/Models.Generated/PSPoolUsageMetrics.cs +++ b/src/Batch/Batch/Models.Generated/PSPoolUsageMetrics.cs @@ -14,7 +14,7 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. -// Runtime Version:4.0.30319.42000 +// Runtime Version:5.0.9 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. diff --git a/src/Batch/Batch/Models.Generated/PSPublicIPAddressConfiguration.cs b/src/Batch/Batch/Models.Generated/PSPublicIPAddressConfiguration.cs index 604837928779..6a05873c75b9 100644 --- a/src/Batch/Batch/Models.Generated/PSPublicIPAddressConfiguration.cs +++ b/src/Batch/Batch/Models.Generated/PSPublicIPAddressConfiguration.cs @@ -14,7 +14,7 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. -// Runtime Version:4.0.30319.42000 +// Runtime Version:5.0.9 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. diff --git a/src/Batch/Batch/Models.Generated/PSRecentJob.cs b/src/Batch/Batch/Models.Generated/PSRecentJob.cs index 74aa78f48518..e2a2d1aed34a 100644 --- a/src/Batch/Batch/Models.Generated/PSRecentJob.cs +++ b/src/Batch/Batch/Models.Generated/PSRecentJob.cs @@ -14,7 +14,7 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. -// Runtime Version:4.0.30319.42000 +// Runtime Version:5.0.9 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. diff --git a/src/Batch/Batch/Models.Generated/PSRemoteLoginSettings.cs b/src/Batch/Batch/Models.Generated/PSRemoteLoginSettings.cs index 0b914bae42c7..0e8c0439de9c 100644 --- a/src/Batch/Batch/Models.Generated/PSRemoteLoginSettings.cs +++ b/src/Batch/Batch/Models.Generated/PSRemoteLoginSettings.cs @@ -14,7 +14,7 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. -// Runtime Version:4.0.30319.42000 +// Runtime Version:5.0.9 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. diff --git a/src/Batch/Batch/Models.Generated/PSResizeError.cs b/src/Batch/Batch/Models.Generated/PSResizeError.cs index 4188da7e155e..988b32aebaa1 100644 --- a/src/Batch/Batch/Models.Generated/PSResizeError.cs +++ b/src/Batch/Batch/Models.Generated/PSResizeError.cs @@ -14,7 +14,7 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. -// Runtime Version:4.0.30319.42000 +// Runtime Version:5.0.9 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. diff --git a/src/Batch/Batch/Models.Generated/PSResourceFile.cs b/src/Batch/Batch/Models.Generated/PSResourceFile.cs index 7137f9da6d04..d88dbdc9edd0 100644 --- a/src/Batch/Batch/Models.Generated/PSResourceFile.cs +++ b/src/Batch/Batch/Models.Generated/PSResourceFile.cs @@ -14,7 +14,7 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. -// Runtime Version:4.0.30319.42000 +// Runtime Version:5.0.9 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. @@ -34,6 +34,8 @@ public partial class PSResourceFile internal Microsoft.Azure.Batch.ResourceFile omObject; + private PSComputeNodeIdentityReference identityReference; + internal PSResourceFile(Microsoft.Azure.Batch.ResourceFile omObject) { if ((omObject == null)) @@ -83,6 +85,19 @@ public string HttpUrl } } + public PSComputeNodeIdentityReference IdentityReference + { + get + { + if (((this.identityReference == null) + && (this.omObject.IdentityReference != null))) + { + this.identityReference = new PSComputeNodeIdentityReference(this.omObject.IdentityReference); + } + return this.identityReference; + } + } + public string StorageContainerUrl { get diff --git a/src/Batch/Batch/Models.Generated/PSResourceStatistics.cs b/src/Batch/Batch/Models.Generated/PSResourceStatistics.cs index 2fb647ece218..af436b9d85ff 100644 --- a/src/Batch/Batch/Models.Generated/PSResourceStatistics.cs +++ b/src/Batch/Batch/Models.Generated/PSResourceStatistics.cs @@ -14,7 +14,7 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. -// Runtime Version:4.0.30319.42000 +// Runtime Version:5.0.9 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. diff --git a/src/Batch/Batch/Models.Generated/PSSchedule.cs b/src/Batch/Batch/Models.Generated/PSSchedule.cs index a171a69723e9..4579bfc6fc59 100644 --- a/src/Batch/Batch/Models.Generated/PSSchedule.cs +++ b/src/Batch/Batch/Models.Generated/PSSchedule.cs @@ -14,7 +14,7 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. -// Runtime Version:4.0.30319.42000 +// Runtime Version:5.0.9 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. diff --git a/src/Batch/Batch/Models.Generated/PSStartComputeNodeServiceLogUploadResult.cs b/src/Batch/Batch/Models.Generated/PSStartComputeNodeServiceLogUploadResult.cs index 640d73e7fb9f..934a2d7e5cab 100644 --- a/src/Batch/Batch/Models.Generated/PSStartComputeNodeServiceLogUploadResult.cs +++ b/src/Batch/Batch/Models.Generated/PSStartComputeNodeServiceLogUploadResult.cs @@ -14,7 +14,7 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. -// Runtime Version:4.0.30319.42000 +// Runtime Version:5.0.9 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. diff --git a/src/Batch/Batch/Models.Generated/PSStartTask.cs b/src/Batch/Batch/Models.Generated/PSStartTask.cs index c65e3090faec..bc29f200219a 100644 --- a/src/Batch/Batch/Models.Generated/PSStartTask.cs +++ b/src/Batch/Batch/Models.Generated/PSStartTask.cs @@ -14,7 +14,7 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. -// Runtime Version:4.0.30319.42000 +// Runtime Version:5.0.9 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. diff --git a/src/Batch/Batch/Models.Generated/PSStartTaskInformation.cs b/src/Batch/Batch/Models.Generated/PSStartTaskInformation.cs index 5485ee83c921..2fcca4e319e1 100644 --- a/src/Batch/Batch/Models.Generated/PSStartTaskInformation.cs +++ b/src/Batch/Batch/Models.Generated/PSStartTaskInformation.cs @@ -14,7 +14,7 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. -// Runtime Version:4.0.30319.42000 +// Runtime Version:5.0.9 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. diff --git a/src/Batch/Batch/Models.Generated/PSSubtaskInformation.cs b/src/Batch/Batch/Models.Generated/PSSubtaskInformation.cs index d4338f4465a8..0f97ec89f026 100644 --- a/src/Batch/Batch/Models.Generated/PSSubtaskInformation.cs +++ b/src/Batch/Batch/Models.Generated/PSSubtaskInformation.cs @@ -14,7 +14,7 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. -// Runtime Version:4.0.30319.42000 +// Runtime Version:5.0.9 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. diff --git a/src/Batch/Batch/Models.Generated/PSTaskConstraints.cs b/src/Batch/Batch/Models.Generated/PSTaskConstraints.cs index b7f31e924b59..f3baa3d12aed 100644 --- a/src/Batch/Batch/Models.Generated/PSTaskConstraints.cs +++ b/src/Batch/Batch/Models.Generated/PSTaskConstraints.cs @@ -14,7 +14,7 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. -// Runtime Version:4.0.30319.42000 +// Runtime Version:5.0.9 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. diff --git a/src/Batch/Batch/Models.Generated/PSTaskContainerExecutionInformation.cs b/src/Batch/Batch/Models.Generated/PSTaskContainerExecutionInformation.cs index 9b87a2e4b7b3..74e619ac1a12 100644 --- a/src/Batch/Batch/Models.Generated/PSTaskContainerExecutionInformation.cs +++ b/src/Batch/Batch/Models.Generated/PSTaskContainerExecutionInformation.cs @@ -14,7 +14,7 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. -// Runtime Version:4.0.30319.42000 +// Runtime Version:5.0.9 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. diff --git a/src/Batch/Batch/Models.Generated/PSTaskContainerSettings.cs b/src/Batch/Batch/Models.Generated/PSTaskContainerSettings.cs index eaaf898ad843..cafa46d60319 100644 --- a/src/Batch/Batch/Models.Generated/PSTaskContainerSettings.cs +++ b/src/Batch/Batch/Models.Generated/PSTaskContainerSettings.cs @@ -14,7 +14,7 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. -// Runtime Version:4.0.30319.42000 +// Runtime Version:5.0.9 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. diff --git a/src/Batch/Batch/Models.Generated/PSTaskCounts.cs b/src/Batch/Batch/Models.Generated/PSTaskCounts.cs index 71f55cc6b5c0..faeccbcb5ee1 100644 --- a/src/Batch/Batch/Models.Generated/PSTaskCounts.cs +++ b/src/Batch/Batch/Models.Generated/PSTaskCounts.cs @@ -14,7 +14,7 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. -// Runtime Version:4.0.30319.42000 +// Runtime Version:5.0.9 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. diff --git a/src/Batch/Batch/Models.Generated/PSTaskCountsResult.cs b/src/Batch/Batch/Models.Generated/PSTaskCountsResult.cs new file mode 100644 index 000000000000..7ad470278f45 --- /dev/null +++ b/src/Batch/Batch/Models.Generated/PSTaskCountsResult.cs @@ -0,0 +1,76 @@ +// ----------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ----------------------------------------------------------------------------- +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:5.0.9 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace Microsoft.Azure.Commands.Batch.Models +{ + using System; + using System.Collections; + using System.Collections.Generic; + using Microsoft.Azure.Batch; + + + public partial class PSTaskCountsResult + { + + internal Microsoft.Azure.Batch.TaskCountsResult omObject; + + private PSTaskCounts taskCounts; + + private PSTaskSlotCounts taskSlotCounts; + + internal PSTaskCountsResult(Microsoft.Azure.Batch.TaskCountsResult omObject) + { + if ((omObject == null)) + { + throw new System.ArgumentNullException("omObject"); + } + this.omObject = omObject; + } + + public PSTaskCounts TaskCounts + { + get + { + if (((this.taskCounts == null) + && (this.omObject.TaskCounts != null))) + { + this.taskCounts = new PSTaskCounts(this.omObject.TaskCounts); + } + return this.taskCounts; + } + } + + public PSTaskSlotCounts TaskSlotCounts + { + get + { + if (((this.taskSlotCounts == null) + && (this.omObject.TaskSlotCounts != null))) + { + this.taskSlotCounts = new PSTaskSlotCounts(this.omObject.TaskSlotCounts); + } + return this.taskSlotCounts; + } + } + } +} diff --git a/src/Batch/Batch/Models.Generated/PSTaskDependencies.cs b/src/Batch/Batch/Models.Generated/PSTaskDependencies.cs index 1ff4334df754..0a65005f986f 100644 --- a/src/Batch/Batch/Models.Generated/PSTaskDependencies.cs +++ b/src/Batch/Batch/Models.Generated/PSTaskDependencies.cs @@ -14,7 +14,7 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. -// Runtime Version:4.0.30319.42000 +// Runtime Version:5.0.9 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. diff --git a/src/Batch/Batch/Models.Generated/PSTaskExecutionInformation.cs b/src/Batch/Batch/Models.Generated/PSTaskExecutionInformation.cs index 36446ac376d3..82bd0f60f7d0 100644 --- a/src/Batch/Batch/Models.Generated/PSTaskExecutionInformation.cs +++ b/src/Batch/Batch/Models.Generated/PSTaskExecutionInformation.cs @@ -14,7 +14,7 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. -// Runtime Version:4.0.30319.42000 +// Runtime Version:5.0.9 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. diff --git a/src/Batch/Batch/Models.Generated/PSTaskFailureInformation.cs b/src/Batch/Batch/Models.Generated/PSTaskFailureInformation.cs index 7715b99730e4..f09492406098 100644 --- a/src/Batch/Batch/Models.Generated/PSTaskFailureInformation.cs +++ b/src/Batch/Batch/Models.Generated/PSTaskFailureInformation.cs @@ -14,7 +14,7 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. -// Runtime Version:4.0.30319.42000 +// Runtime Version:5.0.9 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. diff --git a/src/Batch/Batch/Models.Generated/PSTaskIdRange.cs b/src/Batch/Batch/Models.Generated/PSTaskIdRange.cs index 815ab3df5e78..b8a54452cd2a 100644 --- a/src/Batch/Batch/Models.Generated/PSTaskIdRange.cs +++ b/src/Batch/Batch/Models.Generated/PSTaskIdRange.cs @@ -14,7 +14,7 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. -// Runtime Version:4.0.30319.42000 +// Runtime Version:5.0.9 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. diff --git a/src/Batch/Batch/Models.Generated/PSTaskInformation.cs b/src/Batch/Batch/Models.Generated/PSTaskInformation.cs index 7dee3971ddd6..cbd9a063c0bd 100644 --- a/src/Batch/Batch/Models.Generated/PSTaskInformation.cs +++ b/src/Batch/Batch/Models.Generated/PSTaskInformation.cs @@ -14,7 +14,7 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. -// Runtime Version:4.0.30319.42000 +// Runtime Version:5.0.9 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. diff --git a/src/Batch/Batch/Models.Generated/PSTaskSchedulingPolicy.cs b/src/Batch/Batch/Models.Generated/PSTaskSchedulingPolicy.cs index 4ec94164f60b..75468c200bef 100644 --- a/src/Batch/Batch/Models.Generated/PSTaskSchedulingPolicy.cs +++ b/src/Batch/Batch/Models.Generated/PSTaskSchedulingPolicy.cs @@ -14,7 +14,7 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. -// Runtime Version:4.0.30319.42000 +// Runtime Version:5.0.9 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. diff --git a/src/Batch/Batch/Models.Generated/PSTaskSlotCounts.cs b/src/Batch/Batch/Models.Generated/PSTaskSlotCounts.cs new file mode 100644 index 000000000000..cfd4d1629a17 --- /dev/null +++ b/src/Batch/Batch/Models.Generated/PSTaskSlotCounts.cs @@ -0,0 +1,86 @@ +// ----------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ----------------------------------------------------------------------------- +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:5.0.9 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace Microsoft.Azure.Commands.Batch.Models +{ + using System; + using System.Collections; + using System.Collections.Generic; + using Microsoft.Azure.Batch; + + + public partial class PSTaskSlotCounts + { + + internal Microsoft.Azure.Batch.TaskSlotCounts omObject; + + internal PSTaskSlotCounts(Microsoft.Azure.Batch.TaskSlotCounts omObject) + { + if ((omObject == null)) + { + throw new System.ArgumentNullException("omObject"); + } + this.omObject = omObject; + } + + public int Active + { + get + { + return this.omObject.Active; + } + } + + public int Completed + { + get + { + return this.omObject.Completed; + } + } + + public int Failed + { + get + { + return this.omObject.Failed; + } + } + + public int Running + { + get + { + return this.omObject.Running; + } + } + + public int Succeeded + { + get + { + return this.omObject.Succeeded; + } + } + } +} diff --git a/src/Batch/Batch/Models.Generated/PSTaskStatistics.cs b/src/Batch/Batch/Models.Generated/PSTaskStatistics.cs index 44221e509ec4..fa7585775166 100644 --- a/src/Batch/Batch/Models.Generated/PSTaskStatistics.cs +++ b/src/Batch/Batch/Models.Generated/PSTaskStatistics.cs @@ -14,7 +14,7 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. -// Runtime Version:4.0.30319.42000 +// Runtime Version:5.0.9 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. diff --git a/src/Batch/Batch/Models.Generated/PSUsageStatistics.cs b/src/Batch/Batch/Models.Generated/PSUsageStatistics.cs index 5cc07ae28aaf..bfb0df6b12ab 100644 --- a/src/Batch/Batch/Models.Generated/PSUsageStatistics.cs +++ b/src/Batch/Batch/Models.Generated/PSUsageStatistics.cs @@ -14,7 +14,7 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. -// Runtime Version:4.0.30319.42000 +// Runtime Version:5.0.9 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. diff --git a/src/Batch/Batch/Models.Generated/PSUserAccount.cs b/src/Batch/Batch/Models.Generated/PSUserAccount.cs index 0c2b27b492c0..eecb17f3b8ec 100644 --- a/src/Batch/Batch/Models.Generated/PSUserAccount.cs +++ b/src/Batch/Batch/Models.Generated/PSUserAccount.cs @@ -14,7 +14,7 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. -// Runtime Version:4.0.30319.42000 +// Runtime Version:5.0.9 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. diff --git a/src/Batch/Batch/Models.Generated/PSUserAssignedIdentity.cs b/src/Batch/Batch/Models.Generated/PSUserAssignedIdentity.cs new file mode 100644 index 000000000000..d57785afa752 --- /dev/null +++ b/src/Batch/Batch/Models.Generated/PSUserAssignedIdentity.cs @@ -0,0 +1,79 @@ +// ----------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ----------------------------------------------------------------------------- +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:5.0.9 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace Microsoft.Azure.Commands.Batch.Models +{ + using System; + using System.Collections; + using System.Collections.Generic; + using Microsoft.Azure.Batch; + + + public partial class PSUserAssignedIdentity + { + + internal Microsoft.Azure.Batch.UserAssignedIdentity omObject; + + public PSUserAssignedIdentity(string resourceId) + { + this.omObject = new Microsoft.Azure.Batch.UserAssignedIdentity(resourceId); + } + + internal PSUserAssignedIdentity(Microsoft.Azure.Batch.UserAssignedIdentity omObject) + { + if ((omObject == null)) + { + throw new System.ArgumentNullException("omObject"); + } + this.omObject = omObject; + } + + public string ClientId + { + get + { + return this.omObject.ClientId; + } + } + + public string PrincipalId + { + get + { + return this.omObject.PrincipalId; + } + } + + public string ResourceId + { + get + { + return this.omObject.ResourceId; + } + set + { + this.omObject.ResourceId = value; + } + } + } +} diff --git a/src/Batch/Batch/Models.Generated/PSUserIdentity.cs b/src/Batch/Batch/Models.Generated/PSUserIdentity.cs index ae3f1552873b..68b287f7a29c 100644 --- a/src/Batch/Batch/Models.Generated/PSUserIdentity.cs +++ b/src/Batch/Batch/Models.Generated/PSUserIdentity.cs @@ -14,7 +14,7 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. -// Runtime Version:4.0.30319.42000 +// Runtime Version:5.0.9 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. diff --git a/src/Batch/Batch/Models.Generated/PSVMExtension.cs b/src/Batch/Batch/Models.Generated/PSVMExtension.cs new file mode 100644 index 000000000000..23bbc3a6454f --- /dev/null +++ b/src/Batch/Batch/Models.Generated/PSVMExtension.cs @@ -0,0 +1,172 @@ +// ----------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ----------------------------------------------------------------------------- +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:5.0.9 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace Microsoft.Azure.Commands.Batch.Models +{ + using System; + using System.Collections; + using System.Collections.Generic; + using Microsoft.Azure.Batch; + + + public partial class PSVMExtension + { + + internal Microsoft.Azure.Batch.VMExtension omObject; + + private IList provisionAfterExtensions; + + public PSVMExtension(string name, string publisher, string type) + { + this.omObject = new Microsoft.Azure.Batch.VMExtension(name, publisher, type); + } + + internal PSVMExtension(Microsoft.Azure.Batch.VMExtension omObject) + { + if ((omObject == null)) + { + throw new System.ArgumentNullException("omObject"); + } + this.omObject = omObject; + } + + public System.Boolean? AutoUpgradeMinorVersion + { + get + { + return this.omObject.AutoUpgradeMinorVersion; + } + set + { + this.omObject.AutoUpgradeMinorVersion = value; + } + } + + public string Name + { + get + { + return this.omObject.Name; + } + set + { + this.omObject.Name = value; + } + } + + public object ProtectedSettings + { + get + { + return this.omObject.ProtectedSettings; + } + set + { + this.omObject.ProtectedSettings = value; + } + } + + public IList ProvisionAfterExtensions + { + get + { + if (((this.provisionAfterExtensions == null) + && (this.omObject.ProvisionAfterExtensions != null))) + { + List list; + list = new List(); + IEnumerator enumerator; + enumerator = this.omObject.ProvisionAfterExtensions.GetEnumerator(); + for ( + ; enumerator.MoveNext(); + ) + { + list.Add(enumerator.Current); + } + this.provisionAfterExtensions = list; + } + return this.provisionAfterExtensions; + } + set + { + if ((value == null)) + { + this.omObject.ProvisionAfterExtensions = null; + } + else + { + this.omObject.ProvisionAfterExtensions = new List(); + } + this.provisionAfterExtensions = value; + } + } + + public string Publisher + { + get + { + return this.omObject.Publisher; + } + set + { + this.omObject.Publisher = value; + } + } + + public object Settings + { + get + { + return this.omObject.Settings; + } + set + { + this.omObject.Settings = value; + } + } + + public string Type + { + get + { + return this.omObject.Type; + } + set + { + this.omObject.Type = value; + } + } + + public string TypeHandlerVersion + { + get + { + return this.omObject.TypeHandlerVersion; + } + set + { + this.omObject.TypeHandlerVersion = value; + } + } + } +} diff --git a/src/Batch/Batch/Models.Generated/PSVMExtensionInstanceView.cs b/src/Batch/Batch/Models.Generated/PSVMExtensionInstanceView.cs new file mode 100644 index 000000000000..fec418b9e85b --- /dev/null +++ b/src/Batch/Batch/Models.Generated/PSVMExtensionInstanceView.cs @@ -0,0 +1,137 @@ +// ----------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ----------------------------------------------------------------------------- +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:5.0.9 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace Microsoft.Azure.Commands.Batch.Models +{ + using System; + using System.Collections; + using System.Collections.Generic; + using Microsoft.Azure.Batch; + + + public partial class PSVMExtensionInstanceView + { + + internal Microsoft.Azure.Batch.VMExtensionInstanceView omObject; + + private IList statuses; + + private IList subStatuses; + + public PSVMExtensionInstanceView() + { + this.omObject = new Microsoft.Azure.Batch.VMExtensionInstanceView(); + } + + internal PSVMExtensionInstanceView(Microsoft.Azure.Batch.VMExtensionInstanceView omObject) + { + if ((omObject == null)) + { + throw new System.ArgumentNullException("omObject"); + } + this.omObject = omObject; + } + + public string Name + { + get + { + return this.omObject.Name; + } + set + { + this.omObject.Name = value; + } + } + + public IList Statuses + { + get + { + if (((this.statuses == null) + && (this.omObject.Statuses != null))) + { + List list; + list = new List(); + IEnumerator enumerator; + enumerator = this.omObject.Statuses.GetEnumerator(); + for ( + ; enumerator.MoveNext(); + ) + { + list.Add(new PSInstanceViewStatus(enumerator.Current)); + } + this.statuses = list; + } + return this.statuses; + } + set + { + if ((value == null)) + { + this.omObject.Statuses = null; + } + else + { + this.omObject.Statuses = new List(); + } + this.statuses = value; + } + } + + public IList SubStatuses + { + get + { + if (((this.subStatuses == null) + && (this.omObject.SubStatuses != null))) + { + List list; + list = new List(); + IEnumerator enumerator; + enumerator = this.omObject.SubStatuses.GetEnumerator(); + for ( + ; enumerator.MoveNext(); + ) + { + list.Add(new PSInstanceViewStatus(enumerator.Current)); + } + this.subStatuses = list; + } + return this.subStatuses; + } + set + { + if ((value == null)) + { + this.omObject.SubStatuses = null; + } + else + { + this.omObject.SubStatuses = new List(); + } + this.subStatuses = value; + } + } + } +} diff --git a/src/Batch/Batch/Models.Generated/PSVirtualMachineConfiguration.cs b/src/Batch/Batch/Models.Generated/PSVirtualMachineConfiguration.cs index 28fbda3f4916..bb75b1b97150 100644 --- a/src/Batch/Batch/Models.Generated/PSVirtualMachineConfiguration.cs +++ b/src/Batch/Batch/Models.Generated/PSVirtualMachineConfiguration.cs @@ -14,7 +14,7 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. -// Runtime Version:4.0.30319.42000 +// Runtime Version:5.0.9 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. @@ -40,8 +40,14 @@ public partial class PSVirtualMachineConfiguration private PSDiskEncryptionConfiguration diskEncryptionConfiguration; + private IList extensions; + private PSImageReference imageReference; + private PSNodePlacementConfiguration nodePlacementConfiguration; + + private PSOSDisk oSDisk; + private PSWindowsConfiguration windowsConfiguration; public PSVirtualMachineConfiguration(PSImageReference imageReference, string nodeAgentSkuId) @@ -143,6 +149,41 @@ public PSDiskEncryptionConfiguration DiskEncryptionConfiguration } } + public IList Extensions + { + get + { + if (((this.extensions == null) + && (this.omObject.Extensions != null))) + { + List list; + list = new List(); + IEnumerator enumerator; + enumerator = this.omObject.Extensions.GetEnumerator(); + for ( + ; enumerator.MoveNext(); + ) + { + list.Add(new PSVMExtension(enumerator.Current)); + } + this.extensions = list; + } + return this.extensions; + } + set + { + if ((value == null)) + { + this.omObject.Extensions = null; + } + else + { + this.omObject.Extensions = new List(); + } + this.extensions = value; + } + } + public PSImageReference ImageReference { get @@ -192,6 +233,56 @@ public string NodeAgentSkuId } } + public PSNodePlacementConfiguration NodePlacementConfiguration + { + get + { + if (((this.nodePlacementConfiguration == null) + && (this.omObject.NodePlacementConfiguration != null))) + { + this.nodePlacementConfiguration = new PSNodePlacementConfiguration(this.omObject.NodePlacementConfiguration); + } + return this.nodePlacementConfiguration; + } + set + { + if ((value == null)) + { + this.omObject.NodePlacementConfiguration = null; + } + else + { + this.omObject.NodePlacementConfiguration = value.omObject; + } + this.nodePlacementConfiguration = value; + } + } + + public PSOSDisk OSDisk + { + get + { + if (((this.oSDisk == null) + && (this.omObject.OSDisk != null))) + { + this.oSDisk = new PSOSDisk(this.omObject.OSDisk); + } + return this.oSDisk; + } + set + { + if ((value == null)) + { + this.omObject.OSDisk = null; + } + else + { + this.omObject.OSDisk = value.omObject; + } + this.oSDisk = value; + } + } + public PSWindowsConfiguration WindowsConfiguration { get diff --git a/src/Batch/Batch/Models.Generated/PSVirtualMachineInfo.cs b/src/Batch/Batch/Models.Generated/PSVirtualMachineInfo.cs new file mode 100644 index 000000000000..c6efa27990bf --- /dev/null +++ b/src/Batch/Batch/Models.Generated/PSVirtualMachineInfo.cs @@ -0,0 +1,78 @@ +// ----------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ----------------------------------------------------------------------------- +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:5.0.9 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace Microsoft.Azure.Commands.Batch.Models +{ + using System; + using System.Collections; + using System.Collections.Generic; + using Microsoft.Azure.Batch; + + + public partial class PSVirtualMachineInfo + { + + internal Microsoft.Azure.Batch.VirtualMachineInfo omObject; + + private PSImageReference imageReference; + + public PSVirtualMachineInfo() + { + this.omObject = new Microsoft.Azure.Batch.VirtualMachineInfo(); + } + + internal PSVirtualMachineInfo(Microsoft.Azure.Batch.VirtualMachineInfo omObject) + { + if ((omObject == null)) + { + throw new System.ArgumentNullException("omObject"); + } + this.omObject = omObject; + } + + public PSImageReference ImageReference + { + get + { + if (((this.imageReference == null) + && (this.omObject.ImageReference != null))) + { + this.imageReference = new PSImageReference(this.omObject.ImageReference); + } + return this.imageReference; + } + set + { + if ((value == null)) + { + this.omObject.ImageReference = null; + } + else + { + this.omObject.ImageReference = value.omObject; + } + this.imageReference = value; + } + } + } +} diff --git a/src/Batch/Batch/Models.Generated/PSWindowsConfiguration.cs b/src/Batch/Batch/Models.Generated/PSWindowsConfiguration.cs index 6305ad4a103e..f81bf8c6429a 100644 --- a/src/Batch/Batch/Models.Generated/PSWindowsConfiguration.cs +++ b/src/Batch/Batch/Models.Generated/PSWindowsConfiguration.cs @@ -14,7 +14,7 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. -// Runtime Version:4.0.30319.42000 +// Runtime Version:5.0.9 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. diff --git a/src/Batch/Batch/Models.Generated/PSWindowsUserConfiguration.cs b/src/Batch/Batch/Models.Generated/PSWindowsUserConfiguration.cs index 9ebc06d6e841..ac4cbfc1d2e2 100644 --- a/src/Batch/Batch/Models.Generated/PSWindowsUserConfiguration.cs +++ b/src/Batch/Batch/Models.Generated/PSWindowsUserConfiguration.cs @@ -14,7 +14,7 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. -// Runtime Version:4.0.30319.42000 +// Runtime Version:5.0.9 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. diff --git a/src/Batch/Batch/Models/AccountCreateParameters.cs b/src/Batch/Batch/Models/AccountCreateParameters.cs index bf80aba10f8d..98ffe4a06f3f 100644 --- a/src/Batch/Batch/Models/AccountCreateParameters.cs +++ b/src/Batch/Batch/Models/AccountCreateParameters.cs @@ -88,8 +88,7 @@ public AccountCreateParameters(string resourceGroup, string batchAccount, string public PublicNetworkAccessType PublicNetworkAccess { get; set; } /// - /// The identity of the Batch account, if configured. This is only used when the - /// user specifies 'Microsoft.KeyVault' as their Batch account encryption configuration. + /// The identity of the Batch account. /// public BatchAccountIdentity Identity { get; set; } } diff --git a/src/Batch/Batch/Models/BatchClient.Locations.cs b/src/Batch/Batch/Models/BatchClient.Locations.cs index 3fbc290703c8..8df96288a099 100644 --- a/src/Batch/Batch/Models/BatchClient.Locations.cs +++ b/src/Batch/Batch/Models/BatchClient.Locations.cs @@ -15,7 +15,10 @@ using Microsoft.Azure.Commands.Batch.Properties; using Microsoft.Azure.Management.Batch; using Microsoft.Azure.Management.Batch.Models; +using Microsoft.Rest.Azure; using System; +using System.Collections.Generic; +using System.Linq; namespace Microsoft.Azure.Commands.Batch.Models { @@ -38,5 +41,44 @@ public virtual PSBatchLocationQuotas GetLocationQuotas(string location) BatchLocationQuota response = this.BatchManagementClient.Location.GetQuotas(location); return new PSBatchLocationQuotas(location, response); } + + public virtual List GetSupportedVirtualMachineSkus(string location) + { + return GetSupportedVirtualMachineSkus(location, default, default); + } + + public virtual List GetSupportedVirtualMachineSkus(string location, int? maxResults, string filter) + { + if (string.IsNullOrEmpty(location)) + { + throw new ArgumentNullException("location"); + } + + if (maxResults == default && filter == default) + { + WriteVerbose(string.Format(Resources.GettingSupportedVirtualMachineSkus, location)); + } + else + { + WriteVerbose(string.Format(Resources.GettingSupportedVirtualMachineSkus, location, maxResults, filter)); + } + + IPage response = BatchManagementClient.Location.ListSupportedVirtualMachineSkus(location, maxResults, filter); + List psSupportedSkus = response.Select(ConvertToPSSupportedSku).ToList(); + + while (response.NextPageLink != null) + { + response = BatchManagementClient.Location.ListSupportedVirtualMachineSkusNext(response.NextPageLink); + psSupportedSkus.AddRange(response.Select(ConvertToPSSupportedSku)); + } + + return psSupportedSkus; + } + + private static PSSupportedSku ConvertToPSSupportedSku(SupportedSku sku) + { + IList capabilities = sku.Capabilities.Select(c => new PSSkuCapability(c.Name, c.Value)).ToList(); + return new PSSupportedSku(sku.Name, sku.FamilyName, capabilities); + } } } diff --git a/src/Batch/Batch/Models/BatchClient.Pools.cs b/src/Batch/Batch/Models/BatchClient.Pools.cs index 67bc3621f944..08beb8edff00 100644 --- a/src/Batch/Batch/Models/BatchClient.Pools.cs +++ b/src/Batch/Batch/Models/BatchClient.Pools.cs @@ -103,7 +103,7 @@ public void CreatePool(NewPoolParameters parameters) pool.VirtualMachineSize = parameters.VirtualMachineSize; pool.DisplayName = parameters.DisplayName; pool.ResizeTimeout = parameters.ResizeTimeout; - pool.MaxTasksPerComputeNode = parameters.MaxTasksPerComputeNode; + pool.TaskSlotsPerNode = parameters.TaskSlotsPerNode; pool.InterComputeNodeCommunicationEnabled = parameters.InterComputeNodeCommunicationEnabled; if (!string.IsNullOrEmpty(parameters.AutoScaleFormula)) diff --git a/src/Batch/Batch/Models/BatchClient.Tasks.cs b/src/Batch/Batch/Models/BatchClient.Tasks.cs index b0262019cda9..33e45d6d9735 100644 --- a/src/Batch/Batch/Models/BatchClient.Tasks.cs +++ b/src/Batch/Batch/Models/BatchClient.Tasks.cs @@ -84,6 +84,26 @@ public IEnumerable ListTasks(ListTaskOptions options) /// Options for GetTaskCounts(). /// The task counts for the specified job. public PSTaskCounts GetTaskCounts(GetTaskCountsOptions options) + { + return new PSTaskCounts(GetTaskCountsResult(options).TaskCounts); + } + + /// + /// Get task slot counts for the specified job. + /// + /// Options for GetTaskSlotCounts(). + /// The task slot counts for the specified job. + public PSTaskSlotCounts GetTaskSlotCounts(GetTaskCountsOptions options) + { + return new PSTaskSlotCounts(GetTaskCountsResult(options).TaskSlotCounts); + } + + /// + /// Get task count results for the specified job. + /// + /// Options for GetTaskCountsResult(). + /// The task count results for the specified job. + internal TaskCountsResult GetTaskCountsResult(GetTaskCountsOptions options) { if (options == null) { @@ -100,7 +120,7 @@ public PSTaskCounts GetTaskCounts(GetTaskCountsOptions options) WriteVerbose(string.Format(Resources.GetTaskCounts, jobId)); JobOperations jobOperations = options.Context.BatchOMClient.JobOperations; - return new PSTaskCounts(jobOperations.GetJobTaskCounts(jobId, options.AdditionalBehaviors)); + return jobOperations.GetJobTaskCounts(jobId, options.AdditionalBehaviors); } /// diff --git a/src/Batch/Batch/Models/NewPoolParameters.cs b/src/Batch/Batch/Models/NewPoolParameters.cs index 38fcfc3ce8a4..989465daed3a 100644 --- a/src/Batch/Batch/Models/NewPoolParameters.cs +++ b/src/Batch/Batch/Models/NewPoolParameters.cs @@ -83,9 +83,9 @@ public NewPoolParameters(BatchAccountContext context, string poolId, IEnumerable public string AutoScaleFormula { get; set; } /// - /// The maximum number of tasks that can run on a compute node. + /// The number of task slots for each compute node. /// - public int? MaxTasksPerComputeNode { get; set; } + public int? TaskSlotsPerNode { get; set; } /// /// The task scheduling policy. diff --git a/src/Batch/Batch/Models/PSSkuCapability.cs b/src/Batch/Batch/Models/PSSkuCapability.cs new file mode 100644 index 000000000000..cbd1fa4a13fd --- /dev/null +++ b/src/Batch/Batch/Models/PSSkuCapability.cs @@ -0,0 +1,30 @@ +using System; +using System.Collections.Generic; +using System.Text; + +namespace Microsoft.Azure.Commands.Batch.Models +{ + public class PSSkuCapability + { + /// + /// Initializes a new instance of the SkuCapability class. + /// + /// The name of the feature. + /// The value of the feature. + public PSSkuCapability(string name, string value) + { + Name = name; + Value = value; + } + + /// + /// Gets the name of the feature. + /// + public string Name { get; private set; } + + /// + /// Gets the value of the feature. + /// + public string Value { get; private set; } + } +} diff --git a/src/Batch/Batch/Models/PSSupportedSku.cs b/src/Batch/Batch/Models/PSSupportedSku.cs new file mode 100644 index 000000000000..4ab08ec5251d --- /dev/null +++ b/src/Batch/Batch/Models/PSSupportedSku.cs @@ -0,0 +1,48 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using Microsoft.Azure.Management.Batch.Models; +using System; +using System.Collections.Generic; + +namespace Microsoft.Azure.Commands.Batch.Models +{ + /// + /// The quotas of a subscription in the Batch Service. + /// + public class PSSupportedSku + { + public PSSupportedSku(string name, string familyName, IList capabilities) + { + Name = name; + FamilyName = familyName; + Capabilities = capabilities; + } + + /// + /// The number of the SKU. + /// + public string Name { get; private set; } + + /// + /// The family name of the SKU. + /// + public string FamilyName { get; private set; } + + /// + /// Gets a collection of capabilities which this SKU supports. + /// + public IList Capabilities { get; private set; } + } +} diff --git a/src/Batch/Batch/Pools/NewBatchPoolCommand.cs b/src/Batch/Batch/Pools/NewBatchPoolCommand.cs index f33635ddc331..ceaa0e5763c6 100644 --- a/src/Batch/Batch/Pools/NewBatchPoolCommand.cs +++ b/src/Batch/Batch/Pools/NewBatchPoolCommand.cs @@ -70,7 +70,7 @@ public class NewBatchPoolCommand : BatchObjectModelCmdletBase [Parameter] [ValidateNotNullOrEmpty] - public int? MaxTasksPerComputeNode { get; set; } + public int? TaskSlotsPerNode { get; set; } [Parameter] [ValidateNotNullOrEmpty] @@ -135,7 +135,7 @@ protected override void ExecuteCmdletImpl() TargetLowPriorityComputeNodes = this.TargetLowPriorityComputeNodes, AutoScaleEvaluationInterval = this.AutoScaleEvaluationInterval, AutoScaleFormula = this.AutoScaleFormula, - MaxTasksPerComputeNode = this.MaxTasksPerComputeNode, + TaskSlotsPerNode = this.TaskSlotsPerNode, TaskSchedulingPolicy = this.TaskSchedulingPolicy, Metadata = this.Metadata, InterComputeNodeCommunicationEnabled = this.InterComputeNodeCommunicationEnabled.IsPresent, diff --git a/src/Batch/Batch/Properties/Resources.Designer.cs b/src/Batch/Batch/Properties/Resources.Designer.cs index fb92effbaeeb..d8db18e23092 100644 --- a/src/Batch/Batch/Properties/Resources.Designer.cs +++ b/src/Batch/Batch/Properties/Resources.Designer.cs @@ -19,7 +19,7 @@ namespace Microsoft.Azure.Commands.Batch.Properties { // class via a tool like ResGen or Visual Studio. // To add or remove a member, edit your .ResX file then rerun ResGen // with the /str option, or rebuild your VS project. - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "15.0.0.0")] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "17.0.0.0")] [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] internal class Resources { @@ -717,6 +717,24 @@ internal static string GettingLocationQuotas { } } + /// + /// Looks up a localized string similar to Getting all supported virtual machine Sus for location {0}.. + /// + internal static string GettingSupportedVirtualMachineSkus { + get { + return ResourceManager.GetString("GettingSupportedVirtualMachineSkus", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Getting all supported virtual machine Sus for location {0}. MaxResults: {1}, Filter: {2}.. + /// + internal static string GettingSupportedVirtualMachineSkusWithODataParameters { + get { + return ResourceManager.GetString("GettingSupportedVirtualMachineSkusWithODataParameters", resourceCulture); + } + } + /// /// Looks up a localized string similar to The endpoint is not recognized as valid: {0}. /// diff --git a/src/Batch/Batch/Properties/Resources.resx b/src/Batch/Batch/Properties/Resources.resx index e066cbc6d7f6..4aa535dc02d4 100644 --- a/src/Batch/Batch/Properties/Resources.resx +++ b/src/Batch/Batch/Properties/Resources.resx @@ -508,4 +508,10 @@ Getting all private link resources in resource group "{0}", account "{0}" + + Getting all supported virtual machine Sus for location {0}. + + + Getting all supported virtual machine Sus for location {0}. MaxResults: {1}, Filter: {2}. + \ No newline at end of file diff --git a/src/Batch/Batch/Tasks/GetBatchTaskCountCommand.cs b/src/Batch/Batch/Tasks/GetBatchTaskCountsCommand.cs similarity index 86% rename from src/Batch/Batch/Tasks/GetBatchTaskCountCommand.cs rename to src/Batch/Batch/Tasks/GetBatchTaskCountsCommand.cs index 65b99971ba8d..b26d817b95fc 100644 --- a/src/Batch/Batch/Tasks/GetBatchTaskCountCommand.cs +++ b/src/Batch/Batch/Tasks/GetBatchTaskCountsCommand.cs @@ -20,10 +20,9 @@ namespace Microsoft.Azure.Commands.Batch { - [GenericBreakingChange("Get-AzBatchTaskCounts alias will be removed in an upcoming breaking change release", "2.0.0")] - [Cmdlet("Get", ResourceManager.Common.AzureRMConstants.AzurePrefix + "BatchTaskCount"),OutputType(typeof(PSTaskCounts))] - [Alias("Get-AzBatchTaskCounts")] - public class GetBatchTaskCountCommand : BatchObjectModelCmdletBase + [Cmdlet("Get", ResourceManager.Common.AzureRMConstants.AzurePrefix + "BatchTaskCounts"), OutputType(typeof(PSTaskCounts))] + [Alias("Get-AzBatchTaskCount")] + public class GetBatchTaskCountsCommand : BatchObjectModelCmdletBase { [Parameter(Position = 0, ParameterSetName = Constants.IdParameterSet, Mandatory = true, ValueFromPipelineByPropertyName = true, HelpMessage = "The id of the job for which to get task counts.")] diff --git a/src/Batch/Batch/Tasks/GetBatchTaskSlotCountsCommand.cs b/src/Batch/Batch/Tasks/GetBatchTaskSlotCountsCommand.cs new file mode 100644 index 000000000000..6b80aaf21615 --- /dev/null +++ b/src/Batch/Batch/Tasks/GetBatchTaskSlotCountsCommand.cs @@ -0,0 +1,45 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using Microsoft.Azure.Batch; +using Microsoft.Azure.Commands.Batch.Models; +using Microsoft.WindowsAzure.Commands.Common.CustomAttributes; +using System.Management.Automation; +using Constants = Microsoft.Azure.Commands.Batch.Utils.Constants; + +namespace Microsoft.Azure.Commands.Batch +{ + [Cmdlet("Get", ResourceManager.Common.AzureRMConstants.AzurePrefix + "BatchTaskSlotCounts"),OutputType(typeof(PSTaskSlotCounts))] + [Alias("Get-AzBatchTaskSlotCount")] + public class GetBatchTaskSlotCountsCommand : BatchObjectModelCmdletBase + { + [Parameter(Position = 0, ParameterSetName = Constants.IdParameterSet, Mandatory = true, + ValueFromPipelineByPropertyName = true, HelpMessage = "The id of the job for which to get task slot counts.")] + [ValidateNotNullOrEmpty] + public string JobId { get; set; } + + [Parameter(Position = 0, ParameterSetName = Constants.ParentObjectParameterSet, ValueFromPipeline = true)] + [ValidateNotNullOrEmpty] + public PSCloudJob Job { get; set; } + + protected override void ExecuteCmdletImpl() + { + GetTaskCountsOptions options = new GetTaskCountsOptions(this.BatchContext, this.JobId, this.Job, this.AdditionalBehaviors); + + PSTaskSlotCounts taskSlotCounts = BatchClient.GetTaskSlotCounts(options); + + WriteObject(taskSlotCounts); + } + } +} diff --git a/src/Batch/Batch/help/Az.Batch.md b/src/Batch/Batch/help/Az.Batch.md index 6a4d835e4e93..4b782a53fe37 100644 --- a/src/Batch/Batch/help/Az.Batch.md +++ b/src/Batch/Batch/help/Az.Batch.md @@ -101,12 +101,18 @@ Gets the subtask information of the specified task. ### [Get-AzBatchSupportedImage](Get-AzBatchSupportedImage.md) Gets Batch supported images for a Batch account. +### [Get-AzBatchSupportedVirtualMachineSkus](Get-AzBatchSupportedVirtualMachineSkus.md) +Gets the supported Skus for a given virtual machine. + ### [Get-AzBatchTask](Get-AzBatchTask.md) Gets the Batch tasks for a job. -### [Get-AzBatchTaskCount](Get-AzBatchTaskCount.md) +### [Get-AzBatchTaskCounts](Get-AzBatchTaskCounts.md) Gets the task counts for the specified job. +### [Get-AzBatchTaskSlotCounts](Get-AzBatchTaskSlotCounts.md) +Gets the task slot counts for the specified job. + ### [New-AzBatchAccount](New-AzBatchAccount.md) Creates a Batch account. diff --git a/src/Batch/Batch/help/Get-AzBatchSupportedVirtualMachineSkus.md b/src/Batch/Batch/help/Get-AzBatchSupportedVirtualMachineSkus.md new file mode 100644 index 000000000000..2ed2d5e42dcb --- /dev/null +++ b/src/Batch/Batch/help/Get-AzBatchSupportedVirtualMachineSkus.md @@ -0,0 +1,112 @@ +--- +external help file: Microsoft.Azure.PowerShell.Cmdlets.Batch.dll-Help.xml +Module Name: Az.Batch +online version: https://docs.microsoft.com/powershell/module/az.batch/get-azbatchsupportedvirtualmachineskus +schema: 2.0.0 +--- + +# Get-AzBatchSupportedVirtualMachineSkus + +## SYNOPSIS +Gets the list of Batch supported Virtual Machine VM sizes available at the given location. + +## SYNTAX + +``` +Get-AzBatchSupportedVirtualMachineSkus [-Location] [[-MaxResults] ] [[-Filter] ] + [-DefaultProfile ] [] +``` + +## EXAMPLES + +### Example 1 Get supported skus for a region +```powershell +PS C:\> Get-AzBatchSupportedVirtualMachineSkus eastus + +Name FamilyName Capabilities +---- ---------- ------------ +Basic_A1 basicAFamily {MaxResourceVolumeMB, OSVhdSizeMB, vCPUs, MemoryPreservingMaintenanceSupporte… +Basic_A2 basicAFamily {MaxResourceVolumeMB, OSVhdSizeMB, vCPUs, MemoryPreservingMaintenanceSupporte… +Basic_A3 basicAFamily {MaxResourceVolumeMB, OSVhdSizeMB, vCPUs, MemoryPreservingMaintenanceSupporte… +... +``` + +## PARAMETERS + +### -DefaultProfile +The credentials, account, tenant, and subscription used for communication with Azure. + +```yaml +Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer +Parameter Sets: (All) +Aliases: AzContext, AzureRmContext, AzureCredential + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Filter +OData filter expression. +Valid properties for filtering are "familyName". + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: False +Position: 2 +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -Location +The region to get the supported SKUs from. + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: True +Position: 0 +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -MaxResults +The maximum number of items to return in the response. + +```yaml +Type: System.Nullable`1[System.Int32] +Parameter Sets: (All) +Aliases: + +Required: False +Position: 1 +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### System.String + +### System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] + +## OUTPUTS + +### Microsoft.Azure.Commands.Batch.Models.PSSupportedSku + +## NOTES + +## RELATED LINKS diff --git a/src/Batch/Batch/help/Get-AzBatchTaskCount.md b/src/Batch/Batch/help/Get-AzBatchTaskCounts.md similarity index 90% rename from src/Batch/Batch/help/Get-AzBatchTaskCount.md rename to src/Batch/Batch/help/Get-AzBatchTaskCounts.md index 58cc7e41fff4..64ad726ebecf 100644 --- a/src/Batch/Batch/help/Get-AzBatchTaskCount.md +++ b/src/Batch/Batch/help/Get-AzBatchTaskCounts.md @@ -1,11 +1,11 @@ --- external help file: Microsoft.Azure.PowerShell.Cmdlets.Batch.dll-Help.xml Module Name: Az.Batch -online version: https://docs.microsoft.com/powershell/module/az.batch/get-azbatchtaskcount +online version: https://docs.microsoft.com/powershell/module/az.batch/get-azbatchtaskcounts schema: 2.0.0 --- -# Get-AzBatchTaskCount +# Get-AzBatchTaskCounts ## SYNOPSIS Gets the task counts for the specified job. @@ -14,26 +14,26 @@ Gets the task counts for the specified job. ### Id ``` -Get-AzBatchTaskCount [-JobId] -BatchContext +Get-AzBatchTaskCounts [-JobId] -BatchContext [-DefaultProfile ] [] ``` ### ParentObject ``` -Get-AzBatchTaskCount [[-Job] ] -BatchContext +Get-AzBatchTaskCounts [[-Job] ] -BatchContext [-DefaultProfile ] [] ``` ## DESCRIPTION -The **Get-AzBatchTaskCount** cmdlet gets the Azure Batch tasks count for a Batch job. +The **Get-AzBatchTaskCounts** cmdlet gets the Azure Batch task counts for a Batch job. Specify a job by either the *JobId* parameter or the *Job* parameter. Task counts provide a count of the tasks by active, running or completed task state, and a count of tasks which succeeded or failed. Tasks in the preparing state are counted as running. If the validationStatus is unvalidated, then the Batch service has not been able to check state counts against the task states as reported in the List Tasks API. The validationStatus may be unvalidated if the job contains more than 200,000 tasks. ## EXAMPLES -### Example 1: Get task counts by ID +### Example 1: Get task counts by Job ID ``` -PS C:\> Get-AzBatchTaskCount -JobId "Job01" -Id "Task03" -BatchContext $Context +PS C:\> Get-AzBatchTaskCounts -JobId "Job01" -BatchContext $Context Active : 1 Completed : 0 Failed : 0 diff --git a/src/Batch/Batch/help/Get-AzBatchTaskSlotCounts.md b/src/Batch/Batch/help/Get-AzBatchTaskSlotCounts.md new file mode 100644 index 000000000000..409dbb7606ea --- /dev/null +++ b/src/Batch/Batch/help/Get-AzBatchTaskSlotCounts.md @@ -0,0 +1,138 @@ +--- +external help file: Microsoft.Azure.PowerShell.Cmdlets.Batch.dll-Help.xml +Module Name: Az.Batch +online version: https://docs.microsoft.com/powershell/module/az.batch/get-azbatchtaskslotcounts +schema: 2.0.0 +--- + +# Get-AzBatchTaskSlotCounts + +## SYNOPSIS +Gets the task slot counts for the specified job. + +## SYNTAX + +### Id +``` +Get-AzBatchTaskSlotCounts [-JobId] -BatchContext + [-DefaultProfile ] [] +``` + +### ParentObject +``` +Get-AzBatchTaskSlotCounts [[-Job] ] -BatchContext + [-DefaultProfile ] [] +``` + +## DESCRIPTION +The **Get-AzBatchTaskSlotCounts** cmdlet gets the Azure Batch task slot counts for a Batch job. +Specify a job by either the *JobId* parameter or the *Job* parameter. +Task slot counts provide a count of slots by active, running or completed task state, and a count of slots on which tasks succeeded or failed. Slots for tasks in the preparing state are counted as running. If the validationStatus is unvalidated, then the Batch service has not been able to check state counts against the task states as reported in the List Tasks API. The validationStatus may be unvalidated if the job contains more than 200,000 tasks. + +## EXAMPLES + +### Example 1: Get task counts by ID +``` +PS C:\> Get-AzBatchTaskSlotCounts -JobId "Job01" -Id "Task03" -BatchContext $Context +Active : 1 +Completed : 0 +Failed : 0 +Running : 1 +Succeeded : 5 +ValidationStatus : Validated +``` + +This command gets the task counts for job Job01. +Use the Get-AzBatchAccountKey cmdlet to assign a context to the $Context variable. + +## PARAMETERS + +### -BatchContext +The BatchAccountContext instance to use when interacting with the Batch service. +If you use the Get-AzBatchAccount cmdlet to get your BatchAccountContext, then Azure Active Directory authentication will be used when interacting with the Batch service. +To use shared key authentication instead, use the Get-AzBatchAccountKey cmdlet to get a BatchAccountContext object with its access keys populated. +When using shared key authentication, the primary access key is used by default. +To change the key to use, set the BatchAccountContext.KeyInUse property. + +```yaml +Type: Microsoft.Azure.Commands.Batch.BatchAccountContext +Parameter Sets: (All) +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -DefaultProfile +The credentials, account, tenant, and subscription used for communication with azure. + +```yaml +Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer +Parameter Sets: (All) +Aliases: AzContext, AzureRmContext, AzureCredential + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Job +Specifies the job that contains tasks that this cmdlet gets. +To obtain a **PSCloudJob** object, use the Get-AzBatchJob cmdlet. + +```yaml +Type: Microsoft.Azure.Commands.Batch.Models.PSCloudJob +Parameter Sets: ParentObject +Aliases: + +Required: False +Position: 0 +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -JobId +The id of the job for which to get task counts. + +```yaml +Type: System.String +Parameter Sets: Id +Aliases: + +Required: True +Position: 0 +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### System.String + +### Microsoft.Azure.Commands.Batch.Models.PSCloudJob + +### Microsoft.Azure.Commands.Batch.BatchAccountContext + +## OUTPUTS + +### Microsoft.Azure.Commands.Batch.Models.PSTaskSlotCounts + +## NOTES + +## RELATED LINKS + +[Get-AzBatchAccountKey](./Get-AzBatchAccountKey.md) + +[Get-AzBatchJob](./Get-AzBatchJob.md) + +[Azure Batch Cmdlets](/powershell/module/Az.Batch/) diff --git a/src/Batch/Batch/help/New-AzBatchAccount.md b/src/Batch/Batch/help/New-AzBatchAccount.md index eecd7927fda1..3d51b4e160c8 100644 --- a/src/Batch/Batch/help/New-AzBatchAccount.md +++ b/src/Batch/Batch/help/New-AzBatchAccount.md @@ -46,6 +46,8 @@ This command creates a Batch account named pfuller using the ResourceGroup03 res Creates a Batch account. (autogenerated) + + ```powershell New-AzBatchAccount -AccountName 'pfuller' -AutoStorageAccountId -Location 'WestUS' -ResourceGroupName 'ResourceGroup03' ``` @@ -105,7 +107,7 @@ The identity associated with the BatchAccount Type: Microsoft.Azure.Management.Batch.Models.ResourceIdentityType Parameter Sets: (All) Aliases: -Accepted values: SystemAssigned, None +Accepted values: SystemAssigned, UserAssigned, None Required: False Position: Named diff --git a/src/Batch/Batch/help/New-AzBatchPool.md b/src/Batch/Batch/help/New-AzBatchPool.md index 59b455bf59fa..545a07fb6e28 100644 --- a/src/Batch/Batch/help/New-AzBatchPool.md +++ b/src/Batch/Batch/help/New-AzBatchPool.md @@ -16,8 +16,8 @@ Creates a pool in the Batch service. ### CloudServiceAndTargetDedicated (Default) ``` New-AzBatchPool [-Id] -VirtualMachineSize [-DisplayName ] [-ResizeTimeout ] - [-TargetDedicatedComputeNodes ] [-TargetLowPriorityComputeNodes ] - [-MaxTasksPerComputeNode ] [-TaskSchedulingPolicy ] [-Metadata ] + [-TargetDedicatedComputeNodes ] [-TargetLowPriorityComputeNodes ] [-TaskSlotsPerNode ] + [-TaskSchedulingPolicy ] [-Metadata ] [-InterComputeNodeCommunicationEnabled] [-StartTask ] [-CertificateReferences ] [-ApplicationPackageReferences ] @@ -31,8 +31,8 @@ New-AzBatchPool [-Id] -VirtualMachineSize [-DisplayName -VirtualMachineSize [-DisplayName ] [-ResizeTimeout ] - [-TargetDedicatedComputeNodes ] [-TargetLowPriorityComputeNodes ] - [-MaxTasksPerComputeNode ] [-TaskSchedulingPolicy ] [-Metadata ] + [-TargetDedicatedComputeNodes ] [-TargetLowPriorityComputeNodes ] [-TaskSlotsPerNode ] + [-TaskSchedulingPolicy ] [-Metadata ] [-InterComputeNodeCommunicationEnabled] [-StartTask ] [-CertificateReferences ] [-ApplicationPackageReferences ] @@ -46,7 +46,7 @@ New-AzBatchPool [-Id] -VirtualMachineSize [-DisplayName -VirtualMachineSize [-DisplayName ] - [-AutoScaleEvaluationInterval ] [-AutoScaleFormula ] [-MaxTasksPerComputeNode ] + [-AutoScaleEvaluationInterval ] [-AutoScaleFormula ] [-TaskSlotsPerNode ] [-TaskSchedulingPolicy ] [-Metadata ] [-InterComputeNodeCommunicationEnabled] [-StartTask ] [-CertificateReferences ] @@ -61,7 +61,7 @@ New-AzBatchPool [-Id] -VirtualMachineSize [-DisplayName -VirtualMachineSize [-DisplayName ] - [-AutoScaleEvaluationInterval ] [-AutoScaleFormula ] [-MaxTasksPerComputeNode ] + [-AutoScaleEvaluationInterval ] [-AutoScaleFormula ] [-TaskSlotsPerNode ] [-TaskSchedulingPolicy ] [-Metadata ] [-InterComputeNodeCommunicationEnabled] [-StartTask ] [-CertificateReferences ] @@ -292,21 +292,6 @@ Accept pipeline input: False Accept wildcard characters: False ``` -### -MaxTasksPerComputeNode -Specifies the maximum number of tasks that can run on a single compute node. - -```yaml -Type: System.Nullable`1[System.Int32] -Parameter Sets: (All) -Aliases: - -Required: False -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - ### -Metadata Specifies the metadata, as key/value pairs, to add to the new pool. The key is the metadata name. @@ -430,6 +415,21 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -TaskSlotsPerNode +{{ Fill TaskSlotsPerNode Description }} + +```yaml +Type: System.Nullable`1[System.Int32] +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -UserAccount The list of user accounts to be created on each node in the pool. diff --git a/tools/BatchModelGenerator/.gitignore b/tools/BatchModelGenerator/.gitignore new file mode 100644 index 000000000000..b055cf4c27e7 --- /dev/null +++ b/tools/BatchModelGenerator/.gitignore @@ -0,0 +1 @@ +GeneratedFiles diff --git a/tools/BatchModelGenerator/BatchModelGenerator.csproj b/tools/BatchModelGenerator/BatchModelGenerator.csproj index c4fa9a3b43b4..6cf3b6cfcf05 100644 --- a/tools/BatchModelGenerator/BatchModelGenerator.csproj +++ b/tools/BatchModelGenerator/BatchModelGenerator.csproj @@ -4,7 +4,7 @@ - netcoreapp2.0 + net5.0 BatchModelGenerator BatchModelGenerator false @@ -27,6 +27,10 @@ TRACE;RELEASE;NETSTANDARD + + + + diff --git a/tools/BatchModelGenerator/Program.cs b/tools/BatchModelGenerator/Program.cs index 290fa5889e53..81d6d50e7e3f 100644 --- a/tools/BatchModelGenerator/Program.cs +++ b/tools/BatchModelGenerator/Program.cs @@ -35,110 +35,13 @@ public class Program { "Microsoft.Azure.Batch.MetadataItem", new Tuple("Name", "Value") }, }; - private static readonly Dictionary OMtoPSClassMappings = new Dictionary() + private static readonly Dictionary customMappings = new Dictionary { - {"Microsoft.Azure.Batch.AffinityInformation", "PSAffinityInformation"}, - {"Microsoft.Azure.Batch.AuthenticationTokenSettings", "PSAuthenticationTokenSettings"}, - {"Microsoft.Azure.Batch.AutoPoolSpecification", "PSAutoPoolSpecification"}, - {"Microsoft.Azure.Batch.AutoScaleRun", "PSAutoScaleRun"}, - {"Microsoft.Azure.Batch.AutoScaleRunError", "PSAutoScaleRunError"}, - {"Microsoft.Azure.Batch.AutoUserSpecification", "PSAutoUserSpecification"}, - {"Microsoft.Azure.Batch.ApplicationPackageReference", "PSApplicationPackageReference"}, - {"Microsoft.Azure.Batch.AzureBlobFileSystemConfiguration", "PSAzureBlobFileSystemConfiguration"}, - {"Microsoft.Azure.Batch.AzureFileShareConfiguration", "PSAzureFileShareConfiguration"}, - {"Microsoft.Azure.Batch.Certificate", "PSCertificate"}, - {"Microsoft.Azure.Batch.CertificateReference", "PSCertificateReference"}, - {"Microsoft.Azure.Batch.CifsMountConfiguration", "PSCifsMountConfiguration"}, - {"Microsoft.Azure.Batch.CloudJob", "PSCloudJob"}, - {"Microsoft.Azure.Batch.CloudJobSchedule", "PSCloudJobSchedule"}, - {"Microsoft.Azure.Batch.CloudPool", "PSCloudPool"}, - {"Microsoft.Azure.Batch.CloudTask", "PSCloudTask"}, - {"Microsoft.Azure.Batch.CloudServiceConfiguration", "PSCloudServiceConfiguration"}, - {"Microsoft.Azure.Batch.ComputeNode", "PSComputeNode"}, - {"Microsoft.Azure.Batch.ComputeNodeEndpointConfiguration", "PSComputeNodeEndpointConfiguration"}, - {"Microsoft.Azure.Batch.ComputeNodeError", "PSComputeNodeError"}, - {"Microsoft.Azure.Batch.ComputeNodeInformation", "PSComputeNodeInformation"}, - {"Microsoft.Azure.Batch.ComputeNodeUser", "PSComputeNodeUser"}, - {"Microsoft.Azure.Batch.ContainerConfiguration", "PSContainerConfiguration"}, - {"Microsoft.Azure.Batch.ContainerRegistry", "PSContainerRegistry"}, - {"Microsoft.Azure.Batch.DataDisk", "PSDataDisk"}, - {"Microsoft.Azure.Batch.DeleteCertificateError", "PSDeleteCertificateError"}, - {"Microsoft.Azure.Batch.DiskEncryptionConfiguration", "PSDiskEncryptionConfiguration"}, - {"Microsoft.Azure.Batch.EnvironmentSetting", "PSEnvironmentSetting"}, - {"Microsoft.Azure.Batch.ExitConditions", "PSExitConditions"}, - {"Microsoft.Azure.Batch.ExitCodeRangeMapping", "PSExitCodeRangeMapping"}, - {"Microsoft.Azure.Batch.ExitCodeMapping", "PSExitCodeMapping"}, - {"Microsoft.Azure.Batch.ExitOptions", "PSExitOptions"}, - {"Microsoft.Azure.Batch.FileProperties", "PSFileProperties"}, - {"Microsoft.Azure.Batch.ImageInformation", "PSImageInformation"}, - {"Microsoft.Azure.Batch.ImageReference", "PSImageReference"}, - {"Microsoft.Azure.Batch.InboundEndpoint", "PSInboundEndpoint"}, - {"Microsoft.Azure.Batch.InboundNatPool", "PSInboundNatPool"}, - {"Microsoft.Azure.Batch.RemoteLoginSettings", "PSRemoteLoginSettings"}, - {"Microsoft.Azure.Batch.JobConstraints", "PSJobConstraints"}, - {"Microsoft.Azure.Batch.JobExecutionInformation", "PSJobExecutionInformation"}, - {"Microsoft.Azure.Batch.JobNetworkConfiguration", "PSJobNetworkConfiguration"}, - {"Microsoft.Azure.Batch.JobManagerTask", "PSJobManagerTask"}, - {"Microsoft.Azure.Batch.JobPreparationAndReleaseTaskExecutionInformation", "PSJobPreparationAndReleaseTaskExecutionInformation"}, - {"Microsoft.Azure.Batch.JobPreparationTask", "PSJobPreparationTask"}, - {"Microsoft.Azure.Batch.JobPreparationTaskExecutionInformation", "PSJobPreparationTaskExecutionInformation"}, - {"Microsoft.Azure.Batch.JobReleaseTask", "PSJobReleaseTask"}, - {"Microsoft.Azure.Batch.JobReleaseTaskExecutionInformation", "PSJobReleaseTaskExecutionInformation"}, - {"Microsoft.Azure.Batch.JobScheduleExecutionInformation", "PSJobScheduleExecutionInformation"}, - {"Microsoft.Azure.Batch.JobScheduleStatistics", "PSJobScheduleStatistics"}, - {"Microsoft.Azure.Batch.JobSchedulingError", "PSJobSchedulingError"}, - {"Microsoft.Azure.Batch.JobSpecification", "PSJobSpecification"}, - {"Microsoft.Azure.Batch.JobStatistics", "PSJobStatistics"}, - {"Microsoft.Azure.Batch.LinuxUserConfiguration", "PSLinuxUserConfiguration"}, - {"Microsoft.Azure.Batch.MetadataItem", "PSMetadataItem"}, - {"Microsoft.Azure.Batch.MountConfiguration", "PSMountConfiguration"}, - {"Microsoft.Azure.Batch.MultiInstanceSettings", "PSMultiInstanceSettings"}, - {"Microsoft.Azure.Batch.NameValuePair", "PSNameValuePair"}, - {"Microsoft.Azure.Batch.NetworkConfiguration", "PSNetworkConfiguration"}, - {"Microsoft.Azure.Batch.NfsMountConfiguration", "PSNfsMountConfiguration"}, - {"Microsoft.Azure.Batch.NodeAgentInformation", "PSNodeAgentInformation"}, - {"Microsoft.Azure.Batch.NetworkSecurityGroupRule", "PSNetworkSecurityGroupRule"}, - {"Microsoft.Azure.Batch.NodeCounts", "PSNodeCounts"}, - {"Microsoft.Azure.Batch.NodeFile", "PSNodeFile"}, - {"Microsoft.Azure.Batch.OutputFile", "PSOutputFile"}, - {"Microsoft.Azure.Batch.OutputFileDestination", "PSOutputFileDestination"}, - {"Microsoft.Azure.Batch.OutputFileUploadOptions", "PSOutputFileUploadOptions"}, - {"Microsoft.Azure.Batch.OutputFileBlobContainerDestination", "PSOutputFileBlobContainerDestination"}, - {"Microsoft.Azure.Batch.PoolEndpointConfiguration", "PSPoolEndpointConfiguration"}, - {"Microsoft.Azure.Batch.PoolInformation", "PSPoolInformation"}, - {"Microsoft.Azure.Batch.PoolNodeCounts", "PSPoolNodeCounts"}, - {"Microsoft.Azure.Batch.PoolSpecification", "PSPoolSpecification"}, - {"Microsoft.Azure.Batch.PoolStatistics", "PSPoolStatistics"}, - {"Microsoft.Azure.Batch.PoolUsageMetrics", "PSPoolUsageMetrics"}, - {"Microsoft.Azure.Batch.PublicIPAddressConfiguration", "PSPublicIPAddressConfiguration"}, - {"Microsoft.Azure.Batch.RecentJob", "PSRecentJob"}, - {"Microsoft.Azure.Batch.ResizeError", "PSResizeError"}, - {"Microsoft.Azure.Batch.ResourceFile", "PSResourceFile"}, - {"Microsoft.Azure.Batch.ResourceStatistics", "PSResourceStatistics"}, - {"Microsoft.Azure.Batch.Schedule", "PSSchedule"}, - {"Microsoft.Azure.Batch.StartTask", "PSStartTask"}, - {"Microsoft.Azure.Batch.StartTaskInformation", "PSStartTaskInformation"}, - {"Microsoft.Azure.Batch.SubtaskInformation", "PSSubtaskInformation"}, - {"Microsoft.Azure.Batch.TaskConstraints", "PSTaskConstraints"}, - {"Microsoft.Azure.Batch.TaskContainerExecutionInformation", "PSTaskContainerExecutionInformation"}, - {"Microsoft.Azure.Batch.TaskContainerSettings", "PSTaskContainerSettings"}, - {"Microsoft.Azure.Batch.TaskCounts", "PSTaskCounts"}, - {"Microsoft.Azure.Batch.TaskDependencies", "PSTaskDependencies"}, - {"Microsoft.Azure.Batch.TaskExecutionInformation", "PSTaskExecutionInformation"}, - {"Microsoft.Azure.Batch.TaskInformation", "PSTaskInformation"}, - {"Microsoft.Azure.Batch.TaskIdRange", "PSTaskIdRange"}, - {"Microsoft.Azure.Batch.TaskFailureInformation", "PSTaskFailureInformation"}, - {"Microsoft.Azure.Batch.TaskSchedulingPolicy", "PSTaskSchedulingPolicy"}, - {"Microsoft.Azure.Batch.TaskStatistics", "PSTaskStatistics"}, - {"Microsoft.Azure.Batch.UploadBatchServiceLogsResult", "PSStartComputeNodeServiceLogUploadResult"}, - {"Microsoft.Azure.Batch.UsageStatistics", "PSUsageStatistics"}, - {"Microsoft.Azure.Batch.UserAccount", "PSUserAccount"}, - {"Microsoft.Azure.Batch.UserIdentity", "PSUserIdentity"}, - {"Microsoft.Azure.Batch.VirtualMachineConfiguration", "PSVirtualMachineConfiguration"}, - {"Microsoft.Azure.Batch.WindowsConfiguration", "PSWindowsConfiguration"}, - {"Microsoft.Azure.Batch.WindowsUserConfiguration", "PSWindowsUserConfiguration"}, + { "Microsoft.Azure.Batch.NodeFile", "PSNodeFile" }, + { "Microsoft.Azure.Batch.UploadBatchServiceLogsResult", "PSStartComputeNodeServiceLogUploadResult" }, }; + private static readonly Dictionary OMtoPSClassMappings = new Dictionary(); private static readonly Dictionary OmittedProperties = new Dictionary() { @@ -162,9 +65,10 @@ public static void Main(string[] args) return; } + AssemblyPath = args[0]; Assembly omAssembly = Assembly.LoadFile(AssemblyPath); - + CreateMappings(omAssembly); if (Directory.Exists(GeneratedFileDir)) { Directory.Delete(GeneratedFileDir, true); @@ -184,6 +88,24 @@ public static void Main(string[] args) } } + private static void CreateMappings(Assembly omAssembly) + { + foreach ((string key,string value) in customMappings) + { + OMtoPSClassMappings.Add(key, value); + } + + var typeNames = omAssembly.GetTypes().Where(t => t.GetInterface("IPropertyMetadata") != null && t.Namespace == "Microsoft.Azure.Batch" && t.IsPublic).Select(t => (t.FullName, t.Name)).ToList(); + + foreach ((string fullName, string className) in typeNames) + { + if (OMtoPSClassMappings.ContainsKey(fullName) == false) + { + OMtoPSClassMappings.Add(fullName, $"PS{className}"); + } + } + } + private static void ShowUsage() { Console.WriteLine("This executable automatically generates the PowerShell data model classes used by the Azure Batch PowerShell cmdlets."); @@ -546,7 +468,7 @@ private static void GenerateCodeFile(string fileName, CodeCompileUnit compileUni private static string GetPropertyType(Type t) { - if (t.IsEnum || t == typeof(String) || t.IsPrimitive || t == typeof(DateTime) || t == typeof(TimeSpan)) + if (t.IsEnum || t == typeof(String) || t.IsPrimitive || t == typeof(DateTime) || t == typeof(TimeSpan) || t == typeof(object)) { return t.FullName; } @@ -597,7 +519,7 @@ private static string GetPropertyType(Type t) } else { - throw new InvalidOperationException(string.Format("Unexpected type. No mapping defined for type {0}", t.Name)); + throw new InvalidOperationException(string.Format("Unexpected type. No mapping defined for type {0}", t.FullName)); } } } diff --git a/tools/BatchModelGenerator/README.md b/tools/BatchModelGenerator/README.md new file mode 100644 index 000000000000..7aa9b41f8328 --- /dev/null +++ b/tools/BatchModelGenerator/README.md @@ -0,0 +1,13 @@ +# Batch Powershell Data Model Generator + +This executable automatically generates the PowerShell data model classes used by the Azure Batch PowerShell cmdlets. + +## Usage + +```shell +dotnet run +``` + +## Updating with new models + +Once generation succeeds, you may delete the old models inside `azure-powershell\src\Batch\Batch\Models.Generated` and replace them with the new models from the `GeneratedFiles` directory. diff --git a/tools/BatchModelGenerator/readme.txt b/tools/BatchModelGenerator/readme.txt deleted file mode 100644 index 5e43e63dc08b..000000000000 --- a/tools/BatchModelGenerator/readme.txt +++ /dev/null @@ -1,4 +0,0 @@ -This executable automatically generates the PowerShell data model classes used by the Azure Batch PowerShell cmdlets. -After building the BatchModelGenerator project, the exe file will be located in bin\Debug folder. - -Usage: BatchModelGenerator.exe