From 25b221f5cd4e95ceaf8dfabda9d5d5d67e98050f Mon Sep 17 00:00:00 2001 From: David Watrous Date: Wed, 11 Aug 2021 12:28:55 -0400 Subject: [PATCH 01/18] [Batch] Updated BatchModelGenerator tool for SDK v15.1.0 and added reflection - Improved README and switched to markdown - Updated project to .NET 5 - Ignore GeneratedFiles directory both at compile time and in git - Added support for System.Object type (for upcoming VM extension settings) - Added mappings for new models Added reflection to BatchModelGenerator Fixed mapping --- tools/BatchModelGenerator/.gitignore | 1 + .../BatchModelGenerator.csproj | 6 +- tools/BatchModelGenerator/Program.cs | 133 ++++-------------- tools/BatchModelGenerator/README.md | 13 ++ tools/BatchModelGenerator/readme.txt | 4 - 5 files changed, 46 insertions(+), 111 deletions(-) create mode 100644 tools/BatchModelGenerator/.gitignore create mode 100644 tools/BatchModelGenerator/README.md delete mode 100644 tools/BatchModelGenerator/readme.txt 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..7b1846c9386a 100644 --- a/tools/BatchModelGenerator/Program.cs +++ b/tools/BatchModelGenerator/Program.cs @@ -35,110 +35,12 @@ 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.UploadBatchServiceLogsResult", "PSStartComputeNodeServiceLogUploadResult" }, }; + private static readonly Dictionary OMtoPSClassMappings = new Dictionary(); private static readonly Dictionary OmittedProperties = new Dictionary() { @@ -162,9 +64,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 +87,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."); @@ -382,7 +303,7 @@ private static void GenerateProperties(Type t, CodeTypeDeclaration codeType) string propertyType = GetPropertyType(property.PropertyType); bool isGenericCollection = property.PropertyType.IsGenericType && - (property.PropertyType.GetGenericTypeDefinition() == typeof(IList<>) || + (property.PropertyType.GetGenericTypeDefinition() == typeof(IList<>) || property.PropertyType.GetGenericTypeDefinition() == typeof(IEnumerable<>) || property.PropertyType.GetGenericTypeDefinition() == typeof(IReadOnlyList<>)); @@ -546,7 +467,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; } @@ -559,7 +480,7 @@ private static string GetPropertyType(Type t) { Type argType = t.GetGenericArguments()[0]; - if(OMToPSDictionaryConversionMappings.ContainsKey(argType.FullName)) + if (OMToPSDictionaryConversionMappings.ContainsKey(argType.FullName)) { return "IDictionary"; } @@ -597,7 +518,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 From 48518f24cdcd9d8a00ab6e480bee24cb7157209a Mon Sep 17 00:00:00 2001 From: David Watrous Date: Wed, 11 Aug 2021 12:35:33 -0400 Subject: [PATCH 02/18] [Batch] Updated to latest SDK versions Generated models Update batch version Generated against 15.3 Compile resource files Simplified test --- src/Batch/Batch.Test/Batch.Test.csproj | 4 +- .../GetBatchAccountCommandTests.cs | 2 +- src/Batch/Batch.Test/BatchTestHelpers.cs | 17 +- .../Pools/GetBatchPoolCommandTests.cs | 8 +- .../Pools/NewBatchPoolCommandTests.cs | 13 +- src/Batch/Batch.sln | 8 +- src/Batch/Batch/Batch.csproj | 10 +- .../BatchAccounts/NewBatchAccountCommand.cs | 6 +- .../Batch/Models.Generated/PSAddTaskResult.cs | 124 +++++++++++++ .../Models.Generated/PSAffinityInformation.cs | 2 +- .../PSApplicationPackageReference.cs | 2 +- .../Models.Generated/PSApplicationSummary.cs | 87 +++++++++ .../PSAuthenticationTokenSettings.cs | 2 +- .../PSAutoPoolSpecification.cs | 2 +- .../Batch/Models.Generated/PSAutoScaleRun.cs | 2 +- .../Models.Generated/PSAutoScaleRunError.cs | 2 +- .../PSAutoUserSpecification.cs | 2 +- .../PSAzureBlobFileSystemConfiguration.cs | 34 +++- .../PSAzureFileShareConfiguration.cs | 2 +- .../Batch/Models.Generated/PSBatchError.cs | 94 ++++++++++ .../Models.Generated/PSBatchErrorDetail.cs | 62 +++++++ .../Models.Generated/PSBatchPoolIdentity.cs | 95 ++++++++++ .../Batch/Models.Generated/PSCertificate.cs | 2 +- .../PSCertificateReference.cs | 2 +- .../PSCifsMountConfiguration.cs | 2 +- .../Batch/Models.Generated/PSCloudJob.cs | 26 ++- .../Models.Generated/PSCloudJobSchedule.cs | 2 +- .../Batch/Models.Generated/PSCloudPool.cs | 51 ++++-- .../PSCloudServiceConfiguration.cs | 2 +- .../Batch/Models.Generated/PSCloudTask.cs | 14 +- .../Batch/Models.Generated/PSComputeNode.cs | 25 ++- .../PSComputeNodeEndpointConfiguration.cs | 2 +- .../Models.Generated/PSComputeNodeError.cs | 2 +- .../PSComputeNodeIdentityReference.cs | 63 +++++++ .../PSComputeNodeInformation.cs | 2 +- .../Models.Generated/PSComputeNodeUser.cs | 2 +- .../PSContainerConfiguration.cs | 2 +- .../Models.Generated/PSContainerRegistry.cs | 26 ++- .../Batch/Models.Generated/PSDataDisk.cs | 2 +- .../PSDeleteCertificateError.cs | 2 +- .../Models.Generated/PSDiffDiskSettings.cs | 63 +++++++ .../PSDiskEncryptionConfiguration.cs | 2 +- .../Models.Generated/PSEnvironmentSetting.cs | 2 +- .../Batch/Models.Generated/PSErrorMessage.cs | 62 +++++++ .../Models.Generated/PSExitCodeMapping.cs | 2 +- .../PSExitCodeRangeMapping.cs | 2 +- .../Models.Generated/PSExitConditions.cs | 2 +- .../Batch/Models.Generated/PSExitOptions.cs | 2 +- .../Models.Generated/PSFileProperties.cs | 2 +- .../Batch/Models.Generated/PSHttpHeader.cs | 75 ++++++++ .../Models.Generated/PSImageInformation.cs | 2 +- .../Models.Generated/PSImageReference.cs | 15 +- .../Models.Generated/PSInboundEndpoint.cs | 2 +- .../Models.Generated/PSInboundNatPool.cs | 2 +- .../Models.Generated/PSInstanceViewStatus.cs | 91 +++++++++ .../Models.Generated/PSJobConstraints.cs | 2 +- .../PSJobExecutionInformation.cs | 2 +- .../Models.Generated/PSJobManagerTask.cs | 14 +- .../PSJobNetworkConfiguration.cs | 2 +- ...ationAndReleaseTaskExecutionInformation.cs | 2 +- .../Models.Generated/PSJobPreparationTask.cs | 2 +- ...SJobPreparationTaskExecutionInformation.cs | 2 +- .../Models.Generated/PSJobReleaseTask.cs | 2 +- .../PSJobReleaseTaskExecutionInformation.cs | 2 +- .../PSJobScheduleExecutionInformation.cs | 2 +- .../PSJobScheduleStatistics.cs | 2 +- .../Models.Generated/PSJobSchedulingError.cs | 2 +- .../Models.Generated/PSJobSpecification.cs | 26 ++- .../Batch/Models.Generated/PSJobStatistics.cs | 2 +- .../PSLinuxUserConfiguration.cs | 2 +- .../Batch/Models.Generated/PSMetadataItem.cs | 2 +- .../Models.Generated/PSMountConfiguration.cs | 2 +- .../PSMultiInstanceSettings.cs | 2 +- .../Batch/Models.Generated/PSNameValuePair.cs | 2 +- .../PSNetworkConfiguration.cs | 2 +- .../PSNetworkSecurityGroupRule.cs | 2 +- .../PSNfsMountConfiguration.cs | 2 +- .../PSNodeAgentInformation.cs | 2 +- .../Batch/Models.Generated/PSNodeCounts.cs | 2 +- .../Batch/Models.Generated/PSNodeFile.cs | 2 +- .../PSNodePlacementConfiguration.cs | 59 ++++++ .../Models.Generated/PSNodeVMExtension.cs | 117 ++++++++++++ src/Batch/Batch/Models.Generated/PSOSDisk.cs | 78 ++++++++ .../Batch/Models.Generated/PSOutputFile.cs | 2 +- .../PSOutputFileBlobContainerDestination.cs | 71 +++++++- .../PSOutputFileDestination.cs | 2 +- .../PSOutputFileUploadOptions.cs | 2 +- .../PSPoolEndpointConfiguration.cs | 2 +- .../Models.Generated/PSPoolInformation.cs | 2 +- .../Models.Generated/PSPoolNodeCounts.cs | 2 +- .../Models.Generated/PSPoolSpecification.cs | 26 +-- .../Models.Generated/PSPoolStatistics.cs | 2 +- .../Models.Generated/PSPoolUsageMetrics.cs | 2 +- .../PSPublicIPAddressConfiguration.cs | 2 +- .../Batch/Models.Generated/PSRecentJob.cs | 2 +- .../Models.Generated/PSRemoteLoginSettings.cs | 2 +- .../Batch/Models.Generated/PSResizeError.cs | 2 +- .../Batch/Models.Generated/PSResourceFile.cs | 17 +- .../Models.Generated/PSResourceStatistics.cs | 2 +- .../Batch/Models.Generated/PSSchedule.cs | 2 +- ...SStartComputeNodeServiceLogUploadResult.cs | 2 +- .../Batch/Models.Generated/PSStartTask.cs | 2 +- .../PSStartTaskInformation.cs | 2 +- .../Models.Generated/PSSubtaskInformation.cs | 2 +- .../Models.Generated/PSTaskConstraints.cs | 2 +- .../PSTaskContainerExecutionInformation.cs | 2 +- .../PSTaskContainerSettings.cs | 2 +- .../Batch/Models.Generated/PSTaskCounts.cs | 2 +- .../Models.Generated/PSTaskCountsResult.cs | 76 ++++++++ .../Models.Generated/PSTaskDependencies.cs | 2 +- .../PSTaskExecutionInformation.cs | 2 +- .../PSTaskFailureInformation.cs | 2 +- .../Batch/Models.Generated/PSTaskIdRange.cs | 2 +- .../Models.Generated/PSTaskInformation.cs | 2 +- .../PSTaskSchedulingPolicy.cs | 2 +- .../Models.Generated/PSTaskSlotCounts.cs | 86 +++++++++ .../Models.Generated/PSTaskStatistics.cs | 2 +- .../Models.Generated/PSUsageStatistics.cs | 2 +- .../Batch/Models.Generated/PSUserAccount.cs | 2 +- .../PSUserAssignedIdentity.cs | 79 ++++++++ .../Batch/Models.Generated/PSUserIdentity.cs | 2 +- .../Batch/Models.Generated/PSVMExtension.cs | 172 ++++++++++++++++++ .../PSVMExtensionInstanceView.cs | 137 ++++++++++++++ .../PSVirtualMachineConfiguration.cs | 93 +++++++++- .../Models.Generated/PSVirtualMachineInfo.cs | 78 ++++++++ .../PSWindowsConfiguration.cs | 2 +- .../PSWindowsUserConfiguration.cs | 2 +- .../Batch/Models/AccountCreateParameters.cs | 3 +- src/Batch/Batch/Models/BatchClient.Pools.cs | 2 +- src/Batch/Batch/Models/BatchClient.Tasks.cs | 22 ++- src/Batch/Batch/Models/NewPoolParameters.cs | 4 +- src/Batch/Batch/Pools/NewBatchPoolCommand.cs | 4 +- 132 files changed, 2262 insertions(+), 151 deletions(-) create mode 100644 src/Batch/Batch/Models.Generated/PSAddTaskResult.cs create mode 100644 src/Batch/Batch/Models.Generated/PSApplicationSummary.cs create mode 100644 src/Batch/Batch/Models.Generated/PSBatchError.cs create mode 100644 src/Batch/Batch/Models.Generated/PSBatchErrorDetail.cs create mode 100644 src/Batch/Batch/Models.Generated/PSBatchPoolIdentity.cs create mode 100644 src/Batch/Batch/Models.Generated/PSComputeNodeIdentityReference.cs create mode 100644 src/Batch/Batch/Models.Generated/PSDiffDiskSettings.cs create mode 100644 src/Batch/Batch/Models.Generated/PSErrorMessage.cs create mode 100644 src/Batch/Batch/Models.Generated/PSHttpHeader.cs create mode 100644 src/Batch/Batch/Models.Generated/PSInstanceViewStatus.cs create mode 100644 src/Batch/Batch/Models.Generated/PSNodePlacementConfiguration.cs create mode 100644 src/Batch/Batch/Models.Generated/PSNodeVMExtension.cs create mode 100644 src/Batch/Batch/Models.Generated/PSOSDisk.cs create mode 100644 src/Batch/Batch/Models.Generated/PSTaskCountsResult.cs create mode 100644 src/Batch/Batch/Models.Generated/PSTaskSlotCounts.cs create mode 100644 src/Batch/Batch/Models.Generated/PSUserAssignedIdentity.cs create mode 100644 src/Batch/Batch/Models.Generated/PSVMExtension.cs create mode 100644 src/Batch/Batch/Models.Generated/PSVMExtensionInstanceView.cs create mode 100644 src/Batch/Batch/Models.Generated/PSVirtualMachineInfo.cs diff --git a/src/Batch/Batch.Test/Batch.Test.csproj b/src/Batch/Batch.Test/Batch.Test.csproj index dddff3a9b42d..a02b3b5baa78 100644 --- a/src/Batch/Batch.Test/Batch.Test.csproj +++ b/src/Batch/Batch.Test/Batch.Test.csproj @@ -13,8 +13,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..5151cad10c0c 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); 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; } 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.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/Batch.csproj b/src/Batch/Batch/Batch.csproj index 6b245826b5bd..8568299f923d 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/Models.Generated/PSAddTaskResult.cs b/src/Batch/Batch/Models.Generated/PSAddTaskResult.cs new file mode 100644 index 000000000000..b69a169d79c4 --- /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.13 +// +// 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..a7ba710a8485 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.13 // // 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..953e945fe6a8 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.13 // // 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..f1b38ec90e00 --- /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.13 +// +// 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..7bf5ec32a008 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.13 // // 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..e2efd5ec4547 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.13 // // 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..9d37299c46cc 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.13 // // 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..b90b3fc7c5fa 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.13 // // 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..1a682c3feb4e 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.13 // // 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..5b7afad7f9f8 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.13 // // 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..09772901bca7 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.13 // // 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..2a7a9821f3d7 --- /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.13 +// +// 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..2ed5e8c68bd5 --- /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.13 +// +// 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..a5abbf59ef89 --- /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.13 +// +// 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..3beb3ccb2e12 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.13 // // 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..ce25fc6eeeb5 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.13 // // 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..f44b71524fe6 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.13 // // 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..8b76035ae272 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.13 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. @@ -63,6 +63,18 @@ internal PSCloudJob(Microsoft.Azure.Batch.CloudJob omObject) this.omObject = omObject; } + public System.Boolean? AllowTaskPreemption + { + get + { + return this.omObject.AllowTaskPreemption; + } + set + { + this.omObject.AllowTaskPreemption = value; + } + } + public IDictionary CommonEnvironmentSettings { get @@ -259,6 +271,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..bfa7fff9157c 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.13 // // 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..66025bbb1a50 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.13 // // 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..6651d4f4a4b1 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.13 // // 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..d3615c88a15d 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.13 // // 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..cbb7a6f71ec8 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.13 // // 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..f0fefb658782 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.13 // // 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..9b0cdd424c89 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.13 // // 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..f8f6fb59cde4 --- /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.13 +// +// 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..66df5d40f430 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.13 // // 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..6250425812b5 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.13 // // 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..1ae14640f887 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.13 // // 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..97a1bf376c45 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.13 // // 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..2e1da38c08dd 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.13 // // 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..c4d7118f6013 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.13 // // 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..bb1d9c5188c1 --- /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.13 +// +// 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..86eeb2edcf00 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.13 // // 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..6fbe5da8a4bb 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.13 // // 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..85c6c0f0ddfa --- /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.13 +// +// 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..dac8f7504562 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.13 // // 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..e307c920a3c0 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.13 // // 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..71e227b355d5 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.13 // // 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..f5d9e68c0808 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.13 // // 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..958362e6cd25 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.13 // // 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/PSHttpHeader.cs b/src/Batch/Batch/Models.Generated/PSHttpHeader.cs new file mode 100644 index 000000000000..038d943c167f --- /dev/null +++ b/src/Batch/Batch/Models.Generated/PSHttpHeader.cs @@ -0,0 +1,75 @@ +// ----------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ----------------------------------------------------------------------------- +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:5.0.13 +// +// 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 PSHttpHeader + { + + internal Microsoft.Azure.Batch.HttpHeader omObject; + + public PSHttpHeader(string name, string value) + { + this.omObject = new Microsoft.Azure.Batch.HttpHeader(name, value); + } + + internal PSHttpHeader(Microsoft.Azure.Batch.HttpHeader 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 string Value + { + get + { + return this.omObject.Value; + } + set + { + this.omObject.Value = value; + } + } + } +} diff --git a/src/Batch/Batch/Models.Generated/PSImageInformation.cs b/src/Batch/Batch/Models.Generated/PSImageInformation.cs index 43221af11e65..1f5928425e0a 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.13 // // 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..f7cff1352d51 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.13 // // 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..a25af4770b10 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.13 // // 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..624198b3f223 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.13 // // 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..781b2d8b5d75 --- /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.13 +// +// 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..8900eaec57e9 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.13 // // 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..c5147bd8646a 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.13 // // 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..c372a35772d0 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.13 // // 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..08ef9492da1f 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.13 // // 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..9b9b0217c434 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.13 // // 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..60fd6ab8101f 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.13 // // 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..0755b7b45417 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.13 // // 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..ec97b5a32baf 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.13 // // 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..1fd7495ee221 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.13 // // 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..e19a7023c1f2 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.13 // // 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..ca2cc85f92fc 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.13 // // 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..9f194c42aea0 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.13 // // 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..c1884a4e3b4d 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.13 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. @@ -69,6 +69,18 @@ internal PSJobSpecification(Microsoft.Azure.Batch.JobSpecification omObject) this.omObject = omObject; } + public System.Boolean? AllowTaskPreemption + { + get + { + return this.omObject.AllowTaskPreemption; + } + set + { + this.omObject.AllowTaskPreemption = value; + } + } + public IDictionary CommonEnvironmentSettings { get @@ -216,6 +228,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..71dbf9c874f3 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.13 // // 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..7c125026c86b 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.13 // // 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..2f9b6eb2fd55 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.13 // // 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..27654518c92a 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.13 // // 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..f145c0692c92 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.13 // // 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..27ec3a620431 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.13 // // 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..929c99229e1b 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.13 // // 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..c33624998e0e 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.13 // // 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..c8c6a651c8e9 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.13 // // 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..332519378b64 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.13 // // 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..4463270f8b44 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.13 // // 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..89f796c98eaa 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.13 // // 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..5ccca2748672 --- /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.13 +// +// 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..3e366c9a19e9 --- /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.13 +// +// 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..f40155405f25 --- /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.13 +// +// 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..51d27a3ae40e 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.13 // // 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..31c4e1748b04 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.13 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. @@ -34,11 +34,20 @@ public partial class PSOutputFileBlobContainerDestination internal Microsoft.Azure.Batch.OutputFileBlobContainerDestination omObject; + private PSComputeNodeIdentityReference identityReference; + + private IList uploadHeaders; + 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 +65,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 @@ -63,5 +97,40 @@ public string Path return this.omObject.Path; } } + + public IList UploadHeaders + { + get + { + if (((this.uploadHeaders == null) + && (this.omObject.UploadHeaders != null))) + { + List list; + list = new List(); + IEnumerator enumerator; + enumerator = this.omObject.UploadHeaders.GetEnumerator(); + for ( + ; enumerator.MoveNext(); + ) + { + list.Add(new PSHttpHeader(enumerator.Current)); + } + this.uploadHeaders = list; + } + return this.uploadHeaders; + } + set + { + if ((value == null)) + { + this.omObject.UploadHeaders = null; + } + else + { + this.omObject.UploadHeaders = new List(); + } + this.uploadHeaders = value; + } + } } } diff --git a/src/Batch/Batch/Models.Generated/PSOutputFileDestination.cs b/src/Batch/Batch/Models.Generated/PSOutputFileDestination.cs index 385363ef25b4..f3383204a688 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.13 // // 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..777d2713d156 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.13 // // 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..9fccfef9aae9 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.13 // // 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..2760c7ec59f8 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.13 // // 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..e58261836ce7 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.13 // // 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..fbcbd4effe75 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.13 // // 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..00b601a7d483 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.13 // // 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..d22465af2013 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.13 // // 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..e15f54f4552a 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.13 // // 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..2454baf6ecaa 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.13 // // 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..296ec3902c32 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.13 // // 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..d856638871a2 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.13 // // 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..b84416a100f0 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.13 // // 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..7be69f42cfc4 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.13 // // 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..cd2692ea1669 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.13 // // 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..dd83c29d8458 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.13 // // 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..cc1b1ce34f03 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.13 // // 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..893e3276631b 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.13 // // 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..591ec8d8bc85 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.13 // // 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..f360e1e7f7cd 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.13 // // 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..89d182610e32 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.13 // // 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..f597b6bbd2bb 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.13 // // 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..703ede4e4eb3 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.13 // // 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..b1d363b5008d --- /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.13 +// +// 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..23ed466755d8 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.13 // // 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..354b3cd45484 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.13 // // 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..dc333b949d62 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.13 // // 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..cf1f22eeaf78 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.13 // // 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..eb5463fb8021 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.13 // // 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..bb8051a85cc0 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.13 // // 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..c1ff77436b2c --- /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.13 +// +// 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..2c771dd39267 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.13 // // 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..ca02d858df10 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.13 // // 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..607004189199 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.13 // // 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..943c4b2da9eb --- /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.13 +// +// 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..9d311b7aea8c 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.13 // // 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..30d636bef03c --- /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.13 +// +// 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..ef260355c6a7 --- /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.13 +// +// 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..d7383850fce1 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.13 // // 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..56880895f7d6 --- /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.13 +// +// 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..ef590e676326 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.13 // // 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..50d343afe526 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.13 // // 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.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/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, From d308dbf186e1a7b339e9b02f98ff6a034e3d4e83 Mon Sep 17 00:00:00 2001 From: Mike Pateras Date: Wed, 19 Jan 2022 15:53:11 -0500 Subject: [PATCH 03/18] Add parameter IdentityId for User Assigned Identities. --- .../BatchAccounts/NewBatchAccountCommand.cs | 23 +++++++++++++++---- src/Batch/Batch/help/New-AzBatchAccount.md | 18 ++++++++++++++- 2 files changed, 35 insertions(+), 6 deletions(-) diff --git a/src/Batch/Batch/BatchAccounts/NewBatchAccountCommand.cs b/src/Batch/Batch/BatchAccounts/NewBatchAccountCommand.cs index 9bb4de295c71..076edc324b26 100644 --- a/src/Batch/Batch/BatchAccounts/NewBatchAccountCommand.cs +++ b/src/Batch/Batch/BatchAccounts/NewBatchAccountCommand.cs @@ -17,6 +17,7 @@ using Microsoft.Azure.Management.Batch.Models; using System.Collections; using System.Collections.Generic; +using System.Linq; using System.Management.Automation; using Constants = Microsoft.Azure.Commands.Batch.Utils.Constants; @@ -62,11 +63,25 @@ public class NewBatchAccountCommand : BatchCmdletBase [Parameter(Mandatory = false, HelpMessage = "The public network access type")] public PublicNetworkAccessType PublicNetworkAccess { get; set; } - [Parameter(Mandatory = false, HelpMessage = "The identity associated with the BatchAccount")] + [Parameter(Mandatory = false, HelpMessage = "The type of identity associated with the BatchAccount.\r\nIf set to UserAssigned, the UserAssignedIdentities parameter must also be provided.")] public ResourceIdentityType IdentityType { get; set; } = ResourceIdentityType.None; + [Parameter(Mandatory = false, HelpMessage = "An array containing user assigned identities associated with the BatchAccount. This parameter is only used when IdentityType is set to UserAssigned.")] + public string[] IdentityId { get; set; } + protected override void ExecuteCmdletImpl() { + Dictionary identityDictionary = null; + if (IdentityType == ResourceIdentityType.UserAssigned) + { + if (IdentityId == null) + { + throw new PSArgumentNullException("IdentityId", "IdentityId must be provided when IdentityType is set to UserAssigned."); + } + + identityDictionary = IdentityId.ToDictionary(i => i, i => new UserAssignedIdentities()); + } + AccountCreateParameters parameters = new AccountCreateParameters(this.ResourceGroupName, this.AccountName, this.Location) { AutoStorageAccountId = this.AutoStorageAccountId, @@ -75,11 +90,9 @@ protected override void ExecuteCmdletImpl() KeyVaultUrl = this.KeyVaultUrl, Tags = this.Tag, PublicNetworkAccess = this.PublicNetworkAccess, - // 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) + Identity = new BatchAccountIdentity(IdentityType, null, null, identityDictionary) }; + BatchAccountContext context = BatchClient.CreateAccount(parameters); WriteObject(context); } diff --git a/src/Batch/Batch/help/New-AzBatchAccount.md b/src/Batch/Batch/help/New-AzBatchAccount.md index c92ab78540fa..2f09f5d5ea58 100644 --- a/src/Batch/Batch/help/New-AzBatchAccount.md +++ b/src/Batch/Batch/help/New-AzBatchAccount.md @@ -17,7 +17,8 @@ Creates a Batch account. New-AzBatchAccount [-AccountName] [-Location] [-ResourceGroupName] [[-AutoStorageAccountId] ] [-PoolAllocationMode ] [-KeyVaultId ] [-KeyVaultUrl ] [-Tag ] [-PublicNetworkAccess ] - [-IdentityType ] [-DefaultProfile ] [] + [-IdentityType ] [-IdentityId ] [-DefaultProfile ] + [] ``` ## DESCRIPTION @@ -101,6 +102,21 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -IdentityId +The list of user assigned identities associated with the BatchAccount. This parameter is only used when IdentityType is set to UserAssigned. + +```yaml +Type: System.String[] +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -IdentityType The identity associated with the BatchAccount From fd2c485d7f68473d996e63a6e672ceeb1be79d48 Mon Sep 17 00:00:00 2001 From: Mike Pateras Date: Fri, 21 Jan 2022 11:30:30 -0500 Subject: [PATCH 04/18] Added GetSupportedVirtualMachineSku command Added alias parameter --- .../GetSupportedVirtualMachineSkuTests.cs | 110 ++++++++++++++++++ .../GetSupportedVirtualMachineSkuCommand.cs | 34 ++++++ .../Batch/Models/BatchClient.Locations.cs | 42 +++++++ src/Batch/Batch/Models/PSCloudPool.cs | 39 +++++++ src/Batch/Batch/Models/PSSkuCapability.cs | 30 +++++ src/Batch/Batch/Models/PSSupportedSku.cs | 48 ++++++++ .../Batch/Properties/Resources.Designer.cs | 20 +++- src/Batch/Batch/Properties/Resources.resx | 6 + 8 files changed, 328 insertions(+), 1 deletion(-) create mode 100644 src/Batch/Batch.Test/Locations/GetSupportedVirtualMachineSkuTests.cs create mode 100644 src/Batch/Batch/Locations/GetSupportedVirtualMachineSkuCommand.cs create mode 100644 src/Batch/Batch/Models/PSCloudPool.cs create mode 100644 src/Batch/Batch/Models/PSSkuCapability.cs create mode 100644 src/Batch/Batch/Models/PSSupportedSku.cs diff --git a/src/Batch/Batch.Test/Locations/GetSupportedVirtualMachineSkuTests.cs b/src/Batch/Batch.Test/Locations/GetSupportedVirtualMachineSkuTests.cs new file mode 100644 index 000000000000..1b9865bec278 --- /dev/null +++ b/src/Batch/Batch.Test/Locations/GetSupportedVirtualMachineSkuTests.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 GetSupportedVirtualMachineSkuTests : RMTestBase + { + private readonly GetSupportedVirtualMachineSkuCommand cmdlet; + private readonly Mock batchClientMock; + private readonly Mock commandRuntimeMock; + + public GetSupportedVirtualMachineSkuTests(ITestOutputHelper output) + { + XunitTracingInterceptor.AddToContext(new XunitTracingInterceptor(output)); + batchClientMock = new Mock(); + commandRuntimeMock = new Mock(); + cmdlet = new GetSupportedVirtualMachineSkuCommand() + { + CommandRuntime = commandRuntimeMock.Object, + BatchClient = batchClientMock.Object + }; + } + + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void TestGetSupportedSku() + { + string location = "westus"; + + List sku = CreateSku(); + batchClientMock.Setup(client => client.GetSupportedVirtualMachineSku(location, default, default)).Returns(sku); + + cmdlet.Location = location; + cmdlet.ExecuteCmdlet(); + + commandRuntimeMock.Verify(r => r.WriteObject(sku, true), Times.Once()); + } + + + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void TestGetSupportedSkusWithODataParameters() + { + string location = "westus"; + + List sku = CreateSku(); + batchClientMock.Setup(client => client.GetSupportedVirtualMachineSku(location, 3, "testfilter")).Returns(sku); + + cmdlet.Location = location; + cmdlet.MaxResultCount = 3; + cmdlet.Filter = "testfilter"; + cmdlet.ExecuteCmdlet(); + + commandRuntimeMock.Verify(r => r.WriteObject(sku, true), Times.Once()); + } + + private List CreateSku() + { + List sku = 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 sku; + } + } +} \ No newline at end of file diff --git a/src/Batch/Batch/Locations/GetSupportedVirtualMachineSkuCommand.cs b/src/Batch/Batch/Locations/GetSupportedVirtualMachineSkuCommand.cs new file mode 100644 index 000000000000..09d4d59b4716 --- /dev/null +++ b/src/Batch/Batch/Locations/GetSupportedVirtualMachineSkuCommand.cs @@ -0,0 +1,34 @@ +using Microsoft.Azure.Commands.Batch.Models; +using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; +using System.Collections.Generic; +using System.Management.Automation; + +namespace Microsoft.Azure.Commands.Batch +{ + [Cmdlet("Get", ResourceManager.Common.AzureRMConstants.AzurePrefix + "BatchSupportedVirtualMachineSku"), OutputType(typeof(PSSupportedSku))] + [Alias("Get-AzBatchSupportedVMSku")] + public class GetSupportedVirtualMachineSkuCommand : 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? MaxResultCount { 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.GetSupportedVirtualMachineSku(Location, MaxResultCount, Filter); + WriteObject(skus, true); + } + } +} diff --git a/src/Batch/Batch/Models/BatchClient.Locations.cs b/src/Batch/Batch/Models/BatchClient.Locations.cs index 3fbc290703c8..262aa07d32ef 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 GetSupportedVirtualMachineSku(string location) + { + return GetSupportedVirtualMachineSku(location, default, default); + } + + public virtual List GetSupportedVirtualMachineSku(string location, int? maxResultCount, string filter) + { + if (string.IsNullOrEmpty(location)) + { + throw new ArgumentNullException("location"); + } + + if (maxResultCount == default && filter == default) + { + WriteVerbose(string.Format(Resources.GettingSupportedVirtualMachineSku, location)); + } + else + { + WriteVerbose(string.Format(Resources.GettingSupportedVirtualMachineSku, location, maxResultCount, filter)); + } + + IPage response = BatchManagementClient.Location.ListSupportedVirtualMachineSkus(location, maxResultCount, filter); + List psSupportedSku = response.Select(ConvertToPSSupportedSku).ToList(); + + while (response.NextPageLink != null) + { + response = BatchManagementClient.Location.ListSupportedVirtualMachineSkusNext(response.NextPageLink); + psSupportedSku.AddRange(response.Select(ConvertToPSSupportedSku)); + } + + return psSupportedSku; + } + + 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/PSCloudPool.cs b/src/Batch/Batch/Models/PSCloudPool.cs new file mode 100644 index 000000000000..06756138c5c2 --- /dev/null +++ b/src/Batch/Batch/Models/PSCloudPool.cs @@ -0,0 +1,39 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using System; +using System.Collections.Generic; +using System.Linq; +using Microsoft.Azure.Management.Batch.Models; + +namespace Microsoft.Azure.Commands.Batch.Models +{ + public partial class PSCloudPool + { + /// + /// This property is an alias of TaskSlotsPerNode. + /// + public int? MaxTasksPerComputeNode + { + get + { + return TaskSlotsPerNode; + } + set + { + TaskSlotsPerNode = value; + } + } + } +} \ No newline at end of file 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/Properties/Resources.Designer.cs b/src/Batch/Batch/Properties/Resources.Designer.cs index fb92effbaeeb..aedf280d0244 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 Skus for location {0}.. + /// + internal static string GettingSupportedVirtualMachineSku { + get { + return ResourceManager.GetString("GettingSupportedVirtualMachineSku", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Getting all supported virtual machine Skus for location {0}. MaxResultCount: {1}, Filter: {2}.. + /// + internal static string GettingSupportedVirtualMachineSkuWithODataParameters { + get { + return ResourceManager.GetString("GettingSupportedVirtualMachineSkuWithODataParameters", 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..cadaaafde1cd 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 Skus for location {0}. + + + Getting all supported virtual machine Skus for location {0}. MaxResultCount: {1}, Filter: {2}. + \ No newline at end of file From 4b59c76f71d050a1ac7b9982535e361269a5a0ec Mon Sep 17 00:00:00 2001 From: Mike Pateras Date: Fri, 21 Jan 2022 11:33:32 -0500 Subject: [PATCH 05/18] Added GetBatchTaskSlotCount command. Fix GetTaskCLotCounts Aliased MaxTasksPerComputeNode Added deprecation notice --- .../GetBatchTaskSlotCountCommandTests.cs | 89 +++++++++++++++++++ src/Batch/Batch/Pools/NewBatchPoolCommand.cs | 4 +- .../Tasks/GetBatchTaskSlotCountCommand.cs | 44 +++++++++ 3 files changed, 136 insertions(+), 1 deletion(-) create mode 100644 src/Batch/Batch.Test/Tasks/GetBatchTaskSlotCountCommandTests.cs create mode 100644 src/Batch/Batch/Tasks/GetBatchTaskSlotCountCommand.cs diff --git a/src/Batch/Batch.Test/Tasks/GetBatchTaskSlotCountCommandTests.cs b/src/Batch/Batch.Test/Tasks/GetBatchTaskSlotCountCommandTests.cs new file mode 100644 index 000000000000..708c6bcc5a71 --- /dev/null +++ b/src/Batch/Batch.Test/Tasks/GetBatchTaskSlotCountCommandTests.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 GetBatchTaskSlotCountCommandTests + { + private readonly GetBatchTaskSlotCountCommand cmdlet; + private readonly Mock batchClientMock; + private readonly Mock commandRuntimeMock; + + public GetBatchTaskSlotCountCommandTests(Xunit.Abstractions.ITestOutputHelper output) + { + ServiceManagement.Common.Models.XunitTracingInterceptor.AddToContext(new ServiceManagement.Common.Models.XunitTracingInterceptor(output)); + batchClientMock = new Mock(); + commandRuntimeMock = new Mock(); + cmdlet = new GetBatchTaskSlotCountCommand() + { + CommandRuntime = commandRuntimeMock.Object, + BatchClient = batchClientMock.Object, + }; + } + + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void GetBatchTaskSlotCountTest() + { + // Setup cmdlet to get task slot count 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 slotCount = null; + commandRuntimeMock + .Setup(r => r.WriteObject(It.IsAny())) + .Callback(p => { + slotCount = (PSTaskSlotCounts)p; + }); + + cmdlet.ExecuteCmdlet(); + + Assert.Equal(6, slotCount.Active); + Assert.Equal(10, slotCount.Running); + Assert.Equal(6, slotCount.Completed); + Assert.Equal(4, slotCount.Succeeded); + Assert.Equal(2, slotCount.Failed); + } + } +} \ No newline at end of file diff --git a/src/Batch/Batch/Pools/NewBatchPoolCommand.cs b/src/Batch/Batch/Pools/NewBatchPoolCommand.cs index ceaa0e5763c6..11b1d9f73fc2 100644 --- a/src/Batch/Batch/Pools/NewBatchPoolCommand.cs +++ b/src/Batch/Batch/Pools/NewBatchPoolCommand.cs @@ -18,7 +18,7 @@ using System.Collections; using System.Collections.Generic; using System.Management.Automation; -using Constants = Microsoft.Azure.Commands.Batch.Utils.Constants; +using Microsoft.WindowsAzure.Commands.Common.CustomAttributes; namespace Microsoft.Azure.Commands.Batch { @@ -70,6 +70,8 @@ public class NewBatchPoolCommand : BatchObjectModelCmdletBase [Parameter] [ValidateNotNullOrEmpty] + [GenericBreakingChange("MaxTasksPerComputeNode alias will be removed in an upcoming breaking change release", "4.2.0")] + [Alias("MaxTasksPerComputeNode")] public int? TaskSlotsPerNode { get; set; } [Parameter] diff --git a/src/Batch/Batch/Tasks/GetBatchTaskSlotCountCommand.cs b/src/Batch/Batch/Tasks/GetBatchTaskSlotCountCommand.cs new file mode 100644 index 000000000000..d3ac5904436c --- /dev/null +++ b/src/Batch/Batch/Tasks/GetBatchTaskSlotCountCommand.cs @@ -0,0 +1,44 @@ +// ---------------------------------------------------------------------------------- +// +// 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 + "BatchTaskSlotCount", DefaultParameterSetName = Constants.IdParameterSet), OutputType(typeof(PSTaskSlotCounts))] + public class GetBatchTaskSlotCountCommand : 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 taskSlotCount = BatchClient.GetTaskSlotCounts(options); + + WriteObject(taskSlotCount); + } + } +} From d6b592ee3fb2ecadb985b751cb9667c9cbcdb32d Mon Sep 17 00:00:00 2001 From: Mike Pateras Date: Fri, 21 Jan 2022 11:25:28 -0500 Subject: [PATCH 06/18] Fix tests Fixed flaky test TaskCount test updates --- src/Batch/Batch.Test/BatchTestHelpers.cs | 31 +++++++++++++------ .../ScenarioTests/CertificateTests.ps1 | 4 +-- .../Batch.Test/ScenarioTests/JobTests.cs | 3 +- .../Batch.Test/ScenarioTests/JobTests.ps1 | 17 ++-------- .../Batch.Test/ScenarioTests/PoolTests.ps1 | 4 +-- .../ScenarioTests/ScenarioTestHelpers.cs | 4 +-- .../Tasks/GetBatchTaskCountsCommandTests.cs | 26 +++++++++------- 7 files changed, 48 insertions(+), 41 deletions(-) diff --git a/src/Batch/Batch.Test/BatchTestHelpers.cs b/src/Batch/Batch.Test/BatchTestHelpers.cs index 5151cad10c0c..db237ed02b9f 100644 --- a/src/Batch/Batch.Test/BatchTestHelpers.cs +++ b/src/Batch/Batch.Test/BatchTestHelpers.cs @@ -712,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 slotCount = new ProxyModels.TaskSlotCounts(); + slotCount.Active = requiredTaskSlots * activeTasks; + slotCount.Running = requiredTaskSlots * runningTasks; + slotCount.Succeeded = requiredTaskSlots * succeededTasks; + slotCount.Failed = requiredTaskSlots * failedTasks; + slotCount.Completed = requiredTaskSlots * completedTasks; + + ProxyModels.TaskCountsResult result = new ProxyModels.TaskCountsResult(); + result.TaskCounts = taskCounts; + result.TaskSlotCounts = slotCount; - response.Body = taskCounts; + response.Body = result; return response; } 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.cs b/src/Batch/Batch.Test/ScenarioTests/JobTests.cs index dd0120cdf485..5bb69e7a3f42 100644 --- a/src/Batch/Batch.Test/ScenarioTests/JobTests.cs +++ b/src/Batch/Batch.Test/ScenarioTests/JobTests.cs @@ -68,12 +68,13 @@ public void IfJobSetsAutoFailure_ItCompletesWhenAnyTaskFails() { BatchController controller = BatchController.NewInstance; BatchAccountContext context = null; + string poolId = "testPool"; string jobId = "testJobCompletesWhenTaskFails"; string taskId = "taskId-1"; PSCloudJob completedJob = null; controller.RunPsTestWorkflow( _logger, - () => { return new string[] { string.Format("IfJobSetsAutoFailure-ItCompletesWhenAnyTaskFails '{0}' '{1}'", jobId, taskId) }; }, + () => { return new string[] { string.Format("IfJobSetsAutoFailure-ItCompletesWhenAnyTaskFails '{0}' '{1}' '{2}'", poolId, jobId, taskId) }; }, null, () => { diff --git a/src/Batch/Batch.Test/ScenarioTests/JobTests.ps1 b/src/Batch/Batch.Test/ScenarioTests/JobTests.ps1 index 45a77ac760a1..7ccea47229b5 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 @@ -151,7 +151,7 @@ Tests create job completes when any task fails #> function IfJobSetsAutoFailure-ItCompletesWhenAnyTaskFails { - param([string]$jobId, [string]$taskId) + param([string]$poolId, [string]$jobId, [string]$taskId) $context = New-Object Microsoft.Azure.Commands.Batch.Test.ScenarioTests.ScenarioTestContext @@ -159,19 +159,8 @@ function IfJobSetsAutoFailure-ItCompletesWhenAnyTaskFails $targetOS = "*" $cmd = "cmd /c exit 3" - $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.CloudServiceConfiguration = $paasConfiguration - $autoPoolSpec = New-Object Microsoft.Azure.Commands.Batch.Models.PSAutoPoolSpecification - $autoPoolSpec.PoolSpecification = $poolSpec - $autoPoolSpec.AutoPoolIdPrefix = $autoPoolIdPrefix = "TestSpecPrefix" - $autoPoolSpec.KeepAlive = $FALSE - $autoPoolSpec.PoolLifeTimeOption = $poolLifeTime = ([Microsoft.Azure.Batch.Common.PoolLifeTimeOption]::Job) $poolInformation = New-Object Microsoft.Azure.Commands.Batch.Models.PSPoolInformation - $poolInformation.AutoPoolSpecification = $autoPoolSpec + $poolInformation.PoolId = $poolId $ExitConditions = New-Object Microsoft.Azure.Commands.Batch.Models.PSExitConditions $ExitOptions = New-Object Microsoft.Azure.Commands.Batch.Models.PSExitOptions diff --git a/src/Batch/Batch.Test/ScenarioTests/PoolTests.ps1 b/src/Batch/Batch.Test/ScenarioTests/PoolTests.ps1 index 95e8fbdb3728..382ac0425081 100644 --- a/src/Batch/Batch.Test/ScenarioTests/PoolTests.ps1 +++ b/src/Batch/Batch.Test/ScenarioTests/PoolTests.ps1 @@ -36,8 +36,8 @@ function Test-PoolCRUD $vmSize = "standard_d1_v2" $publisher = "microsoft-azure-batch" $offer = "ubuntu-server-container" - $osSKU = "16-04-lts" - $nodeAgent = "batch.node.ubuntu 16.04" + $osSKU = "20-04-lts" + $nodeAgent = "batch.node.ubuntu 20.04" $imageRef = New-Object Microsoft.Azure.Commands.Batch.Models.PSImageReference -ArgumentList @($offer, $publisher, $osSKU) $iaasConfiguration = New-Object Microsoft.Azure.Commands.Batch.Models.PSVirtualMachineConfiguration -ArgumentList @($imageRef, $nodeAgent) $iaasConfiguration.ContainerConfiguration = New-Object Microsoft.Azure.Commands.Batch.Models.PSContainerConfiguration 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/Tasks/GetBatchTaskCountsCommandTests.cs b/src/Batch/Batch.Test/Tasks/GetBatchTaskCountsCommandTests.cs index 02819368295f..fd0d050cb7a1 100644 --- a/src/Batch/Batch.Test/Tasks/GetBatchTaskCountsCommandTests.cs +++ b/src/Batch/Batch.Test/Tasks/GetBatchTaskCountsCommandTests.cs @@ -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 From d58f8acc3c3a259dce6cf71511cd5c702ca860f7 Mon Sep 17 00:00:00 2001 From: Mike Pateras Date: Mon, 31 Jan 2022 11:10:58 -0500 Subject: [PATCH 07/18] Get and List ComputeNodeExtensions Fix type Command execution implementation Added unit tests Added tests Fixed tests --- src/Batch/Batch.Test/BatchTestHelpers.cs | 44 ++++ ...etBatchComputeNodeExtensionCommandTests.cs | 218 ++++++++++++++++++ .../GetBatchComputeNodeExtensionCommand.cs | 76 ++++++ .../BatchClient.ComputeNodeExtensions.cs | 89 +++++++ src/Batch/Batch/Models/BatchClient.cs | 11 +- .../ListComputeNodeExtensionParameters.cs | 54 +++++ src/Batch/Batch/Models/PSPagedEnumerable.cs | 5 +- .../Batch/Properties/Resources.Designer.cs | 18 ++ src/Batch/Batch/Properties/Resources.resx | 6 + src/Batch/Batch/Utils/Constants.cs | 1 + 10 files changed, 514 insertions(+), 8 deletions(-) create mode 100644 src/Batch/Batch.Test/ComputeNodeExtensions/GetBatchComputeNodeExtensionCommandTests.cs create mode 100644 src/Batch/Batch/ComputeNodeExtensions/GetBatchComputeNodeExtensionCommand.cs create mode 100644 src/Batch/Batch/Models/BatchClient.ComputeNodeExtensions.cs create mode 100644 src/Batch/Batch/Models/ListComputeNodeExtensionParameters.cs diff --git a/src/Batch/Batch.Test/BatchTestHelpers.cs b/src/Batch/Batch.Test/BatchTestHelpers.cs index db237ed02b9f..65bb6a954a8c 100644 --- a/src/Batch/Batch.Test/BatchTestHelpers.cs +++ b/src/Batch/Batch.Test/BatchTestHelpers.cs @@ -557,6 +557,50 @@ public static RequestInterceptor ExamineRequestInterceptor(Action assertAc return response; } + /// + /// Builds a ComputeNodeExtensionGetResponse object + /// + public static AzureOperationResponse CreateComputeNodeExtensionGetResponse(Azure.Batch.VMExtension extension) + { + var response = new AzureOperationResponse(); + response.Response = new HttpResponseMessage(HttpStatusCode.OK); + + ProxyModels.NodeVMExtension proxyExtension = CreateProxyExtension(extension); + response.Body = proxyExtension; + + return response; + } + + /// + /// Builds a ComputeNodeExtensionListResponse object + /// + public static AzureOperationResponse, ProxyModels.ComputeNodeExtensionListHeaders> CreateComputeNodeExtensionListResponse(IEnumerable extensions) + { + var response = new AzureOperationResponse, ProxyModels.ComputeNodeExtensionListHeaders>(); + response.Response = new HttpResponseMessage(HttpStatusCode.OK); + + List proxyExtensions = new List(); + + foreach (Azure.Batch.VMExtension extension in extensions) + { + ProxyModels.NodeVMExtension proxyExtension = CreateProxyExtension(extension); + proxyExtensions.Add(proxyExtension); + } + + response.Body = new MockPagedEnumerable(proxyExtensions); + + return response; + } + + private static ProxyModels.NodeVMExtension CreateProxyExtension(Azure.Batch.VMExtension extension) + { + ProxyModels.NodeVMExtension proxyExtension = new ProxyModels.NodeVMExtension(); + proxyExtension.InstanceView = new ProxyModels.VMExtensionInstanceView(); + proxyExtension.VmExtension = new ProxyModels.VMExtension(extension.Name, extension.Publisher, extension.Type); + proxyExtension.ProvisioningState = ProvisioningState.Succeeded.ToString(); + return proxyExtension; + } + /// /// Builds a CloudJobScheduleGetResponse object /// diff --git a/src/Batch/Batch.Test/ComputeNodeExtensions/GetBatchComputeNodeExtensionCommandTests.cs b/src/Batch/Batch.Test/ComputeNodeExtensions/GetBatchComputeNodeExtensionCommandTests.cs new file mode 100644 index 000000000000..f3a9a39b466c --- /dev/null +++ b/src/Batch/Batch.Test/ComputeNodeExtensions/GetBatchComputeNodeExtensionCommandTests.cs @@ -0,0 +1,218 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +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; +using System.Collections.Generic; +using System.Diagnostics; +using System.Linq; +using System.Management.Automation; +using System.Threading.Tasks; +using Xunit; +using BatchClient = Microsoft.Azure.Commands.Batch.Models.BatchClient; +using ProxyModels = Microsoft.Azure.Batch.Protocol.Models; + +namespace Microsoft.Azure.Commands.Batch.Test.ComputeNodeExtensions +{ + public class GetBatchComputeNodeExtensionCommandTests : WindowsAzure.Commands.Test.Utilities.Common.RMTestBase + { + private GetBatchComputeNodeExtensionCommand cmdlet; + private Mock batchClientMock; + private Mock commandRuntimeMock; + + public GetBatchComputeNodeExtensionCommandTests(Xunit.Abstractions.ITestOutputHelper output) + { + ServiceManagement.Common.Models.XunitTracingInterceptor.AddToContext(new ServiceManagement.Common.Models.XunitTracingInterceptor(output)); + batchClientMock = new Mock(); + commandRuntimeMock = new Mock(); + cmdlet = new GetBatchComputeNodeExtensionCommand() + { + CommandRuntime = commandRuntimeMock.Object, + BatchClient = batchClientMock.Object, + }; + } + + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void GetBatchComputeNodeExtensionTest() + { + string extensionName = "testExtension"; + string publisher = "testPublisher"; + string type = "testType"; + + // Setup cmdlet to get a compute node by id + BatchAccountContext context = BatchTestHelpers.CreateBatchContextWithKeys(); + cmdlet.BatchContext = context; + cmdlet.PoolId = "testPool"; + cmdlet.ComputeNodeId = "testComputeNode"; + cmdlet.ExtensionName = extensionName; + + VMExtension extension = new VMExtension(extensionName, publisher, type); + + // Build an extension instead of querying the service on a Get ComputeNodeExtension call + AzureOperationResponse response = BatchTestHelpers.CreateComputeNodeExtensionGetResponse(extension); + RequestInterceptor interceptor = BatchTestHelpers.CreateFakeServiceResponseInterceptor< + ProxyModels.ComputeNodeExtensionGetOptions, + AzureOperationResponse>(response); + + cmdlet.AdditionalBehaviors = new List() { interceptor }; + + // Setup the cmdlet to write pipeline output to a list that can be examined later + List pipeline = new List(); + commandRuntimeMock.Setup(r => r.WriteObject(It.IsAny())).Callback(c => pipeline.Add((PSNodeVMExtension)c)); + + cmdlet.ExecuteCmdlet(); + + // Verify that the cmdlet wrote the compute node returned from the OM to the pipeline + Assert.Single(pipeline); + + PSVMExtension pipelineExtension = pipeline[0].VmExtension; + Assert.NotNull(pipelineExtension); + Assert.Equal("testExtension", pipelineExtension.Name); + Assert.Equal("testPublisher", pipelineExtension.Publisher); + Assert.Equal("testType", pipelineExtension.Type); + } + + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void GetBatchComputeNodeExtensionODataTest() + { + string extensionName = "testExtension"; + string publisher = "testPublisher"; + string type = "testType"; + + // Setup cmdlet to get a compute node by id + BatchAccountContext context = BatchTestHelpers.CreateBatchContextWithKeys(); + cmdlet.BatchContext = context; + cmdlet.PoolId = "testPool"; + cmdlet.ComputeNodeId = "testComputeNode"; + cmdlet.ExtensionName = extensionName; + cmdlet.Select = "ExtensionName,Publisher"; + + VMExtension extension = new VMExtension(extensionName, publisher, type); + + // Fetch the OData clauses off the request. The OData clauses are applied after user provided RequestInterceptors, so a ResponseInterceptor is used. + AzureOperationResponse getResponse = BatchTestHelpers.CreateComputeNodeExtensionGetResponse(extension); + RequestInterceptor requestInterceptor = BatchTestHelpers.CreateFakeServiceResponseInterceptor< + ProxyModels.ComputeNodeExtensionGetOptions, + AzureOperationResponse>(getResponse); + + string requestSelect = null; + + ResponseInterceptor responseInterceptor = new ResponseInterceptor((response, request) => + { + ProxyModels.ComputeNodeExtensionGetOptions options = (ProxyModels.ComputeNodeExtensionGetOptions)request.Options; + requestSelect = options.Select; + + return Task.FromResult(response); + }); + + cmdlet.AdditionalBehaviors = new List() { requestInterceptor, responseInterceptor }; + + cmdlet.ExecuteCmdlet(); + + Assert.Equal(cmdlet.Select, requestSelect); + } + + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void ListBatchComputeNodeExtensionsTest() + { + // Setup cmdlet to get a compute node by id + BatchAccountContext context = BatchTestHelpers.CreateBatchContextWithKeys(); + cmdlet.BatchContext = context; + cmdlet.PoolId = "testPool"; + cmdlet.ComputeNodeId = "testComputeNode"; + + int count = 5; + + // Build an extension instead of querying the service on a Get ComputeNodeExtension call + AzureOperationResponse, ProxyModels.ComputeNodeExtensionListHeaders> response = BatchTestHelpers.CreateComputeNodeExtensionListResponse(CreateTestExtensions(count)); + RequestInterceptor interceptor = BatchTestHelpers.CreateFakeServiceResponseInterceptor< + ProxyModels.ComputeNodeExtensionListOptions, + AzureOperationResponse, ProxyModels.ComputeNodeExtensionListHeaders>>(response); + + cmdlet.AdditionalBehaviors = new List() { interceptor }; + + // Setup the cmdlet to write pipeline output to a list that can be examined later + List pipeline = new List(); + commandRuntimeMock.Setup(r => r.WriteObject(It.IsAny())).Callback(c => pipeline.Add((PSNodeVMExtension)c)); + + cmdlet.ExecuteCmdlet(); + + // Verify that the cmdlet wrote the compute node returned from the OM to the pipeline + Assert.Equal(count, pipeline.Count); + for (int i = 1; i <= count; i++) + { + PSVMExtension extension = pipeline[i-1].VmExtension; + Assert.Equal($"testExtension{i}", extension.Name); + Assert.Equal($"testPublisher{i}", extension.Publisher); + Assert.Equal($"testType{i}", extension.Type); + } + } + + private IEnumerable CreateTestExtensions(int count) + { + for (int i = 1; i <= count; i++) + { + yield return new VMExtension($"testExtension{i}", $"testPublisher{i}", $"testType{i}"); + } + } + + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void ListBatchComputeNodeExtensionsWithMaxCountTest() + { + int maxCount = 3; + + // Setup cmdlet to get a compute node by id + BatchAccountContext context = BatchTestHelpers.CreateBatchContextWithKeys(); + cmdlet.BatchContext = context; + cmdlet.PoolId = "testPool"; + cmdlet.ComputeNodeId = "testComputeNode"; + cmdlet.MaxCount = maxCount; + + int count = 5; + + // Build an extension instead of querying the service on a Get ComputeNodeExtension call + AzureOperationResponse, ProxyModels.ComputeNodeExtensionListHeaders> response = BatchTestHelpers.CreateComputeNodeExtensionListResponse(CreateTestExtensions(count)); + RequestInterceptor interceptor = BatchTestHelpers.CreateFakeServiceResponseInterceptor< + ProxyModels.ComputeNodeExtensionListOptions, + AzureOperationResponse, ProxyModels.ComputeNodeExtensionListHeaders>>(response); + + cmdlet.AdditionalBehaviors = new List() { interceptor }; + + // Setup the cmdlet to write pipeline output to a list that can be examined later + List pipeline = new List(); + commandRuntimeMock.Setup(r => r.WriteObject(It.IsAny())).Callback(c => pipeline.Add((PSNodeVMExtension)c)); + + cmdlet.ExecuteCmdlet(); + + // Verify that the cmdlet wrote the compute node returned from the OM to the pipeline + Assert.Equal(maxCount, pipeline.Count); + for (int i = 1; i <= maxCount; i++) + { + PSVMExtension extension = pipeline[i - 1].VmExtension; + Assert.Equal($"testExtension{i}", extension.Name); + Assert.Equal($"testPublisher{i}", extension.Publisher); + Assert.Equal($"testType{i}", extension.Type); + } + } + } +} diff --git a/src/Batch/Batch/ComputeNodeExtensions/GetBatchComputeNodeExtensionCommand.cs b/src/Batch/Batch/ComputeNodeExtensions/GetBatchComputeNodeExtensionCommand.cs new file mode 100644 index 000000000000..eaafe45647e0 --- /dev/null +++ b/src/Batch/Batch/ComputeNodeExtensions/GetBatchComputeNodeExtensionCommand.cs @@ -0,0 +1,76 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using Microsoft.Azure.Batch; +using Microsoft.Azure.Commands.Batch.Models; +using System; +using System.Management.Automation; +using System.Security; +using Constants = Microsoft.Azure.Commands.Batch.Utils.Constants; + +namespace Microsoft.Azure.Commands.Batch +{ + [Cmdlet("Get", ResourceManager.Common.AzureRMConstants.AzurePrefix + "BatchComputeNodeExtension"), OutputType(typeof(PSNodeVMExtension))] + public class GetBatchComputeNodeExtensionCommand : BatchObjectModelCmdletBase + { + private int maxCount = Constants.DefaultMaxCount; + + [Parameter(Position = 0, ParameterSetName = Constants.IdParameterSet, Mandatory = true, ValueFromPipelineByPropertyName = true, HelpMessage = "The id of the pool to which the extension's compute node belongs.")] + [ValidateNotNullOrEmpty] + public string PoolId { get; set; } + + [Parameter(Position = 0, ParameterSetName = Constants.ParentObjectParameterSet, Mandatory = true, ValueFromPipelineByPropertyName = true, HelpMessage = "The pool to which the extension's compute node belongs.")] + [ValidateNotNullOrEmpty] + public PSCloudPool Pool { get; set; } + + [Parameter(Position = 1, ParameterSetName = Constants.IdParameterSet, Mandatory = true, ValueFromPipelineByPropertyName = true, HelpMessage = "The id of the compute node to which the extension belongs.")] + [Parameter(Position = 1, ParameterSetName = Constants.ParentObjectParameterSet, Mandatory = true, ValueFromPipelineByPropertyName = true)] + [ValidateNotNullOrEmpty] + public string ComputeNodeId { get; set; } + + [Parameter(Position = 2, ParameterSetName = Constants.IdParameterSet, ValueFromPipelineByPropertyName = true, HelpMessage = "The name of the extension to get.")] + [Parameter(Position = 2, ParameterSetName = Constants.ParentObjectParameterSet, ValueFromPipelineByPropertyName = true)] + [ValidateNotNullOrEmpty] + public string ExtensionName { get; set; } + + [Parameter(ParameterSetName = Constants.IdParameterSet)] + [Parameter(ParameterSetName = Constants.ParentObjectParameterSet)] + [ValidateNotNullOrEmpty] + public string Select { get; set; } + + + [Parameter(ParameterSetName = Constants.IdParameterSet)] + [Parameter(ParameterSetName = Constants.ParentObjectParameterSet)] + [ValidateNotNullOrEmpty] + public int MaxCount + { + get { return maxCount; } + set { maxCount = value; } + } + + protected override void ExecuteCmdletImpl() + { + ListComputeNodeExtensionParameters options = new ListComputeNodeExtensionParameters(BatchContext, PoolId, Pool, ComputeNodeId, ExtensionName, AdditionalBehaviors) + { + Select = Select, + MaxCount = MaxCount, + }; + + foreach (PSNodeVMExtension extension in BatchClient.ListComputeNodeExtension(options)) + { + WriteObject(extension); + } + } + } +} diff --git a/src/Batch/Batch/Models/BatchClient.ComputeNodeExtensions.cs b/src/Batch/Batch/Models/BatchClient.ComputeNodeExtensions.cs new file mode 100644 index 000000000000..5d8787eca8e0 --- /dev/null +++ b/src/Batch/Batch/Models/BatchClient.ComputeNodeExtensions.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.Commands.Batch.Properties; +using System; +using System.Collections; +using System.Collections.Generic; + +namespace Microsoft.Azure.Commands.Batch.Models +{ + public partial class BatchClient + { + /// + /// Lists the compute node extensions matching the specified filter options. + /// + /// The options to use when querying for compute node extensions. + /// The compute node extensions matching the specified filter options. + public IEnumerable ListComputeNodeExtension(ListComputeNodeExtensionParameters options) + { + if (options == null) + { + throw new ArgumentNullException("options"); + } + + string poolId = options.Pool == null ? options.PoolId : options.Pool.Id; + if (string.IsNullOrEmpty(poolId)) + { + throw new ArgumentNullException("options.PoolId"); + } + + string nodeId = options.ComputeNodeId; + if (string.IsNullOrEmpty(options.ComputeNodeId)) + { + throw new ArgumentNullException("options.ComputeNodeId"); + } + + PoolOperations poolOperations = options.Context.BatchOMClient.PoolOperations; + + string extensionName = options.ExtensionName; + if (!string.IsNullOrEmpty(options.ExtensionName)) + { + // Get the single compute node extension matching the specified id. + return GetExtensionByName(poolId, nodeId, extensionName, poolOperations, options); + } + else + { + // List compute nodes on the specified pool and compute node. + return ListExtensions(poolId, nodeId, poolOperations, options); + } + } + + private IEnumerable GetExtensionByName(string poolId, string nodeId, string extensionName, PoolOperations poolOperations, ListComputeNodeExtensionParameters options) + { + WriteVerbose(string.Format(Resources.GetComputeNodeExtensionByName, extensionName, nodeId, poolId)); + + ODATADetailLevel getDetailLevel = new ODATADetailLevel(selectClause: options.Select); + NodeVMExtension extension = poolOperations.GetComputeNodeExtension(poolId, nodeId, extensionName, detailLevel: getDetailLevel, additionalBehaviors: options.AdditionalBehaviors); + PSNodeVMExtension psExtension = new PSNodeVMExtension(extension); + + return new PSNodeVMExtension[] { psExtension }; + } + + private IEnumerable ListExtensions(string poolId, string nodeId, PoolOperations poolOperations, ListComputeNodeExtensionParameters options) + { + WriteVerbose(string.Format(Resources.GetComputeNodeExtensions, poolId, nodeId)); + + IPagedEnumerable extensions = poolOperations.ListComputeNodeExtensions(poolId, nodeId, options.AdditionalBehaviors); + return PSPagedEnumerable.CreateWithMaxCount + ( + extensions, + e => { return new PSNodeVMExtension(e); }, + options.MaxCount, + () => WriteMaxCount(options.MaxCount) + ); + } + } +} diff --git a/src/Batch/Batch/Models/BatchClient.cs b/src/Batch/Batch/Models/BatchClient.cs index 60f46b9d466b..928c6c51c558 100644 --- a/src/Batch/Batch/Models/BatchClient.cs +++ b/src/Batch/Batch/Models/BatchClient.cs @@ -18,6 +18,7 @@ using Microsoft.Azure.Management.Batch; using Microsoft.Azure.Management.Internal.Resources; using System; +using Microsoft.Azure.Commands.Batch.Properties; namespace Microsoft.Azure.Commands.Batch.Models { @@ -62,10 +63,12 @@ public BatchClient(IAzureContext context) private void WriteVerbose(string message) { - if (VerboseLogger != null) - { - VerboseLogger(message); - } + VerboseLogger?.Invoke(message); + } + + private void WriteMaxCount(int count) + { + WriteVerbose(string.Format(Resources.MaxCount, count)); } } } diff --git a/src/Batch/Batch/Models/ListComputeNodeExtensionParameters.cs b/src/Batch/Batch/Models/ListComputeNodeExtensionParameters.cs new file mode 100644 index 000000000000..cba2c9c00eb5 --- /dev/null +++ b/src/Batch/Batch/Models/ListComputeNodeExtensionParameters.cs @@ -0,0 +1,54 @@ +// ---------------------------------------------------------------------------------- +// +// 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 System.Collections.Generic; + +namespace Microsoft.Azure.Commands.Batch.Models +{ + public class ListComputeNodeExtensionParameters : PoolOperationParameters + { + public ListComputeNodeExtensionParameters(BatchAccountContext context, string poolId, PSCloudPool pool, string computeNodeId, IEnumerable additionalBehaviors = null) + : base(context, poolId, pool, additionalBehaviors) + { + ComputeNodeId = computeNodeId; + } + + public ListComputeNodeExtensionParameters(BatchAccountContext context, string poolId, PSCloudPool pool, string computeNodeId, string extensionName, IEnumerable additionalBehaviors = null) + : this(context, poolId, pool, computeNodeId, additionalBehaviors) + { + ExtensionName = extensionName; + } + + /// + /// The Id of the compute node that the extension(s) searched for belong to. + /// + public string ComputeNodeId { get; set; } + + /// + /// If specified, the single extension with this name will be returned. + /// + public string ExtensionName { get; set; } + + /// + /// The OData select clause to use. + /// + public string Select { get; set; } + + /// + /// The maximum number of compute nodes to return. + /// + public int MaxCount { get; set; } + } +} diff --git a/src/Batch/Batch/Models/PSPagedEnumerable.cs b/src/Batch/Batch/Models/PSPagedEnumerable.cs index 64823a3ac09f..eb2cf4e52a20 100644 --- a/src/Batch/Batch/Models/PSPagedEnumerable.cs +++ b/src/Batch/Batch/Models/PSPagedEnumerable.cs @@ -72,10 +72,7 @@ internal static IEnumerable CreateWithMaxCount( } else { - if (logMaxCount != null) - { - logMaxCount(); - } + logMaxCount?.Invoke(); return asyncEnumerable.Take(maxCount); } } diff --git a/src/Batch/Batch/Properties/Resources.Designer.cs b/src/Batch/Batch/Properties/Resources.Designer.cs index aedf280d0244..5badd07cfaa1 100644 --- a/src/Batch/Batch/Properties/Resources.Designer.cs +++ b/src/Batch/Batch/Properties/Resources.Designer.cs @@ -411,6 +411,24 @@ internal static string GetComputeNodeByOData { } } + /// + /// Looks up a localized string similar to Getting compute node extension "{0}" from compute node "{1}" on pool "{2}".. + /// + internal static string GetComputeNodeExtensionByName { + get { + return ResourceManager.GetString("GetComputeNodeExtensionByName", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Getting compute nodes extensions from pool "{0}", compute node {1}.. + /// + internal static string GetComputeNodeExtensions { + get { + return ResourceManager.GetString("GetComputeNodeExtensions", resourceCulture); + } + } + /// /// Looks up a localized string similar to Getting all compute nodes under pool "{0}".. /// diff --git a/src/Batch/Batch/Properties/Resources.resx b/src/Batch/Batch/Properties/Resources.resx index cadaaafde1cd..520d16d48966 100644 --- a/src/Batch/Batch/Properties/Resources.resx +++ b/src/Batch/Batch/Properties/Resources.resx @@ -514,4 +514,10 @@ Getting all supported virtual machine Skus for location {0}. MaxResultCount: {1}, Filter: {2}. + + Getting compute node extension "{0}" from compute node "{1}" on pool "{2}". + + + Getting compute nodes extensions from pool "{0}", compute node {1}. + \ No newline at end of file diff --git a/src/Batch/Batch/Utils/Constants.cs b/src/Batch/Batch/Utils/Constants.cs index 9693aa248fc8..71e1828ecab7 100644 --- a/src/Batch/Batch/Utils/Constants.cs +++ b/src/Batch/Batch/Utils/Constants.cs @@ -31,6 +31,7 @@ public class Constants public const string AzureBatchPoolUsageMetrics = "AzureBatchPoolUsageMetrics"; public const string AzureBatchPoolResize = "AzureBatchPoolResize"; public const string AzureBatchComputeNode = "AzureBatchComputeNode"; + public const string AzureBatchComputeNodeExtension = "AzureBatchComputeNodeExtension"; public const string AzureBatchComputeNodeScheduling = "AzureBatchComputeNodeScheduling"; public const string AzureBatchComputeNodeUser = "AzureBatchComputeNodeUser"; public const string AzureBatchJobSchedule = "AzureBatchJobSchedule"; From 332e4193fd93110b4eee067a69fb16ab3e94d569 Mon Sep 17 00:00:00 2001 From: Mike Pateras Date: Fri, 21 Jan 2022 11:28:51 -0500 Subject: [PATCH 08/18] Change log, command mappings, and help files Command mappings Changelog and help files Updated changelog Help files Updated help Updated help Fixed help Updated property name --- .../Accounts/AzureRmAlias/Mappings.json | 2 + src/Batch/Batch/Az.Batch.psd1 | 7 +- src/Batch/Batch/ChangeLog.md | 22 ++ src/Batch/Batch/help/Az.Batch.md | 9 + .../help/Get-AzBatchComputeNodeExtension.md | 197 ++++++++++++++++++ .../Batch/help/Get-AzBatchLocationQuota.md | 2 +- .../Get-AzBatchSupportedVirtualMachineSku.md | 114 ++++++++++ .../Batch/help/Get-AzBatchTaskSlotCount.md | 132 ++++++++++++ src/Batch/Batch/help/New-AzBatchAccount.md | 4 +- src/Batch/Batch/help/New-AzBatchPool.md | 42 ++-- .../Batch/help/Set-AzBatchApplication.md | 2 + 11 files changed, 508 insertions(+), 25 deletions(-) create mode 100644 src/Batch/Batch/help/Get-AzBatchComputeNodeExtension.md create mode 100644 src/Batch/Batch/help/Get-AzBatchSupportedVirtualMachineSku.md create mode 100644 src/Batch/Batch/help/Get-AzBatchTaskSlotCount.md diff --git a/src/Accounts/Accounts/AzureRmAlias/Mappings.json b/src/Accounts/Accounts/AzureRmAlias/Mappings.json index 81a564096520..ed5253695ccd 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-AzBatchSupportedVirtualMachineSku": "Get-AzureBatchSupportedVirtualMachineSku", "Get-AzBatchTask": "Get-AzureBatchTask", "New-AzBatchTask": "New-AzureBatchTask", "Remove-AzBatchTask": "Remove-AzureBatchTask", @@ -365,6 +366,7 @@ "Set-AzBatchTask": "Set-AzureBatchTask", "Stop-AzBatchTask": "Stop-AzureBatchTask", "Get-AzBatchComputeNode": "Get-AzureBatchComputeNode", + "Get-AzBatchComputeNodeExtension": "Get-AzureBatchComputeNodeExtension", "Get-AzBatchJobSchedule": "Get-AzureBatchJobSchedule", "New-AzBatchJobSchedule": "New-AzureBatchJobSchedule", "Remove-AzBatchJobSchedule": "Remove-AzureBatchJobSchedule", diff --git a/src/Batch/Batch/Az.Batch.psd1 b/src/Batch/Batch/Az.Batch.psd1 index 23aef28c609c..459ec18bcd1f 100644 --- a/src/Batch/Batch/Az.Batch.psd1 +++ b/src/Batch/Batch/Az.Batch.psd1 @@ -113,7 +113,9 @@ CmdletsToExport = 'Remove-AzBatchAccount', 'Get-AzBatchAccount', 'Remove-AzBatchJobSchedule', 'Get-AzBatchTaskCount', 'Get-AzBatchPoolNodeCount', 'Start-AzBatchComputeNodeServiceLogUpload', - 'New-AzBatchResourceFile' + 'New-AzBatchResourceFile', + 'Get-AzBatchSupportedVirtualMachineSku', 'Get-AzBatchTaskSlotCount', + 'Get-AzBatchComputeNodeExtension' # Variables to export from this module # VariablesToExport = @() @@ -123,7 +125,8 @@ AliasesToExport = 'Reactivate-AzBatchTask', 'Get-AzBatchSubscriptionQuotas', 'Get-AzBatchAccountKeys', 'Get-AzBatchJobStatistics', 'Get-AzBatchLocationQuotas', 'Get-AzBatchPoolNodeCounts', 'Get-AzBatchPoolStatistics', 'Get-AzBatchPoolUsageMetrics', - 'Get-AzBatchRemoteLoginSettings', 'Get-AzBatchTaskCounts' + 'Get-AzBatchRemoteLoginSettings', 'Get-AzBatchTaskCounts', + 'Get-AzBatchSupportedVMSku' # DSC resources to export from this module # DscResourcesToExport = @() diff --git a/src/Batch/Batch/ChangeLog.md b/src/Batch/Batch/ChangeLog.md index 194ca64bd0b9..42e891a12c58 100644 --- a/src/Batch/Batch/ChangeLog.md +++ b/src/Batch/Batch/ChangeLog.md @@ -19,6 +19,28 @@ --> ## Upcoming Release +* Updated Az.Batch to use `Microsoft.Azure.Batch` SDK version 15.3.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. + - Added a new 'Get-AzBatchComputeNodeExtension' command, which gets a specific extension by name, or a list of all extensions, for a given compute node. +* Updated Az.Batch`Microsoft.Azure.Management.Batch` SDK version 14.0.0. + - Added a new `Get-AzBatchSupportedVirtualMachineSku` command, which gets the list of Batch-supported Virtual Machine VM sizes available at a given location. + - Added a new `Get-AzBatchTaskSlotCount` command, which gets the number of task slots required by a given job. + - 'MaxTasksPerComputeNode' has been renamed to 'TaskSlotsPerNode', to match a change in functionality. + - 'MaxTasksPerComputeNode' will remain as an alias but will be removed in a coming update. + ## Version 3.1.1 * Removed assembly `System.Text.Encodings.Web.dll` [#16062] diff --git a/src/Batch/Batch/help/Az.Batch.md b/src/Batch/Batch/help/Az.Batch.md index 6a4d835e4e93..4508142c37b6 100644 --- a/src/Batch/Batch/help/Az.Batch.md +++ b/src/Batch/Batch/help/Az.Batch.md @@ -56,6 +56,9 @@ Gets the certificates in a Batch account. ### [Get-AzBatchComputeNode](Get-AzBatchComputeNode.md) Gets Batch compute nodes from a pool. +### [Get-AzBatchComputeNodeExtension](Get-AzBatchComputeNodeExtension.md) +Gets Batch compute node extensions from a compute node. + ### [Get-AzBatchJob](Get-AzBatchJob.md) Gets Batch jobs for a Batch account or job schedule. @@ -101,12 +104,18 @@ Gets the subtask information of the specified task. ### [Get-AzBatchSupportedImage](Get-AzBatchSupportedImage.md) Gets Batch supported images for a Batch account. +### [Get-AzBatchSupportedVirtualMachineSku](Get-AzBatchSupportedVirtualMachineSku.md) +Gets the list of Batch supported Virtual Machine VM sizes available at the given location. + ### [Get-AzBatchTask](Get-AzBatchTask.md) Gets the Batch tasks for a job. ### [Get-AzBatchTaskCount](Get-AzBatchTaskCount.md) Gets the task counts for the specified job. +### [Get-AzBatchTaskSlotCount](Get-AzBatchTaskSlotCount.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-AzBatchComputeNodeExtension.md b/src/Batch/Batch/help/Get-AzBatchComputeNodeExtension.md new file mode 100644 index 000000000000..b0c5482f0b39 --- /dev/null +++ b/src/Batch/Batch/help/Get-AzBatchComputeNodeExtension.md @@ -0,0 +1,197 @@ +--- +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-azbatchcommandnodeextension +schema: 2.0.0 +--- + +# Get-AzBatchComputeNodeExtension + +## SYNOPSIS +Gets Batch compute node extensions from a compute node. + +## SYNTAX + +### Id +``` +Get-AzBatchComputeNodeExtension [-PoolId] [-ComputeNodeId] [[-ExtensionName] ] + [-Select ] [-MaxCount ] -BatchContext + [-DefaultProfile ] [] +``` + +### ParentObject +``` +Get-AzBatchComputeNodeExtension [-Pool] [-ComputeNodeId] [[-ExtensionName] ] + [-Select ] [-MaxCount ] -BatchContext + [-DefaultProfile ] [] +``` + +## DESCRIPTION +If an extension name is provided, a single extension with a matching name is returned from the provided compute node (if found). Otherwise, all extensions on teh compute node is returned. Further extension details can be found on the extension's VmExtension Property. + +## EXAMPLES + +### Example 1 Get all extensions from a compute node. +```powershell +PS C:\> Get-AzBatchComputeNodeExtension "testPool" "testNode" -BatchContext $context + +InstanceView ProvisioningState VmExtension +------------ ----------------- ----------- +Microsoft.Azure.Commands.Batch.Models.PSVMExtensionInstanceView Succeeded Microsoft.Azure.Commands.Batch.Models.PSVMExtension +Microsoft.Azure.Commands.Batch.Models.PSVMExtensionInstanceView Failed Microsoft.Azure.Commands.Batch.Models.PSVMExtension +``` + +### Example 2 Get a specific extension from a compute node. + +```powershell +PS C:\> Get-AzBatchComputeNodeExtension "testPool" "testNode" "secretext" -BatchContext $context + +InstanceView ProvisioningState VmExtension +------------ ----------------- ----------- +Microsoft.Azure.Commands.Batch.Models.PSVMExtensionInstanceView Failed Microsoft.Azure.Commands.Batch.Models.PSVMExtension +``` + +## 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-AzBatchAccountKeys 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 +``` + +### -ComputeNodeId +The id of the compute node to which the extension belongs. + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: True +Position: 1 +Default value: None +Accept pipeline input: True (ByPropertyName) +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 +``` + +### -ExtensionName +The name of the extension to get. + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: False +Position: 2 +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -MaxCount +{{ Fill MaxCount Description }} + +```yaml +Type: System.Int32 +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Pool +The pool to which the extension's compute node belongs. + +```yaml +Type: Microsoft.Azure.Commands.Batch.Models.PSCloudPool +Parameter Sets: ParentObject +Aliases: + +Required: True +Position: 0 +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -PoolId +The id of the pool to which the extension's compute node belongs. + +```yaml +Type: System.String +Parameter Sets: Id +Aliases: + +Required: True +Position: 0 +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -Select +{{ Fill Select Description }} + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +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.PSCloudPool + +### Microsoft.Azure.Commands.Batch.BatchAccountContext + +## OUTPUTS + +### Microsoft.Azure.Commands.Batch.Models.PSNodeVMExtension + +## NOTES + +## RELATED LINKS diff --git a/src/Batch/Batch/help/Get-AzBatchLocationQuota.md b/src/Batch/Batch/help/Get-AzBatchLocationQuota.md index 7a75d265be36..b34e2c13a10c 100644 --- a/src/Batch/Batch/help/Get-AzBatchLocationQuota.md +++ b/src/Batch/Batch/help/Get-AzBatchLocationQuota.md @@ -28,7 +28,7 @@ Get-AzBatchLocationQuota -Location "westus" ``` ```output - AccountQuota Location +AccountQuota Location ------------ -------- 1 westus ``` diff --git a/src/Batch/Batch/help/Get-AzBatchSupportedVirtualMachineSku.md b/src/Batch/Batch/help/Get-AzBatchSupportedVirtualMachineSku.md new file mode 100644 index 000000000000..6b4a0c7a7e3b --- /dev/null +++ b/src/Batch/Batch/help/Get-AzBatchSupportedVirtualMachineSku.md @@ -0,0 +1,114 @@ +--- +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-azbatchsupportedvirtualmachinesku +schema: 2.0.0 +--- + +# Get-AzBatchSupportedVirtualMachineSku + +## SYNOPSIS +Gets the list of Batch supported Virtual Machine VM sizes available at the given location. + +## SYNTAX + +``` +Get-AzBatchSupportedVirtualMachineSku [-Location] [[-MaxResultCount] ] [[-Filter] ] + [-DefaultProfile ] [] +``` + +## DESCRIPTION + +## EXAMPLES + +### Example 1 Get supported skus for a region +```powershell +PS C:\> Get-AzBatchSupportedVirtualMachineSku 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 +``` + +### -MaxResultCount +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=6.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-AzBatchTaskSlotCount.md b/src/Batch/Batch/help/Get-AzBatchTaskSlotCount.md new file mode 100644 index 000000000000..44f473a229a1 --- /dev/null +++ b/src/Batch/Batch/help/Get-AzBatchTaskSlotCount.md @@ -0,0 +1,132 @@ +--- +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-azbatchtaskslotcount +schema: 2.0.0 +--- + +# Get-AzBatchTaskSlotCount + +## SYNOPSIS +Gets the task slot counts for the specified job. + +## SYNTAX + +### Id (Default) +``` +Get-AzBatchTaskSlotCount [-JobId] -BatchContext + [-DefaultProfile ] [] +``` + +### ParentObject +``` +Get-AzBatchTaskSlotCount [[-Job] ] -BatchContext + [-DefaultProfile ] [] +``` + +## DESCRIPTION +The **Get-AzBatchTaskSlotCount** 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" -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-AzBatchAccountKeys 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 slot 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 diff --git a/src/Batch/Batch/help/New-AzBatchAccount.md b/src/Batch/Batch/help/New-AzBatchAccount.md index 2f09f5d5ea58..f3e1426bf0b4 100644 --- a/src/Batch/Batch/help/New-AzBatchAccount.md +++ b/src/Batch/Batch/help/New-AzBatchAccount.md @@ -50,6 +50,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' ``` @@ -124,7 +126,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 4a4574a2aca3..c6447f943307 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: MaxTasksPerComputeNode + +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/src/Batch/Batch/help/Set-AzBatchApplication.md b/src/Batch/Batch/help/Set-AzBatchApplication.md index d8ddd4c05ec0..bf5987e882ca 100644 --- a/src/Batch/Batch/help/Set-AzBatchApplication.md +++ b/src/Batch/Batch/help/Set-AzBatchApplication.md @@ -37,6 +37,8 @@ The command does not change the default version or display name of the applicati Updates settings for the specified application. (autogenerated) + + ```powershell Set-AzBatchApplication -AccountName 'ContosoBatch' -ApplicationName 'Litware' -DefaultVersion -ResourceGroupName 'ContosoBatchGroup' ``` From 05b2619e28681ef19e128933bea6327a7416a74f Mon Sep 17 00:00:00 2001 From: Mike Pateras Date: Tue, 15 Feb 2022 15:59:43 -0500 Subject: [PATCH 09/18] Scenario Test Recordings --- .../TestBatchAccountEndToEnd.json | 635 +- ...stCreateNewBatchAccountWithNoPublicIp.json | 14184 +--------------- ...eateNewBatchAccountWithSystemIdentity.json | 365 +- .../TestGetBatchSupportedImages.json | 31 +- .../TestCreatePoolWithApplicationPackage.json | 548 +- .../TestUpdateApplicationPackage.json | 230 +- .../TestUpdatePoolWithApplicationPackage.json | 261 +- .../TestUploadApplicationPackage.json | 132 +- .../TestAddApplication.json | 84 +- .../TestCancelCertificateDelete.json | 788 +- .../TestCertificateCrudOperations.json | 100 +- ...DisableAndEnableComputeNodeScheduling.json | 1099 +- ...TestGetComputeNodeRemoteLoginSettings.json | 76 +- .../TestRebootAndReimageComputeNode.json | 226 +- .../TestRemoveComputeNodes.json | 1144 +- .../TestComputeNodeUserEndToEnd.json | 124 +- .../TestGetRemoteDesktopProtocolFile.json | 74 +- ...TestDisableEnableTerminateJobSchedule.json | 210 +- .../TestJobScheduleCRUD.json | 212 +- ...toFailure_ItCompletesWhenAnyTaskFails.json | 1500 +- .../TestDisableEnableTerminateJob.json | 210 +- .../TestJobCRUD.json | 212 +- .../TestGetLocationQuotas.json | 56 +- .../TestAutoScaleActions.json | 212 +- .../TestPoolCRUD.json | 210 +- .../TestResizeAndStopResizePool.json | 191 +- .../TestCreateTaskCollection.json | 233 +- .../TestListAllSubtasks.json | 7556 +++++++- .../TestTaskCRUD.json | 275 +- .../TestTerminateTask.json | 208 +- 30 files changed, 12610 insertions(+), 18776 deletions(-) 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..49235f60c3a5 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" + "197f4667-a0cf-4410-89de-9487b307fd20" ], "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.19044.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.54" ] }, "ResponseHeaders": { @@ -30,13 +30,13 @@ "11999" ], "x-ms-request-id": [ - "775f0ab0-6e40-442f-aa61-09c82e02b915" + "5452fc57-d186-464d-9afa-4a974501deb0" ], "x-ms-correlation-request-id": [ - "775f0ab0-6e40-442f-aa61-09c82e02b915" + "5452fc57-d186-464d-9afa-4a974501deb0" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T225048Z:775f0ab0-6e40-442f-aa61-09c82e02b915" + "NORTHCENTRALUS:20220215T191843Z:5452fc57-d186-464d-9afa-4a974501deb0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -45,7 +45,7 @@ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 22:50:47 GMT" + "Tue, 15 Feb 2022 19:18:43 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -54,29 +54,29 @@ "-1" ], "Content-Length": [ - "4461" + "7848" ] }, - "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 \"Sweden Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-01-01\",\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 \"Sweden Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-01-01\",\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 \"Sweden Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-01-01\",\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 \"Sweden Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-01-01\",\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 \"2022-01-01\",\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 \"Sweden Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-01-01\",\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 \"Sweden Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-01-01\",\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 \"Sweden Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-01-01\",\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 \"Sweden Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-01-01\",\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 \"Sweden Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-01-01\",\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/ps9194?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmEyMzU4YzItNDJmMi00MTM4LTg4ZGYtN2M2OGNmNjA4YmVhL3Jlc291cmNlZ3JvdXBzL3BzOTE5ND9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "695e8285-5a8f-40d6-8dd4-3ac00f311e58" + "13c0c5ab-4f4a-43ca-bb0d-352c108221cf" ], "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.19044.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.54" ], "Content-Type": [ "application/json; charset=utf-8" @@ -96,13 +96,13 @@ "1199" ], "x-ms-request-id": [ - "09fece86-8065-4731-ae26-46f44034cd69" + "885d375a-55ce-44f1-b156-e1fe7bb81b9e" ], "x-ms-correlation-request-id": [ - "09fece86-8065-4731-ae26-46f44034cd69" + "885d375a-55ce-44f1-b156-e1fe7bb81b9e" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T225048Z:09fece86-8065-4731-ae26-46f44034cd69" + "NORTHCENTRALUS:20220215T191845Z:885d375a-55ce-44f1-b156-e1fe7bb81b9e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -111,10 +111,10 @@ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 22:50:48 GMT" + "Tue, 15 Feb 2022 19:18:45 GMT" ], "Content-Length": [ - "161" + "165" ], "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/ps9194\",\r\n \"name\": \"ps9194\",\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/ps9194/providers/Microsoft.Batch/batchAccounts/ps952?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmEyMzU4YzItNDJmMi00MTM4LTg4ZGYtN2M2OGNmNjA4YmVhL3Jlc291cmNlR3JvdXBzL3BzOTE5NC9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvcHM5NTI/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" + "99bb7e87-2155-4dc6-9f02-e156b2be9f8a" ], "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.19044.", + "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/ps9194/providers/Microsoft.Batch/batchAccounts/ps952/operationResults/dfceb222-8200-46a8-b6ca-effd426cf979?api-version=2021-06-01" ], "Retry-After": [ "15" ], "x-ms-request-id": [ - "d9d7fac7-94b6-4343-830a-2569615ad5c9" + "dfceb222-8200-46a8-b6ca-effd426cf979" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -180,13 +180,13 @@ "1199" ], "x-ms-correlation-request-id": [ - "cefdcbcd-d303-40a1-8e02-6014dda93f78" + "f1390002-ce28-4420-8147-af235d8fce88" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T225050Z:cefdcbcd-d303-40a1-8e02-6014dda93f78" + "NORTHCENTRALUS:20220215T191848Z:f1390002-ce28-4420-8147-af235d8fce88" ], "Date": [ - "Wed, 10 Jun 2020 22:50:49 GMT" + "Tue, 15 Feb 2022 19:18:48 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/ps9194/providers/Microsoft.Batch/batchAccounts/ps952?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmEyMzU4YzItNDJmMi00MTM4LTg4ZGYtN2M2OGNmNjA4YmVhL3Jlc291cmNlR3JvdXBzL3BzOTE5NC9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvcHM5NTI/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" + "7d4fb4a1-2825-43be-b3c7-619a26802e44" ], "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.19044.", + "Microsoft.Azure.Management.Batch.BatchManagementClient/14.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -231,13 +231,13 @@ "no-cache" ], "ETag": [ - "\"0x8D80D90C2978DEB\"" + "\"0x8D9F0B808468FB2\"" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1198" ], "x-ms-request-id": [ - "43e5ee99-cad3-4344-a50f-bf7bc4bb0032" + "d2f3ed1a-774c-4890-8c03-9358fc683f9c" ], "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" + "d836b962-44b4-4455-88ed-fc06323bd242" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T225106Z:5fb3bfe9-b44d-4a77-a14b-cedbd922ec35" + "NORTHCENTRALUS:20220215T191906Z:d836b962-44b4-4455-88ed-fc06323bd242" ], "Date": [ - "Wed, 10 Jun 2020 22:51:05 GMT" + "Tue, 15 Feb 2022 19:19:05 GMT" ], "Content-Length": [ - "2227" + "3174" ], "Content-Type": [ "application/json; charset=utf-8" @@ -267,23 +267,26 @@ "-1" ], "Last-Modified": [ - "Wed, 10 Jun 2020 22:51:06 GMT" + "Tue, 15 Feb 2022 19:19:05 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/ps9194/providers/Microsoft.Batch/batchAccounts/ps952\",\r\n \"name\": \"ps952\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"ps952.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 \"name\": \"standardDDv5Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardDDSv5Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardEDv5Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardEDSv5Family\",\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/ps9194/providers/Microsoft.Batch/batchAccounts/ps952/operationResults/dfceb222-8200-46a8-b6ca-effd426cf979?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmEyMzU4YzItNDJmMi00MTM4LTg4ZGYtN2M2OGNmNjA4YmVhL3Jlc291cmNlR3JvdXBzL3BzOTE5NC9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvcHM5NTIvb3BlcmF0aW9uUmVzdWx0cy9kZmNlYjIyMi04MjAwLTQ2YTgtYjZjYS1lZmZkNDI2Y2Y5Nzk/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "99bb7e87-2155-4dc6-9f02-e156b2be9f8a" + ], "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.19044.", + "Microsoft.Azure.Management.Batch.BatchManagementClient/14.0.0.0" ] }, "ResponseHeaders": { @@ -294,13 +297,13 @@ "no-cache" ], "ETag": [ - "\"0x8D80D90C21CE7B6\"" + "\"0x8D9F0B807934612\"" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11999" ], "x-ms-request-id": [ - "6edc34c3-ed16-4f05-aea4-b654ad71b585" + "b6fc3676-d357-4d9d-a418-e0b256866cc2" ], "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" + "914f3c20-3dc0-44fb-baf2-9cbac3aba990" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T225105Z:fc12a766-3272-4d2e-a29a-6cbf59bde892" + "NORTHCENTRALUS:20220215T191904Z:914f3c20-3dc0-44fb-baf2-9cbac3aba990" ], "Date": [ - "Wed, 10 Jun 2020 22:51:04 GMT" + "Tue, 15 Feb 2022 19:19:03 GMT" ], "Content-Length": [ - "2227" + "3174" ], "Content-Type": [ "application/json; charset=utf-8" @@ -330,29 +333,29 @@ "-1" ], "Last-Modified": [ - "Wed, 10 Jun 2020 22:51:05 GMT" + "Tue, 15 Feb 2022 19:19:04 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/ps9194/providers/Microsoft.Batch/batchAccounts/ps952\",\r\n \"name\": \"ps952\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"ps952.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 \"name\": \"standardDDv5Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardDDSv5Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardEDv5Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardEDSv5Family\",\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/ps9194/providers/Microsoft.Batch/batchAccounts/ps952?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmEyMzU4YzItNDJmMi00MTM4LTg4ZGYtN2M2OGNmNjA4YmVhL3Jlc291cmNlR3JvdXBzL3BzOTE5NC9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvcHM5NTI/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "524f7b38-2b06-41ad-a8d9-8a259d971be0" + "7d4fb4a1-2825-43be-b3c7-619a26802e44" ], "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.19044.", + "Microsoft.Azure.Management.Batch.BatchManagementClient/14.0.0.0" ] }, "ResponseHeaders": { @@ -363,13 +366,13 @@ "no-cache" ], "ETag": [ - "\"0x8D80D90BB072410\"" + "\"0x8D9F0B8006D2279\"" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11998" ], "x-ms-request-id": [ - "89d8c2b1-7640-480f-bcd8-b38e03b9d9b3" + "0fa4cbd0-1dc6-4d5f-93e4-e10f32c92530" ], "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" + "ab03fcb3-32be-4f8d-b0bd-6b2cbea14bfd" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T225105Z:3e8fd9e2-18ea-433d-8517-7daa9975ddd0" + "NORTHCENTRALUS:20220215T191904Z:ab03fcb3-32be-4f8d-b0bd-6b2cbea14bfd" ], "Date": [ - "Wed, 10 Jun 2020 22:51:04 GMT" + "Tue, 15 Feb 2022 19:19:03 GMT" ], "Content-Length": [ - "2227" + "3174" ], "Content-Type": [ "application/json; charset=utf-8" @@ -399,29 +402,29 @@ "-1" ], "Last-Modified": [ - "Wed, 10 Jun 2020 22:50:53 GMT" + "Tue, 15 Feb 2022 19:18:52 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/ps9194/providers/Microsoft.Batch/batchAccounts/ps952\",\r\n \"name\": \"ps952\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"ps952.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 \"name\": \"standardDDv5Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardDDSv5Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardEDv5Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardEDSv5Family\",\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/ps9194/providers/Microsoft.Batch/batchAccounts/ps952?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmEyMzU4YzItNDJmMi00MTM4LTg4ZGYtN2M2OGNmNjA4YmVhL3Jlc291cmNlR3JvdXBzL3BzOTE5NC9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvcHM5NTI/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5a068aa2-b90b-4a73-b7a6-1bd7448e609e" + "918dd670-95ae-4371-893a-c47a359ec30e" ], "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.19044.", + "Microsoft.Azure.Management.Batch.BatchManagementClient/14.0.0.0" ] }, "ResponseHeaders": { @@ -432,13 +435,13 @@ "no-cache" ], "ETag": [ - "\"0x8D80D90C2935466\"" + "\"0x8D9F0B80842B1BC\"" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11997" ], "x-ms-request-id": [ - "c918548e-4ea3-4fa1-afdc-326e7b256f3c" + "dfc31f88-3e0e-438f-97f2-a20c13eb325d" ], "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" + "99783d4c-8c46-4cbf-a109-e2ee4c84cd04" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T225106Z:daf5c209-94e9-405b-b88b-af8eebbb05e2" + "NORTHCENTRALUS:20220215T191906Z:99783d4c-8c46-4cbf-a109-e2ee4c84cd04" ], "Date": [ - "Wed, 10 Jun 2020 22:51:05 GMT" + "Tue, 15 Feb 2022 19:19:05 GMT" ], "Content-Length": [ - "2227" + "3174" ], "Content-Type": [ "application/json; charset=utf-8" @@ -468,29 +471,29 @@ "-1" ], "Last-Modified": [ - "Wed, 10 Jun 2020 22:51:06 GMT" + "Tue, 15 Feb 2022 19:19:05 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/ps9194/providers/Microsoft.Batch/batchAccounts/ps952\",\r\n \"name\": \"ps952\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"ps952.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 \"name\": \"standardDDv5Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardDDSv5Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardEDv5Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardEDSv5Family\",\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/ps9194/providers/Microsoft.Batch/batchAccounts/ps952?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmEyMzU4YzItNDJmMi00MTM4LTg4ZGYtN2M2OGNmNjA4YmVhL3Jlc291cmNlR3JvdXBzL3BzOTE5NC9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvcHM5NTI/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7f713eba-f378-48ff-8fb9-7f282fab66e3" + "558bf698-432d-4134-b450-fa1acfeb1dad" ], "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.19044.", + "Microsoft.Azure.Management.Batch.BatchManagementClient/14.0.0.0" ] }, "ResponseHeaders": { @@ -501,13 +504,13 @@ "no-cache" ], "ETag": [ - "\"0x8D80D90C2935466\"" + "\"0x8D9F0B80842B1BC\"" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11996" ], "x-ms-request-id": [ - "a34bd4da-8fc9-44ce-a74f-56a902aae5ea" + "43f03e9e-e488-499c-b6b3-d6d062793e2b" ], "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" + "cfa646f9-737f-4921-881c-dab2a0e4eb6e" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T225106Z:28e4549f-f3fd-4d12-8c56-8118d52e0aa0" + "NORTHCENTRALUS:20220215T191906Z:cfa646f9-737f-4921-881c-dab2a0e4eb6e" ], "Date": [ - "Wed, 10 Jun 2020 22:51:05 GMT" + "Tue, 15 Feb 2022 19:19:05 GMT" ], "Content-Length": [ - "2227" + "3174" ], "Content-Type": [ "application/json; charset=utf-8" @@ -537,29 +540,29 @@ "-1" ], "Last-Modified": [ - "Wed, 10 Jun 2020 22:51:06 GMT" + "Tue, 15 Feb 2022 19:19:05 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/ps9194/providers/Microsoft.Batch/batchAccounts/ps952\",\r\n \"name\": \"ps952\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"ps952.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 \"name\": \"standardDDv5Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardDDSv5Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardEDv5Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardEDSv5Family\",\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/ps9194/providers/Microsoft.Batch/batchAccounts/ps952?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmEyMzU4YzItNDJmMi00MTM4LTg4ZGYtN2M2OGNmNjA4YmVhL3Jlc291cmNlR3JvdXBzL3BzOTE5NC9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvcHM5NTI/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "41ab65f8-5908-4ae5-a164-b7c9ee121c9f" + "c5385d7d-3e0d-4cb3-b4e9-67228d70c509" ], "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.19044.", + "Microsoft.Azure.Management.Batch.BatchManagementClient/14.0.0.0" ] }, "ResponseHeaders": { @@ -570,13 +573,13 @@ "no-cache" ], "ETag": [ - "\"0x8D80D90C2935466\"" + "\"0x8D9F0B80842B1BC\"" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11995" ], "x-ms-request-id": [ - "420fd306-c6d8-44d8-94b5-a109fb4766df" + "4e462c6f-6187-40c2-9475-7e3c630cbebc" ], "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" + "205696ab-2180-45f0-a378-d0217627edb3" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T225106Z:d5040d70-9ac5-429d-9d5a-bbbf32dd2bd9" + "NORTHCENTRALUS:20220215T191906Z:205696ab-2180-45f0-a378-d0217627edb3" ], "Date": [ - "Wed, 10 Jun 2020 22:51:06 GMT" + "Tue, 15 Feb 2022 19:19:06 GMT" ], "Content-Length": [ - "2227" + "3174" ], "Content-Type": [ "application/json; charset=utf-8" @@ -606,29 +609,29 @@ "-1" ], "Last-Modified": [ - "Wed, 10 Jun 2020 22:51:06 GMT" + "Tue, 15 Feb 2022 19:19:05 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/ps9194/providers/Microsoft.Batch/batchAccounts/ps952\",\r\n \"name\": \"ps952\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"ps952.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 \"name\": \"standardDDv5Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardDDSv5Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardEDv5Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardEDSv5Family\",\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/ps9194/providers/Microsoft.Batch/batchAccounts/ps952?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmEyMzU4YzItNDJmMi00MTM4LTg4ZGYtN2M2OGNmNjA4YmVhL3Jlc291cmNlR3JvdXBzL3BzOTE5NC9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvcHM5NTI/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8da4ace1-f97a-4a90-a628-7b789b676dd0" + "0f26d935-2c46-411d-88b6-5dddecdfc0e1" ], "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.19044.", + "Microsoft.Azure.Management.Batch.BatchManagementClient/14.0.0.0" ] }, "ResponseHeaders": { @@ -639,13 +642,13 @@ "no-cache" ], "ETag": [ - "\"0x8D80D90C3111F98\"" + "\"0x8D9F0B80966163E\"" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11994" ], "x-ms-request-id": [ - "3a82da79-027c-4ccd-80d8-60e1034d61a1" + "c551714a-1027-4418-9fad-9d273c09b8a3" ], "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" + "6c1380ca-7c5d-4fb8-9e22-4e1b73a633c7" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T225107Z:1412144b-1fa3-42d8-b9a5-9650b0a97f20" + "NORTHCENTRALUS:20220215T191907Z:6c1380ca-7c5d-4fb8-9e22-4e1b73a633c7" ], "Date": [ - "Wed, 10 Jun 2020 22:51:06 GMT" + "Tue, 15 Feb 2022 19:19:06 GMT" ], "Content-Length": [ - "2227" + "3174" ], "Content-Type": [ "application/json; charset=utf-8" @@ -675,29 +678,29 @@ "-1" ], "Last-Modified": [ - "Wed, 10 Jun 2020 22:51:07 GMT" + "Tue, 15 Feb 2022 19:19:07 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/ps9194/providers/Microsoft.Batch/batchAccounts/ps952\",\r\n \"name\": \"ps952\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"ps952.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 \"name\": \"standardDDv5Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardDDSv5Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardEDv5Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardEDSv5Family\",\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/ps9194/providers/Microsoft.Batch/batchAccounts/ps952?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmEyMzU4YzItNDJmMi00MTM4LTg4ZGYtN2M2OGNmNjA4YmVhL3Jlc291cmNlR3JvdXBzL3BzOTE5NC9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvcHM5NTI/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "151ac075-08ea-4f0f-bb8e-322f5586f0e1" + "dac1c5d5-a549-47da-9cba-8f5b67f63895" ], "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.19044.", + "Microsoft.Azure.Management.Batch.BatchManagementClient/14.0.0.0" ] }, "ResponseHeaders": { @@ -711,7 +714,7 @@ "11991" ], "x-ms-request-id": [ - "1e18a316-f1f0-4c84-91c4-a4b3f4fb7dd5" + "05a94c92-6446-4938-89b1-940c7bae658c" ], "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" + "bed7c96b-b13e-4e03-b796-56d88d28b5ea" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T225122Z:a77c6d7e-b8d0-40e4-946d-404fb92d8741" + "NORTHCENTRALUS:20220215T191923Z:bed7c96b-b13e-4e03-b796-56d88d28b5ea" ], "Date": [ - "Wed, 10 Jun 2020 22:51:22 GMT" + "Tue, 15 Feb 2022 19:19:22 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:05a94c92-6446-4938-89b1-940c7bae658c\\nTime:2022-02-15T19:19:23.2840280Z\",\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" + "558bf698-432d-4134-b450-fa1acfeb1dad" ], "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.19044.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.54" ] }, "ResponseHeaders": { @@ -774,13 +777,13 @@ "11998" ], "x-ms-request-id": [ - "0c51730d-147d-42f5-84bf-1be778b103d3" + "40df20d4-db04-4e76-8611-8eef7484e059" ], "x-ms-correlation-request-id": [ - "0c51730d-147d-42f5-84bf-1be778b103d3" + "40df20d4-db04-4e76-8611-8eef7484e059" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T225106Z:0c51730d-147d-42f5-84bf-1be778b103d3" + "NORTHCENTRALUS:20220215T191906Z:40df20d4-db04-4e76-8611-8eef7484e059" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -789,7 +792,7 @@ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 22:51:06 GMT" + "Tue, 15 Feb 2022 19:19:06 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -798,29 +801,29 @@ "-1" ], "Content-Length": [ - "16750" + "460" ] }, - "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/ps9194/providers/Microsoft.Batch/batchAccounts/ps952\",\r\n \"name\": \"ps952\",\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/ps9194/providers/Microsoft.Batch/batchAccounts/ps952/listKeys?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmEyMzU4YzItNDJmMi00MTM4LTg4ZGYtN2M2OGNmNjA4YmVhL3Jlc291cmNlR3JvdXBzL3BzOTE5NC9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvcHM5NTIvbGlzdEtleXM/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9ac65b3f-6a9e-419c-8d27-c905092fe139" + "558bf698-432d-4134-b450-fa1acfeb1dad" ], "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.19044.", + "Microsoft.Azure.Management.Batch.BatchManagementClient/14.0.0.0" ] }, "ResponseHeaders": { @@ -834,7 +837,7 @@ "1199" ], "x-ms-request-id": [ - "51bc8fa0-9d1b-46cb-b13a-1607b70ea737" + "e5f3777e-5276-4b84-844c-63879a84fe80" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -846,16 +849,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-correlation-request-id": [ - "c0566d3a-9173-4baa-8a9e-fd816aa0b895" + "23922085-5b83-41ac-82b9-e9800e93673b" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T225106Z:c0566d3a-9173-4baa-8a9e-fd816aa0b895" + "NORTHCENTRALUS:20220215T191906Z:23922085-5b83-41ac-82b9-e9800e93673b" ], "Date": [ - "Wed, 10 Jun 2020 22:51:05 GMT" + "Tue, 15 Feb 2022 19:19:06 GMT" ], "Content-Length": [ - "228" + "227" ], "Content-Type": [ "application/json; charset=utf-8" @@ -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\": \"ps952\",\r\n \"primary\": \"PH79Nb7Rn1SxspBG6+o4ITpfl7WVC5400zXaU62Tf6rXhdKVMPRJ/1D0W2pVO6cQjZUwLwznWidtVWLFi0Q6hw==\",\r\n \"secondary\": \"Ktok6NLEnLDM630rEiCtQM2yhNmARmJiJky+BW2WtfPYrqneHeVVOfl9QN6SkhClSxPEX2wh52avPuOH+eG2XA==\"\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/ps9194/providers/Microsoft.Batch/batchAccounts/ps952/listKeys?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmEyMzU4YzItNDJmMi00MTM4LTg4ZGYtN2M2OGNmNjA4YmVhL3Jlc291cmNlR3JvdXBzL3BzOTE5NC9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvcHM5NTIvbGlzdEtleXM/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a8dfe470-9ac3-476d-bf68-22ddb9ef7ed0" + "c5385d7d-3e0d-4cb3-b4e9-67228d70c509" ], "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.19044.", + "Microsoft.Azure.Management.Batch.BatchManagementClient/14.0.0.0" ] }, "ResponseHeaders": { @@ -897,7 +900,7 @@ "1198" ], "x-ms-request-id": [ - "8ac493a0-8cb1-4236-b0cc-5228144ac83c" + "fa9dd284-7d3b-49d9-b026-fa37e1863779" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -909,16 +912,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-correlation-request-id": [ - "1ec9a73c-dcff-4b17-8aba-14abb3efcc2c" + "f66073b0-c19f-40e9-933e-c7dad58c9f8d" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T225107Z:1ec9a73c-dcff-4b17-8aba-14abb3efcc2c" + "NORTHCENTRALUS:20220215T191906Z:f66073b0-c19f-40e9-933e-c7dad58c9f8d" ], "Date": [ - "Wed, 10 Jun 2020 22:51:06 GMT" + "Tue, 15 Feb 2022 19:19:06 GMT" ], "Content-Length": [ - "228" + "227" ], "Content-Type": [ "application/json; charset=utf-8" @@ -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\": \"ps952\",\r\n \"primary\": \"PH79Nb7Rn1SxspBG6+o4ITpfl7WVC5400zXaU62Tf6rXhdKVMPRJ/1D0W2pVO6cQjZUwLwznWidtVWLFi0Q6hw==\",\r\n \"secondary\": \"Ktok6NLEnLDM630rEiCtQM2yhNmARmJiJky+BW2WtfPYrqneHeVVOfl9QN6SkhClSxPEX2wh52avPuOH+eG2XA==\"\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/ps9194/providers/Microsoft.Batch/batchAccounts/ps952/regenerateKeys?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmEyMzU4YzItNDJmMi00MTM4LTg4ZGYtN2M2OGNmNjA4YmVhL3Jlc291cmNlR3JvdXBzL3BzOTE5NC9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvcHM5NTIvcmVnZW5lcmF0ZUtleXM/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", "RequestMethod": "POST", "RequestBody": "{\r\n \"keyName\": \"Primary\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "4d9ef02e-6ad1-4cb0-ac23-4334fb3c9fa6" + "0f26d935-2c46-411d-88b6-5dddecdfc0e1" ], "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.19044.", + "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" + "f752a208-ec70-403b-b5d1-8ddf67779f29" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -978,16 +981,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-correlation-request-id": [ - "255236ab-b3ee-429e-85d3-ce45171908a2" + "bd5b06c5-ef32-45f7-8093-41de60a30930" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T225107Z:255236ab-b3ee-429e-85d3-ce45171908a2" + "NORTHCENTRALUS:20220215T191907Z:bd5b06c5-ef32-45f7-8093-41de60a30930" ], "Date": [ - "Wed, 10 Jun 2020 22:51:06 GMT" + "Tue, 15 Feb 2022 19:19:06 GMT" ], "Content-Length": [ - "228" + "227" ], "Content-Type": [ "application/json; charset=utf-8" @@ -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\": \"ps952\",\r\n \"primary\": \"gx2Jm8TpiFxgvCFrioGbiUUw61xulzw9Ej88I2SA11JdDNTTWJcS9NtISZaa58pO+teMi99/MZGcYJZhsEpgtA==\",\r\n \"secondary\": \"Ktok6NLEnLDM630rEiCtQM2yhNmARmJiJky+BW2WtfPYrqneHeVVOfl9QN6SkhClSxPEX2wh52avPuOH+eG2XA==\"\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/ps9194/providers/Microsoft.Batch/batchAccounts/ps952?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmEyMzU4YzItNDJmMi00MTM4LTg4ZGYtN2M2OGNmNjA4YmVhL3Jlc291cmNlR3JvdXBzL3BzOTE5NC9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvcHM5NTI/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ae3e1ac9-3532-42b0-92c2-acda532ad785" + "977a11d6-4627-4699-b756-9a06d580ea66" ], "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.19044.", + "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/ps952-a3f6f754-7986-4c25-86d0-a88e68821fb0?api-version=2021-06-01" ], "Retry-After": [ "15" ], "x-ms-request-id": [ - "c7faaed9-7360-40f8-a06c-9bb67cf90544" + "a3f6f754-7986-4c25-86d0-a88e68821fb0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1047,13 +1050,13 @@ "14999" ], "x-ms-correlation-request-id": [ - "c870cfb7-6ac2-4023-8995-a26482e2d5db" + "cffb19cd-bfef-48cf-a257-7b50e3ecf7b0" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T225107Z:c870cfb7-6ac2-4023-8995-a26482e2d5db" + "NORTHCENTRALUS:20220215T191907Z:cffb19cd-bfef-48cf-a257-7b50e3ecf7b0" ], "Date": [ - "Wed, 10 Jun 2020 22:51:06 GMT" + "Tue, 15 Feb 2022 19:19:07 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/ps952-a3f6f754-7986-4c25-86d0-a88e68821fb0?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmEyMzU4YzItNDJmMi00MTM4LTg4ZGYtN2M2OGNmNjA4YmVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL3dlc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9wczk1Mi1hM2Y2Zjc1NC03OTg2LTRjMjUtODZkMC1hODhlNjg4MjFmYjA/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "977a11d6-4627-4699-b756-9a06d580ea66" + ], "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.19044.", + "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" + "6da54612-dca4-42e4-838f-05bfb5d16843" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1101,13 +1107,13 @@ "11993" ], "x-ms-correlation-request-id": [ - "67316f15-3411-432a-a479-9f4c1bf91197" + "124ad71c-38ef-4375-88a5-62b23a71bbfd" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T225122Z:67316f15-3411-432a-a479-9f4c1bf91197" + "NORTHCENTRALUS:20220215T191923Z:124ad71c-38ef-4375-88a5-62b23a71bbfd" ], "Date": [ - "Wed, 10 Jun 2020 22:51:22 GMT" + "Tue, 15 Feb 2022 19:19:22 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/ps952-a3f6f754-7986-4c25-86d0-a88e68821fb0?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmEyMzU4YzItNDJmMi00MTM4LTg4ZGYtN2M2OGNmNjA4YmVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL3dlc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9wczk1Mi1hM2Y2Zjc1NC03OTg2LTRjMjUtODZkMC1hODhlNjg4MjFmYjA/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "977a11d6-4627-4699-b756-9a06d580ea66" + ], "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.19044.", + "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" + "b84a6a5a-137d-474f-a1ec-172c2e180889" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1155,13 +1164,13 @@ "11992" ], "x-ms-correlation-request-id": [ - "dd3e1548-31bb-48f3-9a51-03c806de0c87" + "0262314a-9ea1-421c-af33-2f5f3d065389" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T225122Z:dd3e1548-31bb-48f3-9a51-03c806de0c87" + "NORTHCENTRALUS:20220215T191923Z:0262314a-9ea1-421c-af33-2f5f3d065389" ], "Date": [ - "Wed, 10 Jun 2020 22:51:22 GMT" + "Tue, 15 Feb 2022 19:19:22 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/ps9194?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmEyMzU4YzItNDJmMi00MTM4LTg4ZGYtN2M2OGNmNjA4YmVhL3Jlc291cmNlZ3JvdXBzL3BzOTE5ND9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "483400ae-fffd-4874-b480-66afecbb4338" + "e13384c8-3923-453c-9553-a6f1145a1238" ], "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.19044.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.54" ] }, "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/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkxOTQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -1209,13 +1218,13 @@ "14999" ], "x-ms-request-id": [ - "3dc01c3c-dc20-4afd-ac35-426428dc0809" + "425ca530-e4c0-448a-a912-154fe5c5e5c9" ], "x-ms-correlation-request-id": [ - "3dc01c3c-dc20-4afd-ac35-426428dc0809" + "425ca530-e4c0-448a-a912-154fe5c5e5c9" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T225123Z:3dc01c3c-dc20-4afd-ac35-426428dc0809" + "NORTHCENTRALUS:20220215T191924Z:425ca530-e4c0-448a-a912-154fe5c5e5c9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1224,7 +1233,7 @@ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 22:51:22 GMT" + "Tue, 15 Feb 2022 19:19:23 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/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkxOTQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmEyMzU4YzItNDJmMi00MTM4LTg4ZGYtN2M2OGNmNjA4YmVhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpreE9UUXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/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.19044.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.54" ] }, "ResponseHeaders": { @@ -1256,80 +1265,17 @@ "Pragma": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg4LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], "x-ms-ratelimit-remaining-subscription-reads": [ "11997" ], "x-ms-request-id": [ - "e957e3e5-1656-4109-b835-b7048e7a33a1" - ], - "x-ms-correlation-request-id": [ - "e957e3e5-1656-4109-b835-b7048e7a33a1" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200610T225138Z:e957e3e5-1656-4109-b835-b7048e7a33a1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 10 Jun 2020 22:51:37 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg4LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnNExWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/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/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg4LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" - ], - "x-ms-request-id": [ - "7445c0c6-e1a1-42c6-b6d4-2e71fbacb790" + "a7dde984-d58a-4c54-a91b-90ba173d0aa3" ], "x-ms-correlation-request-id": [ - "7445c0c6-e1a1-42c6-b6d4-2e71fbacb790" + "a7dde984-d58a-4c54-a91b-90ba173d0aa3" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T225153Z:7445c0c6-e1a1-42c6-b6d4-2e71fbacb790" + "NORTHCENTRALUS:20220215T191939Z:a7dde984-d58a-4c54-a91b-90ba173d0aa3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1338,58 +1284,7 @@ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 22:51:53 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg4LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnNExWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/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": [ - "11995" - ], - "x-ms-request-id": [ - "0f6e3c53-c549-455b-93b4-4ab5d49d11aa" - ], - "x-ms-correlation-request-id": [ - "0f6e3c53-c549-455b-93b4-4ab5d49d11aa" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200610T225208Z:0f6e3c53-c549-455b-93b4-4ab5d49d11aa" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 10 Jun 2020 22:52:08 GMT" + "Tue, 15 Feb 2022 19:19:38 GMT" ], "Expires": [ "-1" @@ -1402,16 +1297,16 @@ "StatusCode": 200 }, { - "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/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkxOTQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmEyMzU4YzItNDJmMi00MTM4LTg4ZGYtN2M2OGNmNjA4YmVhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpreE9UUXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/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.19044.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.54" ] }, "ResponseHeaders": { @@ -1422,16 +1317,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11996" ], "x-ms-request-id": [ - "767097f2-cc29-4239-ac87-395c89eb817e" + "b7898920-45d7-40fa-8ed9-4ad3afe32ae9" ], "x-ms-correlation-request-id": [ - "767097f2-cc29-4239-ac87-395c89eb817e" + "b7898920-45d7-40fa-8ed9-4ad3afe32ae9" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T225208Z:767097f2-cc29-4239-ac87-395c89eb817e" + "NORTHCENTRALUS:20220215T191939Z:b7898920-45d7-40fa-8ed9-4ad3afe32ae9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1440,7 +1335,7 @@ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 22:52:08 GMT" + "Tue, 15 Feb 2022 19:19:38 GMT" ], "Expires": [ "-1" @@ -1455,14 +1350,14 @@ ], "Names": { "Test-BatchAccountEndToEnd": [ - "ps1341", - "ps88" + "ps952", + "ps9194" ] }, "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..2a15577ad3c2 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" + "86d0eb8e-24cc-445b-9ddc-d15a6f291449" ], "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.19044.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.54" ] }, "ResponseHeaders": { @@ -30,13 +30,13 @@ "11999" ], "x-ms-request-id": [ - "f9cceae7-4ed1-461d-b0f1-64d639bde165" + "4aa3ec74-1b92-459a-89bc-8ce2c4ea8a4d" ], "x-ms-correlation-request-id": [ - "f9cceae7-4ed1-461d-b0f1-64d639bde165" + "4aa3ec74-1b92-459a-89bc-8ce2c4ea8a4d" ], "x-ms-routing-request-id": [ - "WESTUS:20200609T210914Z:f9cceae7-4ed1-461d-b0f1-64d639bde165" + "NORTHCENTRALUS:20220215T192125Z:4aa3ec74-1b92-459a-89bc-8ce2c4ea8a4d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -45,7 +45,7 @@ "nosniff" ], "Date": [ - "Tue, 09 Jun 2020 21:09:14 GMT" + "Tue, 15 Feb 2022 19:21:25 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -54,29 +54,29 @@ "-1" ], "Content-Length": [ - "4461" + "7848" ] }, - "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 \"Sweden Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-01-01\",\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 \"Sweden Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-01-01\",\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 \"Sweden Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-01-01\",\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 \"Sweden Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-01-01\",\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 \"2022-01-01\",\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 \"Sweden Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-01-01\",\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 \"Sweden Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-01-01\",\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 \"Sweden Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-01-01\",\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 \"Sweden Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-01-01\",\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 \"Sweden Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-01-01\",\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/ps7491?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmEyMzU4YzItNDJmMi00MTM4LTg4ZGYtN2M2OGNmNjA4YmVhL3Jlc291cmNlZ3JvdXBzL3BzNzQ5MT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "63bf0212-1fcd-4938-a634-035876a30624" + "f6a17043-c082-4277-97a1-eb67765468f3" ], "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.19044.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.54" ], "Content-Type": [ "application/json; charset=utf-8" @@ -96,13 +96,13 @@ "1199" ], "x-ms-request-id": [ - "176a534a-116f-4bd2-ae1a-c1705385003c" + "aa2c9f4f-0778-4d80-811d-e46b1163ffce" ], "x-ms-correlation-request-id": [ - "176a534a-116f-4bd2-ae1a-c1705385003c" + "aa2c9f4f-0778-4d80-811d-e46b1163ffce" ], "x-ms-routing-request-id": [ - "WESTUS:20200609T210915Z:176a534a-116f-4bd2-ae1a-c1705385003c" + "NORTHCENTRALUS:20220215T192127Z:aa2c9f4f-0778-4d80-811d-e46b1163ffce" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -111,7 +111,7 @@ "nosniff" ], "Date": [ - "Tue, 09 Jun 2020 21:09:14 GMT" + "Tue, 15 Feb 2022 19:21:27 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/ps7491\",\r\n \"name\": \"ps7491\",\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/ps7491/providers/Microsoft.Batch/batchAccounts/ps2450?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmEyMzU4YzItNDJmMi00MTM4LTg4ZGYtN2M2OGNmNjA4YmVhL3Jlc291cmNlR3JvdXBzL3BzNzQ5MS9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvcHMyNDUwP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", "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" + "579656bd-af46-4481-8dd7-a1609f1fa845" ], "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.19044.", + "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/ps7491/providers/Microsoft.Batch/batchAccounts/ps2450/operationResults/1e519044-62d6-401c-af10-e60f18ed6167?api-version=2021-06-01" ], "Retry-After": [ "15" ], "x-ms-request-id": [ - "c459819d-ca72-4428-bfa3-7b803a37a932" + "1e519044-62d6-401c-af10-e60f18ed6167" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -180,13 +180,13 @@ "1199" ], "x-ms-correlation-request-id": [ - "d6119f06-f0dd-4b94-a3b1-07914a54d6b0" + "4833d4f4-9c23-4a89-acc1-49d4c4395e33" ], "x-ms-routing-request-id": [ - "WESTUS:20200609T210918Z:d6119f06-f0dd-4b94-a3b1-07914a54d6b0" + "NORTHCENTRALUS:20220215T192131Z:4833d4f4-9c23-4a89-acc1-49d4c4395e33" ], "Date": [ - "Tue, 09 Jun 2020 21:09:17 GMT" + "Tue, 15 Feb 2022 19:21:30 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/ps7491/providers/Microsoft.Batch/batchAccounts/ps2450/operationResults/1e519044-62d6-401c-af10-e60f18ed6167?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmEyMzU4YzItNDJmMi00MTM4LTg4ZGYtN2M2OGNmNjA4YmVhL3Jlc291cmNlR3JvdXBzL3BzNzQ5MS9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvcHMyNDUwL29wZXJhdGlvblJlc3VsdHMvMWU1MTkwNDQtNjJkNi00MDFjLWFmMTAtZTYwZjE4ZWQ2MTY3P2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "579656bd-af46-4481-8dd7-a1609f1fa845" + ], "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.19044.", + "Microsoft.Azure.Management.Batch.BatchManagementClient/14.0.0.0" ] }, "ResponseHeaders": { @@ -219,13 +222,13 @@ "no-cache" ], "ETag": [ - "\"0x8D80CB968915F53\"" + "\"0x8D9F0B86842AA6D\"" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11999" ], "x-ms-request-id": [ - "fda2ebd1-5d69-4c04-a4e6-cc02637a287f" + "eb576d91-1890-4b6e-9a5c-8278a07bfcd8" ], "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" + "81472185-b46f-470c-8405-12fe44546d68" ], "x-ms-routing-request-id": [ - "WESTUS:20200609T210933Z:1eaba6a7-553c-4bb4-9ded-6a95022727b6" + "NORTHCENTRALUS:20220215T192146Z:81472185-b46f-470c-8405-12fe44546d68" ], "Date": [ - "Tue, 09 Jun 2020 21:09:32 GMT" + "Tue, 15 Feb 2022 19:21:46 GMT" ], "Content-Length": [ - "2347" + "3182" ], "Content-Type": [ "application/json; charset=utf-8" @@ -255,29 +258,29 @@ "-1" ], "Last-Modified": [ - "Tue, 09 Jun 2020 21:09:33 GMT" + "Tue, 15 Feb 2022 19:21:46 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/ps7491/providers/Microsoft.Batch/batchAccounts/ps2450\",\r\n \"name\": \"ps2450\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"ps2450.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 \"name\": \"standardDDv5Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardDDSv5Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardEDv5Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardEDSv5Family\",\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/ps7491/providers/Microsoft.Network/virtualNetworks/myvnet?api-version=2021-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmEyMzU4YzItNDJmMi00MTM4LTg4ZGYtN2M2OGNmNjA4YmVhL3Jlc291cmNlR3JvdXBzL3BzNzQ5MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL215dm5ldD9hcGktdmVyc2lvbj0yMDIxLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0b5d9eb0-0091-42fc-ba4d-9a54d0a94e87" + "8e2ad696-7e35-4fba-8aca-c07400892e66" ], "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.19044.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" ] }, "ResponseHeaders": { @@ -291,13 +294,13 @@ "gateway" ], "x-ms-request-id": [ - "2ff8d7d7-add4-4176-a832-e11e8551f8da" + "0e782e88-53e3-4424-93fd-86b3d27b9693" ], "x-ms-correlation-request-id": [ - "2ff8d7d7-add4-4176-a832-e11e8551f8da" + "0e782e88-53e3-4424-93fd-86b3d27b9693" ], "x-ms-routing-request-id": [ - "WESTUS:20200609T210933Z:2ff8d7d7-add4-4176-a832-e11e8551f8da" + "NORTHCENTRALUS:20220215T192146Z:0e782e88-53e3-4424-93fd-86b3d27b9693" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -306,7 +309,7 @@ "nosniff" ], "Date": [ - "Tue, 09 Jun 2020 21:09:33 GMT" + "Tue, 15 Feb 2022 19:21:46 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 'ps7491' 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/ps7491/providers/Microsoft.Network/virtualNetworks/myvnet?api-version=2021-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmEyMzU4YzItNDJmMi00MTM4LTg4ZGYtN2M2OGNmNjA4YmVhL3Jlc291cmNlR3JvdXBzL3BzNzQ5MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL215dm5ldD9hcGktdmVyc2lvbj0yMDIxLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "8e2ad696-7e35-4fba-8aca-c07400892e66" + ], "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.19044.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" ] }, "ResponseHeaders": { @@ -342,16 +348,16 @@ "no-cache" ], "ETag": [ - "W/\"cc446e03-a472-4610-8896-f3aa36133f9b\"" + "W/\"fcb21553-d522-4abb-94d8-2d42087befa4\"" ], "x-ms-request-id": [ - "f8cffedf-98d9-45c1-b089-7415afcd352a" + "e05fd40e-3041-4d83-b993-3aa2db7423a9" ], "x-ms-correlation-request-id": [ - "03144e2b-bfdc-44a8-a42d-70d44a776f49" + "411d014b-8dad-4735-9e28-db1ece65a37e" ], "x-ms-arm-service-request-id": [ - "f6366bcd-495b-47cf-8184-5f36924ec74a" + "a9f532f9-d503-41bb-bebf-7ed6e4acb9e3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -364,16 +370,16 @@ "11997" ], "x-ms-routing-request-id": [ - "WESTUS:20200609T210939Z:03144e2b-bfdc-44a8-a42d-70d44a776f49" + "NORTHCENTRALUS:20220215T192155Z:411d014b-8dad-4735-9e28-db1ece65a37e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 09 Jun 2020 21:09:38 GMT" + "Tue, 15 Feb 2022 19:21:54 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/ps7491/providers/Microsoft.Network/virtualNetworks/myvnet\",\r\n \"etag\": \"W/\\\"fcb21553-d522-4abb-94d8-2d42087befa4\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"60cd9fde-5302-43a1-b488-5735f8430dd5\",\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/ps7491/providers/Microsoft.Network/virtualNetworks/myvnet/subnets/mysubnet\",\r\n \"etag\": \"W/\\\"fcb21553-d522-4abb-94d8-2d42087befa4\\\"\",\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/ps7491/providers/Microsoft.Network/virtualNetworks/myvnet?api-version=2021-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmEyMzU4YzItNDJmMi00MTM4LTg4ZGYtN2M2OGNmNjA4YmVhL3Jlc291cmNlR3JvdXBzL3BzNzQ5MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL215dm5ldD9hcGktdmVyc2lvbj0yMDIxLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "58308795-ebff-4037-b54a-00a7dc1010f5" + "8e2ad696-7e35-4fba-8aca-c07400892e66" ], "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.19044.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" ] }, "ResponseHeaders": { @@ -412,16 +418,16 @@ "no-cache" ], "ETag": [ - "W/\"cc446e03-a472-4610-8896-f3aa36133f9b\"" + "W/\"fcb21553-d522-4abb-94d8-2d42087befa4\"" ], "x-ms-request-id": [ - "6dc8962f-02a4-47dc-aef6-ebee45afa6a9" + "b0aa2c48-3aeb-44e0-95cf-59bf0e64e9fa" ], "x-ms-correlation-request-id": [ - "fce8c75b-d417-4c31-9a47-8a17532cb393" + "886d6f6a-5d4b-4efa-a745-dfbc6447495f" ], "x-ms-arm-service-request-id": [ - "b3516772-a0ac-4b29-89a4-e939a260feba" + "13bbc4e2-fe7e-42f7-9542-8b3d085b3236" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -434,16 +440,16 @@ "11996" ], "x-ms-routing-request-id": [ - "WESTUS:20200609T210939Z:fce8c75b-d417-4c31-9a47-8a17532cb393" + "NORTHCENTRALUS:20220215T192155Z:886d6f6a-5d4b-4efa-a745-dfbc6447495f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 09 Jun 2020 21:09:38 GMT" + "Tue, 15 Feb 2022 19:21:54 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/ps7491/providers/Microsoft.Network/virtualNetworks/myvnet\",\r\n \"etag\": \"W/\\\"fcb21553-d522-4abb-94d8-2d42087befa4\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"60cd9fde-5302-43a1-b488-5735f8430dd5\",\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/ps7491/providers/Microsoft.Network/virtualNetworks/myvnet/subnets/mysubnet\",\r\n \"etag\": \"W/\\\"fcb21553-d522-4abb-94d8-2d42087befa4\\\"\",\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/ps7491/providers/Microsoft.Network/virtualNetworks/myvnet?api-version=2021-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmEyMzU4YzItNDJmMi00MTM4LTg4ZGYtN2M2OGNmNjA4YmVhL3Jlc291cmNlR3JvdXBzL3BzNzQ5MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL215dm5ldD9hcGktdmVyc2lvbj0yMDIxLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "eaa0d86f-b43c-46f4-bb49-09347833124a" + "612a2974-9d22-44fc-80a1-65400560bcf9" ], "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.19044.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" ] }, "ResponseHeaders": { @@ -482,16 +488,16 @@ "no-cache" ], "ETag": [ - "W/\"cc446e03-a472-4610-8896-f3aa36133f9b\"" + "W/\"fcb21553-d522-4abb-94d8-2d42087befa4\"" ], "x-ms-request-id": [ - "688fd068-97dd-4b97-a498-ec4139c975c6" + "2646b5cb-7198-42f8-9d9e-29b87f5c154b" ], "x-ms-correlation-request-id": [ - "b87813f1-2bb2-4109-8a49-74e6d7eb93d2" + "1709986c-570c-4b04-b2b3-bdc227203089" ], "x-ms-arm-service-request-id": [ - "9596bfef-39b3-49f6-b00a-d0504ca507f3" + "d467e816-14dc-4de3-be78-299ed0d5c86d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -504,16 +510,16 @@ "11995" ], "x-ms-routing-request-id": [ - "WESTUS:20200609T210939Z:b87813f1-2bb2-4109-8a49-74e6d7eb93d2" + "NORTHCENTRALUS:20220215T192155Z:1709986c-570c-4b04-b2b3-bdc227203089" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 09 Jun 2020 21:09:39 GMT" + "Tue, 15 Feb 2022 19:21:54 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/ps7491/providers/Microsoft.Network/virtualNetworks/myvnet\",\r\n \"etag\": \"W/\\\"fcb21553-d522-4abb-94d8-2d42087befa4\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"60cd9fde-5302-43a1-b488-5735f8430dd5\",\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/ps7491/providers/Microsoft.Network/virtualNetworks/myvnet/subnets/mysubnet\",\r\n \"etag\": \"W/\\\"fcb21553-d522-4abb-94d8-2d42087befa4\\\"\",\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/ps7491/providers/Microsoft.Network/virtualNetworks/myvnet?api-version=2021-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmEyMzU4YzItNDJmMi00MTM4LTg4ZGYtN2M2OGNmNjA4YmVhL3Jlc291cmNlR3JvdXBzL3BzNzQ5MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL215dm5ldD9hcGktdmVyc2lvbj0yMDIxLTA1LTAx", "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" + "8e2ad696-7e35-4fba-8aca-c07400892e66" ], "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.19044.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.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" + "36dee457-71bb-44b2-a78c-e619c21c0735" ], "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/36dee457-71bb-44b2-a78c-e619c21c0735?api-version=2021-05-01" ], "x-ms-correlation-request-id": [ - "e907b002-6966-4b7c-ab09-d14f92acbe31" + "261e6ef9-9e96-4a83-a1d2-f44aa0961ae0" ], "Azure-AsyncNotification": [ "Enabled" ], "x-ms-arm-service-request-id": [ - "6d9b50eb-dbf0-4b08-8a41-ac19f0c7ab6c" + "be06b67c-15fe-4615-a724-115f1bb9ce9e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -586,16 +592,16 @@ "1199" ], "x-ms-routing-request-id": [ - "WESTUS:20200609T210936Z:e907b002-6966-4b7c-ab09-d14f92acbe31" + "NORTHCENTRALUS:20220215T192151Z:261e6ef9-9e96-4a83-a1d2-f44aa0961ae0" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 09 Jun 2020 21:09:35 GMT" + "Tue, 15 Feb 2022 19:21:51 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/ps7491/providers/Microsoft.Network/virtualNetworks/myvnet\",\r\n \"etag\": \"W/\\\"1ec19b56-72f0-4246-8ba1-53aa535deb40\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"60cd9fde-5302-43a1-b488-5735f8430dd5\",\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/ps7491/providers/Microsoft.Network/virtualNetworks/myvnet/subnets/mysubnet\",\r\n \"etag\": \"W/\\\"1ec19b56-72f0-4246-8ba1-53aa535deb40\\\"\",\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/36dee457-71bb-44b2-a78c-e619c21c0735?api-version=2021-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmEyMzU4YzItNDJmMi00MTM4LTg4ZGYtN2M2OGNmNjA4YmVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzZkZWU0NTctNzFiYi00NGIyLWE3OGMtZTYxOWMyMWMwNzM1P2FwaS12ZXJzaW9uPTIwMjEtMDUtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "8e2ad696-7e35-4fba-8aca-c07400892e66" + ], "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.19044.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" ] }, "ResponseHeaders": { @@ -628,13 +637,13 @@ "no-cache" ], "x-ms-request-id": [ - "9a3e8583-2f19-4676-b8bd-147411340e44" + "3738b634-038c-4a96-a363-b9497893cab1" ], "x-ms-correlation-request-id": [ - "8c784383-7ead-4a07-9bb0-91ac9cf8e346" + "671a5052-0841-497a-b3cc-1c0cc422f1d8" ], "x-ms-arm-service-request-id": [ - "0d39ea9a-8297-47b2-8971-ac933db5df2e" + "a653a45a-99a2-4976-8dc6-f92c6275b1f2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -647,13 +656,13 @@ "11998" ], "x-ms-routing-request-id": [ - "WESTUS:20200609T210939Z:8c784383-7ead-4a07-9bb0-91ac9cf8e346" + "NORTHCENTRALUS:20220215T192155Z:671a5052-0841-497a-b3cc-1c0cc422f1d8" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 09 Jun 2020 21:09:38 GMT" + "Tue, 15 Feb 2022 19:21:54 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/ps7491/providers/Microsoft.Batch/batchAccounts/ps2450/privateLinkResources?api-version=2020-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmEyMzU4YzItNDJmMi00MTM4LTg4ZGYtN2M2OGNmNjA4YmVhL3Jlc291cmNlR3JvdXBzL3BzNzQ5MS9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvcHMyNDUwL3ByaXZhdGVMaW5rUmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMjAtMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6d8c0922-d3d0-400f-b4ea-a0bd57a01b30" + "8add3471-5040-41c1-921b-8c55717701bc" ], "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.19044.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" ] }, "ResponseHeaders": { @@ -698,7 +707,7 @@ "11999" ], "x-ms-request-id": [ - "275b1012-6067-41c3-91ad-d4f3956c2ea2" + "fae79047-8adf-4954-a66a-9939dc31a611" ], "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" + "9fff96e8-df08-4260-b837-582414f994d6" ], "x-ms-routing-request-id": [ - "WESTUS:20200609T210939Z:82787f0f-b0bc-4422-8cb8-91ca81ad8c41" + "NORTHCENTRALUS:20220215T192156Z:9fff96e8-df08-4260-b837-582414f994d6" ], "Date": [ - "Tue, 09 Jun 2020 21:09:38 GMT" + "Tue, 15 Feb 2022 19:21:55 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/ps7491/providers/Microsoft.Batch/batchAccounts/ps2450/privateLinkResources/ps2450\",\r\n \"name\": \"ps2450\",\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/ps7491/providers/Microsoft.Network/privateEndpoints/mypec?api-version=2021-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmEyMzU4YzItNDJmMi00MTM4LTg4ZGYtN2M2OGNmNjA4YmVhL3Jlc291cmNlR3JvdXBzL3BzNzQ5MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHJpdmF0ZUVuZHBvaW50cy9teXBlYz9hcGktdmVyc2lvbj0yMDIxLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "02831395-0ef9-43f5-a4c8-e4d9a9dbc025" + "63626b8a-2969-400c-917c-12205af151db" ], "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.19044.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" ] }, "ResponseHeaders": { @@ -761,13 +770,13 @@ "gateway" ], "x-ms-request-id": [ - "85cba16e-0368-4102-81b0-6ebcbd6a1f2e" + "5b45718b-d741-4bb8-8b2c-28c9293e1287" ], "x-ms-correlation-request-id": [ - "85cba16e-0368-4102-81b0-6ebcbd6a1f2e" + "5b45718b-d741-4bb8-8b2c-28c9293e1287" ], "x-ms-routing-request-id": [ - "WESTUS:20200609T210939Z:85cba16e-0368-4102-81b0-6ebcbd6a1f2e" + "NORTHCENTRALUS:20220215T192156Z:5b45718b-d741-4bb8-8b2c-28c9293e1287" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -776,7 +785,7 @@ "nosniff" ], "Date": [ - "Tue, 09 Jun 2020 21:09:39 GMT" + "Tue, 15 Feb 2022 19:21:55 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 'ps7491' 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/ps7491/providers/Microsoft.Network/privateEndpoints/mypec?api-version=2021-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmEyMzU4YzItNDJmMi00MTM4LTg4ZGYtN2M2OGNmNjA4YmVhL3Jlc291cmNlR3JvdXBzL3BzNzQ5MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHJpdmF0ZUVuZHBvaW50cy9teXBlYz9hcGktdmVyc2lvbj0yMDIxLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "63626b8a-2969-400c-917c-12205af151db" + ], "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.19044.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" ] }, "ResponseHeaders": { @@ -812,16 +824,16 @@ "no-cache" ], "ETag": [ - "W/\"f6a85bc5-f043-4830-a800-b8feb1746519\"" + "W/\"1c48c37e-d597-44aa-8297-b7dc92085fc7\"" ], "x-ms-request-id": [ - "10b50ce4-37ae-4c67-9e44-a3c39caa5323" + "18260bde-3f1f-4665-abad-78ab5f59c453" ], "x-ms-correlation-request-id": [ - "3b0f042c-9e4d-419e-93b3-6f88d4641731" + "d4b4e2ed-3764-4970-96e5-14ef29362c29" ], "x-ms-arm-service-request-id": [ - "3b724936-2152-4285-9d99-d5ba7c4081ab" + "bb29a327-90e1-46cf-b2ad-0ec87f622148" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -834,16 +846,16 @@ "11990" ], "x-ms-routing-request-id": [ - "WESTUS:20200609T211011Z:3b0f042c-9e4d-419e-93b3-6f88d4641731" + "NORTHCENTRALUS:20220215T192239Z:d4b4e2ed-3764-4970-96e5-14ef29362c29" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 09 Jun 2020 21:10:11 GMT" + "Tue, 15 Feb 2022 19:22:39 GMT" ], "Content-Length": [ - "1887" + "1955" ], "Content-Type": [ "application/json; charset=utf-8" @@ -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/ps7491/providers/Microsoft.Network/privateEndpoints/mypec\",\r\n \"etag\": \"W/\\\"1c48c37e-d597-44aa-8297-b7dc92085fc7\\\"\",\r\n \"type\": \"Microsoft.Network/privateEndpoints\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"fee60f47-c0ff-4084-bd3a-fea6facb20c6\",\r\n \"privateLinkServiceConnections\": [],\r\n \"manualPrivateLinkServiceConnections\": [\r\n {\r\n \"name\": \"myplsconnection\",\r\n \"id\": \"/subscriptions/ba2358c2-42f2-4138-88df-7c68cf608bea/resourceGroups/ps7491/providers/Microsoft.Network/privateEndpoints/mypec/manualPrivateLinkServiceConnections/myplsconnection\",\r\n \"etag\": \"W/\\\"1c48c37e-d597-44aa-8297-b7dc92085fc7\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateLinkServiceId\": \"/subscriptions/ba2358c2-42f2-4138-88df-7c68cf608bea/resourceGroups/ps7491/providers/Microsoft.Batch/batchAccounts/ps2450\",\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 \"customNetworkInterfaceName\": \"\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/ba2358c2-42f2-4138-88df-7c68cf608bea/resourceGroups/ps7491/providers/Microsoft.Network/virtualNetworks/myvnet/subnets/mysubnet\"\r\n },\r\n \"ipConfigurations\": [],\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/ba2358c2-42f2-4138-88df-7c68cf608bea/resourceGroups/ps7491/providers/Microsoft.Network/networkInterfaces/mypec.nic.cab8c23f-e71d-49af-912e-1818cfa636ef\"\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/ps7491/providers/Microsoft.Network/privateEndpoints/mypec?api-version=2021-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmEyMzU4YzItNDJmMi00MTM4LTg4ZGYtN2M2OGNmNjA4YmVhL3Jlc291cmNlR3JvdXBzL3BzNzQ5MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHJpdmF0ZUVuZHBvaW50cy9teXBlYz9hcGktdmVyc2lvbj0yMDIxLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "dbcf78a1-a26b-4496-afc8-cd31cfe2be66" + "63626b8a-2969-400c-917c-12205af151db" ], "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.19044.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" ] }, "ResponseHeaders": { @@ -882,16 +894,16 @@ "no-cache" ], "ETag": [ - "W/\"f6a85bc5-f043-4830-a800-b8feb1746519\"" + "W/\"1c48c37e-d597-44aa-8297-b7dc92085fc7\"" ], "x-ms-request-id": [ - "89ba5e51-dab3-4219-bb91-0411e1e19e9a" + "9893f81a-f90f-4f7a-9433-49450a594110" ], "x-ms-correlation-request-id": [ - "1bb40469-fd53-41d8-a2c5-c7b717203828" + "27a3a27b-9633-4927-80dc-92f2b2b6a72b" ], "x-ms-arm-service-request-id": [ - "5aae7609-4e5b-4a12-912c-609ddd89b152" + "7de47eeb-a98e-44e6-9cbb-3b4d772881f2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -904,16 +916,16 @@ "11989" ], "x-ms-routing-request-id": [ - "WESTUS:20200609T211011Z:1bb40469-fd53-41d8-a2c5-c7b717203828" + "NORTHCENTRALUS:20220215T192239Z:27a3a27b-9633-4927-80dc-92f2b2b6a72b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 09 Jun 2020 21:10:11 GMT" + "Tue, 15 Feb 2022 19:22:39 GMT" ], "Content-Length": [ - "1887" + "1955" ], "Content-Type": [ "application/json; charset=utf-8" @@ -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/ps7491/providers/Microsoft.Network/privateEndpoints/mypec\",\r\n \"etag\": \"W/\\\"1c48c37e-d597-44aa-8297-b7dc92085fc7\\\"\",\r\n \"type\": \"Microsoft.Network/privateEndpoints\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"fee60f47-c0ff-4084-bd3a-fea6facb20c6\",\r\n \"privateLinkServiceConnections\": [],\r\n \"manualPrivateLinkServiceConnections\": [\r\n {\r\n \"name\": \"myplsconnection\",\r\n \"id\": \"/subscriptions/ba2358c2-42f2-4138-88df-7c68cf608bea/resourceGroups/ps7491/providers/Microsoft.Network/privateEndpoints/mypec/manualPrivateLinkServiceConnections/myplsconnection\",\r\n \"etag\": \"W/\\\"1c48c37e-d597-44aa-8297-b7dc92085fc7\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateLinkServiceId\": \"/subscriptions/ba2358c2-42f2-4138-88df-7c68cf608bea/resourceGroups/ps7491/providers/Microsoft.Batch/batchAccounts/ps2450\",\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 \"customNetworkInterfaceName\": \"\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/ba2358c2-42f2-4138-88df-7c68cf608bea/resourceGroups/ps7491/providers/Microsoft.Network/virtualNetworks/myvnet/subnets/mysubnet\"\r\n },\r\n \"ipConfigurations\": [],\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/ba2358c2-42f2-4138-88df-7c68cf608bea/resourceGroups/ps7491/providers/Microsoft.Network/networkInterfaces/mypec.nic.cab8c23f-e71d-49af-912e-1818cfa636ef\"\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/ps7491/providers/Microsoft.Network/privateEndpoints/mypec?api-version=2021-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmEyMzU4YzItNDJmMi00MTM4LTg4ZGYtN2M2OGNmNjA4YmVhL3Jlc291cmNlR3JvdXBzL3BzNzQ5MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHJpdmF0ZUVuZHBvaW50cy9teXBlYz9hcGktdmVyc2lvbj0yMDIxLTA1LTAx", "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/ps7491/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/ps7491/providers/Microsoft.Batch/batchAccounts/ps2450\",\r\n \"groupIds\": [\r\n \"batchAccount\"\r\n ]\r\n },\r\n \"name\": \"myplsconnection\"\r\n }\r\n ],\r\n \"customDnsConfigs\": [],\r\n \"applicationSecurityGroups\": [],\r\n \"ipConfigurations\": []\r\n },\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "fc243055-a4e7-4db3-8dd3-e937e139fd60" + "63626b8a-2969-400c-917c-12205af151db" ], "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.19044.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "1049" + "1167" ] }, "ResponseHeaders": { @@ -961,19 +973,19 @@ "10" ], "x-ms-request-id": [ - "3287242c-4447-4cd8-9601-aa1400bb6807" + "e3250fdc-9279-4c89-8080-e32dbd6500ed" ], "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/e3250fdc-9279-4c89-8080-e32dbd6500ed?api-version=2021-05-01" ], "x-ms-correlation-request-id": [ - "cdee016f-25ec-4c1b-a913-3ea95d498bb1" + "a80fd180-82a8-49f2-a6e7-4ad7e927ed5e" ], "Azure-AsyncNotification": [ "Enabled" ], "x-ms-arm-service-request-id": [ - "6a57a447-3d3c-4806-8f3a-249b895c1ae5" + "8c8c0ecf-98d9-44a0-bb3e-4968e16b1460" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -986,16 +998,16 @@ "1198" ], "x-ms-routing-request-id": [ - "WESTUS:20200609T210941Z:cdee016f-25ec-4c1b-a913-3ea95d498bb1" + "NORTHCENTRALUS:20220215T192158Z:a80fd180-82a8-49f2-a6e7-4ad7e927ed5e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 09 Jun 2020 21:09:41 GMT" + "Tue, 15 Feb 2022 19:21:57 GMT" ], "Content-Length": [ - "1854" + "1922" ], "Content-Type": [ "application/json; charset=utf-8" @@ -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/ps7491/providers/Microsoft.Network/privateEndpoints/mypec\",\r\n \"etag\": \"W/\\\"64ba222f-b848-4e40-b926-04cbe8b3f79f\\\"\",\r\n \"type\": \"Microsoft.Network/privateEndpoints\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"fee60f47-c0ff-4084-bd3a-fea6facb20c6\",\r\n \"privateLinkServiceConnections\": [],\r\n \"manualPrivateLinkServiceConnections\": [\r\n {\r\n \"name\": \"myplsconnection\",\r\n \"id\": \"/subscriptions/ba2358c2-42f2-4138-88df-7c68cf608bea/resourceGroups/ps7491/providers/Microsoft.Network/privateEndpoints/mypec/manualPrivateLinkServiceConnections/myplsconnection\",\r\n \"etag\": \"W/\\\"64ba222f-b848-4e40-b926-04cbe8b3f79f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateLinkServiceId\": \"/subscriptions/ba2358c2-42f2-4138-88df-7c68cf608bea/resourceGroups/ps7491/providers/Microsoft.Batch/batchAccounts/ps2450\",\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 \"customNetworkInterfaceName\": \"\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/ba2358c2-42f2-4138-88df-7c68cf608bea/resourceGroups/ps7491/providers/Microsoft.Network/virtualNetworks/myvnet/subnets/mysubnet\"\r\n },\r\n \"ipConfigurations\": [],\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/ba2358c2-42f2-4138-88df-7c68cf608bea/resourceGroups/ps7491/providers/Microsoft.Network/networkInterfaces/mypec.nic.cab8c23f-e71d-49af-912e-1818cfa636ef\"\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/e3250fdc-9279-4c89-8080-e32dbd6500ed?api-version=2021-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmEyMzU4YzItNDJmMi00MTM4LTg4ZGYtN2M2OGNmNjA4YmVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZTMyNTBmZGMtOTI3OS00Yzg5LTgwODAtZTMyZGJkNjUwMGVkP2FwaS12ZXJzaW9uPTIwMjEtMDUtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "63626b8a-2969-400c-917c-12205af151db" + ], "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.19044.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" ] }, "ResponseHeaders": { @@ -1031,13 +1046,13 @@ "10" ], "x-ms-request-id": [ - "5fd6485f-3a76-41e7-bf15-41e1d4f76b61" + "617dc040-b35b-4fd3-8112-d3df6a31fee8" ], "x-ms-correlation-request-id": [ - "36594ae6-ac87-47ea-beef-0d01244b4db3" + "afa318db-cefd-4982-b85a-f052c2d3732a" ], "x-ms-arm-service-request-id": [ - "5f4b6389-e82d-4a68-93ab-e6cf34ef4fc9" + "41c8fba0-791c-420e-9f95-52b5b777ce4d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1050,13 +1065,13 @@ "11993" ], "x-ms-routing-request-id": [ - "WESTUS:20200609T210951Z:36594ae6-ac87-47ea-beef-0d01244b4db3" + "NORTHCENTRALUS:20220215T192208Z:afa318db-cefd-4982-b85a-f052c2d3732a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 09 Jun 2020 21:09:51 GMT" + "Tue, 15 Feb 2022 19:22:07 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/e3250fdc-9279-4c89-8080-e32dbd6500ed?api-version=2021-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmEyMzU4YzItNDJmMi00MTM4LTg4ZGYtN2M2OGNmNjA4YmVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZTMyNTBmZGMtOTI3OS00Yzg5LTgwODAtZTMyZGJkNjUwMGVkP2FwaS12ZXJzaW9uPTIwMjEtMDUtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "63626b8a-2969-400c-917c-12205af151db" + ], "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.19044.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" ] }, "ResponseHeaders": { @@ -1092,16 +1110,16 @@ "no-cache" ], "Retry-After": [ - "10" + "20" ], "x-ms-request-id": [ - "561482bb-fa2e-4e13-bbe6-4d28cb8d746e" + "1f19d3c6-1a71-4264-a75e-20e3f62118ca" ], "x-ms-correlation-request-id": [ - "52601e70-d53a-455e-9a4b-8954ca25f394" + "d6157229-f3fe-4d58-9ef7-1e143a41a372" ], "x-ms-arm-service-request-id": [ - "2e563e4d-3575-4b66-a239-be340bb9b636" + "dd9ddf4e-b08b-4e73-a6e7-60ae611089ba" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1114,13 +1132,13 @@ "11992" ], "x-ms-routing-request-id": [ - "WESTUS:20200609T211001Z:52601e70-d53a-455e-9a4b-8954ca25f394" + "NORTHCENTRALUS:20220215T192218Z:d6157229-f3fe-4d58-9ef7-1e143a41a372" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 09 Jun 2020 21:10:01 GMT" + "Tue, 15 Feb 2022 19:22:18 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/e3250fdc-9279-4c89-8080-e32dbd6500ed?api-version=2021-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmEyMzU4YzItNDJmMi00MTM4LTg4ZGYtN2M2OGNmNjA4YmVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZTMyNTBmZGMtOTI3OS00Yzg5LTgwODAtZTMyZGJkNjUwMGVkP2FwaS12ZXJzaW9uPTIwMjEtMDUtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "63626b8a-2969-400c-917c-12205af151db" + ], "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.19044.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/21.0.0.0" ] }, "ResponseHeaders": { @@ -1156,13 +1177,13 @@ "no-cache" ], "x-ms-request-id": [ - "aef90e50-7cc5-4e94-b788-4e85b7369cfb" + "30f5337a-62e6-4296-afb7-62738a9b0d55" ], "x-ms-correlation-request-id": [ - "91222423-0df4-466d-91e1-e86044ce450c" + "13ed11bd-b115-48e0-a2cc-5705a374e22b" ], "x-ms-arm-service-request-id": [ - "5db7618f-09c0-4db1-b74c-64448a862a88" + "a53e715c-4004-4a2c-8127-868c359fc6cd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1175,13 +1196,13 @@ "11991" ], "x-ms-routing-request-id": [ - "WESTUS:20200609T211011Z:91222423-0df4-466d-91e1-e86044ce450c" + "NORTHCENTRALUS:20220215T192239Z:13ed11bd-b115-48e0-a2cc-5705a374e22b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 09 Jun 2020 21:10:11 GMT" + "Tue, 15 Feb 2022 19:22:38 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/ps7491/providers/Microsoft.Batch/batchAccounts/ps2450/privateEndpointConnections?api-version=2020-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmEyMzU4YzItNDJmMi00MTM4LTg4ZGYtN2M2OGNmNjA4YmVhL3Jlc291cmNlR3JvdXBzL3BzNzQ5MS9wcm92aWRlcnMvTWljcm9zb2Z0LkJhdGNoL2JhdGNoQWNjb3VudHMvcHMyNDUwL3ByaXZhdGVFbmRwb2ludENvbm5lY3Rpb25zP2FwaS12ZXJzaW9uPTIwMjAtMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3264c6ef-5303-4c9f-903a-4110b5318eda" + "08942a0c-9522-4469-9efe-9fbabd7f0575" ], "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.19044.", + "Microsoft.Azure.Internal.Common.AzureRestClient/1.3.54" ] }, "ResponseHeaders": { @@ -1226,7 +1247,7 @@ "11998" ], "x-ms-request-id": [ - "d16f4dcc-73aa-45ac-b3d0-2f45d733f007" + "8409ff9f-cb8a-484b-aeda-46d1d6d859fc" ], "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" + "8afc730c-9a0b-4975-87fe-c025ab525476" ], "x-ms-routing-request-id": [ - "WESTUS:20200609T211012Z:a3e946cb-1aea-4a22-87ff-d97cbd4f1282" + "NORTHCENTRALUS:20220215T192239Z:8afc730c-9a0b-4975-87fe-c025ab525476" ], "Date": [ - "Tue, 09 Jun 2020 21:10:11 GMT" + "Tue, 15 Feb 2022 19:22:38 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/ps7491/providers/Microsoft.Batch/batchAccounts/ps2450/privateEndpointConnections/mypec.fee60f47-c0ff-4084-bd3a-fea6facb20c6\",\r\n \"name\": \"mypec.fee60f47-c0ff-4084-bd3a-fea6facb20c6\",\r\n \"type\": \"Microsoft.Batch/batchAccounts/privateEndpointConnections\",\r\n \"etag\": \"W/\\\"0x8D9F0B876651B84\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/ba2358c2-42f2-4138-88df-7c68cf608bea/resourceGroups/ps7491/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/ps7491?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmEyMzU4YzItNDJmMi00MTM4LTg4ZGYtN2M2OGNmNjA4YmVhL3Jlc291cmNlZ3JvdXBzL3BzNzQ5MT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ce534968-d019-41b1-8e85-0b09f7a313e6" + "b401e81b-03e2-42ed-9084-308bbce1660e" ], "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.19044.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.54" ] }, "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/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc0OTEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -1295,13 +1316,13 @@ "14999" ], "x-ms-request-id": [ - "dbe6580c-d696-41d0-9544-5dc7323b333a" + "d3a65f6b-3e4c-4a64-97f3-9ead09888b61" ], "x-ms-correlation-request-id": [ - "dbe6580c-d696-41d0-9544-5dc7323b333a" + "d3a65f6b-3e4c-4a64-97f3-9ead09888b61" ], "x-ms-routing-request-id": [ - "WESTUS:20200609T211012Z:dbe6580c-d696-41d0-9544-5dc7323b333a" + "NORTHCENTRALUS:20220215T192240Z:d3a65f6b-3e4c-4a64-97f3-9ead09888b61" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1310,7 +1331,7 @@ "nosniff" ], "Date": [ - "Tue, 09 Jun 2020 21:10:11 GMT" + "Tue, 15 Feb 2022 19:22:40 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/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc0OTEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmEyMzU4YzItNDJmMi00MTM4LTg4ZGYtN2M2OGNmNjA4YmVhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjME9URXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/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.19044.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.54" ] }, "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/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc0OTEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -1352,13 +1373,13 @@ "11998" ], "x-ms-request-id": [ - "6bba2d53-314a-4181-9a18-7fe2b8f0899f" + "b7f84f10-fd31-41ac-b1c2-9dc340da000c" ], "x-ms-correlation-request-id": [ - "6bba2d53-314a-4181-9a18-7fe2b8f0899f" + "b7f84f10-fd31-41ac-b1c2-9dc340da000c" ], "x-ms-routing-request-id": [ - "WESTUS:20200609T211027Z:6bba2d53-314a-4181-9a18-7fe2b8f0899f" + "NORTHCENTRALUS:20220215T192256Z:b7f84f10-fd31-41ac-b1c2-9dc340da000c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1367,7 +1388,7 @@ "nosniff" ], "Date": [ - "Tue, 09 Jun 2020 21:10:27 GMT" + "Tue, 15 Feb 2022 19:22:55 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/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc0OTEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmEyMzU4YzItNDJmMi00MTM4LTg4ZGYtN2M2OGNmNjA4YmVhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjME9URXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/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.19044.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.54" ] }, "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/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc0OTEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -1409,13 +1430,13 @@ "11997" ], "x-ms-request-id": [ - "25ae565a-e588-4457-8266-622009bee32a" + "84638558-2f88-43aa-8b17-451d7615f0b3" ], "x-ms-correlation-request-id": [ - "25ae565a-e588-4457-8266-622009bee32a" + "84638558-2f88-43aa-8b17-451d7615f0b3" ], "x-ms-routing-request-id": [ - "WESTUS:20200609T211042Z:25ae565a-e588-4457-8266-622009bee32a" + "NORTHCENTRALUS:20220215T192311Z:84638558-2f88-43aa-8b17-451d7615f0b3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1424,7 +1445,7 @@ "nosniff" ], "Date": [ - "Tue, 09 Jun 2020 21:10:41 GMT" + "Tue, 15 Feb 2022 19:23:10 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/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc0OTEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmEyMzU4YzItNDJmMi00MTM4LTg4ZGYtN2M2OGNmNjA4YmVhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjME9URXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/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.19044.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.54" ] }, "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/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc0OTEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -1466,13 +1487,13 @@ "11996" ], "x-ms-request-id": [ - "8cbeca1b-daf2-4273-8ca1-458a1fed916e" + "84d82573-5b9c-4114-b2e3-5cb8b632bc63" ], "x-ms-correlation-request-id": [ - "8cbeca1b-daf2-4273-8ca1-458a1fed916e" + "84d82573-5b9c-4114-b2e3-5cb8b632bc63" ], "x-ms-routing-request-id": [ - "WESTUS:20200609T211057Z:8cbeca1b-daf2-4273-8ca1-458a1fed916e" + "NORTHCENTRALUS:20220215T192326Z:84d82573-5b9c-4114-b2e3-5cb8b632bc63" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1481,7 +1502,7 @@ "nosniff" ], "Date": [ - "Tue, 09 Jun 2020 21:10:56 GMT" + "Tue, 15 Feb 2022 19:23:25 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/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc0OTEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmEyMzU4YzItNDJmMi00MTM4LTg4ZGYtN2M2OGNmNjA4YmVhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjME9URXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/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.19044.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.54" ] }, "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/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc0OTEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -1523,13 +1544,13 @@ "11995" ], "x-ms-request-id": [ - "f63aca40-d80a-4635-af70-555b4397ed5b" + "43028030-0585-4e54-a18f-c99cd143e8b6" ], "x-ms-correlation-request-id": [ - "f63aca40-d80a-4635-af70-555b4397ed5b" + "43028030-0585-4e54-a18f-c99cd143e8b6" ], "x-ms-routing-request-id": [ - "WESTUS:20200609T211112Z:f63aca40-d80a-4635-af70-555b4397ed5b" + "NORTHCENTRALUS:20220215T192341Z:43028030-0585-4e54-a18f-c99cd143e8b6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1538,7 +1559,7 @@ "nosniff" ], "Date": [ - "Tue, 09 Jun 2020 21:11:11 GMT" + "Tue, 15 Feb 2022 19:23:40 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/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc0OTEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmEyMzU4YzItNDJmMi00MTM4LTg4ZGYtN2M2OGNmNjA4YmVhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjME9URXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/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.19044.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.54" ] }, "ResponseHeaders": { @@ -1571,7 +1592,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/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc0OTEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -1580,13 +1601,13 @@ "11994" ], "x-ms-request-id": [ - "77f11b42-649b-4373-af5f-d3d8d1db8748" + "d7c628ac-c970-4c2e-a24a-c120c0485db0" ], "x-ms-correlation-request-id": [ - "77f11b42-649b-4373-af5f-d3d8d1db8748" + "d7c628ac-c970-4c2e-a24a-c120c0485db0" ], "x-ms-routing-request-id": [ - "WESTUS:20200609T211127Z:77f11b42-649b-4373-af5f-d3d8d1db8748" + "NORTHCENTRALUS:20220215T192356Z:d7c628ac-c970-4c2e-a24a-c120c0485db0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1595,7 +1616,7 @@ "nosniff" ], "Date": [ - "Tue, 09 Jun 2020 21:11:26 GMT" + "Tue, 15 Feb 2022 19:23:55 GMT" ], "Expires": [ "-1" @@ -1608,16 +1629,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/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc0OTEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmEyMzU4YzItNDJmMi00MTM4LTg4ZGYtN2M2OGNmNjA4YmVhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjME9URXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/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.19044.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.54" ] }, "ResponseHeaders": { @@ -1628,7 +1649,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/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc0OTEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -1637,13 +1658,13 @@ "11993" ], "x-ms-request-id": [ - "ce9ee602-a0a9-44e3-9214-02b108958a2a" + "19d9e278-860a-46f8-bd7f-ff72cd3cdb86" ], "x-ms-correlation-request-id": [ - "ce9ee602-a0a9-44e3-9214-02b108958a2a" + "19d9e278-860a-46f8-bd7f-ff72cd3cdb86" ], "x-ms-routing-request-id": [ - "WESTUS:20200609T211142Z:ce9ee602-a0a9-44e3-9214-02b108958a2a" + "NORTHCENTRALUS:20220215T192411Z:19d9e278-860a-46f8-bd7f-ff72cd3cdb86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1652,7 +1673,7 @@ "nosniff" ], "Date": [ - "Tue, 09 Jun 2020 21:11:41 GMT" + "Tue, 15 Feb 2022 19:24:10 GMT" ], "Expires": [ "-1" @@ -1665,16 +1686,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/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc0OTEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmEyMzU4YzItNDJmMi00MTM4LTg4ZGYtN2M2OGNmNjA4YmVhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjME9URXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/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.19044.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.54" ] }, "ResponseHeaders": { @@ -1685,7 +1706,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/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc0OTEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -1694,13 +1715,13 @@ "11992" ], "x-ms-request-id": [ - "11bf5e96-98b1-4f9d-afde-0aa39e5faa80" + "a5465802-5703-4c56-90d8-36b72bce9d42" ], "x-ms-correlation-request-id": [ - "11bf5e96-98b1-4f9d-afde-0aa39e5faa80" + "a5465802-5703-4c56-90d8-36b72bce9d42" ], "x-ms-routing-request-id": [ - "WESTUS:20200609T211157Z:11bf5e96-98b1-4f9d-afde-0aa39e5faa80" + "NORTHCENTRALUS:20220215T192426Z:a5465802-5703-4c56-90d8-36b72bce9d42" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1709,7 +1730,7 @@ "nosniff" ], "Date": [ - "Tue, 09 Jun 2020 21:11:56 GMT" + "Tue, 15 Feb 2022 19:24:26 GMT" ], "Expires": [ "-1" @@ -1722,16 +1743,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/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc0OTEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmEyMzU4YzItNDJmMi00MTM4LTg4ZGYtN2M2OGNmNjA4YmVhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjME9URXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/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.19044.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.54" ] }, "ResponseHeaders": { @@ -1742,7 +1763,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/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc0OTEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -1751,13 +1772,13 @@ "11991" ], "x-ms-request-id": [ - "716affb0-14a1-456d-bc6c-220df7c02bb9" + "04860b76-008b-4445-b611-54b6fdfc0d16" ], "x-ms-correlation-request-id": [ - "716affb0-14a1-456d-bc6c-220df7c02bb9" + "04860b76-008b-4445-b611-54b6fdfc0d16" ], "x-ms-routing-request-id": [ - "WESTUS:20200609T211212Z:716affb0-14a1-456d-bc6c-220df7c02bb9" + "NORTHCENTRALUS:20220215T192442Z:04860b76-008b-4445-b611-54b6fdfc0d16" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1766,7 +1787,7 @@ "nosniff" ], "Date": [ - "Tue, 09 Jun 2020 21:12:12 GMT" + "Tue, 15 Feb 2022 19:24:41 GMT" ], "Expires": [ "-1" @@ -1779,16 +1800,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/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc0OTEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmEyMzU4YzItNDJmMi00MTM4LTg4ZGYtN2M2OGNmNjA4YmVhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjME9URXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/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.19044.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.54" ] }, "ResponseHeaders": { @@ -1798,23 +1819,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": [ "11990" ], "x-ms-request-id": [ - "33ec3357-f3f5-4a50-b40d-26bec93383ac" + "44a3987e-711b-456c-9174-5ab1484fa911" ], "x-ms-correlation-request-id": [ - "33ec3357-f3f5-4a50-b40d-26bec93383ac" + "44a3987e-711b-456c-9174-5ab1484fa911" ], "x-ms-routing-request-id": [ - "WESTUS:20200609T211227Z:33ec3357-f3f5-4a50-b40d-26bec93383ac" + "NORTHCENTRALUS:20220215T192457Z:44a3987e-711b-456c-9174-5ab1484fa911" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1823,7 +1838,7 @@ "nosniff" ], "Date": [ - "Tue, 09 Jun 2020 21:12:27 GMT" + "Tue, 15 Feb 2022 19:24:56 GMT" ], "Expires": [ "-1" @@ -1833,19 +1848,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/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc0OTEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmEyMzU4YzItNDJmMi00MTM4LTg4ZGYtN2M2OGNmNjA4YmVhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjME9URXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/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.19044.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.54" ] }, "ResponseHeaders": { @@ -1855,251 +1870,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": [ "11989" ], "x-ms-request-id": [ - "6f036546-7541-4751-8d95-090a7fd9bd9a" - ], - "x-ms-correlation-request-id": [ - "6f036546-7541-4751-8d95-090a7fd9bd9a" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200609T211242Z:6f036546-7541-4751-8d95-090a7fd9bd9a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 09 Jun 2020 21:12: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": [ - "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" + "46e9074b-69ac-4b19-8ef7-0a111604ddc4" ], "x-ms-correlation-request-id": [ - "660b2c32-5a88-4b39-a125-f6360e30c812" + "46e9074b-69ac-4b19-8ef7-0a111604ddc4" ], "x-ms-routing-request-id": [ - "WESTUS:20200609T211342Z:660b2c32-5a88-4b39-a125-f6360e30c812" + "NORTHCENTRALUS:20220215T192457Z:46e9074b-69ac-4b19-8ef7-0a111604ddc4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2108,7 +1889,7 @@ "nosniff" ], "Date": [ - "Tue, 09 Jun 2020 21:13:42 GMT" + "Tue, 15 Feb 2022 19:24:57 GMT" ], "Expires": [ "-1" @@ -2118,13240 +1899,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": [ - "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" + "ps2450", + "ps7491" ] }, "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..53cd4abf3e17 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" + "3d601744-c1d7-472b-87cd-8860b9637c13" ], "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.19044.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.54" ] }, "ResponseHeaders": { @@ -30,13 +30,13 @@ "11999" ], "x-ms-request-id": [ - "cbe1d648-fecf-46b7-bc75-97930de02b8c" + "cc867f28-8e20-4596-88ba-4204a5a52797" ], "x-ms-correlation-request-id": [ - "cbe1d648-fecf-46b7-bc75-97930de02b8c" + "cc867f28-8e20-4596-88ba-4204a5a52797" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T225211Z:cbe1d648-fecf-46b7-bc75-97930de02b8c" + "NORTHCENTRALUS:20220215T191943Z:cc867f28-8e20-4596-88ba-4204a5a52797" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -45,7 +45,7 @@ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 22:52:11 GMT" + "Tue, 15 Feb 2022 19:19:43 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -54,29 +54,29 @@ "-1" ], "Content-Length": [ - "4461" + "7848" ] }, - "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 \"Sweden Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-01-01\",\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 \"Sweden Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-01-01\",\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 \"Sweden Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-01-01\",\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 \"Sweden Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-01-01\",\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 \"2022-01-01\",\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 \"Sweden Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-01-01\",\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 \"Sweden Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-01-01\",\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 \"Sweden Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-01-01\",\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 \"Sweden Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-01-01\",\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 \"Sweden Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-01-01\",\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/ps493?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmEyMzU4YzItNDJmMi00MTM4LTg4ZGYtN2M2OGNmNjA4YmVhL3Jlc291cmNlZ3JvdXBzL3BzNDkzP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "14347ccf-6cad-467a-8862-da3af232e606" + "fa668f5c-3da9-4399-982e-73e49a9d9301" ], "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.19044.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.54" ], "Content-Type": [ "application/json; charset=utf-8" @@ -96,13 +96,13 @@ "1199" ], "x-ms-request-id": [ - "cd2eab92-4a55-4118-889f-747b721c6b21" + "05c8337a-e3db-4a83-a331-838aea5ae308" ], "x-ms-correlation-request-id": [ - "cd2eab92-4a55-4118-889f-747b721c6b21" + "05c8337a-e3db-4a83-a331-838aea5ae308" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T225211Z:cd2eab92-4a55-4118-889f-747b721c6b21" + "NORTHCENTRALUS:20220215T191946Z:05c8337a-e3db-4a83-a331-838aea5ae308" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -111,10 +111,10 @@ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 22:52:11 GMT" + "Tue, 15 Feb 2022 19:19:45 GMT" ], "Content-Length": [ - "165" + "163" ], "Content-Type": [ "application/json; charset=utf-8" @@ -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/ps493\",\r\n \"name\": \"ps493\",\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/ps493/providers/Microsoft.Batch/batchAccounts/ps3410?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmEyMzU4YzItNDJmMi00MTM4LTg4ZGYtN2M2OGNmNjA4YmVhL3Jlc291cmNlR3JvdXBzL3BzNDkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9wczM0MTA/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", "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" + "ef70d528-c568-49ce-bc47-6d62b846e8f9" ], "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.19044.", + "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/ps493/providers/Microsoft.Batch/batchAccounts/ps3410/operationResults/5986dddd-0b5a-4eba-842f-04d5b6cc9df6?api-version=2021-06-01" ], "Retry-After": [ "15" ], "x-ms-request-id": [ - "46137e23-ac04-4544-ba7d-e66771829904" + "5986dddd-0b5a-4eba-842f-04d5b6cc9df6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -180,13 +180,13 @@ "1199" ], "x-ms-correlation-request-id": [ - "142b18ba-282a-4f56-8777-ae41cb73c334" + "6871058c-d8c0-4ec1-9b6f-5baff6bdd2eb" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T225214Z:142b18ba-282a-4f56-8777-ae41cb73c334" + "NORTHCENTRALUS:20220215T191949Z:6871058c-d8c0-4ec1-9b6f-5baff6bdd2eb" ], "Date": [ - "Wed, 10 Jun 2020 22:52:14 GMT" + "Tue, 15 Feb 2022 19:19:49 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/ps493/providers/Microsoft.Batch/batchAccounts/ps3410/operationResults/5986dddd-0b5a-4eba-842f-04d5b6cc9df6?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmEyMzU4YzItNDJmMi00MTM4LTg4ZGYtN2M2OGNmNjA4YmVhL3Jlc291cmNlR3JvdXBzL3BzNDkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9wczM0MTAvb3BlcmF0aW9uUmVzdWx0cy81OTg2ZGRkZC0wYjVhLTRlYmEtODQyZi0wNGQ1YjZjYzlkZjY/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "ef70d528-c568-49ce-bc47-6d62b846e8f9" + ], "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.19044.", + "Microsoft.Azure.Management.Batch.BatchManagementClient/14.0.0.0" ] }, "ResponseHeaders": { @@ -219,13 +222,13 @@ "no-cache" ], "ETag": [ - "\"0x8D80D90F450BC1C\"" + "\"0x8D9F0B82BE75F2D\"" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11999" ], "x-ms-request-id": [ - "c39e5a83-ba21-4d8c-9cb0-62de63d77158" + "8f9614f3-1f48-48f3-af73-df1a93004ff7" ], "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" + "e840b0fb-432a-4baf-9654-8c8ac5c78cf2" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T225229Z:4ec6b5ef-297e-4b0d-be49-d40afc82f39b" + "NORTHCENTRALUS:20220215T192005Z:e840b0fb-432a-4baf-9654-8c8ac5c78cf2" ], "Date": [ - "Wed, 10 Jun 2020 22:52:28 GMT" + "Tue, 15 Feb 2022 19:20:04 GMT" ], "Content-Length": [ - "2314" + "3261" ], "Content-Type": [ "application/json; charset=utf-8" @@ -255,29 +258,29 @@ "-1" ], "Last-Modified": [ - "Wed, 10 Jun 2020 22:52:29 GMT" + "Tue, 15 Feb 2022 19:20:05 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/ps493/providers/Microsoft.Batch/batchAccounts/ps3410\",\r\n \"name\": \"ps3410\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"ps3410.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 \"name\": \"standardDDv5Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardDDSv5Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardEDv5Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardEDSv5Family\",\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\": \"8bf0b6b7-4378-4baa-8bb3-495739e9ecab\",\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/ps493?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmEyMzU4YzItNDJmMi00MTM4LTg4ZGYtN2M2OGNmNjA4YmVhL3Jlc291cmNlZ3JvdXBzL3BzNDkzP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e6293b2f-3fed-45de-a328-83837065fea3" + "4769563c-4c2e-4135-a20e-5d9fb9748c4e" ], "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.19044.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.54" ] }, "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/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5My1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -297,13 +300,13 @@ "14999" ], "x-ms-request-id": [ - "2bf1547b-1248-4c48-94ca-9f9ca1e9605e" + "45fc32f0-1f9f-4070-b16f-a5821aacd0c2" ], "x-ms-correlation-request-id": [ - "2bf1547b-1248-4c48-94ca-9f9ca1e9605e" + "45fc32f0-1f9f-4070-b16f-a5821aacd0c2" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T225229Z:2bf1547b-1248-4c48-94ca-9f9ca1e9605e" + "NORTHCENTRALUS:20220215T192006Z:45fc32f0-1f9f-4070-b16f-a5821aacd0c2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -312,7 +315,7 @@ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 22:52:29 GMT" + "Tue, 15 Feb 2022 19:20:05 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/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5My1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmEyMzU4YzItNDJmMi00MTM4LTg4ZGYtN2M2OGNmNjA4YmVhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNU15MVhSVk5VVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5kbGMzUjFjeUo5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "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.19044.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.54" ] }, "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/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5My1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -354,13 +357,13 @@ "11998" ], "x-ms-request-id": [ - "0a584d7e-99d5-4a77-8b95-3f702e01dda7" + "e8e4fe26-b7d7-40e7-97c4-89ce15af37a8" ], "x-ms-correlation-request-id": [ - "0a584d7e-99d5-4a77-8b95-3f702e01dda7" + "e8e4fe26-b7d7-40e7-97c4-89ce15af37a8" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T225245Z:0a584d7e-99d5-4a77-8b95-3f702e01dda7" + "NORTHCENTRALUS:20220215T192021Z:e8e4fe26-b7d7-40e7-97c4-89ce15af37a8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -369,7 +372,7 @@ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 22:52:44 GMT" + "Tue, 15 Feb 2022 19:20:21 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/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5My1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmEyMzU4YzItNDJmMi00MTM4LTg4ZGYtN2M2OGNmNjA4YmVhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNU15MVhSVk5VVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5kbGMzUjFjeUo5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "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.19044.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.54" ] }, "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/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5My1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -411,13 +414,13 @@ "11997" ], "x-ms-request-id": [ - "8f3355d1-1cc4-49b8-849b-f10f12a86842" + "5ba8cbb4-64ad-4b46-a8b6-aaae39d4732d" ], "x-ms-correlation-request-id": [ - "8f3355d1-1cc4-49b8-849b-f10f12a86842" + "5ba8cbb4-64ad-4b46-a8b6-aaae39d4732d" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T225300Z:8f3355d1-1cc4-49b8-849b-f10f12a86842" + "NORTHCENTRALUS:20220215T192036Z:5ba8cbb4-64ad-4b46-a8b6-aaae39d4732d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -426,7 +429,7 @@ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 22:52:59 GMT" + "Tue, 15 Feb 2022 19:20:36 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/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5My1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmEyMzU4YzItNDJmMi00MTM4LTg4ZGYtN2M2OGNmNjA4YmVhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNU15MVhSVk5VVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5kbGMzUjFjeUo5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "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.19044.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.54" ] }, "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/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5My1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -468,13 +471,13 @@ "11996" ], "x-ms-request-id": [ - "1dc9be2f-4f69-4e30-9b39-58ad01327bd0" + "81ad0d59-c55f-4dd4-8660-0eec8d5cd776" ], "x-ms-correlation-request-id": [ - "1dc9be2f-4f69-4e30-9b39-58ad01327bd0" + "81ad0d59-c55f-4dd4-8660-0eec8d5cd776" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T225315Z:1dc9be2f-4f69-4e30-9b39-58ad01327bd0" + "NORTHCENTRALUS:20220215T192051Z:81ad0d59-c55f-4dd4-8660-0eec8d5cd776" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -483,7 +486,7 @@ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 22:53:14 GMT" + "Tue, 15 Feb 2022 19:20:51 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/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5My1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmEyMzU4YzItNDJmMi00MTM4LTg4ZGYtN2M2OGNmNjA4YmVhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNU15MVhSVk5VVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5kbGMzUjFjeUo5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "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.19044.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.54" ] }, "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/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5My1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -525,13 +528,13 @@ "11995" ], "x-ms-request-id": [ - "8fc6621d-ad4c-4341-a1ac-c6001bd47064" + "3a18086f-b162-443e-a109-835f0a6cd606" ], "x-ms-correlation-request-id": [ - "8fc6621d-ad4c-4341-a1ac-c6001bd47064" + "3a18086f-b162-443e-a109-835f0a6cd606" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T225330Z:8fc6621d-ad4c-4341-a1ac-c6001bd47064" + "NORTHCENTRALUS:20220215T192106Z:3a18086f-b162-443e-a109-835f0a6cd606" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -540,7 +543,7 @@ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 22:53:29 GMT" + "Tue, 15 Feb 2022 19:21:06 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/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5My1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmEyMzU4YzItNDJmMi00MTM4LTg4ZGYtN2M2OGNmNjA4YmVhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNU15MVhSVk5VVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5kbGMzUjFjeUo5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "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.19044.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.54" ] }, "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" + "ec7e80f8-1ef5-4374-bf33-0ed5e300c0e0" ], "x-ms-correlation-request-id": [ - "4b91c717-fc97-4c01-9595-a735007a46aa" + "ec7e80f8-1ef5-4374-bf33-0ed5e300c0e0" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T225415Z:4b91c717-fc97-4c01-9595-a735007a46aa" + "NORTHCENTRALUS:20220215T192121Z:ec7e80f8-1ef5-4374-bf33-0ed5e300c0e0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -705,7 +594,7 @@ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 22:54:14 GMT" + "Tue, 15 Feb 2022 19:21:21 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/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5My1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmEyMzU4YzItNDJmMi00MTM4LTg4ZGYtN2M2OGNmNjA4YmVhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNU15MVhSVk5VVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5kbGMzUjFjeUo5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "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.19044.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.54" ] }, "ResponseHeaders": { @@ -738,16 +627,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11993" ], "x-ms-request-id": [ - "e706d940-949a-48bf-8d14-ceba199efa38" + "fec34bb7-ffd5-452f-941e-731575b38ae2" ], "x-ms-correlation-request-id": [ - "e706d940-949a-48bf-8d14-ceba199efa38" + "fec34bb7-ffd5-452f-941e-731575b38ae2" ], "x-ms-routing-request-id": [ - "WESTUS:20200610T225415Z:e706d940-949a-48bf-8d14-ceba199efa38" + "NORTHCENTRALUS:20220215T192122Z:fec34bb7-ffd5-452f-941e-731575b38ae2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -756,7 +645,7 @@ "nosniff" ], "Date": [ - "Wed, 10 Jun 2020 22:54:14 GMT" + "Tue, 15 Feb 2022 19:21:21 GMT" ], "Expires": [ "-1" @@ -771,14 +660,14 @@ ], "Names": { "Test-CreateNewBatchAccountWithSystemIdentity": [ - "ps5534", - "ps7348" + "ps3410", + "ps493" ] }, "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..5e368df8fe63 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=2022-01-01.15.0", + "EncodedRequestUri": "L3N1cHBvcnRlZGltYWdlcz9hcGktdmVyc2lvbj0yMDIyLTAxLTAxLjE1LjA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "eb2cd06e-933f-4ae4-8064-227e13042d96" + "ef437dbf-0f47-493d-9bc0-2709e70b7bd3" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 21:05:16 GMT" + "Tue, 15 Feb 2022 19:18:40 GMT" + ], + "x-ms-client-request-id": [ + "49eb5942-1bcd-4f0f-a2ce-4ab25a305c67" ], "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.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", "AzurePowershell/Az1.0.0" ] }, @@ -31,7 +34,7 @@ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "31a6fe6d-90e9-4b6a-a85d-8e9a219cde3d" + "f74e42f7-6e8d-4c3c-9ee4-89caf62054bf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -43,21 +46,21 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 21:05:38 GMT" + "Tue, 15 Feb 2022 19:18:39 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\": \"almalinux\",\r\n \"offer\": \"almalinux\",\r\n \"sku\": \"8_4\",\r\n \"version\": \"latest\"\r\n },\r\n \"verificationType\": \"unverified\",\r\n \"nodeAgentSKUId\": \"batch.node.el 8\",\r\n \"osType\": \"linux\"\r\n },\r\n {\r\n \"imageReference\": {\r\n \"publisher\": \"almalinux\",\r\n \"offer\": \"almalinux\",\r\n \"sku\": \"8_4-gen2\",\r\n \"version\": \"latest\"\r\n },\r\n \"verificationType\": \"unverified\",\r\n \"nodeAgentSKUId\": \"batch.node.el 8\",\r\n \"capabilities\": [\r\n \"Generation2VMImage\"\r\n ],\r\n \"osType\": \"linux\"\r\n },\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\": \"2022-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\": \"2022-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\": \"2022-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\": \"2022-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\": \"2022-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\": \"2022-datacenter-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\": \"2022-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\": \"2022-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\": \"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 \"batchSupportEndOfLife\": \"2022-06-10T00: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-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 \"batchSupportEndOfLife\": \"2022-06-10T00: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-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 \"batchSupportEndOfLife\": \"2022-06-10T00: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\": \"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 \"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\": \"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 \"batchSupportEndOfLife\": \"2021-12-31T00:00:00Z\",\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 \"imageReference\": {\r\n \"publisher\": \"xilinx\",\r\n \"offer\": \"xilinx_alveo_u250_deployment_vm_ubuntu2004_062421\",\r\n \"sku\": \"xilinx_alveo_u250_deployment_vm_ubuntu_2004_062421\",\r\n \"version\": \"latest\"\r\n },\r\n \"verificationType\": \"unverified\",\r\n \"nodeAgentSKUId\": \"batch.node.ubuntu 20.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..c7b3be3505a1 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" + "ae25615d-b308-4a1d-8535-6277c286e152" ], "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.19044.", + "Microsoft.Azure.Management.Batch.BatchManagementClient/14.0.0.0" ] }, "ResponseHeaders": { @@ -27,13 +27,13 @@ "no-cache" ], "ETag": [ - "W/\"0x8D80CC2208DFA79\"" + "W/\"0x8D9F0BECD7C35D9\"" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], "x-ms-request-id": [ - "f7bd9397-a1ee-48f6-a496-a477be952af8" + "e2d60058-e835-4e69-902e-afa54e64b62d" ], "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" + "e52da241-a1d1-40b8-ab4c-d7dd67647d4c" ], "x-ms-routing-request-id": [ - "WESTUS:20200609T221158Z:99e0dd45-53ca-4e57-9a9f-bb230f8c220a" + "NORTHCENTRALUS:20220215T200733Z:e52da241-a1d1-40b8-ab4c-d7dd67647d4c" ], "Date": [ - "Tue, 09 Jun 2020 22:11:58 GMT" + "Tue, 15 Feb 2022 20:07:32 GMT" ], "Content-Length": [ - "637" + "657" ], "Content-Type": [ "application/json; charset=utf-8" @@ -63,29 +63,29 @@ "-1" ], "Last-Modified": [ - "Tue, 09 Jun 2020 22:11:58 GMT" + "Tue, 15 Feb 2022 20:07:33 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/\\\"0x8D9F0BECD7C35D9\\\"\",\r\n \"properties\": {\r\n \"storageUrl\": \"https://mikebatchstorage.blob.core.windows.net/app-createpoolwithapplicationp-6a85f493cbbd422ea6da3fb94567d555/foo?sv=2018-03-28&sr=b&sig=v3%2BEQCnM5jL0QAygvwV9MjTt6eWfbL%2B7WZDi%2B%2FLOHbI%3D&st=2022-02-15T20%3A02%3A33Z&se=2022-02-16T00%3A07%3A33Z&sp=rw\",\r\n \"storageUrlExpiry\": \"2022-02-16T00:07:33.1641954Z\",\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" + "a85bdffa-1999-4016-b88a-9a004262b0b2" ], "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.19044.", + "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/\"0x8D9F0BED0DB5ACF\"" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], "x-ms-request-id": [ - "8a248c8d-4842-47ba-abc3-697f1b3aebae" + "34621a3a-c94c-441d-b8d3-71335b8cb2e8" ], "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" + "eba86590-8b29-4b83-8867-a8668934a2f3" ], "x-ms-routing-request-id": [ - "WESTUS:20200609T221200Z:d25c3e76-8e58-4227-b3ee-930998969a19" + "NORTHCENTRALUS:20220215T200738Z:eba86590-8b29-4b83-8867-a8668934a2f3" ], "Date": [ - "Tue, 09 Jun 2020 22:12:00 GMT" + "Tue, 15 Feb 2022 20:07:38 GMT" ], "Content-Length": [ - "702" + "716" ], "Content-Type": [ "application/json; charset=utf-8" @@ -138,29 +138,29 @@ "-1" ], "Last-Modified": [ - "Tue, 09 Jun 2020 22:12:00 GMT" + "Tue, 15 Feb 2022 20:07:38 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/\\\"0x8D9F0BED0DB5ACF\\\"\",\r\n \"properties\": {\r\n \"storageUrl\": \"https://mikebatchstorage.blob.core.windows.net/app-createpoolwithapplicationp-6a85f493cbbd422ea6da3fb94567d555/foo?sv=2018-03-28&sr=b&sig=UUfbTxnHTGHkpDkWIZ9kE5Dphbb8eW1B2%2BbjEsfdPho%3D&st=2022-02-15T20%3A02%3A38Z&se=2022-02-16T00%3A07%3A38Z&sp=rw\",\r\n \"storageUrlExpiry\": \"2022-02-16T00:07:38.8425386Z\",\r\n \"state\": \"Active\",\r\n \"format\": \"zip\",\r\n \"lastActivationTime\": \"2022-02-15T20:07:38.793797Z\"\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" + "a85bdffa-1999-4016-b88a-9a004262b0b2" ], "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.19044.", + "Microsoft.Azure.Management.Batch.BatchManagementClient/14.0.0.0" ] }, "ResponseHeaders": { @@ -171,13 +171,13 @@ "no-cache" ], "ETag": [ - "W/\"0x8D80CC221A2F7B8\"" + "W/\"0x8D9F0BED0DB5ACF\"" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11999" ], "x-ms-request-id": [ - "8ef2ad7b-d759-4cba-b5cc-958ecd1f4581" + "fa010431-5f99-4b58-a5ef-1587f57734c7" ], "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" + "5155625b-611a-4450-b85a-62c2bdab8a24" ], "x-ms-routing-request-id": [ - "WESTUS:20200609T221200Z:6d2687b5-6663-4c83-8cd6-1cd5bb7658c3" + "NORTHCENTRALUS:20220215T200739Z:5155625b-611a-4450-b85a-62c2bdab8a24" ], "Date": [ - "Tue, 09 Jun 2020 22:12:00 GMT" + "Tue, 15 Feb 2022 20:07:38 GMT" ], "Content-Length": [ - "702" + "727" ], "Content-Type": [ "application/json; charset=utf-8" @@ -207,32 +207,401 @@ "-1" ], "Last-Modified": [ - "Tue, 09 Jun 2020 22:12:00 GMT" + "Tue, 15 Feb 2022 20:07:38 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/\\\"0x8D9F0BED0DB5ACF\\\"\",\r\n \"properties\": {\r\n \"storageUrl\": \"https://mikebatchstorage.blob.core.windows.net/app-createpoolwithapplicationp-6a85f493cbbd422ea6da3fb94567d555/foo?sv=2018-03-28&sr=b&sig=%2F%2FcKLEzCHo%2BAum6cJfK%2BJs%2Bazzh%2BvMG5tO%2FkvwwDTmQ%3D&st=2022-02-15T20%3A02%3A39Z&se=2022-02-16T00%3A07%3A39Z&sp=rw\",\r\n \"storageUrlExpiry\": \"2022-02-16T00:07:39.002469Z\",\r\n \"state\": \"Active\",\r\n \"format\": \"zip\",\r\n \"lastActivationTime\": \"2022-02-15T20:07:38.793797Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/pools?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L3Bvb2xzP2FwaS12ZXJzaW9uPTIwMjAtMDMtMDEuMTEuMA==", + "RequestUri": "/pools?api-version=2022-01-01.15.0", + "EncodedRequestUri": "L3Bvb2xzP2FwaS12ZXJzaW9uPTIwMjItMDEtMDEuMTUuMA==", "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" + "eb2137c7-6802-4f9e-b6aa-6923606b8bd9" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:12:00 GMT" + "Tue, 15 Feb 2022 20:07:39 GMT" + ], + "x-ms-client-request-id": [ + "31970e2c-bf11-4451-865f-f62f1786baf0" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", + "AzurePowershell/Az1.0.0" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; charset=utf-8" + ], + "Content-Length": [ + "364" + ] + }, + "ResponseHeaders": { + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "baabd46a-6a3a-42a5-a4a6-ccb933471dfe" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Tue, 15 Feb 2022 20:08:04 GMT" + ], + "Content-Length": [ + "361" + ], + "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\": \"OperationTimedOut\",\r\n \"message\": {\r\n \"lang\": \"en-US\",\r\n \"value\": \"Operation could not be completed within the specified time.\\nRequestId:baabd46a-6a3a-42a5-a4a6-ccb933471dfe\\nTime:2022-02-15T20:08:05.9226102Z\"\r\n }\r\n}", + "StatusCode": 500 + }, + { + "RequestUri": "/pools?api-version=2022-01-01.15.0", + "EncodedRequestUri": "L3Bvb2xzP2FwaS12ZXJzaW9uPTIwMjItMDEtMDEuMTUuMA==", + "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": [ + "439baa99-f962-4137-96a4-175e9ee9bc96" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Tue, 15 Feb 2022 20:08:07 GMT" + ], + "x-ms-client-request-id": [ + "31970e2c-bf11-4451-865f-f62f1786baf0" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", + "AzurePowershell/Az1.0.0" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; charset=utf-8" + ], + "Content-Length": [ + "364" + ] + }, + "ResponseHeaders": { + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "d13f117f-cf21-4777-9a1c-5fe40ac77405" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Tue, 15 Feb 2022 20:08:32 GMT" + ], + "Content-Length": [ + "361" + ], + "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\": \"OperationTimedOut\",\r\n \"message\": {\r\n \"lang\": \"en-US\",\r\n \"value\": \"Operation could not be completed within the specified time.\\nRequestId:d13f117f-cf21-4777-9a1c-5fe40ac77405\\nTime:2022-02-15T20:08:33.2049861Z\"\r\n }\r\n}", + "StatusCode": 500 + }, + { + "RequestUri": "/pools?api-version=2022-01-01.15.0", + "EncodedRequestUri": "L3Bvb2xzP2FwaS12ZXJzaW9uPTIwMjItMDEtMDEuMTUuMA==", + "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": [ + "b3fbfb33-d509-435f-aa5f-0dc03c0976b8" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Tue, 15 Feb 2022 20:08:35 GMT" + ], + "x-ms-client-request-id": [ + "31970e2c-bf11-4451-865f-f62f1786baf0" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", + "AzurePowershell/Az1.0.0" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; charset=utf-8" + ], + "Content-Length": [ + "364" + ] + }, + "ResponseHeaders": { + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "0ed9790c-8d16-4ad4-8f40-7086150b82e1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Tue, 15 Feb 2022 20:09:01 GMT" + ], + "Content-Length": [ + "361" + ], + "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\": \"OperationTimedOut\",\r\n \"message\": {\r\n \"lang\": \"en-US\",\r\n \"value\": \"Operation could not be completed within the specified time.\\nRequestId:0ed9790c-8d16-4ad4-8f40-7086150b82e1\\nTime:2022-02-15T20:09:01.3933541Z\"\r\n }\r\n}", + "StatusCode": 500 + }, + { + "RequestUri": "/pools?api-version=2022-01-01.15.0", + "EncodedRequestUri": "L3Bvb2xzP2FwaS12ZXJzaW9uPTIwMjItMDEtMDEuMTUuMA==", + "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": [ + "d2bf434b-ba6d-49be-95ec-75f6ad83ed75" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Tue, 15 Feb 2022 20:09:05 GMT" + ], + "x-ms-client-request-id": [ + "31970e2c-bf11-4451-865f-f62f1786baf0" ], "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.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", + "AzurePowershell/Az1.0.0" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; charset=utf-8" + ], + "Content-Length": [ + "364" + ] + }, + "ResponseHeaders": { + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "2be90973-11df-497e-9656-757a4be35bf6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Tue, 15 Feb 2022 20:09:31 GMT" + ], + "Content-Length": [ + "361" + ], + "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\": \"OperationTimedOut\",\r\n \"message\": {\r\n \"lang\": \"en-US\",\r\n \"value\": \"Operation could not be completed within the specified time.\\nRequestId:2be90973-11df-497e-9656-757a4be35bf6\\nTime:2022-02-15T20:09:31.6431153Z\"\r\n }\r\n}", + "StatusCode": 500 + }, + { + "RequestUri": "/pools?api-version=2022-01-01.15.0", + "EncodedRequestUri": "L3Bvb2xzP2FwaS12ZXJzaW9uPTIwMjItMDEtMDEuMTUuMA==", + "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": [ + "35099974-1f84-4311-a2af-d940e9b9b4e0" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Tue, 15 Feb 2022 20:09:40 GMT" + ], + "x-ms-client-request-id": [ + "31970e2c-bf11-4451-865f-f62f1786baf0" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", + "AzurePowershell/Az1.0.0" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; charset=utf-8" + ], + "Content-Length": [ + "364" + ] + }, + "ResponseHeaders": { + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "a23385f2-dcbe-4d3b-8a52-898f5e5b70fc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Tue, 15 Feb 2022 20:10:04 GMT" + ], + "Content-Length": [ + "361" + ], + "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\": \"OperationTimedOut\",\r\n \"message\": {\r\n \"lang\": \"en-US\",\r\n \"value\": \"Operation could not be completed within the specified time.\\nRequestId:a23385f2-dcbe-4d3b-8a52-898f5e5b70fc\\nTime:2022-02-15T20:10:05.8906671Z\"\r\n }\r\n}", + "StatusCode": 500 + }, + { + "RequestUri": "/pools?api-version=2022-01-01.15.0", + "EncodedRequestUri": "L3Bvb2xzP2FwaS12ZXJzaW9uPTIwMjItMDEtMDEuMTUuMA==", + "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": [ + "8bc14576-1567-48e1-94b5-07e2161808af" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Tue, 15 Feb 2022 20:10:22 GMT" + ], + "x-ms-client-request-id": [ + "31970e2c-bf11-4451-865f-f62f1786baf0" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", + "AzurePowershell/Az1.0.0" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; charset=utf-8" + ], + "Content-Length": [ + "364" + ] + }, + "ResponseHeaders": { + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "2cb2f714-59fe-4efd-bfe2-93c43c537332" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Tue, 15 Feb 2022 20:10:47 GMT" + ], + "Content-Length": [ + "361" + ], + "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\": \"OperationTimedOut\",\r\n \"message\": {\r\n \"lang\": \"en-US\",\r\n \"value\": \"Operation could not be completed within the specified time.\\nRequestId:2cb2f714-59fe-4efd-bfe2-93c43c537332\\nTime:2022-02-15T20:10:48.1212217Z\"\r\n }\r\n}", + "StatusCode": 500 + }, + { + "RequestUri": "/pools?api-version=2022-01-01.15.0", + "EncodedRequestUri": "L3Bvb2xzP2FwaS12ZXJzaW9uPTIwMjItMDEtMDEuMTUuMA==", + "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": [ + "f99ad7e2-c1e1-479a-b5ba-6173cad645ee" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Tue, 15 Feb 2022 20:11:20 GMT" + ], + "x-ms-client-request-id": [ + "31970e2c-bf11-4451-865f-f62f1786baf0" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", "AzurePowershell/Az1.0.0" ], "Content-Type": [ @@ -247,16 +616,16 @@ "chunked" ], "ETag": [ - "0x8D80CC22EE2BA00" + "0x8D9F0BF54DB8C9B" ], "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" + "acfe5d9b-6b85-4956-800c-1ad5a6cd30a9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -268,35 +637,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" + "Tue, 15 Feb 2022 20:11:20 GMT" ], "Last-Modified": [ - "Tue, 09 Jun 2020 22:12:22 GMT" + "Tue, 15 Feb 2022 20:11:20 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" + "9c1049b9-59d0-4f0c-b96b-525c3c179367" ], "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.19044.", + "Microsoft.Azure.Management.Batch.BatchManagementClient/14.0.0.0" ] }, "ResponseHeaders": { @@ -307,7 +676,7 @@ "no-cache" ], "x-ms-request-id": [ - "70bf516a-c9f4-4deb-9477-59f216669ffd" + "5bb275a3-8b4a-4ba6-a8d4-f158e056ea19" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -322,13 +691,13 @@ "14999" ], "x-ms-correlation-request-id": [ - "490b4b5c-f5dd-48d0-93cd-7dc199f555dd" + "ffe5ce05-2c2d-48b3-893a-9128e7bcdffb" ], "x-ms-routing-request-id": [ - "WESTUS:20200609T221222Z:490b4b5c-f5dd-48d0-93cd-7dc199f555dd" + "NORTHCENTRALUS:20220215T201121Z:ffe5ce05-2c2d-48b3-893a-9128e7bcdffb" ], "Date": [ - "Tue, 09 Jun 2020 22:12:22 GMT" + "Tue, 15 Feb 2022 20:11:21 GMT" ], "Expires": [ "-1" @@ -341,22 +710,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" + "a248e00a-2791-4218-889a-5b56e7f94769" ], "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.19044.", + "Microsoft.Azure.Management.Batch.BatchManagementClient/14.0.0.0" ] }, "ResponseHeaders": { @@ -367,7 +736,7 @@ "no-cache" ], "x-ms-request-id": [ - "287318ec-3f67-4861-a2df-83ce61f973e1" + "7fad3339-d8db-42a2-b901-3021930431cd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -382,13 +751,13 @@ "14998" ], "x-ms-correlation-request-id": [ - "f0aa751c-0511-43c2-b332-0b1f9efe785a" + "e91b6e84-5756-4b65-a8fe-44714de18973" ], "x-ms-routing-request-id": [ - "WESTUS:20200609T221222Z:f0aa751c-0511-43c2-b332-0b1f9efe785a" + "NORTHCENTRALUS:20220215T201122Z:e91b6e84-5756-4b65-a8fe-44714de18973" ], "Date": [ - "Tue, 09 Jun 2020 22:12:22 GMT" + "Tue, 15 Feb 2022 20:11:21 GMT" ], "Expires": [ "-1" @@ -401,25 +770,28 @@ "StatusCode": 200 }, { - "RequestUri": "/pools/testCreatePoolWithAppPackages?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RDcmVhdGVQb29sV2l0aEFwcFBhY2thZ2VzP2FwaS12ZXJzaW9uPTIwMjAtMDMtMDEuMTEuMA==", + "RequestUri": "/pools/testCreatePoolWithAppPackages?api-version=2022-01-01.15.0", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RDcmVhdGVQb29sV2l0aEFwcFBhY2thZ2VzP2FwaS12ZXJzaW9uPTIwMjItMDEtMDEuMTUuMA==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "90999b00-6c92-437a-b76b-bcec1f5f5ebb" + "05a4e978-7ff6-40fd-9a02-481999b297f0" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:12:22 GMT" + "Tue, 15 Feb 2022 20:11:22 GMT" + ], + "x-ms-client-request-id": [ + "5b34269b-501d-4b1b-9984-783267566d85" ], "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.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", "AzurePowershell/Az1.0.0" ], "Content-Length": [ @@ -434,7 +806,7 @@ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "26772ec3-4443-4002-80cc-812cc35c0821" + "2b6b741f-8d54-4eac-a1d1-5809267bc17c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -446,7 +818,7 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 22:12:23 GMT" + "Tue, 15 Feb 2022 20:11:21 GMT" ] }, "ResponseBody": "", @@ -455,9 +827,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..dae70fe8ad00 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" + "a72ed844-9d66-4949-a28f-83c5c3f7877d" ], "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.19044.", + "Microsoft.Azure.Management.Batch.BatchManagementClient/14.0.0.0" ] }, "ResponseHeaders": { @@ -27,13 +27,13 @@ "no-cache" ], "ETag": [ - "W/\"0x8D80CC231BA388A\"" + "W/\"0x8D9F0BDA6455600\"" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1197" ], "x-ms-request-id": [ - "ae79ac94-2789-468b-8807-1a1a30e41c59" + "ef4c3b81-4836-4748-b9cd-c943de453f5f" ], "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" + "9c8d8f05-9174-4eda-8227-1375cdc6d3fa" ], "x-ms-routing-request-id": [ - "WESTUS:20200609T221227Z:ab976f21-dd44-4e7d-9b81-78fd77051f9e" + "NORTHCENTRALUS:20220215T195917Z:9c8d8f05-9174-4eda-8227-1375cdc6d3fa" ], "Date": [ - "Tue, 09 Jun 2020 22:12:26 GMT" + "Tue, 15 Feb 2022 19:59:16 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" + "Tue, 15 Feb 2022 19:59:17 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/\\\"0x8D9F0BDA6455600\\\"\",\r\n \"properties\": {\r\n \"storageUrl\": \"https://mikebatchstorage.blob.core.windows.net/app-updateapplicationpackage-08df67439cf2416193c2a844e9334481/foo?sv=2018-03-28&sr=b&sig=Cu46QLKTXlCAHGsbz%2BlphXNRituQMqG1T%2Bf7XNgrIzs%3D&st=2022-02-15T19%3A54%3A17Z&se=2022-02-15T23%3A59%3A17Z&sp=rw\",\r\n \"storageUrlExpiry\": \"2022-02-15T23:59:17.8781847Z\",\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" + "c797489b-fa30-42e7-9569-2a3d36b097da" ], "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.19044.", + "Microsoft.Azure.Management.Batch.BatchManagementClient/14.0.0.0" ] }, "ResponseHeaders": { @@ -96,13 +96,13 @@ "no-cache" ], "ETag": [ - "W/\"0x8D80CC231B76658\"" + "W/\"0x8D9F0BDA64313D5\"" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11988" ], "x-ms-request-id": [ - "aa34b386-e787-4c70-ac08-8e032b1025a6" + "403b79a4-07ec-4144-bb6a-ed3c29ff7491" ], "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" + "33a8dec5-af34-4511-8a1d-f4a3ed301cea" ], "x-ms-routing-request-id": [ - "WESTUS:20200609T221227Z:f637d908-02c4-46f6-9703-622d40500273" + "NORTHCENTRALUS:20220215T195918Z:33a8dec5-af34-4511-8a1d-f4a3ed301cea" ], "Date": [ - "Tue, 09 Jun 2020 22:12:27 GMT" + "Tue, 15 Feb 2022 19:59:18 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" + "Tue, 15 Feb 2022 19:59:17 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/\\\"0x8D9F0BDA64313D5\\\"\",\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" + "78c34cc2-e341-4096-919e-bf3fe240d8e1" ], "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.19044.", + "Microsoft.Azure.Management.Batch.BatchManagementClient/14.0.0.0" ] }, "ResponseHeaders": { @@ -165,13 +165,13 @@ "no-cache" ], "ETag": [ - "W/\"0x8D80CC232B6EE83\"" + "W/\"0x8D9F0BDA75194E8\"" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11986" ], "x-ms-request-id": [ - "9d3dc29f-689a-4811-84c5-e131e75c122c" + "71e0e5b8-9975-4ad7-b41b-7487b88ea8e9" ], "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" + "bab68151-4b9f-4f67-99a4-32ad8e940c8f" ], "x-ms-routing-request-id": [ - "WESTUS:20200609T221229Z:36e7ca10-cba3-47f3-8670-ac9df4eb7d76" + "NORTHCENTRALUS:20220215T195919Z:bab68151-4b9f-4f67-99a4-32ad8e940c8f" ], "Date": [ - "Tue, 09 Jun 2020 22:12:28 GMT" + "Tue, 15 Feb 2022 19:59:18 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" + "Tue, 15 Feb 2022 19:59:19 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/\\\"0x8D9F0BDA75194E8\\\"\",\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" + "fec93217-f867-40b2-8a9d-6d6008a34f5e" ], "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.19044.", + "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/\"0x8D9F0BDA708FDFA\"" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], "x-ms-request-id": [ - "4f44540c-cae4-45d8-bbf6-f1234e6bf3ec" + "9d4e938c-888d-4268-b17e-2ba95e9ea4b6" ], "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" + "b829d974-536f-43b2-97b8-b63f699cf688" ], "x-ms-routing-request-id": [ - "WESTUS:20200609T221228Z:3faeed7a-f824-4061-985a-c3df46cf9023" + "NORTHCENTRALUS:20220215T195919Z:b829d974-536f-43b2-97b8-b63f699cf688" ], "Date": [ - "Tue, 09 Jun 2020 22:12:27 GMT" + "Tue, 15 Feb 2022 19:59:18 GMT" ], "Content-Length": [ - "695" + "707" ], "Content-Type": [ "application/json; charset=utf-8" @@ -276,29 +276,29 @@ "-1" ], "Last-Modified": [ - "Tue, 09 Jun 2020 22:12:28 GMT" + "Tue, 15 Feb 2022 19:59: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/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/\\\"0x8D9F0BDA708FDFA\\\"\",\r\n \"properties\": {\r\n \"storageUrl\": \"https://mikebatchstorage.blob.core.windows.net/app-updateapplicationpackage-08df67439cf2416193c2a844e9334481/foo?sv=2018-03-28&sr=b&sig=bzOGqycYWADV7eBIfxCDRVEMXrOBMHItVz1aeKho%2B0s%3D&st=2022-02-15T19%3A54%3A19Z&se=2022-02-15T23%3A59%3A19Z&sp=rw\",\r\n \"storageUrlExpiry\": \"2022-02-15T23:59:19.1861633Z\",\r\n \"state\": \"Active\",\r\n \"format\": \"zip\",\r\n \"lastActivationTime\": \"2022-02-15T19:59:19.1388618Z\"\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" + "fec93217-f867-40b2-8a9d-6d6008a34f5e" ], "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.19044.", + "Microsoft.Azure.Management.Batch.BatchManagementClient/14.0.0.0" ] }, "ResponseHeaders": { @@ -309,13 +309,13 @@ "no-cache" ], "ETag": [ - "W/\"0x8D80CC232614508\"" + "W/\"0x8D9F0BDA708FDFA\"" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11987" ], "x-ms-request-id": [ - "e1b72eee-34c5-407e-85e1-ba8c806ce914" + "97982ae0-3154-45d7-8cd0-8d924c7f8669" ], "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" + "9b5f4575-4ce6-45b3-b76b-1c1fbd1bcbf1" ], "x-ms-routing-request-id": [ - "WESTUS:20200609T221228Z:d0b05072-82c5-4e62-8ba8-4284da6ca7f6" + "NORTHCENTRALUS:20220215T195919Z:9b5f4575-4ce6-45b3-b76b-1c1fbd1bcbf1" ], "Date": [ - "Tue, 09 Jun 2020 22:12:27 GMT" + "Tue, 15 Feb 2022 19:59:18 GMT" ], "Content-Length": [ - "695" + "707" ], "Content-Type": [ "application/json; charset=utf-8" @@ -345,29 +345,29 @@ "-1" ], "Last-Modified": [ - "Tue, 09 Jun 2020 22:12:28 GMT" + "Tue, 15 Feb 2022 19:59: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/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/\\\"0x8D9F0BDA708FDFA\\\"\",\r\n \"properties\": {\r\n \"storageUrl\": \"https://mikebatchstorage.blob.core.windows.net/app-updateapplicationpackage-08df67439cf2416193c2a844e9334481/foo?sv=2018-03-28&sr=b&sig=bzOGqycYWADV7eBIfxCDRVEMXrOBMHItVz1aeKho%2B0s%3D&st=2022-02-15T19%3A54%3A19Z&se=2022-02-15T23%3A59%3A19Z&sp=rw\",\r\n \"storageUrlExpiry\": \"2022-02-15T23:59:19.3310553Z\",\r\n \"state\": \"Active\",\r\n \"format\": \"zip\",\r\n \"lastActivationTime\": \"2022-02-15T19:59:19.1388618Z\"\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" + "bb509706-279e-4ee4-85e6-846dfa56a2e6" ], "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.19044.", + "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/\"0x8D9F0BDA75194E8\"" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1196" ], "x-ms-request-id": [ - "baec6921-b230-4772-b468-6cec57153007" + "ad8f5860-8e23-4b8e-ba73-d4adf0dd0e4f" ], "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" + "53999560-5603-4c9a-aadc-4fb4b1659c09" ], "x-ms-routing-request-id": [ - "WESTUS:20200609T221228Z:4db183f6-942c-4b0e-a7db-e56cbc6bc6d6" + "NORTHCENTRALUS:20220215T195919Z:53999560-5603-4c9a-aadc-4fb4b1659c09" ], "Date": [ - "Tue, 09 Jun 2020 22:12:28 GMT" + "Tue, 15 Feb 2022 19:59:18 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" + "Tue, 15 Feb 2022 19:59:19 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/\\\"0x8D9F0BDA75194E8\\\"\",\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" + "9dfffdd5-f290-4241-ae72-3ad0b228a01b" ], "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.19044.", + "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" + "f6f4c431-c9da-4188-bbad-7de0c1c023d1" ], "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" + "020f2c76-1299-4c66-bffa-8cc99f9977a0" ], "x-ms-routing-request-id": [ - "WESTUS:20200609T221229Z:f8773175-5504-4b86-a4eb-a6d622160961" + "NORTHCENTRALUS:20220215T195920Z:020f2c76-1299-4c66-bffa-8cc99f9977a0" ], "Date": [ - "Tue, 09 Jun 2020 22:12:28 GMT" + "Tue, 15 Feb 2022 19:59:19 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" + "adad4ba2-f886-4f24-abe4-a3676a6d9e84" ], "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.19044.", + "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" + "fb6a40ae-4146-4d74-8518-9cb14c64221d" ], "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" + "08dd546f-84c4-45bf-8ba0-e8c0dc1ff6e3" ], "x-ms-routing-request-id": [ - "WESTUS:20200609T221229Z:6da9b7c1-3328-42a4-b109-630e6dd650f9" + "NORTHCENTRALUS:20220215T195920Z:08dd546f-84c4-45bf-8ba0-e8c0dc1ff6e3" ], "Date": [ - "Tue, 09 Jun 2020 22:12:28 GMT" + "Tue, 15 Feb 2022 19:59:19 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..85a790863fb7 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" + "36f26356-ccb0-408d-932d-315cfe09350f" ], "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.19044.", + "Microsoft.Azure.Management.Batch.BatchManagementClient/14.0.0.0" ] }, "ResponseHeaders": { @@ -27,13 +27,13 @@ "no-cache" ], "ETag": [ - "W/\"0x8D80CC2380B9135\"" + "W/\"0x8D9F0BDABE8965F\"" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], "x-ms-request-id": [ - "bfc7a8c3-24c0-4bca-991e-0b3c8afc3249" + "34f2c7c0-af2f-4430-80b8-8cb0f57c734c" ], "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" + "768ada3f-dc44-4ff3-b136-ed62d60f2e26" ], "x-ms-routing-request-id": [ - "WESTUS:20200609T221237Z:8cd4c1b7-92d4-4291-b7e3-45cc51a21d13" + "NORTHCENTRALUS:20220215T195927Z:768ada3f-dc44-4ff3-b136-ed62d60f2e26" ], "Date": [ - "Tue, 09 Jun 2020 22:12:37 GMT" + "Tue, 15 Feb 2022 19:59:26 GMT" ], "Content-Length": [ - "636" + "651" ], "Content-Type": [ "application/json; charset=utf-8" @@ -63,39 +63,39 @@ "-1" ], "Last-Modified": [ - "Tue, 09 Jun 2020 22:12:37 GMT" + "Tue, 15 Feb 2022 19:59:27 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/\\\"0x8D9F0BDABE8965F\\\"\",\r\n \"properties\": {\r\n \"storageUrl\": \"https://mikebatchstorage.blob.core.windows.net/app-updatepoolwithapplicationp-ac92b20e868840b1aba6c25d9375fb85/foo?sv=2018-03-28&sr=b&sig=1xtcq7roAvvvql6QVkgz4u2m5J9m%2F8UebXnWEG3LYT0%3D&st=2022-02-15T19%3A54%3A27Z&se=2022-02-15T23%3A59%3A27Z&sp=rw\",\r\n \"storageUrlExpiry\": \"2022-02-15T23:59:27.3372687Z\",\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=2022-01-01.15.0", + "EncodedRequestUri": "L3Bvb2xzP2FwaS12ZXJzaW9uPTIwMjItMDEtMDEuMTUuMA==", "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" + "e1a27e0f-894f-407e-9f7b-b246bae87a5b" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:12:37 GMT" + "Tue, 15 Feb 2022 19:59:27 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.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", "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" + "0x8D9F0BDAC4218DC" ], "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" + "afb30265-f8b8-4167-ba23-d65a2d05d428" ], "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" + "Tue, 15 Feb 2022 19:59:27 GMT" ], "Last-Modified": [ - "Tue, 09 Jun 2020 22:12:59 GMT" + "Tue, 15 Feb 2022 19:59:27 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" + "8f4f4e8e-96fa-4526-b34c-b5f936caf91e" ], "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.19044.", + "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/\"0x8D9F0BDACB2A609\"" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], "x-ms-request-id": [ - "52dd30f0-9fd8-4096-a3a3-ce22964f6a10" + "7f48b4c5-3c6b-4a3d-af15-1fc697e5c5d5" ], "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" + "5af505b6-6c34-40ff-9bae-c8be21503800" ], "x-ms-routing-request-id": [ - "WESTUS:20200609T221300Z:bdb5b574-0efe-4749-bfe7-a859a859c624" + "NORTHCENTRALUS:20220215T195928Z:5af505b6-6c34-40ff-9bae-c8be21503800" ], "Date": [ - "Tue, 09 Jun 2020 22:12:59 GMT" + "Tue, 15 Feb 2022 19:59:28 GMT" ], "Content-Length": [ - "699" + "715" ], "Content-Type": [ "application/json; charset=utf-8" @@ -205,29 +205,29 @@ "-1" ], "Last-Modified": [ - "Tue, 09 Jun 2020 22:13:00 GMT" + "Tue, 15 Feb 2022 19:59:28 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/\\\"0x8D9F0BDACB2A609\\\"\",\r\n \"properties\": {\r\n \"storageUrl\": \"https://mikebatchstorage.blob.core.windows.net/app-updatepoolwithapplicationp-ac92b20e868840b1aba6c25d9375fb85/foo?sv=2018-03-28&sr=b&sig=Yly1TOtDbi3wjInqKOjB33FOxpAYnD6YVw4HWymAOE4%3D&st=2022-02-15T19%3A54%3A28Z&se=2022-02-15T23%3A59%3A28Z&sp=rw\",\r\n \"storageUrlExpiry\": \"2022-02-15T23:59:28.6934237Z\",\r\n \"state\": \"Active\",\r\n \"format\": \"zip\",\r\n \"lastActivationTime\": \"2022-02-15T19:59:28.6394226Z\"\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" + "8f4f4e8e-96fa-4526-b34c-b5f936caf91e" ], "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.19044.", + "Microsoft.Azure.Management.Batch.BatchManagementClient/14.0.0.0" ] }, "ResponseHeaders": { @@ -238,13 +238,13 @@ "no-cache" ], "ETag": [ - "W/\"0x8D80CC245A88694\"" + "W/\"0x8D9F0BDACB2A609\"" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11999" ], "x-ms-request-id": [ - "a82f3e84-1153-42a9-bbab-79c5c93c2e22" + "8f7bd7cd-cb89-4637-b7ab-620a24dba6f6" ], "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" + "381486ac-4089-4e78-ae24-8d9b2cc5ac43" ], "x-ms-routing-request-id": [ - "WESTUS:20200609T221300Z:10a30834-025b-4487-9ece-7f8d5d13d167" + "NORTHCENTRALUS:20220215T195928Z:381486ac-4089-4e78-ae24-8d9b2cc5ac43" ], "Date": [ - "Tue, 09 Jun 2020 22:13:00 GMT" + "Tue, 15 Feb 2022 19:59:28 GMT" ], "Content-Length": [ - "699" + "714" ], "Content-Type": [ "application/json; charset=utf-8" @@ -274,32 +274,35 @@ "-1" ], "Last-Modified": [ - "Tue, 09 Jun 2020 22:13:00 GMT" + "Tue, 15 Feb 2022 19:59:28 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/\\\"0x8D9F0BDACB2A609\\\"\",\r\n \"properties\": {\r\n \"storageUrl\": \"https://mikebatchstorage.blob.core.windows.net/app-updatepoolwithapplicationp-ac92b20e868840b1aba6c25d9375fb85/foo?sv=2018-03-28&sr=b&sig=Yly1TOtDbi3wjInqKOjB33FOxpAYnD6YVw4HWymAOE4%3D&st=2022-02-15T19%3A54%3A28Z&se=2022-02-15T23%3A59%3A28Z&sp=rw\",\r\n \"storageUrlExpiry\": \"2022-02-15T23:59:28.833071Z\",\r\n \"state\": \"Active\",\r\n \"format\": \"zip\",\r\n \"lastActivationTime\": \"2022-02-15T19:59:28.6394226Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/pools/testUpdatePoolWithAppPackages?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L3Bvb2xzL3Rlc3RVcGRhdGVQb29sV2l0aEFwcFBhY2thZ2VzP2FwaS12ZXJzaW9uPTIwMjAtMDMtMDEuMTEuMA==", + "RequestUri": "/pools/testUpdatePoolWithAppPackages?api-version=2022-01-01.15.0", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RVcGRhdGVQb29sV2l0aEFwcFBhY2thZ2VzP2FwaS12ZXJzaW9uPTIwMjItMDEtMDEuMTUuMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "d1df2bf3-cd53-4322-85ce-12076543878d" + "79fc32c9-8584-4a24-8516-3080517e8169" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:13:00 GMT" + "Tue, 15 Feb 2022 19:59:29 GMT" + ], + "x-ms-client-request-id": [ + "95181af2-1f83-4f60-8b3d-e9ba017575eb" ], "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.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", "AzurePowershell/Az1.0.0" ] }, @@ -308,13 +311,13 @@ "chunked" ], "ETag": [ - "0x8D80CC2452E72E3" + "0x8D9F0BDAC4218DC" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "ca8c3a98-b1a4-4d2e-bafa-a60a968ffd66" + "7929d55c-bb86-43c0-94d7-a7b0f622582a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -326,38 +329,41 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 22:13:22 GMT" + "Tue, 15 Feb 2022 19:59:28 GMT" ], "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Tue, 09 Jun 2020 22:12:59 GMT" + "Tue, 15 Feb 2022 19:59:27 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\": \"0x8D9F0BDAC4218DC\",\r\n \"lastModified\": \"2022-02-15T19:59:27.9133916Z\",\r\n \"creationTime\": \"2022-02-15T19:59:27.9133916Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2022-02-15T19:59:27.9133916Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2022-02-15T19:59:27.9133916Z\",\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=2022-01-01.15.0", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RVcGRhdGVQb29sV2l0aEFwcFBhY2thZ2VzP2FwaS12ZXJzaW9uPTIwMjItMDEtMDEuMTUuMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "1ba6a450-7750-4bae-b1db-bdb2b845d629" + "22adf2c8-c2b8-451f-ab78-323471c2615d" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:13:22 GMT" + "Tue, 15 Feb 2022 19:59:29 GMT" + ], + "x-ms-client-request-id": [ + "c3fdd18b-bdb3-4826-8edf-ff239d68dfa0" ], "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.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", "AzurePowershell/Az1.0.0" ] }, @@ -366,13 +372,13 @@ "chunked" ], "ETag": [ - "0x8D80CC252E74359" + "0x8D9F0BDAD363D4D" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "bb021e5e-e699-4a81-aed3-2628806604a1" + "bbe9146f-5e62-487b-91a2-6c7177eec3bc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -384,38 +390,41 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 22:13:22 GMT" + "Tue, 15 Feb 2022 19:59:29 GMT" ], "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Tue, 09 Jun 2020 22:13:22 GMT" + "Tue, 15 Feb 2022 19:59:29 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\": \"0x8D9F0BDAD363D4D\",\r\n \"lastModified\": \"2022-02-15T19:59:29.5134029Z\",\r\n \"creationTime\": \"2022-02-15T19:59:27.9133916Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2022-02-15T19:59:27.9133916Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2022-02-15T19:59:27.9133916Z\",\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=2022-01-01.15.0", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RVcGRhdGVQb29sV2l0aEFwcFBhY2thZ2VzL3VwZGF0ZXByb3BlcnRpZXM/YXBpLXZlcnNpb249MjAyMi0wMS0wMS4xNS4w", "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" + "473172d4-1c8a-4fd3-b0ce-efa2bd6ecf20" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:13:22 GMT" + "Tue, 15 Feb 2022 19:59:29 GMT" + ], + "x-ms-client-request-id": [ + "0d49103e-0efc-4e04-a3ab-bb45e5536fb5" ], "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.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", "AzurePowershell/Az1.0.0" ], "Content-Type": [ @@ -427,13 +436,13 @@ }, "ResponseHeaders": { "ETag": [ - "0x8D80CC252E74359" + "0x8D9F0BDAD363D4D" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "8b1fd394-1d9b-42d6-bb23-58683cfcd180" + "4bfc610d-9df3-488c-a035-365a83f7588c" ], "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" + "Tue, 15 Feb 2022 19:59:29 GMT" ], "Content-Length": [ "0" ], "Last-Modified": [ - "Tue, 09 Jun 2020 22:13:22 GMT" + "Tue, 15 Feb 2022 19:59:29 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" + "4df3c732-7eae-4a08-99ae-b2683f163b0f" ], "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.19044.", + "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" + "2b770d54-297c-421a-8d35-8e8cf03250a2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -502,13 +511,13 @@ "14999" ], "x-ms-correlation-request-id": [ - "3ea8cc7d-3093-4b0c-8564-407159b411a7" + "41c1ffb3-a757-4fbb-88d8-1f8d3d715edc" ], "x-ms-routing-request-id": [ - "WESTUS:20200609T221323Z:3ea8cc7d-3093-4b0c-8564-407159b411a7" + "NORTHCENTRALUS:20220215T195929Z:41c1ffb3-a757-4fbb-88d8-1f8d3d715edc" ], "Date": [ - "Tue, 09 Jun 2020 22:13:23 GMT" + "Tue, 15 Feb 2022 19:59:29 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" + "14f5da74-22f4-4039-b030-389d4ed84c2b" ], "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.19044.", + "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" + "c4e60565-eb0a-4979-b7fb-b541682d71d0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -562,13 +571,13 @@ "14998" ], "x-ms-correlation-request-id": [ - "3e6a53fe-c5cb-4028-ac30-995203f796b5" + "1ebf94fe-fae0-412c-ac7e-4770e5cbb507" ], "x-ms-routing-request-id": [ - "WESTUS:20200609T221323Z:3e6a53fe-c5cb-4028-ac30-995203f796b5" + "NORTHCENTRALUS:20220215T195930Z:1ebf94fe-fae0-412c-ac7e-4770e5cbb507" ], "Date": [ - "Tue, 09 Jun 2020 22:13:23 GMT" + "Tue, 15 Feb 2022 19:59:29 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=2022-01-01.15.0", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RVcGRhdGVQb29sV2l0aEFwcFBhY2thZ2VzP2FwaS12ZXJzaW9uPTIwMjItMDEtMDEuMTUuMA==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "1ad99870-a073-42ed-9210-0689ec6032f9" + "c0f8b2c3-fabb-4e78-913c-340ea7c7acaa" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:13:23 GMT" + "Tue, 15 Feb 2022 19:59: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.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", "AzurePowershell/Az1.0.0" ], "Content-Length": [ @@ -614,7 +623,7 @@ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "be596277-4c5d-4512-a10a-86de214118da" + "e9e317c4-3519-4f79-8418-3a739a735949" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -626,7 +635,7 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 22:13:23 GMT" + "Tue, 15 Feb 2022 19:59:29 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..c13114871392 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" + "d8837b22-6a31-44c4-be2b-3e103ad049c2" ], "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.19044.", + "Microsoft.Azure.Management.Batch.BatchManagementClient/14.0.0.0" ] }, "ResponseHeaders": { @@ -27,13 +27,13 @@ "no-cache" ], "ETag": [ - "W/\"0x8D80CC235145DFA\"" + "W/\"0x8D9F0BDA9579F02\"" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], "x-ms-request-id": [ - "c387cf0e-2e84-4751-9ebe-760e4ce4dda5" + "7ff4e6ad-2fcf-48fd-a024-854177572130" ], "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" + "52c9c12b-f311-428c-a0c0-7a9467753eb6" ], "x-ms-routing-request-id": [ - "WESTUS:20200609T221232Z:15d5fa40-7e0e-4297-905f-394603081b57" + "NORTHCENTRALUS:20220215T195923Z:52c9c12b-f311-428c-a0c0-7a9467753eb6" ], "Date": [ - "Tue, 09 Jun 2020 22:12:32 GMT" + "Tue, 15 Feb 2022 19:59:22 GMT" ], "Content-Length": [ - "617" + "633" ], "Content-Type": [ "application/json; charset=utf-8" @@ -63,29 +63,29 @@ "-1" ], "Last-Modified": [ - "Tue, 09 Jun 2020 22:12:32 GMT" + "Tue, 15 Feb 2022 19:59:23 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/\\\"0x8D9F0BDA9579F02\\\"\",\r\n \"properties\": {\r\n \"storageUrl\": \"https://mikebatchstorage.blob.core.windows.net/app-newapplicationpackage-7cea28f5f77e452db5af7c1a3180633a/foo?sv=2018-03-28&sr=b&sig=JLecGUHKLxirT%2BoUPN3TsymAvQaGPC8GcXEn2JF1zgg%3D&st=2022-02-15T19%3A54%3A23Z&se=2022-02-15T23%3A59%3A23Z&sp=rw\",\r\n \"storageUrlExpiry\": \"2022-02-15T23:59:23.03279Z\",\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" + "b9d1aa50-dc88-411e-befc-a295fcd25cfd" ], "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.19044.", + "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/\"0x8D9F0BDA9DE4728\"" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], "x-ms-request-id": [ - "424575d1-56c6-45d1-bc1d-f8c6e41b09d1" + "dfa9349e-4ef9-4d08-b9b4-86a513996d0b" ], "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" + "2f6d636d-f0b7-4961-8a57-1cc1c2f65ce7" ], "x-ms-routing-request-id": [ - "WESTUS:20200609T221233Z:335a58c7-0eac-49d3-a4e3-93365d502f34" + "NORTHCENTRALUS:20220215T195923Z:2f6d636d-f0b7-4961-8a57-1cc1c2f65ce7" ], "Date": [ - "Tue, 09 Jun 2020 22:12:33 GMT" + "Tue, 15 Feb 2022 19:59:23 GMT" ], "Content-Length": [ - "684" + "701" ], "Content-Type": [ "application/json; charset=utf-8" @@ -138,29 +138,29 @@ "-1" ], "Last-Modified": [ - "Tue, 09 Jun 2020 22:12:33 GMT" + "Tue, 15 Feb 2022 19:59:23 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/\\\"0x8D9F0BDA9DE4728\\\"\",\r\n \"properties\": {\r\n \"storageUrl\": \"https://mikebatchstorage.blob.core.windows.net/app-newapplicationpackage-7cea28f5f77e452db5af7c1a3180633a/foo?sv=2018-03-28&sr=b&sig=JLecGUHKLxirT%2BoUPN3TsymAvQaGPC8GcXEn2JF1zgg%3D&st=2022-02-15T19%3A54%3A23Z&se=2022-02-15T23%3A59%3A23Z&sp=rw\",\r\n \"storageUrlExpiry\": \"2022-02-15T23:59:23.9351456Z\",\r\n \"state\": \"Active\",\r\n \"format\": \"zip\",\r\n \"lastActivationTime\": \"2022-02-15T19:59:23.8921406Z\"\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" + "b9d1aa50-dc88-411e-befc-a295fcd25cfd" ], "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.19044.", + "Microsoft.Azure.Management.Batch.BatchManagementClient/14.0.0.0" ] }, "ResponseHeaders": { @@ -171,13 +171,13 @@ "no-cache" ], "ETag": [ - "W/\"0x8D80CC235990F22\"" + "W/\"0x8D9F0BDA9DE4728\"" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11999" ], "x-ms-request-id": [ - "99fad165-0ced-418f-8e5e-f527a7b169dc" + "520c3eb0-d60d-4e42-ac6a-96cb5b5ab364" ], "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" + "12d94d30-050e-47f5-944c-1c2811a336e4" ], "x-ms-routing-request-id": [ - "WESTUS:20200609T221233Z:5ef665b3-3953-4167-acb7-bac8eb2afe76" + "NORTHCENTRALUS:20220215T195924Z:12d94d30-050e-47f5-944c-1c2811a336e4" ], "Date": [ - "Tue, 09 Jun 2020 22:12:33 GMT" + "Tue, 15 Feb 2022 19:59:23 GMT" ], "Content-Length": [ - "685" + "705" ], "Content-Type": [ "application/json; charset=utf-8" @@ -207,29 +207,29 @@ "-1" ], "Last-Modified": [ - "Tue, 09 Jun 2020 22:12:33 GMT" + "Tue, 15 Feb 2022 19:59:23 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/\\\"0x8D9F0BDA9DE4728\\\"\",\r\n \"properties\": {\r\n \"storageUrl\": \"https://mikebatchstorage.blob.core.windows.net/app-newapplicationpackage-7cea28f5f77e452db5af7c1a3180633a/foo?sv=2018-03-28&sr=b&sig=Yt%2BrVp%2Fs%2Brc770S7sw7fhXBnfFQIhz1WmCeue9oKaZ4%3D&st=2022-02-15T19%3A54%3A24Z&se=2022-02-15T23%3A59%3A24Z&sp=rw\",\r\n \"storageUrlExpiry\": \"2022-02-15T23:59:24.0790828Z\",\r\n \"state\": \"Active\",\r\n \"format\": \"zip\",\r\n \"lastActivationTime\": \"2022-02-15T19:59:23.8921406Z\"\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" + "5ea948e6-9ff8-4c5b-9dd5-1f169f602c58" ], "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.19044.", + "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" + "743ed4fb-f475-49e9-a8db-f7cb410e0c1a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -255,13 +255,13 @@ "14999" ], "x-ms-correlation-request-id": [ - "3e74ab42-f52e-4136-897d-8d8bc5cf6368" + "daa99786-0a6c-4f5a-97db-4db1f1780160" ], "x-ms-routing-request-id": [ - "WESTUS:20200609T221234Z:3e74ab42-f52e-4136-897d-8d8bc5cf6368" + "NORTHCENTRALUS:20220215T195924Z:daa99786-0a6c-4f5a-97db-4db1f1780160" ], "Date": [ - "Tue, 09 Jun 2020 22:12:33 GMT" + "Tue, 15 Feb 2022 19:59:23 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" + "e73e8408-67f8-441d-8def-6f042024480e" ], "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.19044.", + "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" + "8465e54c-79a4-43af-abd2-341d1c4edcad" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -315,13 +315,13 @@ "14998" ], "x-ms-correlation-request-id": [ - "2f7f63c7-49b4-43e1-ae71-f37779f67b54" + "0b6ded3d-7b5e-4946-b190-c7616fefdb3d" ], "x-ms-routing-request-id": [ - "WESTUS:20200609T221234Z:2f7f63c7-49b4-43e1-ae71-f37779f67b54" + "NORTHCENTRALUS:20220215T195924Z:0b6ded3d-7b5e-4946-b190-c7616fefdb3d" ], "Date": [ - "Tue, 09 Jun 2020 22:12:34 GMT" + "Tue, 15 Feb 2022 19:59:23 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..5b8dacbb2ef8 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" + "62b03922-06fd-4688-aeef-b58dbc6790a0" ], "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.19044.", + "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/\"0x8D9F0BC6EF3F11A\"" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], "x-ms-request-id": [ - "42d5648b-6a69-4b2a-8144-ebf90c80d319" + "a71d9cc4-ec33-4b44-a98e-6c3a2c77a26e" ], "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" + "1eb5ed0c-ee13-416b-895f-ac0ab09c9067" ], "x-ms-routing-request-id": [ - "WESTUS:20200609T204848Z:a965f9fb-5d7e-435e-b192-c683de73fb75" + "NORTHCENTRALUS:20220215T195934Z:1eb5ed0c-ee13-416b-895f-ac0ab09c9067" ], "Date": [ - "Tue, 09 Jun 2020 20:48:48 GMT" + "Tue, 15 Feb 2022 19:59:34 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" + "Tue, 15 Feb 2022 19:50:35 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/\\\"0x8D9F0BC6EF3F11A\\\"\",\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" + "a4bd531c-13c9-4fb3-bee1-066c900cdc15" ], "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.19044.", + "Microsoft.Azure.Management.Batch.BatchManagementClient/14.0.0.0" ] }, "ResponseHeaders": { @@ -102,13 +102,13 @@ "no-cache" ], "ETag": [ - "W/\"0x8D80CB682453028\"" + "W/\"0x8D9F0BC6EF3F11A\"" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11999" ], "x-ms-request-id": [ - "3077158e-5fee-44ed-8472-0d3b47d877c4" + "1a2a0415-8458-4627-b6be-98b9aefe0e90" ], "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" + "1e975d8d-1131-47de-9849-03f967ec629c" ], "x-ms-routing-request-id": [ - "WESTUS:20200609T204848Z:d650650d-806e-418c-8e91-d75009876406" + "NORTHCENTRALUS:20220215T195934Z:1e975d8d-1131-47de-9849-03f967ec629c" ], "Date": [ - "Tue, 09 Jun 2020 20:48:48 GMT" + "Tue, 15 Feb 2022 19:59:34 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" + "Tue, 15 Feb 2022 19:50:35 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/\\\"0x8D9F0BC6EF3F11A\\\"\",\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" + "a5bd152b-a085-41fd-b169-2530dc82a10f" ], "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.19044.", + "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" + "1bbac05a-e4b9-4c8c-abce-d4bfc8e2f05e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -186,13 +186,13 @@ "14999" ], "x-ms-correlation-request-id": [ - "5c342b65-0358-49b9-9680-51b4adc64768" + "6aebab33-f0c8-4b07-85e4-3a96ae629cc4" ], "x-ms-routing-request-id": [ - "WESTUS:20200609T204849Z:5c342b65-0358-49b9-9680-51b4adc64768" + "NORTHCENTRALUS:20220215T195935Z:6aebab33-f0c8-4b07-85e4-3a96ae629cc4" ], "Date": [ - "Tue, 09 Jun 2020 20:48:48 GMT" + "Tue, 15 Feb 2022 19:59:34 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..f99010c50c33 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=2022-01-01.15.0&$select=thumbprint%2Cstate", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1DMUU0OTRBNDE1MTQ5QzVGMjExQzQ3NzhCNTJGMkU4MzRBMDcyNDdDKT9hcGktdmVyc2lvbj0yMDIyLTAxLTAxLjE1LjAmJHNlbGVjdD10aHVtYnByaW50JTJDc3RhdGU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "f58e819f-9afa-474c-924f-93d9e96588ec" + "0e58883d-9d2a-4906-bbbb-38f0bdad76a1" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 20:49:15 GMT" + "Tue, 15 Feb 2022 19:36: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.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", "AzurePowershell/Az1.0.0" ] }, @@ -31,7 +31,7 @@ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "b7db7c3a-a9cc-445e-9503-85bbe38dceb4" + "a1c09a08-3773-44f8-afe3-ac87e5aeee08" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -43,35 +43,35 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 20:49:36 GMT" + "Tue, 15 Feb 2022 19:36:35 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=2022-01-01.15.0&$select=thumbprint%2Cstate", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1DMUU0OTRBNDE1MTQ5QzVGMjExQzQ3NzhCNTJGMkU4MzRBMDcyNDdDKT9hcGktdmVyc2lvbj0yMDIyLTAxLTAxLjE1LjAmJHNlbGVjdD10aHVtYnByaW50JTJDc3RhdGU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "e95b16ee-6b1e-4cbf-9c6f-7a421d3ce41f" + "84ac8f0c-6ba4-45c6-a4f5-1aa325a4756e" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 20:49:41 GMT" + "Tue, 15 Feb 2022 19:36: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.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", "AzurePowershell/Az1.0.0" ] }, @@ -83,7 +83,7 @@ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "7066329a-2659-472c-9e6e-9b11e30fefdf" + "5f78599a-4ef3-4137-ac0f-9c91f396fb8c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -95,35 +95,35 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 20:49:41 GMT" + "Tue, 15 Feb 2022 19:36:40 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=2022-01-01.15.0&$select=thumbprint%2Cstate", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1DMUU0OTRBNDE1MTQ5QzVGMjExQzQ3NzhCNTJGMkU4MzRBMDcyNDdDKT9hcGktdmVyc2lvbj0yMDIyLTAxLTAxLjE1LjAmJHNlbGVjdD10aHVtYnByaW50JTJDc3RhdGU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "8e5c1759-55b8-4182-9859-6fba8cc2f954" + "2c890ff8-e6ec-4b3d-9b75-a8fe47a72ec1" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 20:49:47 GMT" + "Tue, 15 Feb 2022 19:36: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.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", "AzurePowershell/Az1.0.0" ] }, @@ -135,7 +135,7 @@ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "70bcc395-18bc-4311-931c-acb52a7e21f4" + "89dd432f-0875-4a95-9127-3dd5ad492541" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -147,35 +147,35 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 20:49:47 GMT" + "Tue, 15 Feb 2022 19:36:45 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=2022-01-01.15.0&$select=thumbprint%2Cstate", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1DMUU0OTRBNDE1MTQ5QzVGMjExQzQ3NzhCNTJGMkU4MzRBMDcyNDdDKT9hcGktdmVyc2lvbj0yMDIyLTAxLTAxLjE1LjAmJHNlbGVjdD10aHVtYnByaW50JTJDc3RhdGU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "f19327ad-9f99-44d8-a7d7-6640f5907228" + "0a7d5e0b-26e7-4455-befb-fd6eec316b34" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 20:49:52 GMT" + "Tue, 15 Feb 2022 19:36:50 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.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", "AzurePowershell/Az1.0.0" ] }, @@ -187,7 +187,7 @@ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "86cd3c0a-64cf-4d8d-8eb1-03150ba5d005" + "5b3de827-5af7-47fd-884d-55ceddbafa1b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -199,35 +199,35 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 20:49:52 GMT" + "Tue, 15 Feb 2022 19:36:50 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=2022-01-01.15.0&$select=thumbprint%2Cstate", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1DMUU0OTRBNDE1MTQ5QzVGMjExQzQ3NzhCNTJGMkU4MzRBMDcyNDdDKT9hcGktdmVyc2lvbj0yMDIyLTAxLTAxLjE1LjAmJHNlbGVjdD10aHVtYnByaW50JTJDc3RhdGU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "17598cf2-10aa-4d62-8525-b76bb14c85ae" + "741cfa2c-11c9-4465-85fa-beb110da41f4" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 20:49:57 GMT" + "Tue, 15 Feb 2022 19:36:55 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.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", "AzurePowershell/Az1.0.0" ] }, @@ -239,7 +239,7 @@ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "de138741-7db1-456b-9ec2-cd638d962e00" + "2b9caeca-44a5-4e80-8a3d-98e4e6e0008f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -251,35 +251,35 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 20:49:57 GMT" + "Tue, 15 Feb 2022 19:36:55 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=2022-01-01.15.0&$select=thumbprint%2Cstate", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1DMUU0OTRBNDE1MTQ5QzVGMjExQzQ3NzhCNTJGMkU4MzRBMDcyNDdDKT9hcGktdmVyc2lvbj0yMDIyLTAxLTAxLjE1LjAmJHNlbGVjdD10aHVtYnByaW50JTJDc3RhdGU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "7e21e789-974f-42a0-bf0c-0aa15def5ed2" + "1c980118-44ee-4d92-9b85-60dcf55e867d" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 20:50:02 GMT" + "Tue, 15 Feb 2022 19:37:00 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.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", "AzurePowershell/Az1.0.0" ] }, @@ -291,7 +291,7 @@ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "cf524ee9-b3e1-48be-ab3b-2c17ccddd073" + "910ae9c8-3129-4e86-b94f-14d4d3c9d997" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -303,35 +303,35 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 20:50:02 GMT" + "Tue, 15 Feb 2022 19:37:00 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=2022-01-01.15.0&$select=thumbprint%2Cstate", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1DMUU0OTRBNDE1MTQ5QzVGMjExQzQ3NzhCNTJGMkU4MzRBMDcyNDdDKT9hcGktdmVyc2lvbj0yMDIyLTAxLTAxLjE1LjAmJHNlbGVjdD10aHVtYnByaW50JTJDc3RhdGU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "6b069e73-1ada-4c85-858a-041be823e813" + "31d55a44-264b-4bfb-8317-be8f32f04449" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 20:50:07 GMT" + "Tue, 15 Feb 2022 19:37: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.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", "AzurePowershell/Az1.0.0" ] }, @@ -343,7 +343,7 @@ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "e1e5a1c6-a441-4f76-9de4-bfe9dcb42f03" + "47fa8205-e8b3-4aba-9071-173f052aad00" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -355,35 +355,35 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 20:50:07 GMT" + "Tue, 15 Feb 2022 19:37:05 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=2022-01-01.15.0&$select=thumbprint%2Cstate", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1DMUU0OTRBNDE1MTQ5QzVGMjExQzQ3NzhCNTJGMkU4MzRBMDcyNDdDKT9hcGktdmVyc2lvbj0yMDIyLTAxLTAxLjE1LjAmJHNlbGVjdD10aHVtYnByaW50JTJDc3RhdGU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "c849b694-cb49-49be-a55f-46e5828554b6" + "6cae5cec-bf8f-41d7-85d1-ea37af0ab695" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 20:50:12 GMT" + "Tue, 15 Feb 2022 19:37: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.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", "AzurePowershell/Az1.0.0" ] }, @@ -395,7 +395,7 @@ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "3d7e1506-27a9-4c90-86b4-393f8f6ac296" + "a5fd85a4-8aab-472d-b377-f776a9edf618" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -407,44 +407,203 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 20:50:12 GMT" + "Tue, 15 Feb 2022 19:37:10 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=2022-01-01.15.0&$select=thumbprint%2Cstate", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1DMUU0OTRBNDE1MTQ5QzVGMjExQzQ3NzhCNTJGMkU4MzRBMDcyNDdDKT9hcGktdmVyc2lvbj0yMDIyLTAxLTAxLjE1LjAmJHNlbGVjdD10aHVtYnByaW50JTJDc3RhdGU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "23271913-d857-4ee8-aabe-8a2729115133" + "623d1510-1e59-4334-aaab-801a7c13534b" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 20:50:17 GMT" + "Tue, 15 Feb 2022 19:37: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.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", "AzurePowershell/Az1.0.0" ] }, "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "a5388d78-e3d7-4571-8c02-6d0c1a6c1f74" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Tue, 15 Feb 2022 19:37:15 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=2022-01-01.15.0&$select=thumbprint%2Cstate", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1DMUU0OTRBNDE1MTQ5QzVGMjExQzQ3NzhCNTJGMkU4MzRBMDcyNDdDKT9hcGktdmVyc2lvbj0yMDIyLTAxLTAxLjE1LjAmJHNlbGVjdD10aHVtYnByaW50JTJDc3RhdGU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "3887fe04-7847-4022-8f16-33dee6b16e46" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Tue, 15 Feb 2022 19:37:21 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "e89d672d-5117-407f-bae9-1589c0515ff4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Tue, 15 Feb 2022 19:37:20 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=2022-01-01.15.0&$select=thumbprint%2Cstate", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1DMUU0OTRBNDE1MTQ5QzVGMjExQzQ3NzhCNTJGMkU4MzRBMDcyNDdDKT9hcGktdmVyc2lvbj0yMDIyLTAxLTAxLjE1LjAmJHNlbGVjdD10aHVtYnByaW50JTJDc3RhdGU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "4eaa11f6-c16b-4384-aa44-28c0fe9e706e" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Tue, 15 Feb 2022 19:37:26 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "e352ea30-b683-413c-afee-9958c138d8ce" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Tue, 15 Feb 2022 19:37:25 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=2022-01-01.15.0&$select=thumbprint%2Cstate", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1DMUU0OTRBNDE1MTQ5QzVGMjExQzQ3NzhCNTJGMkU4MzRBMDcyNDdDKT9hcGktdmVyc2lvbj0yMDIyLTAxLTAxLjE1LjAmJHNlbGVjdD10aHVtYnByaW50JTJDc3RhdGU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "881c4c0f-379e-477a-a131-8f60637bbc86" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Tue, 15 Feb 2022 19:37:31 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "70e19565-9939-4a67-8104-81846d510647" + "9e8f6cfe-38fc-4ca1-9527-a898d0c64c9e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -456,38 +615,87 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 20:50:17 GMT" + "Tue, 15 Feb 2022 19:37:30 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=2022-01-01.15.0&$select=thumbprint%2Cstate", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1DMUU0OTRBNDE1MTQ5QzVGMjExQzQ3NzhCNTJGMkU4MzRBMDcyNDdDKT9hcGktdmVyc2lvbj0yMDIyLTAxLTAxLjE1LjAmJHNlbGVjdD10aHVtYnByaW50JTJDc3RhdGU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "5dff92f9-e253-40af-ac9d-5ffa319fe70f" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Tue, 15 Feb 2022 19:37:36 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "c783c071-4349-4d4b-ba32-b00cd8b0e2f7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Tue, 15 Feb 2022 19:37:35 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:c783c071-4349-4d4b-ba32-b00cd8b0e2f7\\nTime:2022-02-15T19:37:35.8665542Z\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/certificates?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L2NlcnRpZmljYXRlcz9hcGktdmVyc2lvbj0yMDIwLTAzLTAxLjExLjA=", + "RequestUri": "/certificates?api-version=2022-01-01.15.0", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcz9hcGktdmVyc2lvbj0yMDIyLTAxLTAxLjE1LjA=", "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" + "122230b7-f988-475b-807d-569b7eebfdd5" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 20:50:18 GMT" + "Tue, 15 Feb 2022 19:37: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.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", "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" + "190f9e92-b6b5-4539-a077-508eb7786b61" ], "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" + "Tue, 15 Feb 2022 19:37:35 GMT" ] }, "ResponseBody": "", "StatusCode": 201 }, { - "RequestUri": "/pools?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L3Bvb2xzP2FwaS12ZXJzaW9uPTIwMjAtMDMtMDEuMTEuMA==", + "RequestUri": "/pools?api-version=2022-01-01.15.0", + "EncodedRequestUri": "L3Bvb2xzP2FwaS12ZXJzaW9uPTIwMjItMDEtMDEuMTUuMA==", "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" + "acca3483-d00e-4245-9876-fb777ee17ddc" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 20:50:18 GMT" + "Tue, 15 Feb 2022 19:37: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.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", "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" + "0x8D9F0BA9E55D024" ], "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" + "8f0768b8-8d14-4f9e-9ec3-3e4dec587353" ], "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" + "Tue, 15 Feb 2022 19:37:35 GMT" ], "Last-Modified": [ - "Tue, 09 Jun 2020 20:50:18 GMT" + "Tue, 15 Feb 2022 19:37:36 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=2022-01-01.15.0", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1jMWU0OTRhNDE1MTQ5YzVmMjExYzQ3NzhiNTJmMmU4MzRhMDcyNDdjKT9hcGktdmVyc2lvbj0yMDIyLTAxLTAxLjE1LjA=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "15a2069e-8b47-4d87-b61d-0a58c81d0e55" + "e27cec10-96c1-4e2d-a574-0e370b5b238e" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 20:50:18 GMT" + "Tue, 15 Feb 2022 19:37: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.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", "AzurePowershell/Az1.0.0" ], "Content-Length": [ @@ -630,7 +838,7 @@ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "9af57146-7ed4-4191-807d-3e0dbd3e13cb" + "7c6650ec-595d-4f03-9a13-977c4bf0a448" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -642,32 +850,32 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 20:50:18 GMT" + "Tue, 15 Feb 2022 19:37:35 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=2022-01-01.15.0", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1jMWU0OTRhNDE1MTQ5YzVmMjExYzQ3NzhiNTJmMmU4MzRhMDcyNDdjKT9hcGktdmVyc2lvbj0yMDIyLTAxLTAxLjE1LjA=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "f41b7fb3-acc2-400b-bb78-a8ac97dfab9d" + "82ad8ca4-1d5e-48c5-9005-e1feb2ccb0f7" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 20:51:43 GMT" + "Tue, 15 Feb 2022 19:38: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.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", "AzurePowershell/Az1.0.0" ], "Content-Length": [ @@ -682,7 +890,7 @@ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "f24d0b5f-45e6-4e44-b96e-bbc8a142312c" + "d33bff9e-13ef-41ab-aeb4-8a53bd0bf826" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -694,32 +902,32 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 20:51:43 GMT" + "Tue, 15 Feb 2022 19:38:48 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=2022-01-01.15.0", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1jMWU0OTRhNDE1MTQ5YzVmMjExYzQ3NzhiNTJmMmU4MzRhMDcyNDdjKT9hcGktdmVyc2lvbj0yMDIyLTAxLTAxLjE1LjA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "30633fc3-9055-4fb5-8a26-418ec3201ed9" + "40dc3ccc-2a63-4eb4-9196-c2c1214ddf22" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 20:50:18 GMT" + "Tue, 15 Feb 2022 19:37: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.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", "AzurePowershell/Az1.0.0" ] }, @@ -731,7 +939,7 @@ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "d938e699-2385-4c5a-af3c-294b4ecf8754" + "33aa4e79-54a8-42b9-a227-03fa4999d97b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -743,35 +951,35 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 20:50:18 GMT" + "Tue, 15 Feb 2022 19:37:35 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\": \"2022-02-15T19:37:36.1590363Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2022-02-15T19:37:35.9272356Z\",\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=2022-01-01.15.0", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1jMWU0OTRhNDE1MTQ5YzVmMjExYzQ3NzhiNTJmMmU4MzRhMDcyNDdjKT9hcGktdmVyc2lvbj0yMDIyLTAxLTAxLjE1LjA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "e4b038b3-e559-4c73-bf2a-f047c638704f" + "0476b3fc-ed9f-4382-b455-5956afa07b2d" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 20:50:28 GMT" + "Tue, 15 Feb 2022 19:37: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.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", "AzurePowershell/Az1.0.0" ] }, @@ -783,7 +991,7 @@ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "d422d24d-f4d6-4f8d-9fe7-ab8a1e1f0822" + "20921b57-3817-4b53-b79c-680ddf301618" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -795,35 +1003,35 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 20:50:29 GMT" + "Tue, 15 Feb 2022 19:37:45 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\": \"2022-02-15T19:37:36.1590363Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2022-02-15T19:37:35.9272356Z\",\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=2022-01-01.15.0", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1jMWU0OTRhNDE1MTQ5YzVmMjExYzQ3NzhiNTJmMmU4MzRhMDcyNDdjKT9hcGktdmVyc2lvbj0yMDIyLTAxLTAxLjE1LjA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "fc4bd524-92b8-44c3-b920-eaa58619745c" + "9bcdd883-711d-4904-a4a5-711874c829e9" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 20:50:39 GMT" + "Tue, 15 Feb 2022 19:37: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.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", "AzurePowershell/Az1.0.0" ] }, @@ -835,7 +1043,7 @@ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "f42f9929-0cbc-424a-96d3-82c5825b6dd0" + "caf4ce38-c396-4c3f-a86d-3d0f5644fa97" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -847,35 +1055,35 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 20:50:39 GMT" + "Tue, 15 Feb 2022 19:37:55 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\": \"2022-02-15T19:37:36.1590363Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2022-02-15T19:37:35.9272356Z\",\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=2022-01-01.15.0", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1jMWU0OTRhNDE1MTQ5YzVmMjExYzQ3NzhiNTJmMmU4MzRhMDcyNDdjKT9hcGktdmVyc2lvbj0yMDIyLTAxLTAxLjE1LjA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "2e2acd88-f5ab-4c20-b925-86a0d136d1d6" + "7eb94c62-539b-4342-9e0f-54cc49e196ba" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 20:50:49 GMT" + "Tue, 15 Feb 2022 19:38: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.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", "AzurePowershell/Az1.0.0" ] }, @@ -887,7 +1095,7 @@ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "f495862c-cdd4-46ec-b49a-fdcda6c86f24" + "152b69a0-5d5f-4086-8d8d-ca12033b7c6b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -899,35 +1107,35 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 20:50:49 GMT" + "Tue, 15 Feb 2022 19:38:05 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\": \"2022-02-15T19:37:36.1590363Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2022-02-15T19:37:35.9272356Z\",\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=2022-01-01.15.0", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1jMWU0OTRhNDE1MTQ5YzVmMjExYzQ3NzhiNTJmMmU4MzRhMDcyNDdjKT9hcGktdmVyc2lvbj0yMDIyLTAxLTAxLjE1LjA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "8e06725a-8adc-45bf-bd7d-bc5cd6fcad5e" + "5b8f202e-0530-49fd-8d7c-bceacdbad350" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 20:50:59 GMT" + "Tue, 15 Feb 2022 19:38: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.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", "AzurePowershell/Az1.0.0" ] }, @@ -939,7 +1147,7 @@ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "37f44c56-c093-4036-b09c-74b88001c6c7" + "06758647-c734-4d18-92e7-0daa7fea0eab" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -951,35 +1159,35 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 20:50:59 GMT" + "Tue, 15 Feb 2022 19:38:15 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\": \"2022-02-15T19:37:36.1590363Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2022-02-15T19:37:35.9272356Z\",\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=2022-01-01.15.0", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1jMWU0OTRhNDE1MTQ5YzVmMjExYzQ3NzhiNTJmMmU4MzRhMDcyNDdjKT9hcGktdmVyc2lvbj0yMDIyLTAxLTAxLjE1LjA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "47293c04-5477-4dc0-9df3-894c118703f4" + "65fd05ef-7997-4df3-a1ea-7fab491f876d" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 20:51:09 GMT" + "Tue, 15 Feb 2022 19:38: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.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", "AzurePowershell/Az1.0.0" ] }, @@ -991,7 +1199,7 @@ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "404b5db6-4030-44ed-9441-858b7efc0bed" + "61cfbf48-aa39-4c2e-9b11-b4ee0860e0dc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1003,35 +1211,35 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 20:51:09 GMT" + "Tue, 15 Feb 2022 19:38:25 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\": \"2022-02-15T19:37:36.1590363Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2022-02-15T19:37:35.9272356Z\",\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=2022-01-01.15.0", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1jMWU0OTRhNDE1MTQ5YzVmMjExYzQ3NzhiNTJmMmU4MzRhMDcyNDdjKT9hcGktdmVyc2lvbj0yMDIyLTAxLTAxLjE1LjA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "855b6e59-1647-482e-ad6a-48619b5de63f" + "f4c358be-8e08-41e8-a575-ee16d2de869e" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 20:51:19 GMT" + "Tue, 15 Feb 2022 19:38: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.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", "AzurePowershell/Az1.0.0" ] }, @@ -1043,7 +1251,7 @@ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "d146bde9-975d-4177-8047-f67957ec9104" + "319e93eb-191b-42dc-ba47-4c1c1a06ab11" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1055,35 +1263,35 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 20:51:19 GMT" + "Tue, 15 Feb 2022 19:38:35 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\": \"2022-02-15T19:37:36.1590363Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2022-02-15T19:37:35.9272356Z\",\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=2022-01-01.15.0", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1jMWU0OTRhNDE1MTQ5YzVmMjExYzQ3NzhiNTJmMmU4MzRhMDcyNDdjKT9hcGktdmVyc2lvbj0yMDIyLTAxLTAxLjE1LjA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "d0bddb07-f943-4ced-b6f2-b33424eb9652" + "1ad4419d-d605-4510-95dd-d3ea39b59b61" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 20:51:20 GMT" + "Tue, 15 Feb 2022 19:38: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.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", "AzurePowershell/Az1.0.0" ] }, @@ -1095,7 +1303,7 @@ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "cadb67f3-127e-4e2f-9850-67de74063a40" + "2eb96785-7988-43ce-85ea-7da49579143f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1107,35 +1315,38 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 20:51:42 GMT" + "Tue, 15 Feb 2022 19:38:46 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\": \"2022-02-15T19:38:36.8852132Z\",\r\n \"previousState\": \"deleting\",\r\n \"previousStateTransitionTime\": \"2022-02-15T19:37:36.1590363Z\",\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=2022-01-01.15.0", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1jMWU0OTRhNDE1MTQ5YzVmMjExYzQ3NzhiNTJmMmU4MzRhMDcyNDdjKT9hcGktdmVyc2lvbj0yMDIyLTAxLTAxLjE1LjA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "faf00c0a-2ee4-46d2-8284-986b48d4c9f7" + "94164d8e-9d0b-4bdc-a6d8-3050126dfd4e" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 20:51:42 GMT" + "Tue, 15 Feb 2022 19:38:47 GMT" + ], + "x-ms-client-request-id": [ + "60deb49c-ea6c-4600-b6da-1de87056a7ca" ], "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.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", "AzurePowershell/Az1.0.0" ] }, @@ -1147,7 +1358,7 @@ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "6a2625b8-e2a6-4d96-9cc9-13f112d1009a" + "d5cba697-a697-418e-8d2e-d6173057788c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1159,35 +1370,93 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 20:51:42 GMT" + "Tue, 15 Feb 2022 19:38:47 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\": \"2022-02-15T19:38:36.8852132Z\",\r\n \"previousState\": \"deleting\",\r\n \"previousStateTransitionTime\": \"2022-02-15T19:37:36.1590363Z\",\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=2022-01-01.15.0", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1jMWU0OTRhNDE1MTQ5YzVmMjExYzQ3NzhiNTJmMmU4MzRhMDcyNDdjKT9hcGktdmVyc2lvbj0yMDIyLTAxLTAxLjE1LjA=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "776674bf-fa9d-4ac5-a228-830cb7b8ddf0" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Tue, 15 Feb 2022 19:38:48 GMT" + ], + "x-ms-client-request-id": [ + "6eebe0ee-48a2-4dc3-afe0-4bc27f5d25a1" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "e16368d0-29fd-47b8-b7aa-e1c068742fc8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Tue, 15 Feb 2022 19:38:47 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\": \"2022-02-15T19:38:36.8852132Z\",\r\n \"previousState\": \"deleting\",\r\n \"previousStateTransitionTime\": \"2022-02-15T19:37:36.1590363Z\",\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=2022-01-01.15.0", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1jMWU0OTRhNDE1MTQ5YzVmMjExYzQ3NzhiNTJmMmU4MzRhMDcyNDdjKS9jYW5jZWxkZWxldGU/YXBpLXZlcnNpb249MjAyMi0wMS0wMS4xNS4w", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "8f435fa0-cf74-45c0-ab5e-b0e2bdcf135e" + "d6861094-f737-4aec-ad4f-f5efd5411536" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 20:51:42 GMT" + "Tue, 15 Feb 2022 19:38:48 GMT" + ], + "x-ms-client-request-id": [ + "6eebe0ee-48a2-4dc3-afe0-4bc27f5d25a1" ], "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.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", "AzurePowershell/Az1.0.0" ], "Content-Length": [ @@ -1199,7 +1468,7 @@ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "4548f582-09e6-42c5-9eaf-ecc209b6bb8c" + "94f0a945-79a6-4175-95b8-7f064082ecb4" ], "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" + "Tue, 15 Feb 2022 19:38:47 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=2022-01-01.15.0&$filter=state%20eq%20%27active%27", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcz9hcGktdmVyc2lvbj0yMDIyLTAxLTAxLjE1LjAmJGZpbHRlcj1zdGF0ZSUyMGVxJTIwJTI3YWN0aXZlJTI3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "0889bf99-c215-4d96-b978-b6535568e93c" + "8da1ea06-a9ee-48ef-94e6-1f6405311d10" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 20:51:42 GMT" + "Tue, 15 Feb 2022 19:38:48 GMT" + ], + "x-ms-client-request-id": [ + "025c0856-8afd-43f4-a6f2-476ae048ea7a" ], "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.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", "AzurePowershell/Az1.0.0" ] }, @@ -1254,7 +1526,7 @@ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "7c4cd239-690b-4a1e-bc14-40b0484e2e9f" + "f0ac6dfb-0b08-4cfe-ac22-6f3b5d925d9b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1266,35 +1538,35 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 20:51:42 GMT" + "Tue, 15 Feb 2022 19:38:47 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\": \"2022-02-15T19:38:47.7860786Z\",\r\n \"previousState\": \"deletefailed\",\r\n \"previousStateTransitionTime\": \"2022-02-15T19:38:36.8852132Z\",\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=2022-01-01.15.0", + "EncodedRequestUri": "L3Bvb2xzL2NlcnRQb29sP2FwaS12ZXJzaW9uPTIwMjItMDEtMDEuMTUuMA==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "3f4ce38d-2c15-4e5e-af0b-6e18536dbbf4" + "6fc9bacf-278a-4ecb-b718-f064d29cadd9" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 20:51:43 GMT" + "Tue, 15 Feb 2022 19:38: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.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", "AzurePowershell/Az1.0.0" ], "Content-Length": [ @@ -1309,7 +1581,7 @@ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "df94540e-de89-460e-b253-0f026eeb651a" + "28b5b4f2-b0f6-4065-ba56-12661a6a6789" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1321,7 +1593,7 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 20:51:43 GMT" + "Tue, 15 Feb 2022 19:38:48 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..e0e49089653e 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=2022-01-01.15.0", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcz9hcGktdmVyc2lvbj0yMDIyLTAxLTAxLjE1LjA=", "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" + "efff2d06-a1c0-4c30-905e-3cd28ee5d4ce" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 20:48:51 GMT" + "Tue, 15 Feb 2022 19:36:30 GMT" + ], + "x-ms-client-request-id": [ + "432f0e92-24d1-4045-82bc-efd72272cec5" ], "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.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", "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" + "91ef17e2-3d15-44f0-b0b5-cc68c650c51b" ], "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" + "Tue, 15 Feb 2022 19:36:29 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=2022-01-01.15.0", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1DMUU0OTRBNDE1MTQ5QzVGMjExQzQ3NzhCNTJGMkU4MzRBMDcyNDdDKT9hcGktdmVyc2lvbj0yMDIyLTAxLTAxLjE1LjA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "a70fd750-6e76-434e-bd0c-3fd9a87a311b" + "02adf1ed-2093-42bb-93d0-a62cf4958528" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 20:49:13 GMT" + "Tue, 15 Feb 2022 19:36:30 GMT" + ], + "x-ms-client-request-id": [ + "b0577c05-f049-441a-9056-42e6c0e54f2b" ], "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.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", "AzurePowershell/Az1.0.0" ] }, @@ -92,7 +98,7 @@ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "b13fbbb6-3e5d-4eb5-9d6a-b3e10150971d" + "16353810-e491-44c1-a2d5-6af8a8ac6b70" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -104,35 +110,38 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 20:49:12 GMT" + "Tue, 15 Feb 2022 19:36:29 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\": \"2022-02-15T19:36:30.481441Z\",\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=2022-01-01.15.0", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcyh0aHVtYnByaW50QWxnb3JpdGhtPXNoYTEsdGh1bWJwcmludD1jMWU0OTRhNDE1MTQ5YzVmMjExYzQ3NzhiNTJmMmU4MzRhMDcyNDdjKT9hcGktdmVyc2lvbj0yMDIyLTAxLTAxLjE1LjA=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "5b904004-fd35-4468-9463-0b309a4a121d" + "9699ba9b-0743-42b9-a486-8e280740095a" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 20:49:13 GMT" + "Tue, 15 Feb 2022 19:36:31 GMT" + ], + "x-ms-client-request-id": [ + "55d00845-6db9-4698-b7e8-149c0ef49c8d" ], "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.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", "AzurePowershell/Az1.0.0" ], "Content-Length": [ @@ -147,7 +156,7 @@ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "602dea36-745c-4e8b-8768-22116a7669b6" + "d4107e14-cb51-4377-9990-33ad9ec7ee2e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -159,32 +168,35 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 20:49:12 GMT" + "Tue, 15 Feb 2022 19:36:30 GMT" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/certificates?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L2NlcnRpZmljYXRlcz9hcGktdmVyc2lvbj0yMDIwLTAzLTAxLjExLjA=", + "RequestUri": "/certificates?api-version=2022-01-01.15.0", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcz9hcGktdmVyc2lvbj0yMDIyLTAxLTAxLjE1LjA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "64ccee37-c74d-438d-b46b-d57b4c31c508" + "97c86b00-1e6f-4d61-bca1-cd581c1eebfa" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 20:49:13 GMT" + "Tue, 15 Feb 2022 19:36:31 GMT" + ], + "x-ms-client-request-id": [ + "c4e25729-757c-494e-813d-34f4a8bcd5dc" ], "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.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", "AzurePowershell/Az1.0.0" ] }, @@ -196,7 +208,7 @@ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "91e7b1e1-5cf3-4804-8224-0b0b71327275" + "465219b5-d18e-4511-b8d8-a80ff4caf59b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -208,21 +220,21 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 20:49:12 GMT" + "Tue, 15 Feb 2022 19:36:30 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\": \"2022-02-15T19:36:30.7071675Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2022-02-15T19:36:30.481441Z\",\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..415ed6ad980a 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=2022-01-01.15.0", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzP2FwaS12ZXJzaW9uPTIwMjItMDEtMDEuMTUuMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "92fc6903-08e9-474a-8bfb-8f9708ff04b8" + "220ecc23-70d3-4f7a-b82f-3f6de16cd435" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Wed, 10 Jun 2020 20:32:03 GMT" + "Tue, 15 Feb 2022 19:32: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.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", "AzurePowershell/Az1.0.0" ] }, @@ -31,7 +31,7 @@ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "137e37ab-c527-479d-a291-1ad35e44f084" + "bf2651df-e751-41c9-a9c8-1a073db0e90e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -43,35 +43,35 @@ "3.0" ], "Date": [ - "Wed, 10 Jun 2020 20:32:25 GMT" + "Tue, 15 Feb 2022 19:32:54 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_08678bcc555e2847fe2880911a03ab30fb3c149aff08cd6c941d688c8c3f09bd_d\",\r\n \"url\": \"https://mikeportal.eastus.batch.azure.com/pools/testPool/nodes/tvmps_08678bcc555e2847fe2880911a03ab30fb3c149aff08cd6c941d688c8c3f09bd_d\",\r\n \"state\": \"rebooting\",\r\n \"schedulingState\": \"enabled\",\r\n \"stateTransitionTime\": \"2022-02-15T19:32:51.6160924Z\",\r\n \"lastBootTime\": \"2022-02-11T21:55:17.547548Z\",\r\n \"allocationTime\": \"2022-02-11T21:53:31.7514392Z\",\r\n \"ipAddress\": \"10.218.0.5\",\r\n \"affinityId\": \"TVM:tvmps_08678bcc555e2847fe2880911a03ab30fb3c149aff08cd6c941d688c8c3f09bd_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\": \"2022-02-11T21:55:17.921643Z\",\r\n \"endTime\": \"2022-02-11T21:55:17.968405Z\",\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\": \"2022-02-11T21:55:17.547548Z\",\r\n \"version\": \"1.9.24\"\r\n },\r\n \"virtualMachineInfo\": {}\r\n },\r\n {\r\n \"id\": \"tvmps_9fdd9ba90896a96cc0732779c80a6fdc6e738a5f39ad613d3ea516f2dc6c2afc_d\",\r\n \"url\": \"https://mikeportal.eastus.batch.azure.com/pools/testPool/nodes/tvmps_9fdd9ba90896a96cc0732779c80a6fdc6e738a5f39ad613d3ea516f2dc6c2afc_d\",\r\n \"state\": \"reimaging\",\r\n \"schedulingState\": \"enabled\",\r\n \"stateTransitionTime\": \"2022-02-15T19:32:51.843456Z\",\r\n \"lastBootTime\": \"2022-02-11T21:55:17.560725Z\",\r\n \"allocationTime\": \"2022-02-11T21:53:31.7514392Z\",\r\n \"ipAddress\": \"10.218.0.6\",\r\n \"affinityId\": \"TVM:tvmps_9fdd9ba90896a96cc0732779c80a6fdc6e738a5f39ad613d3ea516f2dc6c2afc_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\": \"2022-02-11T21:55:18.13885Z\",\r\n \"endTime\": \"2022-02-11T21:55:18.201353Z\",\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\": \"2022-02-11T21:55:17.560725Z\",\r\n \"version\": \"1.9.24\"\r\n },\r\n \"virtualMachineInfo\": {}\r\n },\r\n {\r\n \"id\": \"tvmps_fb41546f98e686ed50fbf7d79b873fab58299b7727a32dcb68476e1fe00374ea_d\",\r\n \"url\": \"https://mikeportal.eastus.batch.azure.com/pools/testPool/nodes/tvmps_fb41546f98e686ed50fbf7d79b873fab58299b7727a32dcb68476e1fe00374ea_d\",\r\n \"state\": \"idle\",\r\n \"schedulingState\": \"enabled\",\r\n \"stateTransitionTime\": \"2022-02-15T19:31:26.863915Z\",\r\n \"lastBootTime\": \"2022-02-11T21:55:17.549795Z\",\r\n \"allocationTime\": \"2022-02-11T21:53:31.7504383Z\",\r\n \"ipAddress\": \"10.218.0.4\",\r\n \"affinityId\": \"TVM:tvmps_fb41546f98e686ed50fbf7d79b873fab58299b7727a32dcb68476e1fe00374ea_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/testJobCompletesWhenTaskFails/tasks/taskId-1\",\r\n \"jobId\": \"testJobCompletesWhenTaskFails\",\r\n \"taskId\": \"taskId-1\",\r\n \"taskState\": \"completed\",\r\n \"executionInfo\": {\r\n \"startTime\": \"2022-02-15T19:31:26.765567Z\",\r\n \"endTime\": \"2022-02-15T19:31:26.832662Z\",\r\n \"exitCode\": 3,\r\n \"failureInfo\": {\r\n \"category\": \"UserError\",\r\n \"code\": \"FailureExitCode\",\r\n \"message\": \"The task exited with an exit code representing a failure\",\r\n \"details\": [\r\n {\r\n \"name\": \"Message\",\r\n \"value\": \"The task process exited with an unexpected exit code\"\r\n },\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\": \"2022-02-11T21:55:18.034172Z\",\r\n \"endTime\": \"2022-02-11T21:55:18.096676Z\",\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\": \"2022-02-11T21:55:17.549795Z\",\r\n \"version\": \"1.9.24\"\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_08678bcc555e2847fe2880911a03ab30fb3c149aff08cd6c941d688c8c3f09bd_d?api-version=2022-01-01.15.0&$select=id%2Cstate", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bXBzXzA4Njc4YmNjNTU1ZTI4NDdmZTI4ODA5MTFhMDNhYjMwZmIzYzE0OWFmZjA4Y2Q2Yzk0MWQ2ODhjOGMzZjA5YmRfZD9hcGktdmVyc2lvbj0yMDIyLTAxLTAxLjE1LjAmJHNlbGVjdD1pZCUyQ3N0YXRl", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "f7ebab99-8fb7-422d-b111-4da878e500c1" + "847c1397-4a3c-4d1e-ac45-7c8e7b53fbdb" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Wed, 10 Jun 2020 20:32:25 GMT" + "Tue, 15 Feb 2022 19:32:55 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.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", "AzurePowershell/Az1.0.0" ] }, @@ -83,7 +83,7 @@ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "56cd7dce-d683-4607-9c76-7c6af14e77b4" + "a65c62ac-26c8-4a15-84df-922cbebb0d99" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -95,35 +95,35 @@ "3.0" ], "Date": [ - "Wed, 10 Jun 2020 20:32:25 GMT" + "Tue, 15 Feb 2022 19:32:54 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_08678bcc555e2847fe2880911a03ab30fb3c149aff08cd6c941d688c8c3f09bd_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_08678bcc555e2847fe2880911a03ab30fb3c149aff08cd6c941d688c8c3f09bd_d?api-version=2022-01-01.15.0&$select=id%2Cstate", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bXBzXzA4Njc4YmNjNTU1ZTI4NDdmZTI4ODA5MTFhMDNhYjMwZmIzYzE0OWFmZjA4Y2Q2Yzk0MWQ2ODhjOGMzZjA5YmRfZD9hcGktdmVyc2lvbj0yMDIyLTAxLTAxLjE1LjAmJHNlbGVjdD1pZCUyQ3N0YXRl", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "e58ddfa3-9bb6-4835-806c-e521f9e498a9" + "b18d191d-dea4-4380-afb5-a0ba52338821" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Wed, 10 Jun 2020 20:32:27 GMT" + "Tue, 15 Feb 2022 19:33:00 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.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", "AzurePowershell/Az1.0.0" ] }, @@ -135,7 +135,7 @@ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "9bb88868-aa71-4ece-8308-94ec7afb164c" + "87384e24-8af4-4134-9467-b804c93956a8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -147,35 +147,977 @@ "3.0" ], "Date": [ - "Wed, 10 Jun 2020 20:32:48 GMT" + "Tue, 15 Feb 2022 19:32:59 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_08678bcc555e2847fe2880911a03ab30fb3c149aff08cd6c941d688c8c3f09bd_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_08678bcc555e2847fe2880911a03ab30fb3c149aff08cd6c941d688c8c3f09bd_d?api-version=2022-01-01.15.0&$select=id%2Cstate", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bXBzXzA4Njc4YmNjNTU1ZTI4NDdmZTI4ODA5MTFhMDNhYjMwZmIzYzE0OWFmZjA4Y2Q2Yzk0MWQ2ODhjOGMzZjA5YmRfZD9hcGktdmVyc2lvbj0yMDIyLTAxLTAxLjE1LjAmJHNlbGVjdD1pZCUyQ3N0YXRl", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "1ed7c41f-5b92-4fa2-8b78-5b2fa017b4b0" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Tue, 15 Feb 2022 19:33:05 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "aa4f17c2-c63d-4067-b7cd-fa2dbd917559" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Tue, 15 Feb 2022 19:33:04 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_08678bcc555e2847fe2880911a03ab30fb3c149aff08cd6c941d688c8c3f09bd_d\",\r\n \"state\": \"rebooting\",\r\n \"virtualMachineInfo\": {}\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/pools/testPool/nodes/tvmps_08678bcc555e2847fe2880911a03ab30fb3c149aff08cd6c941d688c8c3f09bd_d?api-version=2022-01-01.15.0&$select=id%2Cstate", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bXBzXzA4Njc4YmNjNTU1ZTI4NDdmZTI4ODA5MTFhMDNhYjMwZmIzYzE0OWFmZjA4Y2Q2Yzk0MWQ2ODhjOGMzZjA5YmRfZD9hcGktdmVyc2lvbj0yMDIyLTAxLTAxLjE1LjAmJHNlbGVjdD1pZCUyQ3N0YXRl", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "4903e040-6da5-40ae-9721-9453dfd447fe" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Tue, 15 Feb 2022 19:33:10 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "57ba2ece-bb57-4309-b275-7bd927d999cf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Tue, 15 Feb 2022 19:33:09 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_08678bcc555e2847fe2880911a03ab30fb3c149aff08cd6c941d688c8c3f09bd_d\",\r\n \"state\": \"rebooting\",\r\n \"virtualMachineInfo\": {}\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/pools/testPool/nodes/tvmps_08678bcc555e2847fe2880911a03ab30fb3c149aff08cd6c941d688c8c3f09bd_d?api-version=2022-01-01.15.0&$select=id%2Cstate", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bXBzXzA4Njc4YmNjNTU1ZTI4NDdmZTI4ODA5MTFhMDNhYjMwZmIzYzE0OWFmZjA4Y2Q2Yzk0MWQ2ODhjOGMzZjA5YmRfZD9hcGktdmVyc2lvbj0yMDIyLTAxLTAxLjE1LjAmJHNlbGVjdD1pZCUyQ3N0YXRl", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "d38e31a5-3a00-4e24-b483-f2c28a2c3245" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Tue, 15 Feb 2022 19:33:15 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "2a950ef0-efd6-4c89-bbef-a987b8342741" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Tue, 15 Feb 2022 19:33:14 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_08678bcc555e2847fe2880911a03ab30fb3c149aff08cd6c941d688c8c3f09bd_d\",\r\n \"state\": \"rebooting\",\r\n \"virtualMachineInfo\": {}\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/pools/testPool/nodes/tvmps_08678bcc555e2847fe2880911a03ab30fb3c149aff08cd6c941d688c8c3f09bd_d?api-version=2022-01-01.15.0&$select=id%2Cstate", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bXBzXzA4Njc4YmNjNTU1ZTI4NDdmZTI4ODA5MTFhMDNhYjMwZmIzYzE0OWFmZjA4Y2Q2Yzk0MWQ2ODhjOGMzZjA5YmRfZD9hcGktdmVyc2lvbj0yMDIyLTAxLTAxLjE1LjAmJHNlbGVjdD1pZCUyQ3N0YXRl", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "60719842-a34a-44dc-bc94-b29f0fcda74d" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Tue, 15 Feb 2022 19:33:20 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "16d99370-736e-47b2-b79b-3fedc9ca4797" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Tue, 15 Feb 2022 19:33:19 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_08678bcc555e2847fe2880911a03ab30fb3c149aff08cd6c941d688c8c3f09bd_d\",\r\n \"state\": \"rebooting\",\r\n \"virtualMachineInfo\": {}\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/pools/testPool/nodes/tvmps_08678bcc555e2847fe2880911a03ab30fb3c149aff08cd6c941d688c8c3f09bd_d?api-version=2022-01-01.15.0&$select=id%2Cstate", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bXBzXzA4Njc4YmNjNTU1ZTI4NDdmZTI4ODA5MTFhMDNhYjMwZmIzYzE0OWFmZjA4Y2Q2Yzk0MWQ2ODhjOGMzZjA5YmRfZD9hcGktdmVyc2lvbj0yMDIyLTAxLTAxLjE1LjAmJHNlbGVjdD1pZCUyQ3N0YXRl", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "bfe811eb-d221-4f82-ad46-3d95ef9aa90a" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Tue, 15 Feb 2022 19:33:25 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "3ccc1b47-bc27-46db-aad8-7db3ede3853a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Tue, 15 Feb 2022 19:33:24 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_08678bcc555e2847fe2880911a03ab30fb3c149aff08cd6c941d688c8c3f09bd_d\",\r\n \"state\": \"rebooting\",\r\n \"virtualMachineInfo\": {}\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/pools/testPool/nodes/tvmps_08678bcc555e2847fe2880911a03ab30fb3c149aff08cd6c941d688c8c3f09bd_d?api-version=2022-01-01.15.0&$select=id%2Cstate", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bXBzXzA4Njc4YmNjNTU1ZTI4NDdmZTI4ODA5MTFhMDNhYjMwZmIzYzE0OWFmZjA4Y2Q2Yzk0MWQ2ODhjOGMzZjA5YmRfZD9hcGktdmVyc2lvbj0yMDIyLTAxLTAxLjE1LjAmJHNlbGVjdD1pZCUyQ3N0YXRl", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "b1c04c7b-0d5a-4012-91d7-2ad2838c986b" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Tue, 15 Feb 2022 19:33:30 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "1b0215d2-fcc9-4e9d-8f0c-3ff7e0444857" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Tue, 15 Feb 2022 19:33:29 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_08678bcc555e2847fe2880911a03ab30fb3c149aff08cd6c941d688c8c3f09bd_d\",\r\n \"state\": \"rebooting\",\r\n \"virtualMachineInfo\": {}\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/pools/testPool/nodes/tvmps_08678bcc555e2847fe2880911a03ab30fb3c149aff08cd6c941d688c8c3f09bd_d?api-version=2022-01-01.15.0&$select=id%2Cstate", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bXBzXzA4Njc4YmNjNTU1ZTI4NDdmZTI4ODA5MTFhMDNhYjMwZmIzYzE0OWFmZjA4Y2Q2Yzk0MWQ2ODhjOGMzZjA5YmRfZD9hcGktdmVyc2lvbj0yMDIyLTAxLTAxLjE1LjAmJHNlbGVjdD1pZCUyQ3N0YXRl", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "df52c4e5-7ef1-4934-8fc9-6389ff163880" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Tue, 15 Feb 2022 19:33:35 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "20006878-e6bf-49ff-90c3-130db0b41f87" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Tue, 15 Feb 2022 19:33:34 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_08678bcc555e2847fe2880911a03ab30fb3c149aff08cd6c941d688c8c3f09bd_d\",\r\n \"state\": \"rebooting\",\r\n \"virtualMachineInfo\": {}\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/pools/testPool/nodes/tvmps_08678bcc555e2847fe2880911a03ab30fb3c149aff08cd6c941d688c8c3f09bd_d?api-version=2022-01-01.15.0&$select=id%2Cstate", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bXBzXzA4Njc4YmNjNTU1ZTI4NDdmZTI4ODA5MTFhMDNhYjMwZmIzYzE0OWFmZjA4Y2Q2Yzk0MWQ2ODhjOGMzZjA5YmRfZD9hcGktdmVyc2lvbj0yMDIyLTAxLTAxLjE1LjAmJHNlbGVjdD1pZCUyQ3N0YXRl", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "ed9c8005-d0ce-4925-9261-767c510901af" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Tue, 15 Feb 2022 19:33:40 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "65475897-56d8-4f94-998e-ff5e89703912" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Tue, 15 Feb 2022 19:33:39 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_08678bcc555e2847fe2880911a03ab30fb3c149aff08cd6c941d688c8c3f09bd_d\",\r\n \"state\": \"rebooting\",\r\n \"virtualMachineInfo\": {}\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/pools/testPool/nodes/tvmps_08678bcc555e2847fe2880911a03ab30fb3c149aff08cd6c941d688c8c3f09bd_d?api-version=2022-01-01.15.0&$select=id%2Cstate", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bXBzXzA4Njc4YmNjNTU1ZTI4NDdmZTI4ODA5MTFhMDNhYjMwZmIzYzE0OWFmZjA4Y2Q2Yzk0MWQ2ODhjOGMzZjA5YmRfZD9hcGktdmVyc2lvbj0yMDIyLTAxLTAxLjE1LjAmJHNlbGVjdD1pZCUyQ3N0YXRl", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "b6f94a56-091e-48f5-9b94-25a6280c1483" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Tue, 15 Feb 2022 19:33:45 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "76adaf41-d99b-4f6f-b03d-cd955b91627e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Tue, 15 Feb 2022 19:33: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_08678bcc555e2847fe2880911a03ab30fb3c149aff08cd6c941d688c8c3f09bd_d\",\r\n \"state\": \"rebooting\",\r\n \"virtualMachineInfo\": {}\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/pools/testPool/nodes/tvmps_08678bcc555e2847fe2880911a03ab30fb3c149aff08cd6c941d688c8c3f09bd_d?api-version=2022-01-01.15.0&$select=id%2Cstate", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bXBzXzA4Njc4YmNjNTU1ZTI4NDdmZTI4ODA5MTFhMDNhYjMwZmIzYzE0OWFmZjA4Y2Q2Yzk0MWQ2ODhjOGMzZjA5YmRfZD9hcGktdmVyc2lvbj0yMDIyLTAxLTAxLjE1LjAmJHNlbGVjdD1pZCUyQ3N0YXRl", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "fd24969d-896f-494f-af42-be9d3e8cc989" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Tue, 15 Feb 2022 19:33:50 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "82eb55b6-3ff9-43ec-adac-ee9142b8fa9a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Tue, 15 Feb 2022 19:33:49 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_08678bcc555e2847fe2880911a03ab30fb3c149aff08cd6c941d688c8c3f09bd_d\",\r\n \"state\": \"rebooting\",\r\n \"virtualMachineInfo\": {}\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/pools/testPool/nodes/tvmps_08678bcc555e2847fe2880911a03ab30fb3c149aff08cd6c941d688c8c3f09bd_d?api-version=2022-01-01.15.0&$select=id%2Cstate", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bXBzXzA4Njc4YmNjNTU1ZTI4NDdmZTI4ODA5MTFhMDNhYjMwZmIzYzE0OWFmZjA4Y2Q2Yzk0MWQ2ODhjOGMzZjA5YmRfZD9hcGktdmVyc2lvbj0yMDIyLTAxLTAxLjE1LjAmJHNlbGVjdD1pZCUyQ3N0YXRl", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "c913325f-cf70-4a37-aa5c-9accdc730ab3" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Tue, 15 Feb 2022 19:33:55 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "28ce5c3c-2541-4e9f-8103-3a730d74b3e8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Tue, 15 Feb 2022 19:33:54 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_08678bcc555e2847fe2880911a03ab30fb3c149aff08cd6c941d688c8c3f09bd_d\",\r\n \"state\": \"rebooting\",\r\n \"virtualMachineInfo\": {}\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/pools/testPool/nodes/tvmps_08678bcc555e2847fe2880911a03ab30fb3c149aff08cd6c941d688c8c3f09bd_d?api-version=2022-01-01.15.0&$select=id%2Cstate", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bXBzXzA4Njc4YmNjNTU1ZTI4NDdmZTI4ODA5MTFhMDNhYjMwZmIzYzE0OWFmZjA4Y2Q2Yzk0MWQ2ODhjOGMzZjA5YmRfZD9hcGktdmVyc2lvbj0yMDIyLTAxLTAxLjE1LjAmJHNlbGVjdD1pZCUyQ3N0YXRl", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "d71fca0e-9d29-41f8-be24-a04b4c8e19d0" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Tue, 15 Feb 2022 19:34:00 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "2959e3f3-c483-4548-8046-b250dc1e94f0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Tue, 15 Feb 2022 19:34:00 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_08678bcc555e2847fe2880911a03ab30fb3c149aff08cd6c941d688c8c3f09bd_d\",\r\n \"state\": \"rebooting\",\r\n \"virtualMachineInfo\": {}\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/pools/testPool/nodes/tvmps_08678bcc555e2847fe2880911a03ab30fb3c149aff08cd6c941d688c8c3f09bd_d?api-version=2022-01-01.15.0&$select=id%2Cstate", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bXBzXzA4Njc4YmNjNTU1ZTI4NDdmZTI4ODA5MTFhMDNhYjMwZmIzYzE0OWFmZjA4Y2Q2Yzk0MWQ2ODhjOGMzZjA5YmRfZD9hcGktdmVyc2lvbj0yMDIyLTAxLTAxLjE1LjAmJHNlbGVjdD1pZCUyQ3N0YXRl", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "e7e27c40-8471-41af-86a4-954cdc6b929b" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Tue, 15 Feb 2022 19:34:06 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "10c4a8ae-7849-4575-beaa-3066810bcd9f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Tue, 15 Feb 2022 19:34:05 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_08678bcc555e2847fe2880911a03ab30fb3c149aff08cd6c941d688c8c3f09bd_d\",\r\n \"state\": \"rebooting\",\r\n \"virtualMachineInfo\": {}\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/pools/testPool/nodes/tvmps_08678bcc555e2847fe2880911a03ab30fb3c149aff08cd6c941d688c8c3f09bd_d?api-version=2022-01-01.15.0&$select=id%2Cstate", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bXBzXzA4Njc4YmNjNTU1ZTI4NDdmZTI4ODA5MTFhMDNhYjMwZmIzYzE0OWFmZjA4Y2Q2Yzk0MWQ2ODhjOGMzZjA5YmRfZD9hcGktdmVyc2lvbj0yMDIyLTAxLTAxLjE1LjAmJHNlbGVjdD1pZCUyQ3N0YXRl", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "ac9df369-6e57-44c3-9fd1-27f65b44e18c" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Tue, 15 Feb 2022 19:34:11 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "d652d99c-9433-4d7f-a7f9-9db7e307b51e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Tue, 15 Feb 2022 19:34:10 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_08678bcc555e2847fe2880911a03ab30fb3c149aff08cd6c941d688c8c3f09bd_d\",\r\n \"state\": \"rebooting\",\r\n \"virtualMachineInfo\": {}\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/pools/testPool/nodes/tvmps_08678bcc555e2847fe2880911a03ab30fb3c149aff08cd6c941d688c8c3f09bd_d?api-version=2022-01-01.15.0&$select=id%2Cstate", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bXBzXzA4Njc4YmNjNTU1ZTI4NDdmZTI4ODA5MTFhMDNhYjMwZmIzYzE0OWFmZjA4Y2Q2Yzk0MWQ2ODhjOGMzZjA5YmRfZD9hcGktdmVyc2lvbj0yMDIyLTAxLTAxLjE1LjAmJHNlbGVjdD1pZCUyQ3N0YXRl", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "5ddcc885-2437-46c2-83fb-7c77971a6c84" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Tue, 15 Feb 2022 19:34:16 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "b61e60cb-bad1-429f-ab49-246cb24b3eed" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Tue, 15 Feb 2022 19:34:15 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_08678bcc555e2847fe2880911a03ab30fb3c149aff08cd6c941d688c8c3f09bd_d\",\r\n \"state\": \"rebooting\",\r\n \"virtualMachineInfo\": {}\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/pools/testPool/nodes/tvmps_08678bcc555e2847fe2880911a03ab30fb3c149aff08cd6c941d688c8c3f09bd_d?api-version=2022-01-01.15.0&$select=id%2Cstate", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bXBzXzA4Njc4YmNjNTU1ZTI4NDdmZTI4ODA5MTFhMDNhYjMwZmIzYzE0OWFmZjA4Y2Q2Yzk0MWQ2ODhjOGMzZjA5YmRfZD9hcGktdmVyc2lvbj0yMDIyLTAxLTAxLjE1LjAmJHNlbGVjdD1pZCUyQ3N0YXRl", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "bffbc693-02cc-4499-8589-b1eb1263f119" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Tue, 15 Feb 2022 19:34:21 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "184af71d-c78c-4e90-b633-5f438f6b3dfe" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Tue, 15 Feb 2022 19:34:20 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_08678bcc555e2847fe2880911a03ab30fb3c149aff08cd6c941d688c8c3f09bd_d\",\r\n \"state\": \"rebooting\",\r\n \"virtualMachineInfo\": {}\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/pools/testPool/nodes/tvmps_08678bcc555e2847fe2880911a03ab30fb3c149aff08cd6c941d688c8c3f09bd_d?api-version=2022-01-01.15.0&$select=id%2Cstate", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bXBzXzA4Njc4YmNjNTU1ZTI4NDdmZTI4ODA5MTFhMDNhYjMwZmIzYzE0OWFmZjA4Y2Q2Yzk0MWQ2ODhjOGMzZjA5YmRfZD9hcGktdmVyc2lvbj0yMDIyLTAxLTAxLjE1LjAmJHNlbGVjdD1pZCUyQ3N0YXRl", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "8257cb66-3038-485b-9bf9-df14bfb15af3" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Tue, 15 Feb 2022 19:34:26 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "552b287d-aca8-44e5-af5d-1e540db9a637" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Tue, 15 Feb 2022 19:34:25 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_08678bcc555e2847fe2880911a03ab30fb3c149aff08cd6c941d688c8c3f09bd_d\",\r\n \"state\": \"idle\",\r\n \"virtualMachineInfo\": {}\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/pools/testPool/nodes/tvmps_08678bcc555e2847fe2880911a03ab30fb3c149aff08cd6c941d688c8c3f09bd_d?api-version=2022-01-01.15.0", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bXBzXzA4Njc4YmNjNTU1ZTI4NDdmZTI4ODA5MTFhMDNhYjMwZmIzYzE0OWFmZjA4Y2Q2Yzk0MWQ2ODhjOGMzZjA5YmRfZD9hcGktdmVyc2lvbj0yMDIyLTAxLTAxLjE1LjA=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "9e3aafac-e0eb-4c0f-b5e7-06333537a40c" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Tue, 15 Feb 2022 19:34:26 GMT" + ], + "x-ms-client-request-id": [ + "30ab7575-cf39-4f02-957f-cee11e313ff3" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "914608ab-9505-4417-bffb-56faa2ad3fe9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Tue, 15 Feb 2022 19:34: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_08678bcc555e2847fe2880911a03ab30fb3c149aff08cd6c941d688c8c3f09bd_d\",\r\n \"url\": \"https://mikeportal.eastus.batch.azure.com/pools/testPool/nodes/tvmps_08678bcc555e2847fe2880911a03ab30fb3c149aff08cd6c941d688c8c3f09bd_d\",\r\n \"state\": \"idle\",\r\n \"schedulingState\": \"enabled\",\r\n \"stateTransitionTime\": \"2022-02-15T19:34:23.049187Z\",\r\n \"lastBootTime\": \"2022-02-15T19:34:22.8615Z\",\r\n \"allocationTime\": \"2022-02-11T21:53:31.7514392Z\",\r\n \"ipAddress\": \"10.218.0.5\",\r\n \"affinityId\": \"TVM:tvmps_08678bcc555e2847fe2880911a03ab30fb3c149aff08cd6c941d688c8c3f09bd_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\": \"2022-02-15T19:34:22.971061Z\",\r\n \"endTime\": \"2022-02-15T19:34:23.033563Z\",\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\": \"2022-02-11T21:55:17.547548Z\",\r\n \"version\": \"1.9.24\"\r\n },\r\n \"virtualMachineInfo\": {}\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/pools/testPool/nodes/tvmps_08678bcc555e2847fe2880911a03ab30fb3c149aff08cd6c941d688c8c3f09bd_d/disablescheduling?api-version=2022-01-01.15.0", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bXBzXzA4Njc4YmNjNTU1ZTI4NDdmZTI4ODA5MTFhMDNhYjMwZmIzYzE0OWFmZjA4Y2Q2Yzk0MWQ2ODhjOGMzZjA5YmRfZC9kaXNhYmxlc2NoZWR1bGluZz9hcGktdmVyc2lvbj0yMDIyLTAxLTAxLjE1LjA=", "RequestMethod": "POST", "RequestBody": "{\r\n \"nodeDisableSchedulingOption\": \"terminate\"\r\n}", "RequestHeaders": { "client-request-id": [ - "4a91a1c1-5e1e-47ec-8a77-f503409720f0" + "58fe243c-d298-4dfb-afee-95f64f6252e0" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Wed, 10 Jun 2020 20:32:48 GMT" + "Tue, 15 Feb 2022 19:34:27 GMT" + ], + "x-ms-client-request-id": [ + "30ab7575-cf39-4f02-957f-cee11e313ff3" ], "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.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", "AzurePowershell/Az1.0.0" ], "Content-Type": [ @@ -193,7 +1135,7 @@ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "cd0ad0b1-2360-476d-bbdc-e160a7bc2ba4" + "8e0354a3-738a-4fe0-8965-8d8f7ec81833" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -205,35 +1147,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_08678bcc555e2847fe2880911a03ab30fb3c149aff08cd6c941d688c8c3f09bd_d/disablescheduling" ], "Date": [ - "Wed, 10 Jun 2020 20:32:48 GMT" + "Tue, 15 Feb 2022 19:34:26 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_08678bcc555e2847fe2880911a03ab30fb3c149aff08cd6c941d688c8c3f09bd_d?api-version=2022-01-01.15.0&$select=id%2CschedulingState", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bXBzXzA4Njc4YmNjNTU1ZTI4NDdmZTI4ODA5MTFhMDNhYjMwZmIzYzE0OWFmZjA4Y2Q2Yzk0MWQ2ODhjOGMzZjA5YmRfZD9hcGktdmVyc2lvbj0yMDIyLTAxLTAxLjE1LjAmJHNlbGVjdD1pZCUyQ3NjaGVkdWxpbmdTdGF0ZQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "eee064cd-98af-471f-8c16-59f78ec4635a" + "4dfd6e9f-c239-4b0f-9ca3-24fab300b091" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Wed, 10 Jun 2020 20:32:49 GMT" + "Tue, 15 Feb 2022 19:34:27 GMT" + ], + "x-ms-client-request-id": [ + "70d91f64-6b34-4d6d-9ffc-4bff95e2125d" ], "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.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", "AzurePowershell/Az1.0.0" ] }, @@ -245,7 +1190,7 @@ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "21aeefd2-05a0-45dc-a8b4-9d6bffff8fd8" + "6cc4a289-9ee6-487c-bbeb-ea79ba6d6315" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -257,35 +1202,38 @@ "3.0" ], "Date": [ - "Wed, 10 Jun 2020 20:32:48 GMT" + "Tue, 15 Feb 2022 19:34:27 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_08678bcc555e2847fe2880911a03ab30fb3c149aff08cd6c941d688c8c3f09bd_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_08678bcc555e2847fe2880911a03ab30fb3c149aff08cd6c941d688c8c3f09bd_d?api-version=2022-01-01.15.0&$select=id%2CschedulingState", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bXBzXzA4Njc4YmNjNTU1ZTI4NDdmZTI4ODA5MTFhMDNhYjMwZmIzYzE0OWFmZjA4Y2Q2Yzk0MWQ2ODhjOGMzZjA5YmRfZD9hcGktdmVyc2lvbj0yMDIyLTAxLTAxLjE1LjAmJHNlbGVjdD1pZCUyQ3NjaGVkdWxpbmdTdGF0ZQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "cf48553c-ff7b-4ff7-b4db-e3bf27f6c0d0" + "2b56f86a-5e48-4c21-97c2-e0e7130d5d73" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Wed, 10 Jun 2020 20:32:49 GMT" + "Tue, 15 Feb 2022 19:34:27 GMT" + ], + "x-ms-client-request-id": [ + "88ecfd66-cb5b-4bc4-8cfc-7e8621e31da2" ], "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.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", "AzurePowershell/Az1.0.0" ] }, @@ -297,7 +1245,7 @@ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "6614d39c-7bcb-421d-a7ca-fef9b73f2e1b" + "92e3a550-cc36-433e-bfa9-9fbe2b8b1e74" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -309,35 +1257,38 @@ "3.0" ], "Date": [ - "Wed, 10 Jun 2020 20:32:48 GMT" + "Tue, 15 Feb 2022 19:34:27 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_08678bcc555e2847fe2880911a03ab30fb3c149aff08cd6c941d688c8c3f09bd_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_08678bcc555e2847fe2880911a03ab30fb3c149aff08cd6c941d688c8c3f09bd_d/enablescheduling?api-version=2022-01-01.15.0", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bXBzXzA4Njc4YmNjNTU1ZTI4NDdmZTI4ODA5MTFhMDNhYjMwZmIzYzE0OWFmZjA4Y2Q2Yzk0MWQ2ODhjOGMzZjA5YmRfZC9lbmFibGVzY2hlZHVsaW5nP2FwaS12ZXJzaW9uPTIwMjItMDEtMDEuMTUuMA==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "76b5f0a4-2511-4c8b-93fc-d223c427ab5c" + "0e9548e0-cd90-4458-a6a6-200e39ec01ef" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Wed, 10 Jun 2020 20:32:49 GMT" + "Tue, 15 Feb 2022 19:34:27 GMT" + ], + "x-ms-client-request-id": [ + "2a72b189-3c18-415f-81e7-06f9571db396" ], "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.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", "AzurePowershell/Az1.0.0" ], "Content-Length": [ @@ -352,7 +1303,7 @@ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "c01e8fba-3c53-4f78-956f-04ca13c2aea3" + "e8e1ce84-fcb2-4d2a-a4d2-5a9c63bf9d30" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -364,10 +1315,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_08678bcc555e2847fe2880911a03ab30fb3c149aff08cd6c941d688c8c3f09bd_d/enablescheduling" ], "Date": [ - "Wed, 10 Jun 2020 20:32:48 GMT" + "Tue, 15 Feb 2022 19:34:27 GMT" ] }, "ResponseBody": "", @@ -376,9 +1327,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..b49697faa4ce 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=2022-01-01.15.0", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RJYWFzUG9vbC9ub2Rlcz9hcGktdmVyc2lvbj0yMDIyLTAxLTAxLjE1LjA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "78436500-031d-4c12-8d60-08d86cf1caa7" + "575ed174-a5a4-4133-b854-8b8dd1014eb0" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:14:14 GMT" + "Tue, 15 Feb 2022 19:32: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.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", "AzurePowershell/Az1.0.0" ] }, @@ -31,7 +31,7 @@ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "2bca7450-3476-4891-97c7-6941284c4fb9" + "353cb5dc-1164-4da9-9363-ae572f212a2d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -43,35 +43,38 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 22:14:35 GMT" + "Tue, 15 Feb 2022 19:32:46 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_d0bdc49109a16382f831d0521d71db6c8847ab03f2b5d52b74159670ddae2270_d\",\r\n \"url\": \"https://mikeportal.eastus.batch.azure.com/pools/testIaasPool/nodes/tvmps_d0bdc49109a16382f831d0521d71db6c8847ab03f2b5d52b74159670ddae2270_d\",\r\n \"state\": \"idle\",\r\n \"schedulingState\": \"enabled\",\r\n \"stateTransitionTime\": \"2022-02-11T21:55:17.746966Z\",\r\n \"lastBootTime\": \"2022-02-11T21:55:17.649248Z\",\r\n \"allocationTime\": \"2022-02-11T21:51:31.6013804Z\",\r\n \"ipAddress\": \"10.0.0.4\",\r\n \"affinityId\": \"TVM:tvmps_d0bdc49109a16382f831d0521d71db6c8847ab03f2b5d52b74159670ddae2270_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\": \"20.121.226.196\",\r\n \"publicFQDN\": \"dns01e48ded-a4bf-4e20-ae6b-e97f53cbc8c0-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\": \"2022-02-11T21:55:17.649248Z\",\r\n \"version\": \"1.9.24\"\r\n },\r\n \"virtualMachineInfo\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"18.04-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"18.04.202201180\"\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_d0bdc49109a16382f831d0521d71db6c8847ab03f2b5d52b74159670ddae2270_d?api-version=2022-01-01.15.0", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RJYWFzUG9vbC9ub2Rlcy90dm1wc19kMGJkYzQ5MTA5YTE2MzgyZjgzMWQwNTIxZDcxZGI2Yzg4NDdhYjAzZjJiNWQ1MmI3NDE1OTY3MGRkYWUyMjcwX2Q/YXBpLXZlcnNpb249MjAyMi0wMS0wMS4xNS4w", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "7b6f7570-e87c-446b-a61c-3df8fc9a7eb7" + "aacd42b7-ada7-4ea6-a6db-5a98e8070e08" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:14:36 GMT" + "Tue, 15 Feb 2022 19:32:48 GMT" + ], + "x-ms-client-request-id": [ + "970dc933-5274-491f-a889-1fd90d65817b" ], "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.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", "AzurePowershell/Az1.0.0" ] }, @@ -83,7 +86,7 @@ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "13a0c1a2-603c-45ae-81d0-00f395580501" + "83d8b6f9-0aaa-4794-845e-0ebf489e6d9a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -95,35 +98,38 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 22:14:57 GMT" + "Tue, 15 Feb 2022 19:32:47 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_d0bdc49109a16382f831d0521d71db6c8847ab03f2b5d52b74159670ddae2270_d\",\r\n \"url\": \"https://mikeportal.eastus.batch.azure.com/pools/testIaasPool/nodes/tvmps_d0bdc49109a16382f831d0521d71db6c8847ab03f2b5d52b74159670ddae2270_d\",\r\n \"state\": \"idle\",\r\n \"schedulingState\": \"enabled\",\r\n \"stateTransitionTime\": \"2022-02-11T21:55:17.746966Z\",\r\n \"lastBootTime\": \"2022-02-11T21:55:17.649248Z\",\r\n \"allocationTime\": \"2022-02-11T21:51:31.6013804Z\",\r\n \"ipAddress\": \"10.0.0.4\",\r\n \"affinityId\": \"TVM:tvmps_d0bdc49109a16382f831d0521d71db6c8847ab03f2b5d52b74159670ddae2270_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\": \"20.121.226.196\",\r\n \"publicFQDN\": \"dns01e48ded-a4bf-4e20-ae6b-e97f53cbc8c0-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\": \"2022-02-11T21:55:17.649248Z\",\r\n \"version\": \"1.9.24\"\r\n },\r\n \"virtualMachineInfo\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"18.04-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"18.04.202201180\"\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_d0bdc49109a16382f831d0521d71db6c8847ab03f2b5d52b74159670ddae2270_d/remoteloginsettings?api-version=2022-01-01.15.0", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RJYWFzUG9vbC9ub2Rlcy90dm1wc19kMGJkYzQ5MTA5YTE2MzgyZjgzMWQwNTIxZDcxZGI2Yzg4NDdhYjAzZjJiNWQ1MmI3NDE1OTY3MGRkYWUyMjcwX2QvcmVtb3RlbG9naW5zZXR0aW5ncz9hcGktdmVyc2lvbj0yMDIyLTAxLTAxLjE1LjA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "94d86846-54cc-4714-b6b8-c037e9c6cf6a" + "8f1621c2-ac78-4b84-94f8-8fd08e5e044a" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:14:58 GMT" + "Tue, 15 Feb 2022 19:32:48 GMT" + ], + "x-ms-client-request-id": [ + "970dc933-5274-491f-a889-1fd90d65817b" ], "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.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", "AzurePowershell/Az1.0.0" ] }, @@ -135,7 +141,7 @@ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "9def4b81-7277-4fa5-952f-1a04bb180107" + "4144f559-b84f-4030-8ba4-5213556b54e7" ], "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_d0bdc49109a16382f831d0521d71db6c8847ab03f2b5d52b74159670ddae2270_d/remoteloginsettings" ], "Date": [ - "Tue, 09 Jun 2020 22:14:57 GMT" + "Tue, 15 Feb 2022 19:32:47 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\": \"20.121.226.196\",\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..21de3792a2f5 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=2022-01-01.15.0", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzP2FwaS12ZXJzaW9uPTIwMjItMDEtMDEuMTUuMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "8e85a8b1-9004-4ab6-a960-3f3ac0f3f96b" + "5206ccd4-8d2e-4b00-bea3-97abf4aaa5fa" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:14:59 GMT" + "Tue, 15 Feb 2022 19:32:50 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.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", "AzurePowershell/Az1.0.0" ] }, @@ -31,7 +31,7 @@ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "cb4737b7-7ec6-4e1a-8387-f4a511b4b415" + "f15e726f-f390-475b-881f-e683d9f7044a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -43,35 +43,35 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 22:15:21 GMT" + "Tue, 15 Feb 2022 19:32:50 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_08678bcc555e2847fe2880911a03ab30fb3c149aff08cd6c941d688c8c3f09bd_d\",\r\n \"url\": \"https://mikeportal.eastus.batch.azure.com/pools/testPool/nodes/tvmps_08678bcc555e2847fe2880911a03ab30fb3c149aff08cd6c941d688c8c3f09bd_d\",\r\n \"state\": \"idle\",\r\n \"schedulingState\": \"enabled\",\r\n \"stateTransitionTime\": \"2022-02-11T21:55:17.983994Z\",\r\n \"lastBootTime\": \"2022-02-11T21:55:17.547548Z\",\r\n \"allocationTime\": \"2022-02-11T21:53:31.7514392Z\",\r\n \"ipAddress\": \"10.218.0.5\",\r\n \"affinityId\": \"TVM:tvmps_08678bcc555e2847fe2880911a03ab30fb3c149aff08cd6c941d688c8c3f09bd_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\": \"2022-02-11T21:55:17.921643Z\",\r\n \"endTime\": \"2022-02-11T21:55:17.968405Z\",\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\": \"2022-02-11T21:55:17.547548Z\",\r\n \"version\": \"1.9.24\"\r\n },\r\n \"virtualMachineInfo\": {}\r\n },\r\n {\r\n \"id\": \"tvmps_9fdd9ba90896a96cc0732779c80a6fdc6e738a5f39ad613d3ea516f2dc6c2afc_d\",\r\n \"url\": \"https://mikeportal.eastus.batch.azure.com/pools/testPool/nodes/tvmps_9fdd9ba90896a96cc0732779c80a6fdc6e738a5f39ad613d3ea516f2dc6c2afc_d\",\r\n \"state\": \"idle\",\r\n \"schedulingState\": \"enabled\",\r\n \"stateTransitionTime\": \"2022-02-11T21:55:18.201353Z\",\r\n \"lastBootTime\": \"2022-02-11T21:55:17.560725Z\",\r\n \"allocationTime\": \"2022-02-11T21:53:31.7514392Z\",\r\n \"ipAddress\": \"10.218.0.6\",\r\n \"affinityId\": \"TVM:tvmps_9fdd9ba90896a96cc0732779c80a6fdc6e738a5f39ad613d3ea516f2dc6c2afc_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\": \"2022-02-11T21:55:18.13885Z\",\r\n \"endTime\": \"2022-02-11T21:55:18.201353Z\",\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\": \"2022-02-11T21:55:17.560725Z\",\r\n \"version\": \"1.9.24\"\r\n },\r\n \"virtualMachineInfo\": {}\r\n },\r\n {\r\n \"id\": \"tvmps_fb41546f98e686ed50fbf7d79b873fab58299b7727a32dcb68476e1fe00374ea_d\",\r\n \"url\": \"https://mikeportal.eastus.batch.azure.com/pools/testPool/nodes/tvmps_fb41546f98e686ed50fbf7d79b873fab58299b7727a32dcb68476e1fe00374ea_d\",\r\n \"state\": \"idle\",\r\n \"schedulingState\": \"enabled\",\r\n \"stateTransitionTime\": \"2022-02-15T19:31:26.863915Z\",\r\n \"lastBootTime\": \"2022-02-11T21:55:17.549795Z\",\r\n \"allocationTime\": \"2022-02-11T21:53:31.7504383Z\",\r\n \"ipAddress\": \"10.218.0.4\",\r\n \"affinityId\": \"TVM:tvmps_fb41546f98e686ed50fbf7d79b873fab58299b7727a32dcb68476e1fe00374ea_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/testJobCompletesWhenTaskFails/tasks/taskId-1\",\r\n \"jobId\": \"testJobCompletesWhenTaskFails\",\r\n \"taskId\": \"taskId-1\",\r\n \"taskState\": \"completed\",\r\n \"executionInfo\": {\r\n \"startTime\": \"2022-02-15T19:31:26.765567Z\",\r\n \"endTime\": \"2022-02-15T19:31:26.832662Z\",\r\n \"exitCode\": 3,\r\n \"failureInfo\": {\r\n \"category\": \"UserError\",\r\n \"code\": \"FailureExitCode\",\r\n \"message\": \"The task exited with an exit code representing a failure\",\r\n \"details\": [\r\n {\r\n \"name\": \"Message\",\r\n \"value\": \"The task process exited with an unexpected exit code\"\r\n },\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\": \"2022-02-11T21:55:18.034172Z\",\r\n \"endTime\": \"2022-02-11T21:55:18.096676Z\",\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\": \"2022-02-11T21:55:17.549795Z\",\r\n \"version\": \"1.9.24\"\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=2022-01-01.15.0", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzP2FwaS12ZXJzaW9uPTIwMjItMDEtMDEuMTUuMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "8f1df77c-9ee9-4ac4-bcad-3455e37c7f2b" + "5983167d-8033-4af5-b46c-3a4d8b27c42a" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:15:21 GMT" + "Tue, 15 Feb 2022 19:32:50 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.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", "AzurePowershell/Az1.0.0" ] }, @@ -83,7 +83,7 @@ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "64ad56fa-ba23-4414-9e41-1e5c73b9cc2e" + "6a49bdfc-24e9-4600-83f8-0ef83a459132" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -95,35 +95,35 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 22:15:21 GMT" + "Tue, 15 Feb 2022 19:32:50 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_08678bcc555e2847fe2880911a03ab30fb3c149aff08cd6c941d688c8c3f09bd_d\",\r\n \"url\": \"https://mikeportal.eastus.batch.azure.com/pools/testPool/nodes/tvmps_08678bcc555e2847fe2880911a03ab30fb3c149aff08cd6c941d688c8c3f09bd_d\",\r\n \"state\": \"idle\",\r\n \"schedulingState\": \"enabled\",\r\n \"stateTransitionTime\": \"2022-02-11T21:55:17.983994Z\",\r\n \"lastBootTime\": \"2022-02-11T21:55:17.547548Z\",\r\n \"allocationTime\": \"2022-02-11T21:53:31.7514392Z\",\r\n \"ipAddress\": \"10.218.0.5\",\r\n \"affinityId\": \"TVM:tvmps_08678bcc555e2847fe2880911a03ab30fb3c149aff08cd6c941d688c8c3f09bd_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\": \"2022-02-11T21:55:17.921643Z\",\r\n \"endTime\": \"2022-02-11T21:55:17.968405Z\",\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\": \"2022-02-11T21:55:17.547548Z\",\r\n \"version\": \"1.9.24\"\r\n },\r\n \"virtualMachineInfo\": {}\r\n },\r\n {\r\n \"id\": \"tvmps_9fdd9ba90896a96cc0732779c80a6fdc6e738a5f39ad613d3ea516f2dc6c2afc_d\",\r\n \"url\": \"https://mikeportal.eastus.batch.azure.com/pools/testPool/nodes/tvmps_9fdd9ba90896a96cc0732779c80a6fdc6e738a5f39ad613d3ea516f2dc6c2afc_d\",\r\n \"state\": \"idle\",\r\n \"schedulingState\": \"enabled\",\r\n \"stateTransitionTime\": \"2022-02-11T21:55:18.201353Z\",\r\n \"lastBootTime\": \"2022-02-11T21:55:17.560725Z\",\r\n \"allocationTime\": \"2022-02-11T21:53:31.7514392Z\",\r\n \"ipAddress\": \"10.218.0.6\",\r\n \"affinityId\": \"TVM:tvmps_9fdd9ba90896a96cc0732779c80a6fdc6e738a5f39ad613d3ea516f2dc6c2afc_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\": \"2022-02-11T21:55:18.13885Z\",\r\n \"endTime\": \"2022-02-11T21:55:18.201353Z\",\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\": \"2022-02-11T21:55:17.560725Z\",\r\n \"version\": \"1.9.24\"\r\n },\r\n \"virtualMachineInfo\": {}\r\n },\r\n {\r\n \"id\": \"tvmps_fb41546f98e686ed50fbf7d79b873fab58299b7727a32dcb68476e1fe00374ea_d\",\r\n \"url\": \"https://mikeportal.eastus.batch.azure.com/pools/testPool/nodes/tvmps_fb41546f98e686ed50fbf7d79b873fab58299b7727a32dcb68476e1fe00374ea_d\",\r\n \"state\": \"idle\",\r\n \"schedulingState\": \"enabled\",\r\n \"stateTransitionTime\": \"2022-02-15T19:31:26.863915Z\",\r\n \"lastBootTime\": \"2022-02-11T21:55:17.549795Z\",\r\n \"allocationTime\": \"2022-02-11T21:53:31.7504383Z\",\r\n \"ipAddress\": \"10.218.0.4\",\r\n \"affinityId\": \"TVM:tvmps_fb41546f98e686ed50fbf7d79b873fab58299b7727a32dcb68476e1fe00374ea_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/testJobCompletesWhenTaskFails/tasks/taskId-1\",\r\n \"jobId\": \"testJobCompletesWhenTaskFails\",\r\n \"taskId\": \"taskId-1\",\r\n \"taskState\": \"completed\",\r\n \"executionInfo\": {\r\n \"startTime\": \"2022-02-15T19:31:26.765567Z\",\r\n \"endTime\": \"2022-02-15T19:31:26.832662Z\",\r\n \"exitCode\": 3,\r\n \"failureInfo\": {\r\n \"category\": \"UserError\",\r\n \"code\": \"FailureExitCode\",\r\n \"message\": \"The task exited with an exit code representing a failure\",\r\n \"details\": [\r\n {\r\n \"name\": \"Message\",\r\n \"value\": \"The task process exited with an unexpected exit code\"\r\n },\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\": \"2022-02-11T21:55:18.034172Z\",\r\n \"endTime\": \"2022-02-11T21:55:18.096676Z\",\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\": \"2022-02-11T21:55:17.549795Z\",\r\n \"version\": \"1.9.24\"\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_08678bcc555e2847fe2880911a03ab30fb3c149aff08cd6c941d688c8c3f09bd_d?api-version=2022-01-01.15.0&$select=id%2Cstate", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bXBzXzA4Njc4YmNjNTU1ZTI4NDdmZTI4ODA5MTFhMDNhYjMwZmIzYzE0OWFmZjA4Y2Q2Yzk0MWQ2ODhjOGMzZjA5YmRfZD9hcGktdmVyc2lvbj0yMDIyLTAxLTAxLjE1LjAmJHNlbGVjdD1pZCUyQ3N0YXRl", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "603e80b5-d206-4008-9f35-350b08253fd1" + "96c01151-0db7-4191-9a16-460881e49823" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:15:21 GMT" + "Tue, 15 Feb 2022 19:32:50 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.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", "AzurePowershell/Az1.0.0" ] }, @@ -135,7 +135,7 @@ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "7f89d7d5-abf6-417a-9384-4c540ecf5c3b" + "72ddec6e-e154-4485-8891-7081d235a469" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -147,35 +147,35 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 22:15:21 GMT" + "Tue, 15 Feb 2022 19:32:50 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_08678bcc555e2847fe2880911a03ab30fb3c149aff08cd6c941d688c8c3f09bd_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_9fdd9ba90896a96cc0732779c80a6fdc6e738a5f39ad613d3ea516f2dc6c2afc_d?api-version=2022-01-01.15.0&$select=id%2Cstate", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bXBzXzlmZGQ5YmE5MDg5NmE5NmNjMDczMjc3OWM4MGE2ZmRjNmU3MzhhNWYzOWFkNjEzZDNlYTUxNmYyZGM2YzJhZmNfZD9hcGktdmVyc2lvbj0yMDIyLTAxLTAxLjE1LjAmJHNlbGVjdD1pZCUyQ3N0YXRl", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "5708ca52-0a47-4d4f-af1b-5ff4b30c2b64" + "c236c8b8-6c4b-4e40-afa1-d5f630073757" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:15:21 GMT" + "Tue, 15 Feb 2022 19:32:50 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.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", "AzurePowershell/Az1.0.0" ] }, @@ -187,7 +187,7 @@ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "ecbc5ef4-d069-4c43-b0ae-310f35e1aae7" + "4739b32a-9f77-4ed6-bc7c-09f9f1849615" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -199,35 +199,38 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 22:15:21 GMT" + "Tue, 15 Feb 2022 19:32:50 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_9fdd9ba90896a96cc0732779c80a6fdc6e738a5f39ad613d3ea516f2dc6c2afc_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_08678bcc555e2847fe2880911a03ab30fb3c149aff08cd6c941d688c8c3f09bd_d?api-version=2022-01-01.15.0", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bXBzXzA4Njc4YmNjNTU1ZTI4NDdmZTI4ODA5MTFhMDNhYjMwZmIzYzE0OWFmZjA4Y2Q2Yzk0MWQ2ODhjOGMzZjA5YmRfZD9hcGktdmVyc2lvbj0yMDIyLTAxLTAxLjE1LjA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "fc0312a9-4298-4b25-8b22-85daff811d34" + "f7265ace-c600-4d72-8007-2a720fc6cbc0" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:15:22 GMT" + "Tue, 15 Feb 2022 19:32:51 GMT" + ], + "x-ms-client-request-id": [ + "1b9c9715-3414-4413-866b-9de1f1cfc252" ], "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.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", "AzurePowershell/Az1.0.0" ] }, @@ -239,7 +242,7 @@ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "2c7e7d55-a66c-4a2e-864b-6f47234891ea" + "64654615-f382-478f-8ff5-d572e3886a79" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -251,35 +254,38 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 22:15:43 GMT" + "Tue, 15 Feb 2022 19:32:50 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_08678bcc555e2847fe2880911a03ab30fb3c149aff08cd6c941d688c8c3f09bd_d\",\r\n \"url\": \"https://mikeportal.eastus.batch.azure.com/pools/testPool/nodes/tvmps_08678bcc555e2847fe2880911a03ab30fb3c149aff08cd6c941d688c8c3f09bd_d\",\r\n \"state\": \"idle\",\r\n \"schedulingState\": \"enabled\",\r\n \"stateTransitionTime\": \"2022-02-11T21:55:17.983994Z\",\r\n \"lastBootTime\": \"2022-02-11T21:55:17.547548Z\",\r\n \"allocationTime\": \"2022-02-11T21:53:31.7514392Z\",\r\n \"ipAddress\": \"10.218.0.5\",\r\n \"affinityId\": \"TVM:tvmps_08678bcc555e2847fe2880911a03ab30fb3c149aff08cd6c941d688c8c3f09bd_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\": \"2022-02-11T21:55:17.921643Z\",\r\n \"endTime\": \"2022-02-11T21:55:17.968405Z\",\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\": \"2022-02-11T21:55:17.547548Z\",\r\n \"version\": \"1.9.24\"\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_08678bcc555e2847fe2880911a03ab30fb3c149aff08cd6c941d688c8c3f09bd_d?api-version=2022-01-01.15.0", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bXBzXzA4Njc4YmNjNTU1ZTI4NDdmZTI4ODA5MTFhMDNhYjMwZmIzYzE0OWFmZjA4Y2Q2Yzk0MWQ2ODhjOGMzZjA5YmRfZD9hcGktdmVyc2lvbj0yMDIyLTAxLTAxLjE1LjA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "2cbce5bf-98f4-4d73-99a4-c48ba6d9991a" + "f6466b57-d35b-42de-a39d-2f1e69669af0" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:15:44 GMT" + "Tue, 15 Feb 2022 19:32:52 GMT" + ], + "x-ms-client-request-id": [ + "7dcdef7d-ef54-420d-b7f8-9ff2cddd20b8" ], "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.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", "AzurePowershell/Az1.0.0" ] }, @@ -291,7 +297,7 @@ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "7bf74d11-6bb3-4771-9aac-0016037fe700" + "5414c2da-3db3-419e-93e1-ecd39f2a27bf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -303,35 +309,38 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 22:15:43 GMT" + "Tue, 15 Feb 2022 19:32:51 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_08678bcc555e2847fe2880911a03ab30fb3c149aff08cd6c941d688c8c3f09bd_d\",\r\n \"url\": \"https://mikeportal.eastus.batch.azure.com/pools/testPool/nodes/tvmps_08678bcc555e2847fe2880911a03ab30fb3c149aff08cd6c941d688c8c3f09bd_d\",\r\n \"state\": \"rebooting\",\r\n \"schedulingState\": \"enabled\",\r\n \"stateTransitionTime\": \"2022-02-15T19:32:51.6160924Z\",\r\n \"lastBootTime\": \"2022-02-11T21:55:17.547548Z\",\r\n \"allocationTime\": \"2022-02-11T21:53:31.7514392Z\",\r\n \"ipAddress\": \"10.218.0.5\",\r\n \"affinityId\": \"TVM:tvmps_08678bcc555e2847fe2880911a03ab30fb3c149aff08cd6c941d688c8c3f09bd_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\": \"2022-02-11T21:55:17.921643Z\",\r\n \"endTime\": \"2022-02-11T21:55:17.968405Z\",\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\": \"2022-02-11T21:55:17.547548Z\",\r\n \"version\": \"1.9.24\"\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_08678bcc555e2847fe2880911a03ab30fb3c149aff08cd6c941d688c8c3f09bd_d/reboot?api-version=2022-01-01.15.0", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bXBzXzA4Njc4YmNjNTU1ZTI4NDdmZTI4ODA5MTFhMDNhYjMwZmIzYzE0OWFmZjA4Y2Q2Yzk0MWQ2ODhjOGMzZjA5YmRfZC9yZWJvb3Q/YXBpLXZlcnNpb249MjAyMi0wMS0wMS4xNS4w", "RequestMethod": "POST", "RequestBody": "{\r\n \"nodeRebootOption\": \"terminate\"\r\n}", "RequestHeaders": { "client-request-id": [ - "752dc30a-9874-4454-b168-ce6dae3af2de" + "ebd13aa6-9ad8-4ae3-8f0a-9b0cd0b09dac" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:15:43 GMT" + "Tue, 15 Feb 2022 19:32:51 GMT" + ], + "x-ms-client-request-id": [ + "1b9c9715-3414-4413-866b-9de1f1cfc252" ], "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.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", "AzurePowershell/Az1.0.0" ], "Content-Type": [ @@ -349,7 +358,7 @@ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "26572393-eb41-4419-ba1f-0f1dacbf06ab" + "f09a53d1-d076-43cd-bf81-bf551267e5cd" ], "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_08678bcc555e2847fe2880911a03ab30fb3c149aff08cd6c941d688c8c3f09bd_d/reboot" ], "Date": [ - "Tue, 09 Jun 2020 22:15:43 GMT" + "Tue, 15 Feb 2022 19:32:51 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_9fdd9ba90896a96cc0732779c80a6fdc6e738a5f39ad613d3ea516f2dc6c2afc_d?api-version=2022-01-01.15.0", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bXBzXzlmZGQ5YmE5MDg5NmE5NmNjMDczMjc3OWM4MGE2ZmRjNmU3MzhhNWYzOWFkNjEzZDNlYTUxNmYyZGM2YzJhZmNfZD9hcGktdmVyc2lvbj0yMDIyLTAxLTAxLjE1LjA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "f178affe-e346-418c-b2a2-f14f7cb57139" + "f7956550-461f-4063-9efb-ead6674ea3cc" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:15:44 GMT" + "Tue, 15 Feb 2022 19:32:52 GMT" + ], + "x-ms-client-request-id": [ + "628b0a54-9f6b-43fc-acaa-32d7460b7299" ], "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.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", "AzurePowershell/Az1.0.0" ] }, @@ -401,7 +413,7 @@ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "06e9e887-a337-4e85-84c0-1e3d9ad7c225" + "d3a09bb0-5af8-4d8e-80e1-00a0e8ebfd84" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -413,35 +425,38 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 22:15:43 GMT" + "Tue, 15 Feb 2022 19:32:51 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_9fdd9ba90896a96cc0732779c80a6fdc6e738a5f39ad613d3ea516f2dc6c2afc_d\",\r\n \"url\": \"https://mikeportal.eastus.batch.azure.com/pools/testPool/nodes/tvmps_9fdd9ba90896a96cc0732779c80a6fdc6e738a5f39ad613d3ea516f2dc6c2afc_d\",\r\n \"state\": \"idle\",\r\n \"schedulingState\": \"enabled\",\r\n \"stateTransitionTime\": \"2022-02-11T21:55:18.201353Z\",\r\n \"lastBootTime\": \"2022-02-11T21:55:17.560725Z\",\r\n \"allocationTime\": \"2022-02-11T21:53:31.7514392Z\",\r\n \"ipAddress\": \"10.218.0.6\",\r\n \"affinityId\": \"TVM:tvmps_9fdd9ba90896a96cc0732779c80a6fdc6e738a5f39ad613d3ea516f2dc6c2afc_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\": \"2022-02-11T21:55:18.13885Z\",\r\n \"endTime\": \"2022-02-11T21:55:18.201353Z\",\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\": \"2022-02-11T21:55:17.560725Z\",\r\n \"version\": \"1.9.24\"\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_9fdd9ba90896a96cc0732779c80a6fdc6e738a5f39ad613d3ea516f2dc6c2afc_d?api-version=2022-01-01.15.0", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bXBzXzlmZGQ5YmE5MDg5NmE5NmNjMDczMjc3OWM4MGE2ZmRjNmU3MzhhNWYzOWFkNjEzZDNlYTUxNmYyZGM2YzJhZmNfZD9hcGktdmVyc2lvbj0yMDIyLTAxLTAxLjE1LjA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "50d9a79d-cd8d-4d04-bb36-36ed2ec3d400" + "c4237b94-4970-4059-bda9-efbf3e4dd624" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:15:44 GMT" + "Tue, 15 Feb 2022 19:32:52 GMT" + ], + "x-ms-client-request-id": [ + "7c7ab047-b160-4bdd-9123-8ce72fab4b75" ], "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.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", "AzurePowershell/Az1.0.0" ] }, @@ -453,7 +468,7 @@ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "0b93d85d-2c26-44af-997c-a09ca83f2ba4" + "94928959-651f-45c5-ac21-969931d6254d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -465,35 +480,38 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 22:15:44 GMT" + "Tue, 15 Feb 2022 19:32:51 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_9fdd9ba90896a96cc0732779c80a6fdc6e738a5f39ad613d3ea516f2dc6c2afc_d\",\r\n \"url\": \"https://mikeportal.eastus.batch.azure.com/pools/testPool/nodes/tvmps_9fdd9ba90896a96cc0732779c80a6fdc6e738a5f39ad613d3ea516f2dc6c2afc_d\",\r\n \"state\": \"reimaging\",\r\n \"schedulingState\": \"enabled\",\r\n \"stateTransitionTime\": \"2022-02-15T19:32:51.843456Z\",\r\n \"lastBootTime\": \"2022-02-11T21:55:17.560725Z\",\r\n \"allocationTime\": \"2022-02-11T21:53:31.7514392Z\",\r\n \"ipAddress\": \"10.218.0.6\",\r\n \"affinityId\": \"TVM:tvmps_9fdd9ba90896a96cc0732779c80a6fdc6e738a5f39ad613d3ea516f2dc6c2afc_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\": \"2022-02-11T21:55:18.13885Z\",\r\n \"endTime\": \"2022-02-11T21:55:18.201353Z\",\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\": \"2022-02-11T21:55:17.560725Z\",\r\n \"version\": \"1.9.24\"\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_9fdd9ba90896a96cc0732779c80a6fdc6e738a5f39ad613d3ea516f2dc6c2afc_d/reimage?api-version=2022-01-01.15.0", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bXBzXzlmZGQ5YmE5MDg5NmE5NmNjMDczMjc3OWM4MGE2ZmRjNmU3MzhhNWYzOWFkNjEzZDNlYTUxNmYyZGM2YzJhZmNfZC9yZWltYWdlP2FwaS12ZXJzaW9uPTIwMjItMDEtMDEuMTUuMA==", "RequestMethod": "POST", "RequestBody": "{\r\n \"nodeReimageOption\": \"terminate\"\r\n}", "RequestHeaders": { "client-request-id": [ - "f06de758-218c-421a-b0bf-a8436f30ae0e" + "6d087d1f-3753-4213-adbd-c61e8be9b619" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:15:44 GMT" + "Tue, 15 Feb 2022 19:32:52 GMT" + ], + "x-ms-client-request-id": [ + "628b0a54-9f6b-43fc-acaa-32d7460b7299" ], "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.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", "AzurePowershell/Az1.0.0" ], "Content-Type": [ @@ -511,7 +529,7 @@ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "63fe8275-1004-44e4-aa7d-5524c2ad1858" + "4f64db9b-edda-4e26-ac04-ce7d9a915f67" ], "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_9fdd9ba90896a96cc0732779c80a6fdc6e738a5f39ad613d3ea516f2dc6c2afc_d/reimage" ], "Date": [ - "Tue, 09 Jun 2020 22:15:43 GMT" + "Tue, 15 Feb 2022 19:32:51 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..c3d9a247c903 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=2022-01-01.15.0", + "EncodedRequestUri": "L3Bvb2xzP2FwaS12ZXJzaW9uPTIwMjItMDEtMDEuMTUuMA==", "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" + "c14c6b01-f19e-47b9-ba88-1ab6cc7f1edb" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:26:13 GMT" + "Tue, 15 Feb 2022 19:34: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.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", "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" + "0x8D9F0BA2F303C81" ], "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" + "00f00439-a8d1-40d2-9759-95a21535e74f" ], "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" + "Tue, 15 Feb 2022 19:34:29 GMT" ], "Last-Modified": [ - "Tue, 09 Jun 2020 22:26:35 GMT" + "Tue, 15 Feb 2022 19:34:29 GMT" ] }, "ResponseBody": "", "StatusCode": 201 }, { - "RequestUri": "/pools/removenodepool?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L3Bvb2xzL3JlbW92ZW5vZGVwb29sP2FwaS12ZXJzaW9uPTIwMjAtMDMtMDEuMTEuMA==", + "RequestUri": "/pools/removenodepool?api-version=2022-01-01.15.0", + "EncodedRequestUri": "L3Bvb2xzL3JlbW92ZW5vZGVwb29sP2FwaS12ZXJzaW9uPTIwMjItMDEtMDEuMTUuMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "f94de672-284c-4eca-b6b0-2add013fcaad" + "260206ca-fe9e-40d9-a3da-5db88e316ad7" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:26:35 GMT" + "Tue, 15 Feb 2022 19:34: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.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", "AzurePowershell/Az1.0.0" ] }, @@ -95,13 +95,13 @@ "chunked" ], "ETag": [ - "0x8D80CC42B3DAAC8" + "0x8D9F0BA2F303C81" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "a688d7ac-d448-49ae-b2a6-71970cb10295" + "49299fdd-a4d6-4209-9113-7e3dd4966438" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -113,38 +113,38 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 22:26:35 GMT" + "Tue, 15 Feb 2022 19:34:29 GMT" ], "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Tue, 09 Jun 2020 22:26:35 GMT" + "Tue, 15 Feb 2022 19:34:29 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\": \"0x8D9F0BA2F303C81\",\r\n \"lastModified\": \"2022-02-15T19:34:29.5909505Z\",\r\n \"creationTime\": \"2022-02-15T19:34:29.5909505Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2022-02-15T19:34:29.5909505Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2022-02-15T19:34:29.5909505Z\",\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=2022-01-01.15.0", + "EncodedRequestUri": "L3Bvb2xzL3JlbW92ZW5vZGVwb29sP2FwaS12ZXJzaW9uPTIwMjItMDEtMDEuMTUuMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "0396fffd-9c91-4297-9910-f9c2b8f79306" + "7caa7179-df04-4956-ac32-6d0582e9aedb" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:26:40 GMT" + "Tue, 15 Feb 2022 19:34: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.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", "AzurePowershell/Az1.0.0" ] }, @@ -153,13 +153,13 @@ "chunked" ], "ETag": [ - "0x8D80CC42B3DAAC8" + "0x8D9F0BA2F303C81" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "fba39a9f-c2da-471b-acb4-9dd863a51faa" + "4173003b-4901-4b57-a2f4-f06466d82f40" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -171,38 +171,38 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 22:26:40 GMT" + "Tue, 15 Feb 2022 19:34:34 GMT" ], "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Tue, 09 Jun 2020 22:26:35 GMT" + "Tue, 15 Feb 2022 19:34:29 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\": \"0x8D9F0BA2F303C81\",\r\n \"lastModified\": \"2022-02-15T19:34:29.5909505Z\",\r\n \"creationTime\": \"2022-02-15T19:34:29.5909505Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2022-02-15T19:34:29.5909505Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2022-02-15T19:34:29.5909505Z\",\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=2022-01-01.15.0", + "EncodedRequestUri": "L3Bvb2xzL3JlbW92ZW5vZGVwb29sP2FwaS12ZXJzaW9uPTIwMjItMDEtMDEuMTUuMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "3774c774-7fbb-4113-949c-cbbbedb04bb0" + "c6089467-0ba3-4662-90b2-d869e7a8e3b7" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:26:45 GMT" + "Tue, 15 Feb 2022 19:34: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.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", "AzurePowershell/Az1.0.0" ] }, @@ -211,13 +211,13 @@ "chunked" ], "ETag": [ - "0x8D80CC42B3DAAC8" + "0x8D9F0BA2F303C81" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "21f7a776-6011-4b69-95c4-2fccd1c479c1" + "9c0c61ac-86dc-4af7-8e92-eac77d35619c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -229,38 +229,38 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 22:26:45 GMT" + "Tue, 15 Feb 2022 19:34:39 GMT" ], "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Tue, 09 Jun 2020 22:26:35 GMT" + "Tue, 15 Feb 2022 19:34:29 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\": \"0x8D9F0BA2F303C81\",\r\n \"lastModified\": \"2022-02-15T19:34:29.5909505Z\",\r\n \"creationTime\": \"2022-02-15T19:34:29.5909505Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2022-02-15T19:34:29.5909505Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2022-02-15T19:34:29.5909505Z\",\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=2022-01-01.15.0", + "EncodedRequestUri": "L3Bvb2xzL3JlbW92ZW5vZGVwb29sP2FwaS12ZXJzaW9uPTIwMjItMDEtMDEuMTUuMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "a74107d0-125c-4b34-9d53-393293cf6851" + "fa083423-3c7a-44b7-b742-76410e6f4f98" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:26:50 GMT" + "Tue, 15 Feb 2022 19:34: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.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", "AzurePowershell/Az1.0.0" ] }, @@ -269,13 +269,13 @@ "chunked" ], "ETag": [ - "0x8D80CC42B3DAAC8" + "0x8D9F0BA2F303C81" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "02d698f9-fa05-49ce-baf1-f94a35b1e754" + "c3e680d6-2dbc-4c3d-ba81-2deddd0fcb71" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -287,38 +287,38 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 22:26:49 GMT" + "Tue, 15 Feb 2022 19:34:44 GMT" ], "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Tue, 09 Jun 2020 22:26:35 GMT" + "Tue, 15 Feb 2022 19:34:29 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\": \"0x8D9F0BA2F303C81\",\r\n \"lastModified\": \"2022-02-15T19:34:29.5909505Z\",\r\n \"creationTime\": \"2022-02-15T19:34:29.5909505Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2022-02-15T19:34:29.5909505Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2022-02-15T19:34:29.5909505Z\",\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=2022-01-01.15.0", + "EncodedRequestUri": "L3Bvb2xzL3JlbW92ZW5vZGVwb29sP2FwaS12ZXJzaW9uPTIwMjItMDEtMDEuMTUuMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "380a4731-2da0-41af-a903-6e16e3ca0698" + "4224acda-cbd9-4a08-be99-ad784ef31075" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:26:55 GMT" + "Tue, 15 Feb 2022 19:34:50 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.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", "AzurePowershell/Az1.0.0" ] }, @@ -327,13 +327,13 @@ "chunked" ], "ETag": [ - "0x8D80CC42B3DAAC8" + "0x8D9F0BA2F303C81" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "9abb8f15-2273-4b16-a494-0aa612b68ed4" + "63ba5073-239f-4dfc-b9c9-93f0e8071fa1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -345,38 +345,38 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 22:26:56 GMT" + "Tue, 15 Feb 2022 19:34:49 GMT" ], "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Tue, 09 Jun 2020 22:26:35 GMT" + "Tue, 15 Feb 2022 19:34:29 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\": \"0x8D9F0BA2F303C81\",\r\n \"lastModified\": \"2022-02-15T19:34:29.5909505Z\",\r\n \"creationTime\": \"2022-02-15T19:34:29.5909505Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2022-02-15T19:34:29.5909505Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2022-02-15T19:34:29.5909505Z\",\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=2022-01-01.15.0", + "EncodedRequestUri": "L3Bvb2xzL3JlbW92ZW5vZGVwb29sP2FwaS12ZXJzaW9uPTIwMjItMDEtMDEuMTUuMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "43b34b01-127d-42ff-aa9b-e13443001364" + "da4e3bc9-afdd-435d-8e55-0300f9caafb0" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:27:01 GMT" + "Tue, 15 Feb 2022 19:34:55 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.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", "AzurePowershell/Az1.0.0" ] }, @@ -385,13 +385,13 @@ "chunked" ], "ETag": [ - "0x8D80CC42B3DAAC8" + "0x8D9F0BA2F303C81" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "b35d166e-bdba-41ef-97e0-f0facd2f75c2" + "c4b1ae60-639d-40a5-8174-9cc584ae895d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -403,38 +403,38 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 22:27:01 GMT" + "Tue, 15 Feb 2022 19:34:54 GMT" ], "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Tue, 09 Jun 2020 22:26:35 GMT" + "Tue, 15 Feb 2022 19:34:29 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\": \"0x8D9F0BA2F303C81\",\r\n \"lastModified\": \"2022-02-15T19:34:29.5909505Z\",\r\n \"creationTime\": \"2022-02-15T19:34:29.5909505Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2022-02-15T19:34:29.5909505Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2022-02-15T19:34:29.5909505Z\",\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=2022-01-01.15.0", + "EncodedRequestUri": "L3Bvb2xzL3JlbW92ZW5vZGVwb29sP2FwaS12ZXJzaW9uPTIwMjItMDEtMDEuMTUuMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "96bde0ac-829e-4847-9baf-cda66ddc099e" + "3a21a1f0-0361-478c-9cb8-8813b95849eb" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:27:06 GMT" + "Tue, 15 Feb 2022 19:35:00 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.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", "AzurePowershell/Az1.0.0" ] }, @@ -443,13 +443,13 @@ "chunked" ], "ETag": [ - "0x8D80CC42B3DAAC8" + "0x8D9F0BA2F303C81" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "46682991-9baf-428e-819a-69f59c83c672" + "7cf91f5d-a3b4-4753-8a5b-3229be7915fb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -461,38 +461,38 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 22:27:05 GMT" + "Tue, 15 Feb 2022 19:34:59 GMT" ], "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Tue, 09 Jun 2020 22:26:35 GMT" + "Tue, 15 Feb 2022 19:34:29 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\": \"0x8D9F0BA2F303C81\",\r\n \"lastModified\": \"2022-02-15T19:34:29.5909505Z\",\r\n \"creationTime\": \"2022-02-15T19:34:29.5909505Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2022-02-15T19:34:29.5909505Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2022-02-15T19:34:29.5909505Z\",\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=2022-01-01.15.0", + "EncodedRequestUri": "L3Bvb2xzL3JlbW92ZW5vZGVwb29sP2FwaS12ZXJzaW9uPTIwMjItMDEtMDEuMTUuMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "2f765e1f-9fd1-48e0-94d1-7b3062f5dcbd" + "b8a006a6-2fdd-4b48-96a3-d1600452a88b" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:27:11 GMT" + "Tue, 15 Feb 2022 19:35: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.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", "AzurePowershell/Az1.0.0" ] }, @@ -501,13 +501,13 @@ "chunked" ], "ETag": [ - "0x8D80CC42B3DAAC8" + "0x8D9F0BA2F303C81" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "071195f2-2985-4e0d-a414-56b2385d2a3e" + "b57fdb39-69d8-4b99-b9dc-2228beb28435" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -519,38 +519,38 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 22:27:10 GMT" + "Tue, 15 Feb 2022 19:35:04 GMT" ], "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Tue, 09 Jun 2020 22:26:35 GMT" + "Tue, 15 Feb 2022 19:34:29 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\": \"0x8D9F0BA2F303C81\",\r\n \"lastModified\": \"2022-02-15T19:34:29.5909505Z\",\r\n \"creationTime\": \"2022-02-15T19:34:29.5909505Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2022-02-15T19:34:29.5909505Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2022-02-15T19:34:29.5909505Z\",\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=2022-01-01.15.0", + "EncodedRequestUri": "L3Bvb2xzL3JlbW92ZW5vZGVwb29sP2FwaS12ZXJzaW9uPTIwMjItMDEtMDEuMTUuMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "98365e1e-afba-4cb2-8f6b-6c9a77da8ed9" + "9c3ebd3b-fc33-42f5-8767-4e7488fe3afe" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:27:16 GMT" + "Tue, 15 Feb 2022 19:35: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.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", "AzurePowershell/Az1.0.0" ] }, @@ -559,13 +559,13 @@ "chunked" ], "ETag": [ - "0x8D80CC42B3DAAC8" + "0x8D9F0BA2F303C81" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "f54beb8e-1940-4cca-a340-464e9a5c9c2a" + "b441900f-a0b5-4cbb-be41-abe912e15228" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -577,38 +577,38 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 22:27:16 GMT" + "Tue, 15 Feb 2022 19:35:09 GMT" ], "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Tue, 09 Jun 2020 22:26:35 GMT" + "Tue, 15 Feb 2022 19:34:29 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\": \"0x8D9F0BA2F303C81\",\r\n \"lastModified\": \"2022-02-15T19:34:29.5909505Z\",\r\n \"creationTime\": \"2022-02-15T19:34:29.5909505Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2022-02-15T19:34:29.5909505Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2022-02-15T19:34:29.5909505Z\",\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=2022-01-01.15.0", + "EncodedRequestUri": "L3Bvb2xzL3JlbW92ZW5vZGVwb29sP2FwaS12ZXJzaW9uPTIwMjItMDEtMDEuMTUuMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "420dfeb0-5973-4ace-8873-ecc5285399a5" + "c61f193f-a1a0-4170-9bb7-69be30e32089" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:27:21 GMT" + "Tue, 15 Feb 2022 19:35: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.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", "AzurePowershell/Az1.0.0" ] }, @@ -617,13 +617,13 @@ "chunked" ], "ETag": [ - "0x8D80CC42B3DAAC8" + "0x8D9F0BA2F303C81" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "914a76d8-7cd7-4a81-bd60-d6e1dabaa67f" + "f63d1012-1c20-426c-be1b-26e39b831ae9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -635,38 +635,38 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 22:27:21 GMT" + "Tue, 15 Feb 2022 19:35:14 GMT" ], "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Tue, 09 Jun 2020 22:26:35 GMT" + "Tue, 15 Feb 2022 19:34:29 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\": \"0x8D9F0BA2F303C81\",\r\n \"lastModified\": \"2022-02-15T19:34:29.5909505Z\",\r\n \"creationTime\": \"2022-02-15T19:34:29.5909505Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2022-02-15T19:34:29.5909505Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2022-02-15T19:34:29.5909505Z\",\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=2022-01-01.15.0", + "EncodedRequestUri": "L3Bvb2xzL3JlbW92ZW5vZGVwb29sP2FwaS12ZXJzaW9uPTIwMjItMDEtMDEuMTUuMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "d8a15137-90c4-43a0-8f0d-e6c054554e6d" + "a9271e13-b2c7-4132-8cf9-b5136f24125f" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:27:26 GMT" + "Tue, 15 Feb 2022 19:35:20 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.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", "AzurePowershell/Az1.0.0" ] }, @@ -675,13 +675,13 @@ "chunked" ], "ETag": [ - "0x8D80CC42B3DAAC8" + "0x8D9F0BA2F303C81" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "58687d0a-225e-4e4c-84aa-056e3f04837d" + "7f4e1603-1918-41b6-b827-0b0ee0a673cc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -693,38 +693,38 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 22:27:26 GMT" + "Tue, 15 Feb 2022 19:35:19 GMT" ], "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Tue, 09 Jun 2020 22:26:35 GMT" + "Tue, 15 Feb 2022 19:34:29 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\": \"0x8D9F0BA2F303C81\",\r\n \"lastModified\": \"2022-02-15T19:34:29.5909505Z\",\r\n \"creationTime\": \"2022-02-15T19:34:29.5909505Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2022-02-15T19:34:29.5909505Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2022-02-15T19:34:29.5909505Z\",\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=2022-01-01.15.0", + "EncodedRequestUri": "L3Bvb2xzL3JlbW92ZW5vZGVwb29sP2FwaS12ZXJzaW9uPTIwMjItMDEtMDEuMTUuMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "4fb3e977-266f-4f1c-9244-b981ca153210" + "6f3f08c1-5bfc-411d-bc8f-f6314749fbff" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:27:32 GMT" + "Tue, 15 Feb 2022 19:35: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.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", "AzurePowershell/Az1.0.0" ] }, @@ -733,13 +733,13 @@ "chunked" ], "ETag": [ - "0x8D80CC42B3DAAC8" + "0x8D9F0BA2F303C81" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "bcc61a82-63d7-4b92-8fe0-68e8e8792fe8" + "8d38cf2c-3f76-46c4-8d91-d174361769c1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -751,38 +751,38 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 22:27:32 GMT" + "Tue, 15 Feb 2022 19:35:24 GMT" ], "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Tue, 09 Jun 2020 22:26:35 GMT" + "Tue, 15 Feb 2022 19:34:29 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\": \"0x8D9F0BA2F303C81\",\r\n \"lastModified\": \"2022-02-15T19:34:29.5909505Z\",\r\n \"creationTime\": \"2022-02-15T19:34:29.5909505Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2022-02-15T19:34:29.5909505Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2022-02-15T19:34:29.5909505Z\",\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=2022-01-01.15.0", + "EncodedRequestUri": "L3Bvb2xzL3JlbW92ZW5vZGVwb29sP2FwaS12ZXJzaW9uPTIwMjItMDEtMDEuMTUuMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "11f78551-fe32-4b7e-8472-3d3cffc2cd64" + "5312a2e2-c743-4b4b-b8c1-9d44a3c02881" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:27:37 GMT" + "Tue, 15 Feb 2022 19:35: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.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", "AzurePowershell/Az1.0.0" ] }, @@ -791,13 +791,13 @@ "chunked" ], "ETag": [ - "0x8D80CC42B3DAAC8" + "0x8D9F0BA2F303C81" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "07ae0165-0d89-4290-90f2-72447bd9564e" + "3a60a77b-ddf5-4397-ad75-e2c281fcb74a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -809,38 +809,38 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 22:27:37 GMT" + "Tue, 15 Feb 2022 19:35:29 GMT" ], "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Tue, 09 Jun 2020 22:26:35 GMT" + "Tue, 15 Feb 2022 19:34:29 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\": \"0x8D9F0BA2F303C81\",\r\n \"lastModified\": \"2022-02-15T19:34:29.5909505Z\",\r\n \"creationTime\": \"2022-02-15T19:34:29.5909505Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2022-02-15T19:34:29.5909505Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2022-02-15T19:34:29.5909505Z\",\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=2022-01-01.15.0", + "EncodedRequestUri": "L3Bvb2xzL3JlbW92ZW5vZGVwb29sP2FwaS12ZXJzaW9uPTIwMjItMDEtMDEuMTUuMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "94d65848-e0b3-449a-85d5-e640d1a1919a" + "a78a1213-66e5-4fa9-bcc5-a7e5251927d4" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:27:42 GMT" + "Tue, 15 Feb 2022 19:35: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.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", "AzurePowershell/Az1.0.0" ] }, @@ -849,13 +849,13 @@ "chunked" ], "ETag": [ - "0x8D80CC42B3DAAC8" + "0x8D9F0BA2F303C81" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "cb73dfbf-9968-4df7-8cb0-ea64b9b4f0e6" + "ec0305a2-707a-420c-a34a-479b56cc5764" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -867,38 +867,38 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 22:27:42 GMT" + "Tue, 15 Feb 2022 19:35:34 GMT" ], "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Tue, 09 Jun 2020 22:26:35 GMT" + "Tue, 15 Feb 2022 19:34:29 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\": \"0x8D9F0BA2F303C81\",\r\n \"lastModified\": \"2022-02-15T19:34:29.5909505Z\",\r\n \"creationTime\": \"2022-02-15T19:34:29.5909505Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2022-02-15T19:34:29.5909505Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2022-02-15T19:34:29.5909505Z\",\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=2022-01-01.15.0", + "EncodedRequestUri": "L3Bvb2xzL3JlbW92ZW5vZGVwb29sP2FwaS12ZXJzaW9uPTIwMjItMDEtMDEuMTUuMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "85d1f6fc-9a19-457d-8ee7-bc75dd07920a" + "9dd7cc1f-d582-461c-8701-a6d5a5072c80" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:27:47 GMT" + "Tue, 15 Feb 2022 19:35: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.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", "AzurePowershell/Az1.0.0" ] }, @@ -907,13 +907,13 @@ "chunked" ], "ETag": [ - "0x8D80CC42B3DAAC8" + "0x8D9F0BA2F303C81" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "2a122944-d033-4fc2-8157-1a47d6dec0e9" + "c286b08c-cfa5-49ae-9e35-959ce0146b24" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -925,38 +925,38 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 22:27:47 GMT" + "Tue, 15 Feb 2022 19:35:39 GMT" ], "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Tue, 09 Jun 2020 22:26:35 GMT" + "Tue, 15 Feb 2022 19:34:29 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\": \"0x8D9F0BA2F303C81\",\r\n \"lastModified\": \"2022-02-15T19:34:29.5909505Z\",\r\n \"creationTime\": \"2022-02-15T19:34:29.5909505Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2022-02-15T19:34:29.5909505Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2022-02-15T19:34:29.5909505Z\",\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=2022-01-01.15.0", + "EncodedRequestUri": "L3Bvb2xzL3JlbW92ZW5vZGVwb29sP2FwaS12ZXJzaW9uPTIwMjItMDEtMDEuMTUuMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "92282d07-b150-4889-a3e9-53abda88581d" + "7d04f3eb-5517-4746-a81b-a7453d63f2c1" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:27:52 GMT" + "Tue, 15 Feb 2022 19:35: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.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", "AzurePowershell/Az1.0.0" ] }, @@ -965,13 +965,13 @@ "chunked" ], "ETag": [ - "0x8D80CC42B3DAAC8" + "0x8D9F0BA2F303C81" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "145a8763-f58a-45f6-b927-cace39b1f0ca" + "dba1dd2c-4a8d-402e-b546-4b74536de3a9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -983,38 +983,38 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 22:27:52 GMT" + "Tue, 15 Feb 2022 19:35:45 GMT" ], "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Tue, 09 Jun 2020 22:26:35 GMT" + "Tue, 15 Feb 2022 19:34:29 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\": \"0x8D9F0BA2F303C81\",\r\n \"lastModified\": \"2022-02-15T19:34:29.5909505Z\",\r\n \"creationTime\": \"2022-02-15T19:34:29.5909505Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2022-02-15T19:34:29.5909505Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2022-02-15T19:34:29.5909505Z\",\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=2022-01-01.15.0", + "EncodedRequestUri": "L3Bvb2xzL3JlbW92ZW5vZGVwb29sP2FwaS12ZXJzaW9uPTIwMjItMDEtMDEuMTUuMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "e4d9993d-8c07-422a-86e2-ca90268b0cfa" + "0a4245fc-2017-4a05-9baf-6a92921d9afc" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:27:57 GMT" + "Tue, 15 Feb 2022 19:35: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.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", "AzurePowershell/Az1.0.0" ] }, @@ -1023,13 +1023,13 @@ "chunked" ], "ETag": [ - "0x8D80CC42B3DAAC8" + "0x8D9F0BA2F303C81" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "ea8234d2-bf87-479f-8d8a-741abd342ea4" + "fca10d98-6970-4b03-ae75-e5a3a8b80d7a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1041,38 +1041,38 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 22:27:57 GMT" + "Tue, 15 Feb 2022 19:35:50 GMT" ], "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Tue, 09 Jun 2020 22:26:35 GMT" + "Tue, 15 Feb 2022 19:34:29 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\": \"0x8D9F0BA2F303C81\",\r\n \"lastModified\": \"2022-02-15T19:34:29.5909505Z\",\r\n \"creationTime\": \"2022-02-15T19:34:29.5909505Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2022-02-15T19:34:29.5909505Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2022-02-15T19:34:29.5909505Z\",\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=2022-01-01.15.0", + "EncodedRequestUri": "L3Bvb2xzL3JlbW92ZW5vZGVwb29sP2FwaS12ZXJzaW9uPTIwMjItMDEtMDEuMTUuMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "2f3b470a-978e-4cfd-a333-9f67896be2c3" + "08df4f9f-18b1-4646-bf96-0f14dd0436fb" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:28:03 GMT" + "Tue, 15 Feb 2022 19:35: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.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", "AzurePowershell/Az1.0.0" ] }, @@ -1081,13 +1081,13 @@ "chunked" ], "ETag": [ - "0x8D80CC42B3DAAC8" + "0x8D9F0BA2F303C81" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "6aa427c9-f751-45f7-aa7e-350284a5b821" + "456d7813-27ea-4685-861b-b9de70e78848" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1099,38 +1099,38 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 22:28:03 GMT" + "Tue, 15 Feb 2022 19:35:55 GMT" ], "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Tue, 09 Jun 2020 22:26:35 GMT" + "Tue, 15 Feb 2022 19:34:29 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\": \"0x8D9F0BA2F303C81\",\r\n \"lastModified\": \"2022-02-15T19:34:29.5909505Z\",\r\n \"creationTime\": \"2022-02-15T19:34:29.5909505Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2022-02-15T19:34:29.5909505Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2022-02-15T19:34:29.5909505Z\",\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=2022-01-01.15.0", + "EncodedRequestUri": "L3Bvb2xzL3JlbW92ZW5vZGVwb29sP2FwaS12ZXJzaW9uPTIwMjItMDEtMDEuMTUuMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "5524e0f8-f15d-41dd-8284-574175f0cb87" + "ec651def-fbb4-4d4a-ac97-0d22757b8718" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:28:08 GMT" + "Tue, 15 Feb 2022 19:36: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.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", "AzurePowershell/Az1.0.0" ] }, @@ -1139,13 +1139,13 @@ "chunked" ], "ETag": [ - "0x8D80CC42B3DAAC8" + "0x8D9F0BA2F303C81" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "aca1e254-96ea-40c4-8184-732bd8c8d73a" + "62262633-e7e8-4dcf-a6af-dde11f16942e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1157,38 +1157,38 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 22:28:07 GMT" + "Tue, 15 Feb 2022 19:36:00 GMT" ], "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Tue, 09 Jun 2020 22:26:35 GMT" + "Tue, 15 Feb 2022 19:34:29 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\": \"0x8D9F0BA2F303C81\",\r\n \"lastModified\": \"2022-02-15T19:34:29.5909505Z\",\r\n \"creationTime\": \"2022-02-15T19:34:29.5909505Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2022-02-15T19:34:29.5909505Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2022-02-15T19:34:29.5909505Z\",\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=2022-01-01.15.0", + "EncodedRequestUri": "L3Bvb2xzL3JlbW92ZW5vZGVwb29sP2FwaS12ZXJzaW9uPTIwMjItMDEtMDEuMTUuMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "73602ea7-2948-4d8b-93ad-6d9ed8bfcc51" + "a004ca7a-1a87-4660-aad6-c2d009c5b5be" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:28:13 GMT" + "Tue, 15 Feb 2022 19:36: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.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", "AzurePowershell/Az1.0.0" ] }, @@ -1197,13 +1197,13 @@ "chunked" ], "ETag": [ - "0x8D80CC42B3DAAC8" + "0x8D9F0BA2F303C81" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "8e64b1cf-0f9f-4801-b802-77def67e73cb" + "e8e8d345-43cd-4c0c-b21b-7ff61404acd1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1215,38 +1215,38 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 22:28:13 GMT" + "Tue, 15 Feb 2022 19:36:05 GMT" ], "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Tue, 09 Jun 2020 22:26:35 GMT" + "Tue, 15 Feb 2022 19:34:29 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\": \"0x8D9F0BA2F303C81\",\r\n \"lastModified\": \"2022-02-15T19:34:29.5909505Z\",\r\n \"creationTime\": \"2022-02-15T19:34:29.5909505Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2022-02-15T19:34:29.5909505Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2022-02-15T19:34:29.5909505Z\",\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=2022-01-01.15.0", + "EncodedRequestUri": "L3Bvb2xzL3JlbW92ZW5vZGVwb29sP2FwaS12ZXJzaW9uPTIwMjItMDEtMDEuMTUuMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "90c4cec0-0c2b-48d4-992c-2bd2295930d9" + "12a77b00-c148-4649-bb14-1766fc7e6dce" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:28:18 GMT" + "Tue, 15 Feb 2022 19:36:11 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.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", "AzurePowershell/Az1.0.0" ] }, @@ -1255,13 +1255,13 @@ "chunked" ], "ETag": [ - "0x8D80CC42B3DAAC8" + "0x8D9F0BA2F303C81" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "337a9fd6-b9a6-496b-9ce8-89d6b5abb1f6" + "1ea6fe9c-a621-4e1f-a59f-385f93f1d174" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1273,38 +1273,38 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 22:28:18 GMT" + "Tue, 15 Feb 2022 19:36:10 GMT" ], "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Tue, 09 Jun 2020 22:26:35 GMT" + "Tue, 15 Feb 2022 19:34:29 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\": \"0x8D9F0BA2F303C81\",\r\n \"lastModified\": \"2022-02-15T19:34:29.5909505Z\",\r\n \"creationTime\": \"2022-02-15T19:34:29.5909505Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2022-02-15T19:34:29.5909505Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2022-02-15T19:34:29.5909505Z\",\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=2022-01-01.15.0", + "EncodedRequestUri": "L3Bvb2xzL3JlbW92ZW5vZGVwb29sP2FwaS12ZXJzaW9uPTIwMjItMDEtMDEuMTUuMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "1e591f15-02fc-4190-8cbe-46413091a86b" + "8ba25f9b-d301-4399-8ee7-8e8239bbc4d7" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:28:23 GMT" + "Tue, 15 Feb 2022 19:36: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.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", "AzurePowershell/Az1.0.0" ] }, @@ -1313,13 +1313,13 @@ "chunked" ], "ETag": [ - "0x8D80CC42B3DAAC8" + "0x8D9F0BA2F303C81" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "55337f36-1bf0-44ce-9462-0b42c9fd9ad9" + "209e239d-8430-4c22-aa45-9695fcd230b4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1331,38 +1331,38 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 22:28:23 GMT" + "Tue, 15 Feb 2022 19:36:15 GMT" ], "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Tue, 09 Jun 2020 22:26:35 GMT" + "Tue, 15 Feb 2022 19:34:29 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\": \"0x8D9F0BA2F303C81\",\r\n \"lastModified\": \"2022-02-15T19:34:29.5909505Z\",\r\n \"creationTime\": \"2022-02-15T19:34:29.5909505Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2022-02-15T19:34:29.5909505Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2022-02-15T19:34:29.5909505Z\",\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=2022-01-01.15.0", + "EncodedRequestUri": "L3Bvb2xzL3JlbW92ZW5vZGVwb29sP2FwaS12ZXJzaW9uPTIwMjItMDEtMDEuMTUuMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "3ba59fa0-4ea2-44c8-9305-60ee9276ac2b" + "cb082b1c-e22a-4ce7-8dd0-2ffca11efabe" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:28:28 GMT" + "Tue, 15 Feb 2022 19:36: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.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", "AzurePowershell/Az1.0.0" ] }, @@ -1371,13 +1371,13 @@ "chunked" ], "ETag": [ - "0x8D80CC42B3DAAC8" + "0x8D9F0BA2F303C81" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "cc1a098a-5398-4bee-840d-362fef379612" + "d3931f03-38c2-4466-9c67-2069d20b6bba" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1389,270 +1389,41 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 22:28:28 GMT" + "Tue, 15 Feb 2022 19:36:20 GMT" ], "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Tue, 09 Jun 2020 22:26:35 GMT" + "Tue, 15 Feb 2022 19:34:29 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\": \"0x8D9F0BA2F303C81\",\r\n \"lastModified\": \"2022-02-15T19:34:29.5909505Z\",\r\n \"creationTime\": \"2022-02-15T19:34:29.5909505Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2022-02-15T19:34:29.5909505Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2022-02-15T19:36:18.7420708Z\",\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=2022-01-01.15.0", + "EncodedRequestUri": "L3Bvb2xzL3JlbW92ZW5vZGVwb29sL25vZGVzP2FwaS12ZXJzaW9uPTIwMjItMDEtMDEuMTUuMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "909cccba-cc8c-4b25-b3e9-2b936964938a" + "fe51a53e-e9e5-48a5-8480-34e6dbab2954" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:28:34 GMT" + "Tue, 15 Feb 2022 19:36:22 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" - ], - "ETag": [ - "0x8D80CC42B3DAAC8" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "request-id": [ - "deefed53-264b-44b7-a2b5-59ae3ba5f1d9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0" - ], - "Date": [ - "Tue, 09 Jun 2020 22:28:34 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}", - "StatusCode": 200 - }, - { - "RequestUri": "/pools/removenodepool?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L3Bvb2xzL3JlbW92ZW5vZGVwb29sP2FwaS12ZXJzaW9uPTIwMjAtMDMtMDEuMTEuMA==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "client-request-id": [ - "d1a20316-a6b7-4350-a45c-47bf13012e03" - ], - "Accept-Language": [ - "en-US" - ], - "ocp-date": [ - "Tue, 09 Jun 2020 22:28:39 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" - ], - "ETag": [ - "0x8D80CC42B3DAAC8" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "request-id": [ - "b0b677c3-e3a1-4138-980f-75fd8c03c10a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0" - ], - "Date": [ - "Tue, 09 Jun 2020 22:28:39 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}", - "StatusCode": 200 - }, - { - "RequestUri": "/pools/removenodepool?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L3Bvb2xzL3JlbW92ZW5vZGVwb29sP2FwaS12ZXJzaW9uPTIwMjAtMDMtMDEuMTEuMA==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "client-request-id": [ - "0e2083dc-04f2-4474-90b4-24cabd8d5f78" - ], - "Accept-Language": [ - "en-US" - ], - "ocp-date": [ - "Tue, 09 Jun 2020 22:28:44 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" - ], - "ETag": [ - "0x8D80CC42B3DAAC8" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "request-id": [ - "085fee12-34db-452f-984b-c82b4a6ad6f2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0" - ], - "Date": [ - "Tue, 09 Jun 2020 22:28:44 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}", - "StatusCode": 200 - }, - { - "RequestUri": "/pools/removenodepool?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L3Bvb2xzL3JlbW92ZW5vZGVwb29sP2FwaS12ZXJzaW9uPTIwMjAtMDMtMDEuMTEuMA==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "client-request-id": [ - "64439c01-86d3-4e57-a900-26ce203cfb7a" - ], - "Accept-Language": [ - "en-US" - ], - "ocp-date": [ - "Tue, 09 Jun 2020 22:28:49 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" - ], - "ETag": [ - "0x8D80CC42B3DAAC8" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "request-id": [ - "f789365e-3206-4755-a3d3-950597d4dacd" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0" - ], - "Date": [ - "Tue, 09 Jun 2020 22:28:49 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}", - "StatusCode": 200 - }, - { - "RequestUri": "/pools/removenodepool?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L3Bvb2xzL3JlbW92ZW5vZGVwb29sP2FwaS12ZXJzaW9uPTIwMjAtMDMtMDEuMTEuMA==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "client-request-id": [ - "fcceeec2-2ca6-4fa6-a4a1-29a2ae18901f" - ], - "Accept-Language": [ - "en-US" - ], - "ocp-date": [ - "Tue, 09 Jun 2020 22:28:54 GMT" + "x-ms-client-request-id": [ + "5a28dbad-327e-493d-ab56-d1f676770750" ], "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.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", "AzurePowershell/Az1.0.0" ] }, @@ -1660,14 +1431,11 @@ "Transfer-Encoding": [ "chunked" ], - "ETag": [ - "0x8D80CC42B3DAAC8" - ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "17a62467-1245-4360-b603-9cf91c83c518" + "e54f6f30-b6ea-469b-92e5-893e7288bd3e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1679,148 +1447,38 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 22:28:54 GMT" + "Tue, 15 Feb 2022 19:36:22 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_5eff89f884e3c00ed6bf7883aee1076dafb0ddb8e6d1bd87094cfab856695849_d\",\r\n \"url\": \"https://mikeportal.eastus.batch.azure.com/pools/removenodepool/nodes/tvmps_5eff89f884e3c00ed6bf7883aee1076dafb0ddb8e6d1bd87094cfab856695849_d\",\r\n \"state\": \"creating\",\r\n \"schedulingState\": \"enabled\",\r\n \"stateTransitionTime\": \"2022-02-15T19:36:18.2720637Z\",\r\n \"allocationTime\": \"2022-02-15T19:36:18.2720637Z\",\r\n \"ipAddress\": \"10.218.0.5\",\r\n \"affinityId\": \"TVM:tvmps_5eff89f884e3c00ed6bf7883aee1076dafb0ddb8e6d1bd87094cfab856695849_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_9f7566b8d528205591f256c5edc5ef34618f7a6c50f0139d3b813924a4e4d1fd_d\",\r\n \"url\": \"https://mikeportal.eastus.batch.azure.com/pools/removenodepool/nodes/tvmps_9f7566b8d528205591f256c5edc5ef34618f7a6c50f0139d3b813924a4e4d1fd_d\",\r\n \"state\": \"creating\",\r\n \"schedulingState\": \"enabled\",\r\n \"stateTransitionTime\": \"2022-02-15T19:36:18.2720637Z\",\r\n \"allocationTime\": \"2022-02-15T19:36:18.2720637Z\",\r\n \"ipAddress\": \"10.218.0.4\",\r\n \"affinityId\": \"TVM:tvmps_9f7566b8d528205591f256c5edc5ef34618f7a6c50f0139d3b813924a4e4d1fd_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": "", - "RequestHeaders": { - "client-request-id": [ - "355b0ed1-6f4d-48db-ae58-2749bc76dfb7" - ], - "Accept-Language": [ - "en-US" - ], - "ocp-date": [ - "Tue, 09 Jun 2020 22:28:59 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" - ], - "ETag": [ - "0x8D80CC42B3DAAC8" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "request-id": [ - "1a860a9a-ba6a-483a-af97-c4de9cf9551f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0" - ], - "Date": [ - "Tue, 09 Jun 2020 22:28:59 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}", - "StatusCode": 200 - }, - { - "RequestUri": "/pools/removenodepool/nodes?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L3Bvb2xzL3JlbW92ZW5vZGVwb29sL25vZGVzP2FwaS12ZXJzaW9uPTIwMjAtMDMtMDEuMTEuMA==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "client-request-id": [ - "d9d5a0ed-5019-440f-83ee-3265e515a2f4" - ], - "Accept-Language": [ - "en-US" - ], - "ocp-date": [ - "Tue, 09 Jun 2020 22:29:00 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": [ - "6bd779e4-e237-4748-a1ce-2665cb365127" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0" - ], - "Date": [ - "Tue, 09 Jun 2020 22:29:22 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}", - "StatusCode": 200 - }, - { - "RequestUri": "/pools/removenodepool/removenodes?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L3Bvb2xzL3JlbW92ZW5vZGVwb29sL3JlbW92ZW5vZGVzP2FwaS12ZXJzaW9uPTIwMjAtMDMtMDEuMTEuMA==", + "RequestUri": "/pools/removenodepool/removenodes?api-version=2022-01-01.15.0", + "EncodedRequestUri": "L3Bvb2xzL3JlbW92ZW5vZGVwb29sL3JlbW92ZW5vZGVzP2FwaS12ZXJzaW9uPTIwMjItMDEtMDEuMTUuMA==", "RequestMethod": "POST", - "RequestBody": "{\r\n \"nodeList\": [\r\n \"tvmps_0d555eff2944de8535efbe279c039c8a380f196317bdb0f2bc52ff136504db24_d\",\r\n \"tvmps_90889e4ab31946cc245b78eaf7dfefe6a1e0c30f19b62ca21bbcfe26cf8abf41_d\"\r\n ]\r\n}", + "RequestBody": "{\r\n \"nodeList\": [\r\n \"tvmps_5eff89f884e3c00ed6bf7883aee1076dafb0ddb8e6d1bd87094cfab856695849_d\",\r\n \"tvmps_9f7566b8d528205591f256c5edc5ef34618f7a6c50f0139d3b813924a4e4d1fd_d\"\r\n ]\r\n}", "RequestHeaders": { "client-request-id": [ - "9cfa7a6b-dfe0-4452-9965-9f34462b7272" + "a39a0b57-16a0-4057-8f79-1139981582a3" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:29:22 GMT" + "Tue, 15 Feb 2022 19:36:22 GMT" + ], + "x-ms-client-request-id": [ + "fee162de-d235-4cec-b0ba-f593210df5e7" ], "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.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", "AzurePowershell/Az1.0.0" ], "Content-Type": [ @@ -1835,13 +1493,13 @@ "chunked" ], "ETag": [ - "0x8D80CC48EF4ACBE" + "0x8D9F0BA7250198D" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "c3604111-4422-4455-a346-af2e15fe7a94" + "3a016d2b-d190-4baa-94be-b6d81f3d6235" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1853,38 +1511,41 @@ "3.0" ], "DataServiceId": [ - "https://prodtest6.francecentral.batch.azure.com/pools/removenodepool/removenodes" + "https://mikeportal.eastus.batch.azure.com/pools/removenodepool/removenodes" ], "Date": [ - "Tue, 09 Jun 2020 22:29:22 GMT" + "Tue, 15 Feb 2022 19:36:22 GMT" ], "Last-Modified": [ - "Tue, 09 Jun 2020 22:29:22 GMT" + "Tue, 15 Feb 2022 19:36:22 GMT" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/pools/removenodepool/nodes?api-version=2020-03-01.11.0&$select=id%2Cstate", - "EncodedRequestUri": "L3Bvb2xzL3JlbW92ZW5vZGVwb29sL25vZGVzP2FwaS12ZXJzaW9uPTIwMjAtMDMtMDEuMTEuMCYkc2VsZWN0PWlkJTJDc3RhdGU=", + "RequestUri": "/pools/removenodepool/nodes?api-version=2022-01-01.15.0&$select=id%2Cstate", + "EncodedRequestUri": "L3Bvb2xzL3JlbW92ZW5vZGVwb29sL25vZGVzP2FwaS12ZXJzaW9uPTIwMjItMDEtMDEuMTUuMCYkc2VsZWN0PWlkJTJDc3RhdGU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "faa71269-9e07-4e12-8382-e35ff18f8f05" + "42c0f14f-421a-4416-95fd-270ab9f43f31" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:29:22 GMT" + "Tue, 15 Feb 2022 19:36:22 GMT" + ], + "x-ms-client-request-id": [ + "4d682821-dad4-4920-8237-c3c6236c7844" ], "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.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", "AzurePowershell/Az1.0.0" ] }, @@ -1896,7 +1557,7 @@ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "019c41b4-c32e-4d9e-83c4-e550206f2299" + "76d616ba-15c7-46b8-8f2c-228ae8d64e34" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1908,35 +1569,38 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 22:29:22 GMT" + "Tue, 15 Feb 2022 19:36:22 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_5eff89f884e3c00ed6bf7883aee1076dafb0ddb8e6d1bd87094cfab856695849_d\",\r\n \"state\": \"creating\",\r\n \"virtualMachineInfo\": {}\r\n },\r\n {\r\n \"id\": \"tvmps_9f7566b8d528205591f256c5edc5ef34618f7a6c50f0139d3b813924a4e4d1fd_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&$select=id%2Cstate", - "EncodedRequestUri": "L3Bvb2xzL3JlbW92ZW5vZGVwb29sL25vZGVzP2FwaS12ZXJzaW9uPTIwMjAtMDMtMDEuMTEuMCYkc2VsZWN0PWlkJTJDc3RhdGU=", + "RequestUri": "/pools/removenodepool/nodes?api-version=2022-01-01.15.0&$select=id%2Cstate", + "EncodedRequestUri": "L3Bvb2xzL3JlbW92ZW5vZGVwb29sL25vZGVzP2FwaS12ZXJzaW9uPTIwMjItMDEtMDEuMTUuMCYkc2VsZWN0PWlkJTJDc3RhdGU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "72ac0cd1-8510-407c-8821-6f2e7429deac" + "126aa2c0-9436-49ed-9211-0d4df071ee4a" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:29:23 GMT" + "Tue, 15 Feb 2022 19:36:23 GMT" + ], + "x-ms-client-request-id": [ + "9cf4630e-1900-4a6c-9f81-2b4a46a8b1a5" ], "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.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", "AzurePowershell/Az1.0.0" ] }, @@ -1948,7 +1612,7 @@ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "ee173a14-8102-4766-ae88-e58e70dab769" + "88846378-6013-4468-a49b-390162e9b607" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1960,35 +1624,38 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 22:29:23 GMT" + "Tue, 15 Feb 2022 19:36:23 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_5eff89f884e3c00ed6bf7883aee1076dafb0ddb8e6d1bd87094cfab856695849_d\",\r\n \"state\": \"creating\",\r\n \"virtualMachineInfo\": {}\r\n },\r\n {\r\n \"id\": \"tvmps_9f7566b8d528205591f256c5edc5ef34618f7a6c50f0139d3b813924a4e4d1fd_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&$select=id%2Cstate", - "EncodedRequestUri": "L3Bvb2xzL3JlbW92ZW5vZGVwb29sL25vZGVzP2FwaS12ZXJzaW9uPTIwMjAtMDMtMDEuMTEuMCYkc2VsZWN0PWlkJTJDc3RhdGU=", + "RequestUri": "/pools/removenodepool/nodes?api-version=2022-01-01.15.0&$select=id%2Cstate", + "EncodedRequestUri": "L3Bvb2xzL3JlbW92ZW5vZGVwb29sL25vZGVzP2FwaS12ZXJzaW9uPTIwMjItMDEtMDEuMTUuMCYkc2VsZWN0PWlkJTJDc3RhdGU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "53b13ceb-9478-4951-b896-cf62835b67c5" + "ca79dbc9-2b3b-4acd-8fbe-543342d3decc" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:29:24 GMT" + "Tue, 15 Feb 2022 19:36:24 GMT" + ], + "x-ms-client-request-id": [ + "7ac888da-a7fd-474c-9e60-548639469e1d" ], "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.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", "AzurePowershell/Az1.0.0" ] }, @@ -2000,7 +1667,7 @@ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "c3ac93fb-c745-4050-a3c7-55b9c4702754" + "73e00cab-dc3b-4891-8a8d-b672375fa4b7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2012,35 +1679,38 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 22:29:24 GMT" + "Tue, 15 Feb 2022 19:36:24 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_5eff89f884e3c00ed6bf7883aee1076dafb0ddb8e6d1bd87094cfab856695849_d\",\r\n \"state\": \"creating\",\r\n \"virtualMachineInfo\": {}\r\n },\r\n {\r\n \"id\": \"tvmps_9f7566b8d528205591f256c5edc5ef34618f7a6c50f0139d3b813924a4e4d1fd_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&$select=id%2Cstate", - "EncodedRequestUri": "L3Bvb2xzL3JlbW92ZW5vZGVwb29sL25vZGVzP2FwaS12ZXJzaW9uPTIwMjAtMDMtMDEuMTEuMCYkc2VsZWN0PWlkJTJDc3RhdGU=", + "RequestUri": "/pools/removenodepool/nodes?api-version=2022-01-01.15.0&$select=id%2Cstate", + "EncodedRequestUri": "L3Bvb2xzL3JlbW92ZW5vZGVwb29sL25vZGVzP2FwaS12ZXJzaW9uPTIwMjItMDEtMDEuMTUuMCYkc2VsZWN0PWlkJTJDc3RhdGU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "f94a7b6f-a97e-4d6f-b803-3162f0bf050a" + "89d662e3-ca5e-4b5b-bac3-bb2a28326768" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:29:26 GMT" + "Tue, 15 Feb 2022 19:36:25 GMT" + ], + "x-ms-client-request-id": [ + "14316749-2569-45da-92eb-d766031b1f4c" ], "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.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", "AzurePowershell/Az1.0.0" ] }, @@ -2052,7 +1722,7 @@ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "61366f72-bd23-4f43-aa59-dbb4574379ce" + "ec50e563-98ec-40b3-948d-efa1dae40f17" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2064,35 +1734,38 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 22:29:26 GMT" + "Tue, 15 Feb 2022 19:36:25 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_5eff89f884e3c00ed6bf7883aee1076dafb0ddb8e6d1bd87094cfab856695849_d\",\r\n \"state\": \"creating\",\r\n \"virtualMachineInfo\": {}\r\n },\r\n {\r\n \"id\": \"tvmps_9f7566b8d528205591f256c5edc5ef34618f7a6c50f0139d3b813924a4e4d1fd_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&$select=id%2Cstate", - "EncodedRequestUri": "L3Bvb2xzL3JlbW92ZW5vZGVwb29sL25vZGVzP2FwaS12ZXJzaW9uPTIwMjAtMDMtMDEuMTEuMCYkc2VsZWN0PWlkJTJDc3RhdGU=", + "RequestUri": "/pools/removenodepool/nodes?api-version=2022-01-01.15.0&$select=id%2Cstate", + "EncodedRequestUri": "L3Bvb2xzL3JlbW92ZW5vZGVwb29sL25vZGVzP2FwaS12ZXJzaW9uPTIwMjItMDEtMDEuMTUuMCYkc2VsZWN0PWlkJTJDc3RhdGU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "bedabb2a-ff76-457c-92fe-feefcc29bab4" + "72c1a140-5eb0-4b6b-8fce-9240ea071d52" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:29:27 GMT" + "Tue, 15 Feb 2022 19:36:26 GMT" + ], + "x-ms-client-request-id": [ + "e8c53372-4331-48a0-8be1-ae54f93d9c95" ], "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.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", "AzurePowershell/Az1.0.0" ] }, @@ -2104,7 +1777,7 @@ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "84ce6571-1b09-4fe9-9cf1-7d844b516802" + "14d8ae6b-909e-4f28-929d-49ababacfc33" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2116,35 +1789,38 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 22:29:27 GMT" + "Tue, 15 Feb 2022 19:36:26 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_5eff89f884e3c00ed6bf7883aee1076dafb0ddb8e6d1bd87094cfab856695849_d\",\r\n \"state\": \"creating\",\r\n \"virtualMachineInfo\": {}\r\n },\r\n {\r\n \"id\": \"tvmps_9f7566b8d528205591f256c5edc5ef34618f7a6c50f0139d3b813924a4e4d1fd_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&$select=id%2Cstate", - "EncodedRequestUri": "L3Bvb2xzL3JlbW92ZW5vZGVwb29sL25vZGVzP2FwaS12ZXJzaW9uPTIwMjAtMDMtMDEuMTEuMCYkc2VsZWN0PWlkJTJDc3RhdGU=", + "RequestUri": "/pools/removenodepool/nodes?api-version=2022-01-01.15.0&$select=id%2Cstate", + "EncodedRequestUri": "L3Bvb2xzL3JlbW92ZW5vZGVwb29sL25vZGVzP2FwaS12ZXJzaW9uPTIwMjItMDEtMDEuMTUuMCYkc2VsZWN0PWlkJTJDc3RhdGU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "eb0d2ef7-c719-4dfc-9ed3-988959b8da12" + "1fee080b-05b7-42b9-9a71-d8f3891d9950" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:29:28 GMT" + "Tue, 15 Feb 2022 19:36:28 GMT" + ], + "x-ms-client-request-id": [ + "46b60419-9900-4774-86bc-e8d1ff9110d3" ], "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.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", "AzurePowershell/Az1.0.0" ] }, @@ -2156,7 +1832,7 @@ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "26bd6979-647a-4e57-8396-992a4be13c1f" + "2bc30f43-6f95-4da0-bbf2-9895dedaf02c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2168,35 +1844,35 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 22:29:28 GMT" + "Tue, 15 Feb 2022 19:36:27 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_5eff89f884e3c00ed6bf7883aee1076dafb0ddb8e6d1bd87094cfab856695849_d\",\r\n \"state\": \"leavingpool\",\r\n \"virtualMachineInfo\": {}\r\n },\r\n {\r\n \"id\": \"tvmps_9f7566b8d528205591f256c5edc5ef34618f7a6c50f0139d3b813924a4e4d1fd_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=2022-01-01.15.0", + "EncodedRequestUri": "L3Bvb2xzL3JlbW92ZW5vZGVwb29sP2FwaS12ZXJzaW9uPTIwMjItMDEtMDEuMTUuMA==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "c51c3311-ad5b-4750-9c19-0549362c96ae" + "7ebde14e-c29b-4e0a-b885-1292a0fad273" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:29:28 GMT" + "Tue, 15 Feb 2022 19:36: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.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", "AzurePowershell/Az1.0.0" ], "Content-Length": [ @@ -2211,7 +1887,7 @@ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "3e96a8be-b053-4a30-86b2-1419dcbd314a" + "8887afc1-06d4-42a7-b2da-16e7340e0c95" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2223,7 +1899,7 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 22:29:27 GMT" + "Tue, 15 Feb 2022 19:36:26 GMT" ] }, "ResponseBody": "", @@ -2232,9 +1908,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..016e4020cf10 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=2022-01-01.15.0", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzP2FwaS12ZXJzaW9uPTIwMjItMDEtMDEuMTUuMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "0ee79975-4226-4c6c-9146-c2ae212fa963" + "ad2dc4eb-d4c7-4000-801f-8ba28e4f2a4c" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:13:24 GMT" + "Tue, 15 Feb 2022 19:25: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.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", "AzurePowershell/Az1.0.0" ] }, @@ -31,7 +31,7 @@ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "c40ad592-0af2-4bbc-b92d-14631946550d" + "56bbd83b-7819-4919-ac3b-e93bc917fc3e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -43,35 +43,38 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 22:13:46 GMT" + "Tue, 15 Feb 2022 19:25:00 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_08678bcc555e2847fe2880911a03ab30fb3c149aff08cd6c941d688c8c3f09bd_d\",\r\n \"url\": \"https://mikeportal.eastus.batch.azure.com/pools/testPool/nodes/tvmps_08678bcc555e2847fe2880911a03ab30fb3c149aff08cd6c941d688c8c3f09bd_d\",\r\n \"state\": \"idle\",\r\n \"schedulingState\": \"enabled\",\r\n \"stateTransitionTime\": \"2022-02-11T21:55:17.983994Z\",\r\n \"lastBootTime\": \"2022-02-11T21:55:17.547548Z\",\r\n \"allocationTime\": \"2022-02-11T21:53:31.7514392Z\",\r\n \"ipAddress\": \"10.218.0.5\",\r\n \"affinityId\": \"TVM:tvmps_08678bcc555e2847fe2880911a03ab30fb3c149aff08cd6c941d688c8c3f09bd_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\": \"2022-02-11T21:55:17.921643Z\",\r\n \"endTime\": \"2022-02-11T21:55:17.968405Z\",\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\": \"2022-02-11T21:55:17.547548Z\",\r\n \"version\": \"1.9.24\"\r\n },\r\n \"virtualMachineInfo\": {}\r\n },\r\n {\r\n \"id\": \"tvmps_9fdd9ba90896a96cc0732779c80a6fdc6e738a5f39ad613d3ea516f2dc6c2afc_d\",\r\n \"url\": \"https://mikeportal.eastus.batch.azure.com/pools/testPool/nodes/tvmps_9fdd9ba90896a96cc0732779c80a6fdc6e738a5f39ad613d3ea516f2dc6c2afc_d\",\r\n \"state\": \"idle\",\r\n \"schedulingState\": \"enabled\",\r\n \"stateTransitionTime\": \"2022-02-11T21:55:18.201353Z\",\r\n \"lastBootTime\": \"2022-02-11T21:55:17.560725Z\",\r\n \"allocationTime\": \"2022-02-11T21:53:31.7514392Z\",\r\n \"ipAddress\": \"10.218.0.6\",\r\n \"affinityId\": \"TVM:tvmps_9fdd9ba90896a96cc0732779c80a6fdc6e738a5f39ad613d3ea516f2dc6c2afc_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\": \"2022-02-11T21:55:18.13885Z\",\r\n \"endTime\": \"2022-02-11T21:55:18.201353Z\",\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\": \"2022-02-11T21:55:17.560725Z\",\r\n \"version\": \"1.9.24\"\r\n },\r\n \"virtualMachineInfo\": {}\r\n },\r\n {\r\n \"id\": \"tvmps_fb41546f98e686ed50fbf7d79b873fab58299b7727a32dcb68476e1fe00374ea_d\",\r\n \"url\": \"https://mikeportal.eastus.batch.azure.com/pools/testPool/nodes/tvmps_fb41546f98e686ed50fbf7d79b873fab58299b7727a32dcb68476e1fe00374ea_d\",\r\n \"state\": \"idle\",\r\n \"schedulingState\": \"enabled\",\r\n \"stateTransitionTime\": \"2022-02-11T21:55:18.096676Z\",\r\n \"lastBootTime\": \"2022-02-11T21:55:17.549795Z\",\r\n \"allocationTime\": \"2022-02-11T21:53:31.7504383Z\",\r\n \"ipAddress\": \"10.218.0.4\",\r\n \"affinityId\": \"TVM:tvmps_fb41546f98e686ed50fbf7d79b873fab58299b7727a32dcb68476e1fe00374ea_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\": \"2022-02-11T21:55:18.034172Z\",\r\n \"endTime\": \"2022-02-11T21:55:18.096676Z\",\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\": \"2022-02-11T21:55:17.549795Z\",\r\n \"version\": \"1.9.24\"\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_08678bcc555e2847fe2880911a03ab30fb3c149aff08cd6c941d688c8c3f09bd_d/users?api-version=2022-01-01.15.0", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bXBzXzA4Njc4YmNjNTU1ZTI4NDdmZTI4ODA5MTFhMDNhYjMwZmIzYzE0OWFmZjA4Y2Q2Yzk0MWQ2ODhjOGMzZjA5YmRfZC91c2Vycz9hcGktdmVyc2lvbj0yMDIyLTAxLTAxLjE1LjA=", "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" + "64a126a2-4045-4112-9dd4-146d69bcfd94" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:13:47 GMT" + "Tue, 15 Feb 2022 19:25:02 GMT" + ], + "x-ms-client-request-id": [ + "c9466a52-958a-4ebc-a4a8-7f8b153b583f" ], "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.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", "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_08678bcc555e2847fe2880911a03ab30fb3c149aff08cd6c941d688c8c3f09bd_d/users/userendtoend" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "9f22a845-ccfb-4701-a95a-e4da150b5d1f" + "739b9a1d-2572-4abf-b2f4-1287d4814803" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -104,35 +107,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_08678bcc555e2847fe2880911a03ab30fb3c149aff08cd6c941d688c8c3f09bd_d/users/userendtoend" ], "Date": [ - "Tue, 09 Jun 2020 22:14:09 GMT" + "Tue, 15 Feb 2022 19:25:01 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_08678bcc555e2847fe2880911a03ab30fb3c149aff08cd6c941d688c8c3f09bd_d/users/userendtoend?api-version=2022-01-01.15.0", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bXBzXzA4Njc4YmNjNTU1ZTI4NDdmZTI4ODA5MTFhMDNhYjMwZmIzYzE0OWFmZjA4Y2Q2Yzk0MWQ2ODhjOGMzZjA5YmRfZC91c2Vycy91c2VyZW5kdG9lbmQ/YXBpLXZlcnNpb249MjAyMi0wMS0wMS4xNS4w", "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\": \"2022-02-20T19:25:02.8607703Z\"\r\n}", "RequestHeaders": { "client-request-id": [ - "7ff221ae-45fb-4475-819d-a2a226b161c1" + "1bd832c1-8335-4c25-8725-c169071608f9" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:14:09 GMT" + "Tue, 15 Feb 2022 19:25:02 GMT" + ], + "x-ms-client-request-id": [ + "af73eb22-c07f-47ad-966f-3a14303954cb" ], "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.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", "AzurePowershell/Az1.0.0" ], "Content-Type": [ @@ -150,7 +156,7 @@ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "ab86e2ce-1d0f-4a2d-b02c-3f9a22c48143" + "f2984a99-392d-43f1-8a21-4312328b52c6" ], "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_08678bcc555e2847fe2880911a03ab30fb3c149aff08cd6c941d688c8c3f09bd_d/users/userendtoend" ], "Date": [ - "Tue, 09 Jun 2020 22:14:09 GMT" + "Tue, 15 Feb 2022 19:25:01 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_08678bcc555e2847fe2880911a03ab30fb3c149aff08cd6c941d688c8c3f09bd_d/users/userendtoend?api-version=2022-01-01.15.0", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bXBzXzA4Njc4YmNjNTU1ZTI4NDdmZTI4ODA5MTFhMDNhYjMwZmIzYzE0OWFmZjA4Y2Q2Yzk0MWQ2ODhjOGMzZjA5YmRfZC91c2Vycy91c2VyZW5kdG9lbmQ/YXBpLXZlcnNpb249MjAyMi0wMS0wMS4xNS4w", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "a9f14143-45de-46d7-a761-bcb69d4d4da7" + "a46c1d95-eeb2-412a-bd80-c149effcf713" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:14:10 GMT" + "Tue, 15 Feb 2022 19:25:03 GMT" + ], + "x-ms-client-request-id": [ + "229878fd-5469-494e-aaac-a884b6764f1a" ], "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.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", "AzurePowershell/Az1.0.0" ], "Content-Length": [ @@ -205,7 +214,7 @@ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "48fd3662-a85c-422a-94ee-d9298335697b" + "6cbcb923-6500-41f2-ad7a-e4ed04f17e96" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -217,32 +226,35 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 22:14:09 GMT" + "Tue, 15 Feb 2022 19:25:01 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_08678bcc555e2847fe2880911a03ab30fb3c149aff08cd6c941d688c8c3f09bd_d/users/userendtoend?api-version=2022-01-01.15.0", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bXBzXzA4Njc4YmNjNTU1ZTI4NDdmZTI4ODA5MTFhMDNhYjMwZmIzYzE0OWFmZjA4Y2Q2Yzk0MWQ2ODhjOGMzZjA5YmRfZC91c2Vycy91c2VyZW5kdG9lbmQ/YXBpLXZlcnNpb249MjAyMi0wMS0wMS4xNS4w", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "b02f83f2-b617-490c-81bc-2cc1b52d81ed" + "d72b583e-a5c7-4245-8ec9-fd4ae0fb273b" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:14:10 GMT" + "Tue, 15 Feb 2022 19:25:03 GMT" + ], + "x-ms-client-request-id": [ + "327eda24-36a6-4492-a1c3-69593c9734d7" ], "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.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", "AzurePowershell/Az1.0.0" ], "Content-Length": [ @@ -254,7 +266,7 @@ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "0f51db3f-ef26-4008-8bd4-b47e82a7d1ba" + "7ff90cc3-4173-4dcc-9e2b-73184b2b7e1a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -266,24 +278,24 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 22:14:10 GMT" + "Tue, 15 Feb 2022 19:25:01 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:7ff90cc3-4173-4dcc-9e2b-73184b2b7e1a\\nTime:2022-02-15T19:25:02.8928335Z\"\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..b0f001f62137 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=2022-01-01.15.0", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzP2FwaS12ZXJzaW9uPTIwMjItMDEtMDEuMTUuMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "944333f7-213a-46b5-922e-f55496737218" + "0626c3b1-a656-483c-9e62-76dd87da44e1" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 21:03:18 GMT" + "Tue, 15 Feb 2022 19:32:43 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.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", "AzurePowershell/Az1.0.0" ] }, @@ -31,7 +31,7 @@ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "74631f22-b164-4cbd-8988-cdd643e978f2" + "80678fdc-c166-456a-b2d4-e91534d0aac5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -43,35 +43,38 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 21:03:40 GMT" + "Tue, 15 Feb 2022 19:32:43 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_08678bcc555e2847fe2880911a03ab30fb3c149aff08cd6c941d688c8c3f09bd_d\",\r\n \"url\": \"https://mikeportal.eastus.batch.azure.com/pools/testPool/nodes/tvmps_08678bcc555e2847fe2880911a03ab30fb3c149aff08cd6c941d688c8c3f09bd_d\",\r\n \"state\": \"idle\",\r\n \"schedulingState\": \"enabled\",\r\n \"stateTransitionTime\": \"2022-02-11T21:55:17.983994Z\",\r\n \"lastBootTime\": \"2022-02-11T21:55:17.547548Z\",\r\n \"allocationTime\": \"2022-02-11T21:53:31.7514392Z\",\r\n \"ipAddress\": \"10.218.0.5\",\r\n \"affinityId\": \"TVM:tvmps_08678bcc555e2847fe2880911a03ab30fb3c149aff08cd6c941d688c8c3f09bd_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\": \"2022-02-11T21:55:17.921643Z\",\r\n \"endTime\": \"2022-02-11T21:55:17.968405Z\",\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\": \"2022-02-11T21:55:17.547548Z\",\r\n \"version\": \"1.9.24\"\r\n },\r\n \"virtualMachineInfo\": {}\r\n },\r\n {\r\n \"id\": \"tvmps_9fdd9ba90896a96cc0732779c80a6fdc6e738a5f39ad613d3ea516f2dc6c2afc_d\",\r\n \"url\": \"https://mikeportal.eastus.batch.azure.com/pools/testPool/nodes/tvmps_9fdd9ba90896a96cc0732779c80a6fdc6e738a5f39ad613d3ea516f2dc6c2afc_d\",\r\n \"state\": \"idle\",\r\n \"schedulingState\": \"enabled\",\r\n \"stateTransitionTime\": \"2022-02-11T21:55:18.201353Z\",\r\n \"lastBootTime\": \"2022-02-11T21:55:17.560725Z\",\r\n \"allocationTime\": \"2022-02-11T21:53:31.7514392Z\",\r\n \"ipAddress\": \"10.218.0.6\",\r\n \"affinityId\": \"TVM:tvmps_9fdd9ba90896a96cc0732779c80a6fdc6e738a5f39ad613d3ea516f2dc6c2afc_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\": \"2022-02-11T21:55:18.13885Z\",\r\n \"endTime\": \"2022-02-11T21:55:18.201353Z\",\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\": \"2022-02-11T21:55:17.560725Z\",\r\n \"version\": \"1.9.24\"\r\n },\r\n \"virtualMachineInfo\": {}\r\n },\r\n {\r\n \"id\": \"tvmps_fb41546f98e686ed50fbf7d79b873fab58299b7727a32dcb68476e1fe00374ea_d\",\r\n \"url\": \"https://mikeportal.eastus.batch.azure.com/pools/testPool/nodes/tvmps_fb41546f98e686ed50fbf7d79b873fab58299b7727a32dcb68476e1fe00374ea_d\",\r\n \"state\": \"idle\",\r\n \"schedulingState\": \"enabled\",\r\n \"stateTransitionTime\": \"2022-02-15T19:31:26.863915Z\",\r\n \"lastBootTime\": \"2022-02-11T21:55:17.549795Z\",\r\n \"allocationTime\": \"2022-02-11T21:53:31.7504383Z\",\r\n \"ipAddress\": \"10.218.0.4\",\r\n \"affinityId\": \"TVM:tvmps_fb41546f98e686ed50fbf7d79b873fab58299b7727a32dcb68476e1fe00374ea_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/testJobCompletesWhenTaskFails/tasks/taskId-1\",\r\n \"jobId\": \"testJobCompletesWhenTaskFails\",\r\n \"taskId\": \"taskId-1\",\r\n \"taskState\": \"completed\",\r\n \"executionInfo\": {\r\n \"startTime\": \"2022-02-15T19:31:26.765567Z\",\r\n \"endTime\": \"2022-02-15T19:31:26.832662Z\",\r\n \"exitCode\": 3,\r\n \"failureInfo\": {\r\n \"category\": \"UserError\",\r\n \"code\": \"FailureExitCode\",\r\n \"message\": \"The task exited with an exit code representing a failure\",\r\n \"details\": [\r\n {\r\n \"name\": \"Message\",\r\n \"value\": \"The task process exited with an unexpected exit code\"\r\n },\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\": \"2022-02-11T21:55:18.034172Z\",\r\n \"endTime\": \"2022-02-11T21:55:18.096676Z\",\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\": \"2022-02-11T21:55:17.549795Z\",\r\n \"version\": \"1.9.24\"\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_08678bcc555e2847fe2880911a03ab30fb3c149aff08cd6c941d688c8c3f09bd_d?api-version=2022-01-01.15.0", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bXBzXzA4Njc4YmNjNTU1ZTI4NDdmZTI4ODA5MTFhMDNhYjMwZmIzYzE0OWFmZjA4Y2Q2Yzk0MWQ2ODhjOGMzZjA5YmRfZD9hcGktdmVyc2lvbj0yMDIyLTAxLTAxLjE1LjA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "c08b86dc-ea61-4d26-9a7a-40c040b0968e" + "ca92951d-0733-4a59-9c3d-b8c8ff95c867" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 21:03:40 GMT" + "Tue, 15 Feb 2022 19:32:44 GMT" + ], + "x-ms-client-request-id": [ + "1604f139-6b8e-4979-a73f-5f9741067e12" ], "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.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", "AzurePowershell/Az1.0.0" ] }, @@ -83,7 +86,7 @@ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "0326c52f-192d-4079-87a4-e5e187e4d709" + "a64b9320-8e7e-4556-aeb5-050f329e4c5e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -95,35 +98,38 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 21:04:02 GMT" + "Tue, 15 Feb 2022 19:32: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_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_08678bcc555e2847fe2880911a03ab30fb3c149aff08cd6c941d688c8c3f09bd_d\",\r\n \"url\": \"https://mikeportal.eastus.batch.azure.com/pools/testPool/nodes/tvmps_08678bcc555e2847fe2880911a03ab30fb3c149aff08cd6c941d688c8c3f09bd_d\",\r\n \"state\": \"idle\",\r\n \"schedulingState\": \"enabled\",\r\n \"stateTransitionTime\": \"2022-02-11T21:55:17.983994Z\",\r\n \"lastBootTime\": \"2022-02-11T21:55:17.547548Z\",\r\n \"allocationTime\": \"2022-02-11T21:53:31.7514392Z\",\r\n \"ipAddress\": \"10.218.0.5\",\r\n \"affinityId\": \"TVM:tvmps_08678bcc555e2847fe2880911a03ab30fb3c149aff08cd6c941d688c8c3f09bd_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\": \"2022-02-11T21:55:17.921643Z\",\r\n \"endTime\": \"2022-02-11T21:55:17.968405Z\",\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\": \"2022-02-11T21:55:17.547548Z\",\r\n \"version\": \"1.9.24\"\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_08678bcc555e2847fe2880911a03ab30fb3c149aff08cd6c941d688c8c3f09bd_d/rdp?api-version=2022-01-01.15.0", + "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sL25vZGVzL3R2bXBzXzA4Njc4YmNjNTU1ZTI4NDdmZTI4ODA5MTFhMDNhYjMwZmIzYzE0OWFmZjA4Y2Q2Yzk0MWQ2ODhjOGMzZjA5YmRfZC9yZHA/YXBpLXZlcnNpb249MjAyMi0wMS0wMS4xNS4w", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "fa7c1e47-e495-40f7-b7da-7cfef68236f1" + "6dc4c3aa-596c-431c-88a0-9094f333f7ea" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 21:04:02 GMT" + "Tue, 15 Feb 2022 19:32:45 GMT" + ], + "x-ms-client-request-id": [ + "e520d321-5324-482f-b8cb-e7f2f9e3a10e" ], "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.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", "AzurePowershell/Az1.0.0" ] }, @@ -135,7 +141,7 @@ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "21ef1ab3-a227-449d-af30-a78e817c815c" + "10c3172b-5412-4d4f-8a6c-97ba2004e738" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -147,21 +153,21 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 21:04:02 GMT" + "Tue, 15 Feb 2022 19:32:44 GMT" ], "Content-Type": [ "application/octet-stream" ] }, - "ResponseBody": "ZnVsbCBhZGRyZXNzOnM6MjAuNDMuMzkuNjcNCkxvYWRCYWxhbmNlSW5mbzpzOkNvb2tpZTogbXN0c2hhc2g9VFZNI1RWTV9JTl8w", + "ResponseBody": "ZnVsbCBhZGRyZXNzOnM6MjAuMTIxLjI5LjEzMw0KTG9hZEJhbGFuY2VJbmZvOnM6Q29va2llOiBtc3RzaGFzaD1UVk0jVFZNX0lOXzE=", "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..be71fef41d6f 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=2022-01-01.15.0", + "EncodedRequestUri": "L2pvYnNjaGVkdWxlcz9hcGktdmVyc2lvbj0yMDIyLTAxLTAxLjE1LjA=", "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" + "ca637a8d-09cc-42f8-9dfb-d494f44a6eda" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 21:04:29 GMT" + "Tue, 15 Feb 2022 19:25: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.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", "AzurePowershell/Az1.0.0" ], "Content-Type": [ @@ -34,16 +34,16 @@ "chunked" ], "ETag": [ - "0x8D80CB8C00027A3" + "0x8D9F0B8F2DBED59" ], "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" + "59a5d641-ab34-489e-ae5b-2932e652eac3" ], "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" + "Tue, 15 Feb 2022 19:25:38 GMT" ], "Last-Modified": [ - "Tue, 09 Jun 2020 21:04:50 GMT" + "Tue, 15 Feb 2022 19:25:38 GMT" ] }, "ResponseBody": "", "StatusCode": 201 }, { - "RequestUri": "/jobschedules/testDisableEnableTerminateJobSchedule/disable?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L2pvYnNjaGVkdWxlcy90ZXN0RGlzYWJsZUVuYWJsZVRlcm1pbmF0ZUpvYlNjaGVkdWxlL2Rpc2FibGU/YXBpLXZlcnNpb249MjAyMC0wMy0wMS4xMS4w", + "RequestUri": "/jobschedules/testDisableEnableTerminateJobSchedule/disable?api-version=2022-01-01.15.0", + "EncodedRequestUri": "L2pvYnNjaGVkdWxlcy90ZXN0RGlzYWJsZUVuYWJsZVRlcm1pbmF0ZUpvYlNjaGVkdWxlL2Rpc2FibGU/YXBpLXZlcnNpb249MjAyMi0wMS0wMS4xNS4w", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "8f623b53-9499-4024-a834-32cfa140c5ef" + "baadd831-4b60-4294-995d-2edbb9a98dbf" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 21:04:51 GMT" + "Tue, 15 Feb 2022 19:25:40 GMT" + ], + "x-ms-client-request-id": [ + "8a476c1c-42b9-4cd1-a72a-f1910bb1c0f2" ], "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.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", "AzurePowershell/Az1.0.0" ], "Content-Length": [ @@ -95,13 +98,13 @@ }, "ResponseHeaders": { "ETag": [ - "0x8D80CB8CD4AC923" + "0x8D9F0B8F36A4B33" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "58882b55-d8b4-4258-9a36-46143548d362" + "ee00e529-b8d4-4f1d-a5fd-a94900d81306" ], "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" + "Tue, 15 Feb 2022 19:25:39 GMT" ], "Content-Length": [ "0" ], "Last-Modified": [ - "Tue, 09 Jun 2020 21:05:13 GMT" + "Tue, 15 Feb 2022 19:25:39 GMT" ] }, "ResponseBody": "", "StatusCode": 204 }, { - "RequestUri": "/jobschedules/testDisableEnableTerminateJobSchedule?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L2pvYnNjaGVkdWxlcy90ZXN0RGlzYWJsZUVuYWJsZVRlcm1pbmF0ZUpvYlNjaGVkdWxlP2FwaS12ZXJzaW9uPTIwMjAtMDMtMDEuMTEuMA==", + "RequestUri": "/jobschedules/testDisableEnableTerminateJobSchedule?api-version=2022-01-01.15.0", + "EncodedRequestUri": "L2pvYnNjaGVkdWxlcy90ZXN0RGlzYWJsZUVuYWJsZVRlcm1pbmF0ZUpvYlNjaGVkdWxlP2FwaS12ZXJzaW9uPTIwMjItMDEtMDEuMTUuMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "6ce7ba13-454a-4a39-93f8-113e181f2d00" + "d2686cb3-b88e-49e6-a519-58ecf74afa48" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 21:05:13 GMT" + "Tue, 15 Feb 2022 19:25:40 GMT" + ], + "x-ms-client-request-id": [ + "f4dfd16e-55c6-4726-ace3-495f31dcc961" ], "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.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", "AzurePowershell/Az1.0.0" ] }, @@ -156,13 +162,13 @@ "chunked" ], "ETag": [ - "0x8D80CB8CD4AC923" + "0x8D9F0B8F36A4B33" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "0a584509-3b18-481a-842d-b5fe4348cb19" + "daff887c-a03d-45ba-a126-b67640daa341" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -174,38 +180,41 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 21:05:13 GMT" + "Tue, 15 Feb 2022 19:25:39 GMT" ], "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Tue, 09 Jun 2020 21:05:13 GMT" + "Tue, 15 Feb 2022 19:25:39 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\": \"0x8D9F0B8F36A4B33\",\r\n \"lastModified\": \"2022-02-15T19:25:39.8114099Z\",\r\n \"creationTime\": \"2022-02-15T19:25:38.8783961Z\",\r\n \"state\": \"disabled\",\r\n \"stateTransitionTime\": \"2022-02-15T19:25:39.8114099Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2022-02-15T19:25:38.8783961Z\",\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"maxParallelTasks\": -1,\r\n \"allowTaskPreemption\": false,\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=2022-01-01.15.0", + "EncodedRequestUri": "L2pvYnNjaGVkdWxlcy90ZXN0RGlzYWJsZUVuYWJsZVRlcm1pbmF0ZUpvYlNjaGVkdWxlP2FwaS12ZXJzaW9uPTIwMjItMDEtMDEuMTUuMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "b9e84748-68f1-4455-9945-62ad30f7d093" + "be1d5a0c-18e0-4391-84e6-0789f31e8e8a" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 21:05:13 GMT" + "Tue, 15 Feb 2022 19:25:40 GMT" + ], + "x-ms-client-request-id": [ + "eefe224e-c82a-4f58-a4f6-622b21ba9c8b" ], "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.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", "AzurePowershell/Az1.0.0" ] }, @@ -214,13 +223,13 @@ "chunked" ], "ETag": [ - "0x8D80CB8CDBAD799" + "0x8D9F0B8F3A22442" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "175d656f-0d9a-4806-8969-aa6d1008bdda" + "148f1bc6-b80b-40ac-8570-c57d759910c0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -232,38 +241,41 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 21:05:13 GMT" + "Tue, 15 Feb 2022 19:25:39 GMT" ], "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Tue, 09 Jun 2020 21:05:13 GMT" + "Tue, 15 Feb 2022 19:25:40 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\": \"0x8D9F0B8F3A22442\",\r\n \"lastModified\": \"2022-02-15T19:25:40.1774146Z\",\r\n \"creationTime\": \"2022-02-15T19:25:38.8783961Z\",\r\n \"state\": \"terminating\",\r\n \"stateTransitionTime\": \"2022-02-15T19:25:40.1774146Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2022-02-15T19:25:40.010414Z\",\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"maxParallelTasks\": -1,\r\n \"allowTaskPreemption\": false,\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=2022-01-01.15.0", + "EncodedRequestUri": "L2pvYnNjaGVkdWxlcy90ZXN0RGlzYWJsZUVuYWJsZVRlcm1pbmF0ZUpvYlNjaGVkdWxlL2VuYWJsZT9hcGktdmVyc2lvbj0yMDIyLTAxLTAxLjE1LjA=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "53b8ddd8-a8bd-4e40-8af9-c94af7be5f5d" + "abe48559-9da3-4c6f-9003-96b1a97690fc" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 21:05:13 GMT" + "Tue, 15 Feb 2022 19:25:40 GMT" + ], + "x-ms-client-request-id": [ + "646e6489-d244-43f3-bd39-aa5f929aeab1" ], "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.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", "AzurePowershell/Az1.0.0" ], "Content-Length": [ @@ -272,13 +284,13 @@ }, "ResponseHeaders": { "ETag": [ - "0x8D80CB8CD83016C" + "0x8D9F0B8F388A8CC" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "2ac0ba80-4361-4f9e-a88a-a64ee623bc5e" + "c41e0f39-e470-4593-8d5c-f22af737be3b" ], "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" + "Tue, 15 Feb 2022 19:25:39 GMT" ], "Content-Length": [ "0" ], "Last-Modified": [ - "Tue, 09 Jun 2020 21:05:13 GMT" + "Tue, 15 Feb 2022 19:25:40 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=2022-01-01.15.0&$filter=id%20eq%20%27testDisableEnableTerminateJobSchedule%27", + "EncodedRequestUri": "L2pvYnNjaGVkdWxlcz9hcGktdmVyc2lvbj0yMDIyLTAxLTAxLjE1LjAmJGZpbHRlcj1pZCUyMGVxJTIwJTI3dGVzdERpc2FibGVFbmFibGVUZXJtaW5hdGVKb2JTY2hlZHVsZSUyNw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "b27cef84-d26b-4807-9023-e76d1f5a36fb" + "1ca6c6a2-aafd-441b-8322-cb597b3dbea5" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 21:05:13 GMT" + "Tue, 15 Feb 2022 19:25:40 GMT" + ], + "x-ms-client-request-id": [ + "2065ff12-e0b6-4cf9-a57b-d0aa0d3404b4" ], "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.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", "AzurePowershell/Az1.0.0" ] }, @@ -336,7 +351,7 @@ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "1c1fc0ba-8ca2-44a6-b13b-a2d5f06eebc0" + "f8a3b454-93b8-4e8f-92dd-d8874fcefe4b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -348,35 +363,38 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 21:05:13 GMT" + "Tue, 15 Feb 2022 19:25:39 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\": \"0x8D9F0B8F388A8CC\",\r\n \"lastModified\": \"2022-02-15T19:25:40.010414Z\",\r\n \"creationTime\": \"2022-02-15T19:25:38.8783961Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2022-02-15T19:25:40.010414Z\",\r\n \"previousState\": \"disabled\",\r\n \"previousStateTransitionTime\": \"2022-02-15T19:25:39.8114099Z\",\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"maxParallelTasks\": -1,\r\n \"allowTaskPreemption\": false,\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=2022-01-01.15.0", + "EncodedRequestUri": "L2pvYnNjaGVkdWxlcy90ZXN0RGlzYWJsZUVuYWJsZVRlcm1pbmF0ZUpvYlNjaGVkdWxlL3Rlcm1pbmF0ZT9hcGktdmVyc2lvbj0yMDIyLTAxLTAxLjE1LjA=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "c424ab9f-4d14-4583-9e0d-bd20669414e1" + "8563fb46-2a01-42c5-97cc-27a8b2800947" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 21:05:13 GMT" + "Tue, 15 Feb 2022 19:25:40 GMT" + ], + "x-ms-client-request-id": [ + "441c5bfb-4a9e-4c4d-b645-3e48622ae224" ], "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.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", "AzurePowershell/Az1.0.0" ], "Content-Length": [ @@ -388,13 +406,13 @@ "chunked" ], "ETag": [ - "0x8D80CB8CDBAD799" + "0x8D9F0B8F3A22442" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "3a9d1ca1-dcb8-4162-b31e-713cd36e7379" + "05853607-ac54-4432-b53a-989d1cbe5915" ], "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" + "Tue, 15 Feb 2022 19:25:39 GMT" ], "Last-Modified": [ - "Tue, 09 Jun 2020 21:05:13 GMT" + "Tue, 15 Feb 2022 19:25:40 GMT" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/jobschedules/testDisableEnableTerminateJobSchedule?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L2pvYnNjaGVkdWxlcy90ZXN0RGlzYWJsZUVuYWJsZVRlcm1pbmF0ZUpvYlNjaGVkdWxlP2FwaS12ZXJzaW9uPTIwMjAtMDMtMDEuMTEuMA==", + "RequestUri": "/jobschedules/testDisableEnableTerminateJobSchedule?api-version=2022-01-01.15.0", + "EncodedRequestUri": "L2pvYnNjaGVkdWxlcy90ZXN0RGlzYWJsZUVuYWJsZVRlcm1pbmF0ZUpvYlNjaGVkdWxlP2FwaS12ZXJzaW9uPTIwMjItMDEtMDEuMTUuMA==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "355144a7-82cf-473f-8c8c-c053acca7d61" + "cd178cbc-5d95-421b-bfe1-dc5b1f044fa2" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 21:05:14 GMT" + "Tue, 15 Feb 2022 19:25: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.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", "AzurePowershell/Az1.0.0" ], "Content-Length": [ @@ -452,7 +470,7 @@ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "af9b58c9-0c6f-465f-a7e3-e0b05c9c95f6" + "65711c7d-1479-4e8a-afdf-954ccb420691" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -464,7 +482,7 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 21:05:14 GMT" + "Tue, 15 Feb 2022 19:25:40 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..1f313755a3fe 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=2022-01-01.15.0", + "EncodedRequestUri": "L2pvYnNjaGVkdWxlcz9hcGktdmVyc2lvbj0yMDIyLTAxLTAxLjE1LjA=", "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" + "b20e0f47-5bd5-4acd-9ac1-55900d1c71ed" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 21:04:04 GMT" + "Tue, 15 Feb 2022 19:25:05 GMT" + ], + "x-ms-client-request-id": [ + "b917cc01-1dd8-4f1a-8419-21e792848c0d" ], "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.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", "AzurePowershell/Az1.0.0" ], "Content-Type": [ @@ -34,16 +37,16 @@ "chunked" ], "ETag": [ - "0x8D80CB8B1895B2C" + "0x8D9F0B8DF19D6D5" ], "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" + "31c27653-2160-4194-946c-f4669d3a2ff7" ], "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" + "Tue, 15 Feb 2022 19:25:05 GMT" ], "Last-Modified": [ - "Tue, 09 Jun 2020 21:04:26 GMT" + "Tue, 15 Feb 2022 19:25:05 GMT" ] }, "ResponseBody": "", "StatusCode": 201 }, { - "RequestUri": "/jobschedules?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L2pvYnNjaGVkdWxlcz9hcGktdmVyc2lvbj0yMDIwLTAzLTAxLjExLjA=", + "RequestUri": "/jobschedules?api-version=2022-01-01.15.0", + "EncodedRequestUri": "L2pvYnNjaGVkdWxlcz9hcGktdmVyc2lvbj0yMDIyLTAxLTAxLjE1LjA=", "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" + "b0e6d79b-0bae-4a84-8f30-90cd1f5f045a" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 21:04:26 GMT" + "Tue, 15 Feb 2022 19:25:06 GMT" + ], + "x-ms-client-request-id": [ + "acfa4f47-8098-4bcc-b5af-8b89d2a0f3c7" ], "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.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", "AzurePowershell/Az1.0.0" ], "Content-Type": [ @@ -101,16 +107,16 @@ "chunked" ], "ETag": [ - "0x8D80CB8B1A79172" + "0x8D9F0B8DF2F33AE" ], "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" + "386b813c-d6bf-4563-afd9-9e83cb29cfe5" ], "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" + "Tue, 15 Feb 2022 19:25:05 GMT" ], "Last-Modified": [ - "Tue, 09 Jun 2020 21:04:26 GMT" + "Tue, 15 Feb 2022 19:25:05 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=2022-01-01.15.0&$filter=id%20eq%20%27jobSchedule1%27%20or%20id%20eq%20%27jobSchedule2%27", + "EncodedRequestUri": "L2pvYnNjaGVkdWxlcz9hcGktdmVyc2lvbj0yMDIyLTAxLTAxLjE1LjAmJGZpbHRlcj1pZCUyMGVxJTIwJTI3am9iU2NoZWR1bGUxJTI3JTIwb3IlMjBpZCUyMGVxJTIwJTI3am9iU2NoZWR1bGUyJTI3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "42ad3a91-4f96-434c-be02-f40faca932aa" + "d3789616-4b6d-41ee-a8eb-470392bd6f44" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 21:04:26 GMT" + "Tue, 15 Feb 2022 19:25:06 GMT" + ], + "x-ms-client-request-id": [ + "70cd7503-3cd9-4f19-a569-c1837af7dba9" ], "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.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", "AzurePowershell/Az1.0.0" ] }, @@ -165,7 +174,7 @@ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "c80cefdc-0720-4357-b76b-f3c1f32d1171" + "a7b91195-1e06-46ea-86e1-e30c1eed8e1d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -177,42 +186,45 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 21:04:26 GMT" + "Tue, 15 Feb 2022 19:25: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\": \"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\": \"0x8D9F0B8DF19D6D5\",\r\n \"lastModified\": \"2022-02-15T19:25:05.7297109Z\",\r\n \"creationTime\": \"2022-02-15T19:25:05.7297109Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2022-02-15T19:25:05.7297109Z\",\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"maxParallelTasks\": -1,\r\n \"allowTaskPreemption\": false,\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\": \"0x8D9F0B8DF2F33AE\",\r\n \"lastModified\": \"2022-02-15T19:25:05.8697134Z\",\r\n \"creationTime\": \"2022-02-15T19:25:05.8697134Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2022-02-15T19:25:05.8697134Z\",\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 \"allowTaskPreemption\": false,\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=2022-01-01.15.0", + "EncodedRequestUri": "L2pvYnNjaGVkdWxlcy9qb2JTY2hlZHVsZTI/YXBpLXZlcnNpb249MjAyMi0wMS0wMS4xNS4w", "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 \"allowTaskPreemption\": false,\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" + "a7a1edfe-6a55-488f-8906-c2c9de9057ca" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 21:04:27 GMT" + "Tue, 15 Feb 2022 19:25:06 GMT" + ], + "x-ms-client-request-id": [ + "58ce187e-e178-4f3c-816c-79db3ea1812b" ], "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.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", "AzurePowershell/Az1.0.0" ], "Content-Type": [ "application/json; odata=minimalmetadata; charset=utf-8" ], "Content-Length": [ - "403" + "467" ] }, "ResponseHeaders": { @@ -220,13 +232,13 @@ "chunked" ], "ETag": [ - "0x8D80CB8B1EEA0FF" + "0x8D9F0B8DF5FE0C0" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "30e7c392-ee4a-4ea8-8720-a3fb35738aa2" + "0d98098e-4341-49da-a474-06a16d22d35e" ], "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" + "Tue, 15 Feb 2022 19:25:05 GMT" ], "Last-Modified": [ - "Tue, 09 Jun 2020 21:04:27 GMT" + "Tue, 15 Feb 2022 19:25:06 GMT" ] }, "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/jobschedules/jobSchedule2?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L2pvYnNjaGVkdWxlcy9qb2JTY2hlZHVsZTI/YXBpLXZlcnNpb249MjAyMC0wMy0wMS4xMS4w", + "RequestUri": "/jobschedules/jobSchedule2?api-version=2022-01-01.15.0", + "EncodedRequestUri": "L2pvYnNjaGVkdWxlcy9qb2JTY2hlZHVsZTI/YXBpLXZlcnNpb249MjAyMi0wMS0wMS4xNS4w", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "d3418062-a0b5-4263-b559-492701c36f1c" + "e10b510c-492e-4cf5-8f19-6299588cb4bc" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 21:04:27 GMT" + "Tue, 15 Feb 2022 19:25:06 GMT" + ], + "x-ms-client-request-id": [ + "78134e10-fad6-4fcf-a635-a6e83388de0b" ], "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.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", "AzurePowershell/Az1.0.0" ] }, @@ -278,13 +293,13 @@ "chunked" ], "ETag": [ - "0x8D80CB8B1EEA0FF" + "0x8D9F0B8DF5FE0C0" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "e13f271f-0803-4750-8e06-5b8b88d5bb24" + "eda2a32a-52dc-48a4-af49-1d5459434b5f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -296,38 +311,41 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 21:04:26 GMT" + "Tue, 15 Feb 2022 19:25:06 GMT" ], "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Tue, 09 Jun 2020 21:04:27 GMT" + "Tue, 15 Feb 2022 19:25:06 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\": \"0x8D9F0B8DF5FE0C0\",\r\n \"lastModified\": \"2022-02-15T19:25:06.1887168Z\",\r\n \"creationTime\": \"2022-02-15T19:25:05.8697134Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2022-02-15T19:25:05.8697134Z\",\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 \"allowTaskPreemption\": false,\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=2022-01-01.15.0", + "EncodedRequestUri": "L2pvYnNjaGVkdWxlcy9qb2JTY2hlZHVsZTE/YXBpLXZlcnNpb249MjAyMi0wMS0wMS4xNS4w", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "c99c7ea9-ee0d-4479-8977-b11c1c2f83a5" + "51b92524-e651-4f3f-b19f-7d0f27642dda" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 21:04:27 GMT" + "Tue, 15 Feb 2022 19:25:06 GMT" + ], + "x-ms-client-request-id": [ + "3a1a552e-ab8b-4d5d-922a-5efddab1e0f8" ], "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.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", "AzurePowershell/Az1.0.0" ], "Content-Length": [ @@ -342,7 +360,7 @@ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "b06c91bf-17bf-4f91-b0ff-0c0fb9395278" + "286ffcbd-7031-4b5c-bd1a-6e03ade86f76" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -354,32 +372,35 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 21:04:27 GMT" + "Tue, 15 Feb 2022 19:25:35 GMT" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/jobschedules/jobSchedule2?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L2pvYnNjaGVkdWxlcy9qb2JTY2hlZHVsZTI/YXBpLXZlcnNpb249MjAyMC0wMy0wMS4xMS4w", + "RequestUri": "/jobschedules/jobSchedule2?api-version=2022-01-01.15.0", + "EncodedRequestUri": "L2pvYnNjaGVkdWxlcy9qb2JTY2hlZHVsZTI/YXBpLXZlcnNpb249MjAyMi0wMS0wMS4xNS4w", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "12e9fe25-f18b-449c-ac10-8efc6fc0a0fa" + "a2cfa140-82b8-402e-9270-5dae7cc36bca" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 21:04:27 GMT" + "Tue, 15 Feb 2022 19:25:36 GMT" + ], + "x-ms-client-request-id": [ + "a295d3c7-c927-47b1-827e-2026a43bcd67" ], "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.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", "AzurePowershell/Az1.0.0" ], "Content-Length": [ @@ -394,7 +415,7 @@ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "b048f0a6-bff7-40fe-a89b-44b8930fa035" + "5093e87f-871f-4993-b335-bdb09272c3ce" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -406,32 +427,35 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 21:04:27 GMT" + "Tue, 15 Feb 2022 19:25:35 GMT" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/jobschedules?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L2pvYnNjaGVkdWxlcz9hcGktdmVyc2lvbj0yMDIwLTAzLTAxLjExLjA=", + "RequestUri": "/jobschedules?api-version=2022-01-01.15.0", + "EncodedRequestUri": "L2pvYnNjaGVkdWxlcz9hcGktdmVyc2lvbj0yMDIyLTAxLTAxLjE1LjA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "740a8350-4452-4829-8705-f3d5ec0f4900" + "d6c199dc-68db-40f3-8399-5979cd99b57f" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 21:04:27 GMT" + "Tue, 15 Feb 2022 19:25:36 GMT" + ], + "x-ms-client-request-id": [ + "c5c9b9b2-51a5-424c-a014-a7badf464284" ], "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.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", "AzurePowershell/Az1.0.0" ] }, @@ -443,7 +467,7 @@ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "01044d12-012f-4ef4-940c-699bf921bac5" + "0807679f-89e9-4e72-a242-ff832f90d1fb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -455,21 +479,21 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 21:04:27 GMT" + "Tue, 15 Feb 2022 19:25: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\": \"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\": \"jobSchedule1\",\r\n \"url\": \"https://mikeportal.eastus.batch.azure.com/jobschedules/jobSchedule1\",\r\n \"eTag\": \"0x8D9F0B8DF19D6D5\",\r\n \"lastModified\": \"2022-02-15T19:25:05.7297109Z\",\r\n \"creationTime\": \"2022-02-15T19:25:05.7297109Z\",\r\n \"state\": \"deleting\",\r\n \"stateTransitionTime\": \"2022-02-15T19:25:36.4638495Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2022-02-15T19:25:05.7297109Z\",\r\n \"jobSpecification\": {\r\n \"priority\": 0,\r\n \"maxParallelTasks\": -1,\r\n \"allowTaskPreemption\": false,\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\": \"0x8D9F0B8DF5FE0C0\",\r\n \"lastModified\": \"2022-02-15T19:25:06.1887168Z\",\r\n \"creationTime\": \"2022-02-15T19:25:05.8697134Z\",\r\n \"state\": \"deleting\",\r\n \"stateTransitionTime\": \"2022-02-15T19:25:36.5298516Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2022-02-15T19:25:05.8697134Z\",\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 \"allowTaskPreemption\": false,\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 \"allowTaskPreemption\": false,\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..c8d26a16c1fb 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=2022-01-01.15.0", + "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAyMi0wMS0wMS4xNS4w", "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 \"poolId\": \"testPool\"\r\n },\r\n \"onTaskFailure\": \"performexitoptionsjobaction\",\r\n \"usesTaskDependencies\": false\r\n}", "RequestHeaders": { "client-request-id": [ - "46f8641b-ca12-4a76-9da4-6ffb929ecb34" + "37528987-2994-4bec-ab0c-3672daeac949" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 20:52:43 GMT" + "Tue, 15 Feb 2022 19:31:25 GMT" + ], + "x-ms-client-request-id": [ + "75710f97-9629-48c3-b6c0-3b3987d36b53" ], "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.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", "AzurePowershell/Az1.0.0" ], "Content-Type": [ "application/json; odata=minimalmetadata; charset=utf-8" ], "Content-Length": [ - "514" + "197" ] }, "ResponseHeaders": { @@ -34,16 +37,16 @@ "chunked" ], "ETag": [ - "0x8D80CB71B75873C" + "0x8D9F0B9C12D8A5A" ], "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" + "f6b54aac-59df-42c4-b0a8-0766aaac68fc" ], "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" + "Tue, 15 Feb 2022 19:31:24 GMT" ], "Last-Modified": [ - "Tue, 09 Jun 2020 20:53:05 GMT" + "Tue, 15 Feb 2022 19:31:25 GMT" ] }, "ResponseBody": "", "StatusCode": 201 }, { - "RequestUri": "/jobs/testJobCompletesWhenTaskFails/tasks?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L2pvYnMvdGVzdEpvYkNvbXBsZXRlc1doZW5UYXNrRmFpbHMvdGFza3M/YXBpLXZlcnNpb249MjAyMC0wMy0wMS4xMS4w", + "RequestUri": "/jobs/testJobCompletesWhenTaskFails/tasks?api-version=2022-01-01.15.0", + "EncodedRequestUri": "L2pvYnMvdGVzdEpvYkNvbXBsZXRlc1doZW5UYXNrRmFpbHMvdGFza3M/YXBpLXZlcnNpb249MjAyMi0wMS0wMS4xNS4w", "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" + "9d467d2e-18fa-4362-90f1-afe7bd4c38f8" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 20:53:05 GMT" + "Tue, 15 Feb 2022 19:31:25 GMT" + ], + "x-ms-client-request-id": [ + "f1ac7a86-5e86-47fe-81be-0c7ad741f57a" ], "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.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", "AzurePowershell/Az1.0.0" ], "Content-Type": [ @@ -101,16 +107,16 @@ "chunked" ], "ETag": [ - "0x8D80CB71B9C9832" + "0x8D9F0B9C13CAA23" ], "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" + "ce29b1a2-2d34-4593-a791-70ad11b4f193" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -122,1390 +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" + "Tue, 15 Feb 2022 19:31:24 GMT" ], "Last-Modified": [ - "Tue, 09 Jun 2020 20:53:05 GMT" + "Tue, 15 Feb 2022 19:31:25 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", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "client-request-id": [ - "9797e225-d0d1-46a0-a2cd-208bcd153cfa" - ], - "Accept-Language": [ - "en-US" - ], - "ocp-date": [ - "Tue, 09 Jun 2020 20:53:47 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": [ - "a91a4961-374b-47d8-880d-490badff0412" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0" - ], - "Date": [ - "Tue, 09 Jun 2020 20:53:47 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": [ - "8d1606c7-0cb7-4eec-968c-be055823280d" - ], - "Accept-Language": [ - "en-US" - ], - "ocp-date": [ - "Tue, 09 Jun 2020 20:54:07 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": [ - "5b8416a3-af7b-4321-8923-30ae520f1a19" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0" - ], - "Date": [ - "Tue, 09 Jun 2020 20:54:07 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": [ - "3c188b36-2ef1-4051-a070-3a9f29810b4f" - ], - "Accept-Language": [ - "en-US" - ], - "ocp-date": [ - "Tue, 09 Jun 2020 20:54: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": [ - "f7be5451-4f23-4bf3-957a-a8b33a467598" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0" - ], - "Date": [ - "Tue, 09 Jun 2020 20:54: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", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "client-request-id": [ - "55664ab0-896e-4619-8e79-c438692dbb6a" - ], - "Accept-Language": [ - "en-US" - ], - "ocp-date": [ - "Tue, 09 Jun 2020 20:54:48 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": [ - "39e8d4b6-5953-4d98-b795-e02bc971c732" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0" - ], - "Date": [ - "Tue, 09 Jun 2020 20:54:47 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": [ - "fa358c52-765d-45b2-95f0-560457db9b68" - ], - "Accept-Language": [ - "en-US" - ], - "ocp-date": [ - "Tue, 09 Jun 2020 20:55:08 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": [ - "4d39b415-0d55-4297-833a-a25e1e55e0b2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0" - ], - "Date": [ - "Tue, 09 Jun 2020 20:55:08 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": [ - "fc8605cd-b27e-4a9c-b06d-b72ccc28dc98" - ], - "Accept-Language": [ - "en-US" - ], - "ocp-date": [ - "Tue, 09 Jun 2020 20:55:28 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": [ - "9b01c78f-163c-41b0-9eea-75d662b3bc1b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0" - ], - "Date": [ - "Tue, 09 Jun 2020 20:55: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", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "client-request-id": [ - "90cd1e73-e43b-46f3-92f2-3e6106735f63" - ], - "Accept-Language": [ - "en-US" - ], - "ocp-date": [ - "Tue, 09 Jun 2020 20:55:48 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": [ - "4b5ed5e0-89e0-43ee-a64d-43c6f79bfc00" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0" - ], - "Date": [ - "Tue, 09 Jun 2020 20:55:48 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": [ - "9a81e560-309e-4cb7-bf48-576748b2bd1d" - ], - "Accept-Language": [ - "en-US" - ], - "ocp-date": [ - "Tue, 09 Jun 2020 20:56:08 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": [ - "3617959e-1326-4fda-9732-50fa4d5ba7bd" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0" - ], - "Date": [ - "Tue, 09 Jun 2020 20:56:08 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": [ - "a3a4a880-efc6-4429-ad13-cc06d5c1d645" - ], - "Accept-Language": [ - "en-US" - ], - "ocp-date": [ - "Tue, 09 Jun 2020 20:56:28 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": [ - "b85a90b3-b10c-44b2-bd97-d16cc5cf71c4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0" - ], - "Date": [ - "Tue, 09 Jun 2020 20:56: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\": \"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": [ - "bd08d66e-8c70-45e2-914e-43e6c8c6929a" - ], - "Accept-Language": [ - "en-US" - ], - "ocp-date": [ - "Tue, 09 Jun 2020 20:56:49 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": [ - "8c29a6e4-f420-4ff8-b888-6a3057787401" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0" - ], - "Date": [ - "Tue, 09 Jun 2020 20:56:48 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": [ - "a31c6955-fd8f-4142-b586-b008ccb121df" - ], - "Accept-Language": [ - "en-US" - ], - "ocp-date": [ - "Tue, 09 Jun 2020 20:57:09 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": [ - "d0079204-1fbb-472a-a433-f0b1e81d04ec" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0" - ], - "Date": [ - "Tue, 09 Jun 2020 20:57:09 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": [ - "2b9d271d-c6ad-4b72-9e4c-60838285e02b" - ], - "Accept-Language": [ - "en-US" - ], - "ocp-date": [ - "Tue, 09 Jun 2020 20:57:29 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": [ - "caf6aff3-1817-4327-9563-9902a881e8f8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0" - ], - "Date": [ - "Tue, 09 Jun 2020 20:57:29 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": [ - "fcd11dc8-546e-446b-89ae-8b70e02db181" - ], - "Accept-Language": [ - "en-US" - ], - "ocp-date": [ - "Tue, 09 Jun 2020 20:57:49 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": [ - "540c171a-94bc-4694-9b98-18852adc23dc" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0" - ], - "Date": [ - "Tue, 09 Jun 2020 20:57:49 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": [ - "e1fb9573-658d-4d04-82ab-9ae36468b2a0" - ], - "Accept-Language": [ - "en-US" - ], - "ocp-date": [ - "Tue, 09 Jun 2020 20:58:09 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": [ - "c182129b-cc99-431d-b5fd-a8f6c263c7eb" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0" - ], - "Date": [ - "Tue, 09 Jun 2020 20:58:09 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": [ - "b271f37b-0e1a-46f7-9949-935d9ecb511b" - ], - "Accept-Language": [ - "en-US" - ], - "ocp-date": [ - "Tue, 09 Jun 2020 20:58:29 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": [ - "7746b42d-a5be-496d-adcd-7db4c0101313" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0" - ], - "Date": [ - "Tue, 09 Jun 2020 20:58:29 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": [ - "fe812e93-41a0-4d8c-b902-50728fcf8389" - ], - "Accept-Language": [ - "en-US" - ], - "ocp-date": [ - "Tue, 09 Jun 2020 20:58:50 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": [ - "9911c343-3b0c-4b36-a5f9-3ed140d8ee04" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0" - ], - "Date": [ - "Tue, 09 Jun 2020 20:58:50 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": [ - "9b69a1cf-36a7-41c2-8270-7ed9be304845" - ], - "Accept-Language": [ - "en-US" - ], - "ocp-date": [ - "Tue, 09 Jun 2020 20:59:10 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": [ - "adb34b55-cbe1-44bd-9491-312ea76136e5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0" - ], - "Date": [ - "Tue, 09 Jun 2020 20:59:10 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": [ - "e0a6bfe2-18d1-4094-a20c-4216a9644c5d" - ], - "Accept-Language": [ - "en-US" - ], - "ocp-date": [ - "Tue, 09 Jun 2020 20:59:30 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": [ - "1a8926cf-c814-4ecb-aad5-e5d94b4b03ed" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0" - ], - "Date": [ - "Tue, 09 Jun 2020 20:59:30 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": [ - "5e5622ef-212d-4459-ae00-248d8ebbdf14" - ], - "Accept-Language": [ - "en-US" - ], - "ocp-date": [ - "Tue, 09 Jun 2020 20:59:50 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": [ - "6966c532-d0f7-4325-a1f0-fdb9c3ec3500" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0" - ], - "Date": [ - "Tue, 09 Jun 2020 20:59:50 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": [ - "03aac620-db80-49cf-8a9c-e84f6bdf682b" - ], - "Accept-Language": [ - "en-US" - ], - "ocp-date": [ - "Tue, 09 Jun 2020 21:00:10 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": [ - "4e1a0d29-85cb-494b-8771-83d1c90e8275" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0" - ], - "Date": [ - "Tue, 09 Jun 2020 21:00:10 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}", - "StatusCode": 200 - }, - { - "RequestUri": "/jobs?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAyMC0wMy0wMS4xMS4w", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "client-request-id": [ - "616086e6-7b1d-43b8-b628-ef6fb48ad19d" - ], - "Accept-Language": [ - "en-US" - ], - "ocp-date": [ - "Tue, 09 Jun 2020 21:00:30 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": [ - "0ca103ac-8d11-415b-aff7-b1f10e1ac34a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0" - ], - "Date": [ - "Tue, 09 Jun 2020 21:00:31 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}", - "StatusCode": 200 - }, - { - "RequestUri": "/jobs?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAyMC0wMy0wMS4xMS4w", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "client-request-id": [ - "8ad481e7-cce8-415b-86c4-10f232a160f7" - ], - "Accept-Language": [ - "en-US" - ], - "ocp-date": [ - "Tue, 09 Jun 2020 21:00:51 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": [ - "f074c1fc-9f1e-4f78-8678-f8cdbc63fee3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0" - ], - "Date": [ - "Tue, 09 Jun 2020 21:00:51 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}", - "StatusCode": 200 - }, - { - "RequestUri": "/jobs?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAyMC0wMy0wMS4xMS4w", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "client-request-id": [ - "38484955-51e9-4540-9a08-c0a64055a67a" - ], - "Accept-Language": [ - "en-US" - ], - "ocp-date": [ - "Tue, 09 Jun 2020 21:01:11 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": [ - "f3973013-65d5-40e8-a984-b31167d468a4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0" - ], - "Date": [ - "Tue, 09 Jun 2020 21:01:11 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}", - "StatusCode": 200 - }, - { - "RequestUri": "/jobs?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAyMC0wMy0wMS4xMS4w", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "client-request-id": [ - "3928600e-3479-4782-a162-ea75c49864c3" - ], - "Accept-Language": [ - "en-US" - ], - "ocp-date": [ - "Tue, 09 Jun 2020 21:01:31 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": [ - "bd9c21d0-0d77-40aa-bc3f-39b8aed6292c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0" - ], - "Date": [ - "Tue, 09 Jun 2020 21:01:31 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}", - "StatusCode": 200 - }, - { - "RequestUri": "/jobs?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAyMC0wMy0wMS4xMS4w", + "RequestUri": "/jobs?api-version=2022-01-01.15.0", + "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAyMi0wMS0wMS4xNS4w", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "a4270028-36dd-471d-ba2f-478caade02a6" + "a096ca37-d6b3-444e-9b93-7f1de2c55764" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 21:01:51 GMT" + "Tue, 15 Feb 2022 19:31: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.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", "AzurePowershell/Az1.0.0" ] }, @@ -1517,7 +171,7 @@ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "02a43e4f-4e82-4974-8380-e6c59828d68b" + "dfba11e6-e793-4f3b-84af-e2afca575c47" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1529,35 +183,35 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 21:01:51 GMT" + "Tue, 15 Feb 2022 19:31:24 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\": \"taskId-1\",\r\n \"url\": \"https://mikeportal.eastus.batch.azure.com/jobs/taskId-1\",\r\n \"eTag\": \"0x8D9E6773E118169\",\r\n \"lastModified\": \"2022-02-02T18:10:06.6467177Z\",\r\n \"creationTime\": \"2022-02-02T18:10:06.6269112Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2022-02-02T18:10:06.6467177Z\",\r\n \"priority\": 0,\r\n \"maxParallelTasks\": -1,\r\n \"usesTaskDependencies\": false,\r\n \"allowTaskPreemption\": 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\": \"2022-02-02T18:10:06.6467177Z\",\r\n \"poolId\": \"testPool\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"performexitoptionsjobaction\"\r\n },\r\n {\r\n \"id\": \"testJobCompletesWhenTaskFails\",\r\n \"url\": \"https://mikeportal.eastus.batch.azure.com/jobs/testJobCompletesWhenTaskFails\",\r\n \"eTag\": \"0x8D9F0B9C12D8A5A\",\r\n \"lastModified\": \"2022-02-15T19:31:25.0239066Z\",\r\n \"creationTime\": \"2022-02-15T19:31:25.0019076Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2022-02-15T19:31:25.0239066Z\",\r\n \"priority\": 0,\r\n \"maxParallelTasks\": -1,\r\n \"usesTaskDependencies\": false,\r\n \"allowTaskPreemption\": 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\": \"2022-02-15T19:31:25.0239066Z\",\r\n \"poolId\": \"testPool\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"performexitoptionsjobaction\"\r\n },\r\n {\r\n \"id\": \"testDisableEnableTerminateJobSchedule:job-1\",\r\n \"url\": \"https://mikeportal.eastus.batch.azure.com/jobs/testDisableEnableTerminateJobSchedule:job-1\",\r\n \"eTag\": \"0x8D9F0B8F2E7E80D\",\r\n \"lastModified\": \"2022-02-15T19:25:38.9569037Z\",\r\n \"creationTime\": \"2022-02-15T19:25:38.9349057Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2022-02-15T19:25:41.2313847Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2022-02-15T19:25:38.9569037Z\",\r\n \"priority\": 0,\r\n \"maxParallelTasks\": -1,\r\n \"usesTaskDependencies\": false,\r\n \"allowTaskPreemption\": 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\": \"2022-02-15T19:25:38.9569037Z\",\r\n \"endTime\": \"2022-02-15T19:25:41.2313847Z\",\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\": \"testjob\",\r\n \"url\": \"https://mikeportal.eastus.batch.azure.com/jobs/testjob\",\r\n \"eTag\": \"0x8D9E67322FE685E\",\r\n \"lastModified\": \"2022-02-02T17:40:43.2361566Z\",\r\n \"creationTime\": \"2022-02-02T17:39:33.860522Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2022-02-02T17:40:43.9195495Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2022-02-02T17:39:34.2098072Z\",\r\n \"priority\": 0,\r\n \"maxParallelTasks\": -1,\r\n \"usesTaskDependencies\": false,\r\n \"allowTaskPreemption\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"commonEnvironmentSettings\": [],\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2022-02-02T17:39:34.2098072Z\",\r\n \"endTime\": \"2022-02-02T17:40:43.9195495Z\",\r\n \"poolId\": \"testPool\",\r\n \"terminateReason\": \"UserTerminate\"\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=2022-01-01.15.0", + "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAyMi0wMS0wMS4xNS4w", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "fe61d113-10dd-4c53-97b0-62a6dbaa2582" + "975b768a-ff19-4da2-bf16-9307d359b995" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 21:02:11 GMT" + "Tue, 15 Feb 2022 19:31: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.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", "AzurePowershell/Az1.0.0" ] }, @@ -1569,7 +223,7 @@ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "5fda4ae4-8a0c-4005-94de-d5df900aac1d" + "db4f0ac4-7c7a-465c-978c-159e69e6d4c7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1581,35 +235,35 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 21:02:11 GMT" + "Tue, 15 Feb 2022 19:31:24 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\": \"taskId-1\",\r\n \"url\": \"https://mikeportal.eastus.batch.azure.com/jobs/taskId-1\",\r\n \"eTag\": \"0x8D9E6773E118169\",\r\n \"lastModified\": \"2022-02-02T18:10:06.6467177Z\",\r\n \"creationTime\": \"2022-02-02T18:10:06.6269112Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2022-02-02T18:10:06.6467177Z\",\r\n \"priority\": 0,\r\n \"maxParallelTasks\": -1,\r\n \"usesTaskDependencies\": false,\r\n \"allowTaskPreemption\": 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\": \"2022-02-02T18:10:06.6467177Z\",\r\n \"poolId\": \"testPool\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"performexitoptionsjobaction\"\r\n },\r\n {\r\n \"id\": \"testJobCompletesWhenTaskFails\",\r\n \"url\": \"https://mikeportal.eastus.batch.azure.com/jobs/testJobCompletesWhenTaskFails\",\r\n \"eTag\": \"0x8D9F0B9C12D8A5A\",\r\n \"lastModified\": \"2022-02-15T19:31:25.0239066Z\",\r\n \"creationTime\": \"2022-02-15T19:31:25.0019076Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2022-02-15T19:31:25.0239066Z\",\r\n \"priority\": 0,\r\n \"maxParallelTasks\": -1,\r\n \"usesTaskDependencies\": false,\r\n \"allowTaskPreemption\": 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\": \"2022-02-15T19:31:25.0239066Z\",\r\n \"poolId\": \"testPool\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"performexitoptionsjobaction\"\r\n },\r\n {\r\n \"id\": \"testDisableEnableTerminateJobSchedule:job-1\",\r\n \"url\": \"https://mikeportal.eastus.batch.azure.com/jobs/testDisableEnableTerminateJobSchedule:job-1\",\r\n \"eTag\": \"0x8D9F0B8F2E7E80D\",\r\n \"lastModified\": \"2022-02-15T19:25:38.9569037Z\",\r\n \"creationTime\": \"2022-02-15T19:25:38.9349057Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2022-02-15T19:25:41.2313847Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2022-02-15T19:25:38.9569037Z\",\r\n \"priority\": 0,\r\n \"maxParallelTasks\": -1,\r\n \"usesTaskDependencies\": false,\r\n \"allowTaskPreemption\": 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\": \"2022-02-15T19:25:38.9569037Z\",\r\n \"endTime\": \"2022-02-15T19:25:41.2313847Z\",\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\": \"testjob\",\r\n \"url\": \"https://mikeportal.eastus.batch.azure.com/jobs/testjob\",\r\n \"eTag\": \"0x8D9E67322FE685E\",\r\n \"lastModified\": \"2022-02-02T17:40:43.2361566Z\",\r\n \"creationTime\": \"2022-02-02T17:39:33.860522Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2022-02-02T17:40:43.9195495Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2022-02-02T17:39:34.2098072Z\",\r\n \"priority\": 0,\r\n \"maxParallelTasks\": -1,\r\n \"usesTaskDependencies\": false,\r\n \"allowTaskPreemption\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"commonEnvironmentSettings\": [],\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2022-02-02T17:39:34.2098072Z\",\r\n \"endTime\": \"2022-02-02T17:40:43.9195495Z\",\r\n \"poolId\": \"testPool\",\r\n \"terminateReason\": \"UserTerminate\"\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=2022-01-01.15.0", + "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAyMi0wMS0wMS4xNS4w", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "c6a3407b-e94d-4213-b04b-c276e98a35a0" + "867b0f2d-66d1-4e58-9e50-410825bd408d" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 21:02:32 GMT" + "Tue, 15 Feb 2022 19:31: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.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", "AzurePowershell/Az1.0.0" ] }, @@ -1621,7 +275,7 @@ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "ed7bcff9-c3b2-4a79-98e2-cd9aa132a2e1" + "141a63cc-9ef7-4f9e-8f69-407538ae3ed8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1633,35 +287,35 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 21:02:32 GMT" + "Tue, 15 Feb 2022 19:31:45 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\": \"taskId-1\",\r\n \"url\": \"https://mikeportal.eastus.batch.azure.com/jobs/taskId-1\",\r\n \"eTag\": \"0x8D9E6773E118169\",\r\n \"lastModified\": \"2022-02-02T18:10:06.6467177Z\",\r\n \"creationTime\": \"2022-02-02T18:10:06.6269112Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2022-02-02T18:10:06.6467177Z\",\r\n \"priority\": 0,\r\n \"maxParallelTasks\": -1,\r\n \"usesTaskDependencies\": false,\r\n \"allowTaskPreemption\": 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\": \"2022-02-02T18:10:06.6467177Z\",\r\n \"poolId\": \"testPool\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"performexitoptionsjobaction\"\r\n },\r\n {\r\n \"id\": \"testDisableEnableTerminateJobSchedule:job-1\",\r\n \"url\": \"https://mikeportal.eastus.batch.azure.com/jobs/testDisableEnableTerminateJobSchedule:job-1\",\r\n \"eTag\": \"0x8D9F0B8F2E7E80D\",\r\n \"lastModified\": \"2022-02-15T19:25:38.9569037Z\",\r\n \"creationTime\": \"2022-02-15T19:25:38.9349057Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2022-02-15T19:25:41.2313847Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2022-02-15T19:25:38.9569037Z\",\r\n \"priority\": 0,\r\n \"maxParallelTasks\": -1,\r\n \"usesTaskDependencies\": false,\r\n \"allowTaskPreemption\": 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\": \"2022-02-15T19:25:38.9569037Z\",\r\n \"endTime\": \"2022-02-15T19:25:41.2313847Z\",\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\": \"testjob\",\r\n \"url\": \"https://mikeportal.eastus.batch.azure.com/jobs/testjob\",\r\n \"eTag\": \"0x8D9E67322FE685E\",\r\n \"lastModified\": \"2022-02-02T17:40:43.2361566Z\",\r\n \"creationTime\": \"2022-02-02T17:39:33.860522Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2022-02-02T17:40:43.9195495Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2022-02-02T17:39:34.2098072Z\",\r\n \"priority\": 0,\r\n \"maxParallelTasks\": -1,\r\n \"usesTaskDependencies\": false,\r\n \"allowTaskPreemption\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"commonEnvironmentSettings\": [],\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2022-02-02T17:39:34.2098072Z\",\r\n \"endTime\": \"2022-02-02T17:40:43.9195495Z\",\r\n \"poolId\": \"testPool\",\r\n \"terminateReason\": \"UserTerminate\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n },\r\n {\r\n \"id\": \"testJobCompletesWhenTaskFails\",\r\n \"url\": \"https://mikeportal.eastus.batch.azure.com/jobs/testJobCompletesWhenTaskFails\",\r\n \"eTag\": \"0x8D9F0B9C471B980\",\r\n \"lastModified\": \"2022-02-15T19:31:30.5039232Z\",\r\n \"creationTime\": \"2022-02-15T19:31:25.0019076Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2022-02-15T19:31:30.9734202Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2022-02-15T19:31:25.0239066Z\",\r\n \"priority\": 0,\r\n \"maxParallelTasks\": -1,\r\n \"usesTaskDependencies\": false,\r\n \"allowTaskPreemption\": 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\": \"2022-02-15T19:31:25.0239066Z\",\r\n \"endTime\": \"2022-02-15T19:31:30.9734202Z\",\r\n \"poolId\": \"testPool\",\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=2022-01-01.15.0", + "EncodedRequestUri": "L2pvYnMvdGVzdEpvYkNvbXBsZXRlc1doZW5UYXNrRmFpbHM/YXBpLXZlcnNpb249MjAyMi0wMS0wMS4xNS4w", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "91ef3a0f-16e5-476a-b7ae-9752bab191a4" + "f18f5876-e8ed-46cb-8379-fa1ee6a568ce" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 21:02:52 GMT" + "Tue, 15 Feb 2022 19:32: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.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", "AzurePowershell/Az1.0.0" ], "Content-Length": [ @@ -1676,7 +330,7 @@ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "d8f06cdb-7902-44d2-8ecd-0c9c731f3c26" + "c52720c9-e7d9-4845-a194-a806628655d9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1688,7 +342,7 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 21:02:52 GMT" + "Tue, 15 Feb 2022 19:32:05 GMT" ] }, "ResponseBody": "", @@ -1697,9 +351,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..6ed88ddb5430 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=2022-01-01.15.0", + "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAyMi0wMS0wMS4xNS4w", "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" + "51950dad-6292-4db5-8e18-89c024d832e4" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 20:51:44 GMT" + "Tue, 15 Feb 2022 19:31: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.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", "AzurePowershell/Az1.0.0" ], "Content-Type": [ @@ -34,16 +34,16 @@ "chunked" ], "ETag": [ - "0x8D80CB6F88C197F" + "0x8D9F0B9B7AEDC42" ], "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" + "d3293528-b122-497d-bb72-23dec90b86f3" ], "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" + "Tue, 15 Feb 2022 19:31:08 GMT" ], "Last-Modified": [ - "Tue, 09 Jun 2020 20:52:06 GMT" + "Tue, 15 Feb 2022 19:31:09 GMT" ] }, "ResponseBody": "", "StatusCode": 201 }, { - "RequestUri": "/jobs/testDisableEnableTerminateJob/disable?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L2pvYnMvdGVzdERpc2FibGVFbmFibGVUZXJtaW5hdGVKb2IvZGlzYWJsZT9hcGktdmVyc2lvbj0yMDIwLTAzLTAxLjExLjA=", + "RequestUri": "/jobs/testDisableEnableTerminateJob/disable?api-version=2022-01-01.15.0", + "EncodedRequestUri": "L2pvYnMvdGVzdERpc2FibGVFbmFibGVUZXJtaW5hdGVKb2IvZGlzYWJsZT9hcGktdmVyc2lvbj0yMDIyLTAxLTAxLjE1LjA=", "RequestMethod": "POST", "RequestBody": "{\r\n \"disableTasks\": \"terminate\"\r\n}", "RequestHeaders": { "client-request-id": [ - "c52aaffb-270c-45b0-aa1c-1ec82e9e1aac" + "5582b9c8-170a-4654-ac3f-295c7de2afaf" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 20:52:07 GMT" + "Tue, 15 Feb 2022 19:31:10 GMT" + ], + "x-ms-client-request-id": [ + "daf1a699-872f-48f5-ac61-d01623f63706" ], "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.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", "AzurePowershell/Az1.0.0" ], "Content-Type": [ @@ -101,13 +104,13 @@ "chunked" ], "ETag": [ - "0x8D80CB705C7F592" + "0x8D9F0B9B8321687" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "74d6f599-6233-40b7-984b-879cfa7a7e87" + "f3b735bf-4fc6-40e8-ba6e-99ed0faee51e" ], "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" + "Tue, 15 Feb 2022 19:31:09 GMT" ], "Last-Modified": [ - "Tue, 09 Jun 2020 20:52:28 GMT" + "Tue, 15 Feb 2022 19:31:09 GMT" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/jobs/testDisableEnableTerminateJob?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L2pvYnMvdGVzdERpc2FibGVFbmFibGVUZXJtaW5hdGVKb2I/YXBpLXZlcnNpb249MjAyMC0wMy0wMS4xMS4w", + "RequestUri": "/jobs/testDisableEnableTerminateJob?api-version=2022-01-01.15.0", + "EncodedRequestUri": "L2pvYnMvdGVzdERpc2FibGVFbmFibGVUZXJtaW5hdGVKb2I/YXBpLXZlcnNpb249MjAyMi0wMS0wMS4xNS4w", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "3e2af29b-c398-4621-9f55-0d54fb6cce1f" + "3c130031-1e01-46d2-a477-5cb6af02c348" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 20:52:38 GMT" + "Tue, 15 Feb 2022 19:31:20 GMT" + ], + "x-ms-client-request-id": [ + "8925a8af-28a6-4fed-a440-073dfdcc8715" ], "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.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", "AzurePowershell/Az1.0.0" ] }, @@ -159,13 +165,13 @@ "chunked" ], "ETag": [ - "0x8D80CB705C7F592" + "0x8D9F0B9B8321687" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "bdb1c793-0773-4aad-b7b0-0641b6dff040" + "3b0cc029-322c-4c81-b4d0-3ee59b581cc8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -177,38 +183,41 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 20:52:39 GMT" + "Tue, 15 Feb 2022 19:31:19 GMT" ], "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Tue, 09 Jun 2020 20:52:28 GMT" + "Tue, 15 Feb 2022 19:31:09 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\": \"0x8D9F0B9B8321687\",\r\n \"lastModified\": \"2022-02-15T19:31:09.9542151Z\",\r\n \"creationTime\": \"2022-02-15T19:31:09.0652002Z\",\r\n \"state\": \"disabled\",\r\n \"stateTransitionTime\": \"2022-02-15T19:31:10.8707362Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2022-02-15T19:31:09.0942018Z\",\r\n \"priority\": 0,\r\n \"maxParallelTasks\": -1,\r\n \"usesTaskDependencies\": false,\r\n \"allowTaskPreemption\": 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\": \"2022-02-15T19:31:09.0942018Z\",\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=2022-01-01.15.0", + "EncodedRequestUri": "L2pvYnMvdGVzdERpc2FibGVFbmFibGVUZXJtaW5hdGVKb2I/YXBpLXZlcnNpb249MjAyMi0wMS0wMS4xNS4w", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "006c0bfc-95df-4908-a978-932a1db981df" + "e7c596c3-12ac-4bdb-bc45-a298f53ed185" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 20:52:39 GMT" + "Tue, 15 Feb 2022 19:31:20 GMT" + ], + "x-ms-client-request-id": [ + "7155b3f9-c79d-4683-96f1-4904bd18e76a" ], "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.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", "AzurePowershell/Az1.0.0" ] }, @@ -217,13 +226,13 @@ "chunked" ], "ETag": [ - "0x8D80CB70C4CD3E9" + "0x8D9F0B9BE6B059D" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "ab93416e-a826-4038-8c46-16a009c4562c" + "51656120-faf9-4675-8ce0-022cdfe7c078" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -235,38 +244,41 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 20:52:39 GMT" + "Tue, 15 Feb 2022 19:31:19 GMT" ], "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Tue, 09 Jun 2020 20:52:39 GMT" + "Tue, 15 Feb 2022 19:31:20 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\": \"0x8D9F0B9BE6B059D\",\r\n \"lastModified\": \"2022-02-15T19:31:20.3936669Z\",\r\n \"creationTime\": \"2022-02-15T19:31:09.0652002Z\",\r\n \"state\": \"terminating\",\r\n \"stateTransitionTime\": \"2022-02-15T19:31:20.3936669Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2022-02-15T19:31:20.1706648Z\",\r\n \"priority\": 0,\r\n \"maxParallelTasks\": -1,\r\n \"usesTaskDependencies\": false,\r\n \"allowTaskPreemption\": 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\": \"2022-02-15T19:31:09.0942018Z\",\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=2022-01-01.15.0", + "EncodedRequestUri": "L2pvYnMvdGVzdERpc2FibGVFbmFibGVUZXJtaW5hdGVKb2IvZW5hYmxlP2FwaS12ZXJzaW9uPTIwMjItMDEtMDEuMTUuMA==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "e6d75288-d1b7-4db5-afaf-39b45ae8749f" + "c73e5dad-db43-404b-8913-0e1d07538c31" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 20:52:39 GMT" + "Tue, 15 Feb 2022 19:31:20 GMT" + ], + "x-ms-client-request-id": [ + "97185312-1a53-4c85-af57-1e3aaaaaab59" ], "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.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", "AzurePowershell/Az1.0.0" ], "Content-Length": [ @@ -278,13 +290,13 @@ "chunked" ], "ETag": [ - "0x8D80CB70C0913B3" + "0x8D9F0B9BE48FE98" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "0f0d7996-835f-4ed4-8533-df36ebaffa1d" + "0e268d73-a9cd-4f53-9009-174ccd7306a1" ], "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" + "Tue, 15 Feb 2022 19:31:19 GMT" ], "Last-Modified": [ - "Tue, 09 Jun 2020 20:52:39 GMT" + "Tue, 15 Feb 2022 19:31:20 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=2022-01-01.15.0&$filter=id%20eq%20%27testDisableEnableTerminateJob%27", + "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAyMi0wMS0wMS4xNS4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3REaXNhYmxlRW5hYmxlVGVybWluYXRlSm9iJTI3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "a639af05-8df5-4ee8-8fda-3ee6935d612e" + "086c5ab3-810f-4278-8276-dd205ac2cac2" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 20:52:39 GMT" + "Tue, 15 Feb 2022 19:31:20 GMT" + ], + "x-ms-client-request-id": [ + "71846d14-a2e0-49b1-ac9c-028cb8070b04" ], "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.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", "AzurePowershell/Az1.0.0" ] }, @@ -339,7 +354,7 @@ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "9f773298-c999-4632-97fc-61984286873b" + "feaf4e56-d6ed-4548-b499-9e9f3fda1504" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -351,35 +366,38 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 20:52:39 GMT" + "Tue, 15 Feb 2022 19:31: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\": \"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\": \"0x8D9F0B9BE48FE98\",\r\n \"lastModified\": \"2022-02-15T19:31:20.1706648Z\",\r\n \"creationTime\": \"2022-02-15T19:31:09.0652002Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2022-02-15T19:31:20.1706648Z\",\r\n \"previousState\": \"disabled\",\r\n \"previousStateTransitionTime\": \"2022-02-15T19:31:10.8707362Z\",\r\n \"priority\": 0,\r\n \"maxParallelTasks\": -1,\r\n \"usesTaskDependencies\": false,\r\n \"allowTaskPreemption\": 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\": \"2022-02-15T19:31:09.0942018Z\",\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=2022-01-01.15.0", + "EncodedRequestUri": "L2pvYnMvdGVzdERpc2FibGVFbmFibGVUZXJtaW5hdGVKb2IvdGVybWluYXRlP2FwaS12ZXJzaW9uPTIwMjItMDEtMDEuMTUuMA==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "390bec50-7e88-4f42-a653-6e536d019277" + "60b48cd2-fdd1-43e5-b831-78463b7d05b7" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 20:52:39 GMT" + "Tue, 15 Feb 2022 19:31:20 GMT" + ], + "x-ms-client-request-id": [ + "2867916e-4eba-42e4-a70e-7564dc1d66c1" ], "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.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", "AzurePowershell/Az1.0.0" ], "Content-Length": [ @@ -391,13 +409,13 @@ "chunked" ], "ETag": [ - "0x8D80CB70C4CD3E9" + "0x8D9F0B9BE6B059D" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "67ef15bb-f17c-4bb8-b5ce-e74e8dfa5ffd" + "413ded63-bf2b-4018-967b-7942a299b6ae" ], "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" + "Tue, 15 Feb 2022 19:31:19 GMT" ], "Last-Modified": [ - "Tue, 09 Jun 2020 20:52:39 GMT" + "Tue, 15 Feb 2022 19:31:20 GMT" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/jobs/testDisableEnableTerminateJob?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L2pvYnMvdGVzdERpc2FibGVFbmFibGVUZXJtaW5hdGVKb2I/YXBpLXZlcnNpb249MjAyMC0wMy0wMS4xMS4w", + "RequestUri": "/jobs/testDisableEnableTerminateJob?api-version=2022-01-01.15.0", + "EncodedRequestUri": "L2pvYnMvdGVzdERpc2FibGVFbmFibGVUZXJtaW5hdGVKb2I/YXBpLXZlcnNpb249MjAyMi0wMS0wMS4xNS4w", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "ebb7a325-70dd-4b4d-ac46-b60b44dd79c3" + "cd403433-8b9c-4642-bbb5-91cdb219e1c6" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 20:52:40 GMT" + "Tue, 15 Feb 2022 19:31:20 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.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", "AzurePowershell/Az1.0.0" ], "Content-Length": [ @@ -455,7 +473,7 @@ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "0abd7c0c-112c-4fde-8771-a6a6c3b0b565" + "d3fa52d1-6256-4a45-bb2a-13a65b02f6e4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -467,7 +485,7 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 20:52:41 GMT" + "Tue, 15 Feb 2022 19:31:21 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..b6b7747c9148 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=2022-01-01.15.0", + "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAyMi0wMS0wMS4xNS4w", "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" + "874a9045-1d24-45c3-8d1e-815cd54d750c" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 21:02:54 GMT" + "Tue, 15 Feb 2022 19:32:11 GMT" + ], + "x-ms-client-request-id": [ + "15cc7a90-a2b4-4acc-b98b-222d0e4c3190" ], "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.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", "AzurePowershell/Az1.0.0" ], "Content-Type": [ @@ -34,16 +37,16 @@ "chunked" ], "ETag": [ - "0x8D80CB8879C3DE0" + "0x8D9F0B9DCFAC727" ], "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" + "535c44f1-d9d0-48d4-bee2-c75d83f32d1d" ], "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" + "Tue, 15 Feb 2022 19:32:11 GMT" ], "Last-Modified": [ - "Tue, 09 Jun 2020 21:03:16 GMT" + "Tue, 15 Feb 2022 19:32:11 GMT" ] }, "ResponseBody": "", "StatusCode": 201 }, { - "RequestUri": "/jobs?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAyMC0wMy0wMS4xMS4w", + "RequestUri": "/jobs?api-version=2022-01-01.15.0", + "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAyMi0wMS0wMS4xNS4w", "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" + "2fb61660-c35a-4f50-9493-5107e43741f5" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 21:03:16 GMT" + "Tue, 15 Feb 2022 19:32:12 GMT" + ], + "x-ms-client-request-id": [ + "1891ebff-0031-4aab-889e-aa1e3d516d42" ], "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.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", "AzurePowershell/Az1.0.0" ], "Content-Type": [ @@ -101,16 +107,16 @@ "chunked" ], "ETag": [ - "0x8D80CB887BC74F5" + "0x8D9F0B9DD19DCCF" ], "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" + "918b6c8c-7d43-4afb-afef-5e3832d7a2d0" ], "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" + "Tue, 15 Feb 2022 19:32:11 GMT" ], "Last-Modified": [ - "Tue, 09 Jun 2020 21:03:16 GMT" + "Tue, 15 Feb 2022 19:32:11 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=2022-01-01.15.0&$filter=id%20eq%20%27job1%27%20or%20id%20eq%20%27job2%27", + "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAyMi0wMS0wMS4xNS4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN2pvYjElMjclMjBvciUyMGlkJTIwZXElMjAlMjdqb2IyJTI3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "16828132-4461-48c0-b9cc-9431ebe7a055" + "4244a9d0-a703-4f8c-b24a-0b07dd7e3e06" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 21:03:16 GMT" + "Tue, 15 Feb 2022 19:32:12 GMT" + ], + "x-ms-client-request-id": [ + "1015983a-9fac-485a-a203-88b265bb681e" ], "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.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", "AzurePowershell/Az1.0.0" ] }, @@ -165,7 +174,7 @@ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "71244db0-c726-4985-9b7b-15f2bf33457f" + "ef3322f7-50af-44db-ac93-0d96d194e302" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -177,42 +186,45 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 21:03:16 GMT" + "Tue, 15 Feb 2022 19:32:11 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\": \"0x8D9F0B9DCFAC727\",\r\n \"lastModified\": \"2022-02-15T19:32:11.6674343Z\",\r\n \"creationTime\": \"2022-02-15T19:32:11.4344465Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2022-02-15T19:32:11.6674343Z\",\r\n \"priority\": 0,\r\n \"maxParallelTasks\": -1,\r\n \"usesTaskDependencies\": false,\r\n \"allowTaskPreemption\": 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\": \"2022-02-15T19:32:11.6674343Z\",\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\": \"0x8D9F0B9DD19DCCF\",\r\n \"lastModified\": \"2022-02-15T19:32:11.8711503Z\",\r\n \"creationTime\": \"2022-02-15T19:32:11.8024327Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2022-02-15T19:32:11.8711503Z\",\r\n \"priority\": 3,\r\n \"maxParallelTasks\": -1,\r\n \"usesTaskDependencies\": false,\r\n \"allowTaskPreemption\": 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\": \"2022-02-15T19:32:11.8711503Z\",\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=2022-01-01.15.0", + "EncodedRequestUri": "L2pvYnMvam9iMj9hcGktdmVyc2lvbj0yMDIyLTAxLTAxLjE1LjA=", "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}", + "RequestBody": "{\r\n \"priority\": 5,\r\n \"maxParallelTasks\": -1,\r\n \"allowTaskPreemption\": 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 \"onAllTasksComplete\": \"noaction\"\r\n}", "RequestHeaders": { "client-request-id": [ - "fb026eb0-d15a-4007-8853-f1c0b282a70e" + "6293fb54-8f40-48ce-8794-54f7f3a38aeb" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 21:03:16 GMT" + "Tue, 15 Feb 2022 19:32:12 GMT" + ], + "x-ms-client-request-id": [ + "b5aa0a05-178c-4dac-bb36-8cae138d1eb0" ], "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.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", "AzurePowershell/Az1.0.0" ], "Content-Type": [ "application/json; odata=minimalmetadata; charset=utf-8" ], "Content-Length": [ - "217" + "277" ] }, "ResponseHeaders": { @@ -220,13 +232,13 @@ "chunked" ], "ETag": [ - "0x8D80CB887F90CDD" + "0x8D9F0B9DD3BE3AA" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "02d95bf0-477d-4a32-844f-706927817794" + "4b34704e-9526-47ce-b493-1c11fc22f159" ], "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" + "Tue, 15 Feb 2022 19:32:11 GMT" ], "Last-Modified": [ - "Tue, 09 Jun 2020 21:03:16 GMT" + "Tue, 15 Feb 2022 19:32:12 GMT" ] }, "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/jobs/job2?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L2pvYnMvam9iMj9hcGktdmVyc2lvbj0yMDIwLTAzLTAxLjExLjA=", + "RequestUri": "/jobs/job2?api-version=2022-01-01.15.0", + "EncodedRequestUri": "L2pvYnMvam9iMj9hcGktdmVyc2lvbj0yMDIyLTAxLTAxLjE1LjA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "60749693-153b-4df3-8880-78025f08be9a" + "c412169a-b2d6-41c2-bf77-c19be7b6ba2e" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 21:03:16 GMT" + "Tue, 15 Feb 2022 19:32:12 GMT" + ], + "x-ms-client-request-id": [ + "9693d795-fcf2-43d8-8eee-c1808f311dee" ], "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.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", "AzurePowershell/Az1.0.0" ] }, @@ -278,13 +293,13 @@ "chunked" ], "ETag": [ - "0x8D80CB887F90CDD" + "0x8D9F0B9DD3BE3AA" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "159fd4fc-e6c9-41c2-80f6-08f6dbcbc8c2" + "3436cf23-f04a-4641-bcbb-1bdadddbbab3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -296,38 +311,41 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 21:03:16 GMT" + "Tue, 15 Feb 2022 19:32:11 GMT" ], "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Tue, 09 Jun 2020 21:03:16 GMT" + "Tue, 15 Feb 2022 19:32:12 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\": \"0x8D9F0B9DD3BE3AA\",\r\n \"lastModified\": \"2022-02-15T19:32:12.0941482Z\",\r\n \"creationTime\": \"2022-02-15T19:32:11.8024327Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2022-02-15T19:32:11.8711503Z\",\r\n \"priority\": 5,\r\n \"maxParallelTasks\": -1,\r\n \"usesTaskDependencies\": false,\r\n \"allowTaskPreemption\": 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\": \"2022-02-15T19:32:11.8711503Z\",\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=2022-01-01.15.0", + "EncodedRequestUri": "L2pvYnMvam9iMT9hcGktdmVyc2lvbj0yMDIyLTAxLTAxLjE1LjA=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "0b93f176-9f91-410b-939b-f3e6bbd54d94" + "f3020d33-b9ca-423f-ab21-51fb75c7b62f" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 21:03:16 GMT" + "Tue, 15 Feb 2022 19:32:12 GMT" + ], + "x-ms-client-request-id": [ + "08d0f99a-51b6-48e0-9a0d-7e383885992f" ], "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.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", "AzurePowershell/Az1.0.0" ], "Content-Length": [ @@ -342,7 +360,7 @@ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "c5cd3019-4e8b-40a1-a097-48a2122c2d4d" + "47cd2287-cbeb-4123-8297-7cc96fd67136" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -354,32 +372,35 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 21:03:17 GMT" + "Tue, 15 Feb 2022 19:32:11 GMT" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/jobs/job2?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L2pvYnMvam9iMj9hcGktdmVyc2lvbj0yMDIwLTAzLTAxLjExLjA=", + "RequestUri": "/jobs/job2?api-version=2022-01-01.15.0", + "EncodedRequestUri": "L2pvYnMvam9iMj9hcGktdmVyc2lvbj0yMDIyLTAxLTAxLjE1LjA=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "7f2ff972-a4ea-4a83-8d47-313b115033ac" + "28ceab8b-8ff6-4930-9590-4ab582aac472" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 21:03:17 GMT" + "Tue, 15 Feb 2022 19:32:12 GMT" + ], + "x-ms-client-request-id": [ + "bd19bfaa-2e44-4159-b18a-c80cd7b66226" ], "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.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", "AzurePowershell/Az1.0.0" ], "Content-Length": [ @@ -394,7 +415,7 @@ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "c8649d1f-f623-4908-9220-9032933a12aa" + "fd5fc768-aa50-4d28-9c3e-2bf9de4c273c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -406,32 +427,35 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 21:03:17 GMT" + "Tue, 15 Feb 2022 19:32:11 GMT" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/jobs?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAyMC0wMy0wMS4xMS4w", + "RequestUri": "/jobs?api-version=2022-01-01.15.0", + "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAyMi0wMS0wMS4xNS4w", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "5e21d6e7-ab6a-4cbd-8147-54b3d2aa9307" + "7cf1ab8f-cb6d-49e0-8748-90cfebe37901" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 21:03:17 GMT" + "Tue, 15 Feb 2022 19:32:12 GMT" + ], + "x-ms-client-request-id": [ + "41379afd-fa93-43f1-bb39-b2ea4a06c795" ], "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.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", "AzurePowershell/Az1.0.0" ] }, @@ -443,7 +467,7 @@ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "24320807-7516-4d5c-9d05-617f54e7c61f" + "1aa07544-d581-453b-b7fa-baacffb394af" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -455,21 +479,21 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 21:03:17 GMT" + "Tue, 15 Feb 2022 19:32:11 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\": \"0x8D9F0B9DCFAC727\",\r\n \"lastModified\": \"2022-02-15T19:32:11.6674343Z\",\r\n \"creationTime\": \"2022-02-15T19:32:11.4344465Z\",\r\n \"state\": \"deleting\",\r\n \"stateTransitionTime\": \"2022-02-15T19:32:12.2361508Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2022-02-15T19:32:11.6674343Z\",\r\n \"priority\": 0,\r\n \"maxParallelTasks\": -1,\r\n \"usesTaskDependencies\": false,\r\n \"allowTaskPreemption\": 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\": \"2022-02-15T19:32:11.6674343Z\",\r\n \"poolId\": \"testPool\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"noaction\"\r\n },\r\n {\r\n \"id\": \"taskId-1\",\r\n \"url\": \"https://mikeportal.eastus.batch.azure.com/jobs/taskId-1\",\r\n \"eTag\": \"0x8D9E6773E118169\",\r\n \"lastModified\": \"2022-02-02T18:10:06.6467177Z\",\r\n \"creationTime\": \"2022-02-02T18:10:06.6269112Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2022-02-02T18:10:06.6467177Z\",\r\n \"priority\": 0,\r\n \"maxParallelTasks\": -1,\r\n \"usesTaskDependencies\": false,\r\n \"allowTaskPreemption\": 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\": \"2022-02-02T18:10:06.6467177Z\",\r\n \"poolId\": \"testPool\"\r\n },\r\n \"onAllTasksComplete\": \"noaction\",\r\n \"onTaskFailure\": \"performexitoptionsjobaction\"\r\n },\r\n {\r\n \"id\": \"testDisableEnableTerminateJobSchedule:job-1\",\r\n \"url\": \"https://mikeportal.eastus.batch.azure.com/jobs/testDisableEnableTerminateJobSchedule:job-1\",\r\n \"eTag\": \"0x8D9F0B8F2E7E80D\",\r\n \"lastModified\": \"2022-02-15T19:25:38.9569037Z\",\r\n \"creationTime\": \"2022-02-15T19:25:38.9349057Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2022-02-15T19:25:41.2313847Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2022-02-15T19:25:38.9569037Z\",\r\n \"priority\": 0,\r\n \"maxParallelTasks\": -1,\r\n \"usesTaskDependencies\": false,\r\n \"allowTaskPreemption\": 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\": \"2022-02-15T19:25:38.9569037Z\",\r\n \"endTime\": \"2022-02-15T19:25:41.2313847Z\",\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\": \"testjob\",\r\n \"url\": \"https://mikeportal.eastus.batch.azure.com/jobs/testjob\",\r\n \"eTag\": \"0x8D9E67322FE685E\",\r\n \"lastModified\": \"2022-02-02T17:40:43.2361566Z\",\r\n \"creationTime\": \"2022-02-02T17:39:33.860522Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2022-02-02T17:40:43.9195495Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2022-02-02T17:39:34.2098072Z\",\r\n \"priority\": 0,\r\n \"maxParallelTasks\": -1,\r\n \"usesTaskDependencies\": false,\r\n \"allowTaskPreemption\": false,\r\n \"constraints\": {\r\n \"maxWallClockTime\": \"P10675199DT2H48M5.4775807S\",\r\n \"maxTaskRetryCount\": 0\r\n },\r\n \"commonEnvironmentSettings\": [],\r\n \"poolInfo\": {\r\n \"poolId\": \"testPool\"\r\n },\r\n \"executionInfo\": {\r\n \"startTime\": \"2022-02-02T17:39:34.2098072Z\",\r\n \"endTime\": \"2022-02-02T17:40:43.9195495Z\",\r\n \"poolId\": \"testPool\",\r\n \"terminateReason\": \"UserTerminate\"\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..5f0d306b3b74 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" + "72a4df71-f909-42fa-a8f9-c1c1fd978cef" ], "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.19044.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.54" ] }, "ResponseHeaders": { @@ -30,13 +30,13 @@ "11999" ], "x-ms-request-id": [ - "e8318cba-f3c6-447f-b94c-27ccd3bc38cb" + "446c183f-3274-45b2-90bb-bac8de5d98f5" ], "x-ms-correlation-request-id": [ - "e8318cba-f3c6-447f-b94c-27ccd3bc38cb" + "446c183f-3274-45b2-90bb-bac8de5d98f5" ], "x-ms-routing-request-id": [ - "WESTUS:20200609T221412Z:e8318cba-f3c6-447f-b94c-27ccd3bc38cb" + "NORTHCENTRALUS:20220215T193215Z:446c183f-3274-45b2-90bb-bac8de5d98f5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -45,7 +45,7 @@ "nosniff" ], "Date": [ - "Tue, 09 Jun 2020 22:14:12 GMT" + "Tue, 15 Feb 2022 19:32:14 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -54,29 +54,29 @@ "-1" ], "Content-Length": [ - "4461" + "7848" ] }, - "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 \"Sweden Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-01-01\",\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 \"Sweden Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-01-01\",\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 \"Sweden Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-01-01\",\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 \"Sweden Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-01-01\",\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 \"2022-01-01\",\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 \"Sweden Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-01-01\",\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 \"Sweden Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-01-01\",\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 \"Sweden Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-01-01\",\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 \"Sweden Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-01-01\",\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 \"Sweden Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-01-01\",\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" + "b69a288a-c7e2-4bcb-80b7-d0d60188f6be" ], "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.19044.", + "Microsoft.Azure.Management.Batch.BatchManagementClient/14.0.0.0" ] }, "ResponseHeaders": { @@ -90,7 +90,7 @@ "11999" ], "x-ms-request-id": [ - "3f7b5d89-b0ca-491d-a986-3a41758990cb" + "ce5e1eb6-0a15-4f0e-a64c-60e1e7fa715b" ], "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" + "c1351713-c43c-4254-be3d-d91b43660a4b" ], "x-ms-routing-request-id": [ - "WESTUS:20200609T221412Z:d4a5130d-99b9-4ae0-87d1-accee2e39d22" + "NORTHCENTRALUS:20220215T193215Z:c1351713-c43c-4254-be3d-d91b43660a4b" ], "Date": [ - "Tue, 09 Jun 2020 22:14:11 GMT" + "Tue, 15 Feb 2022 19:32:15 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..5be1a637ed13 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=2022-01-01.15.0", + "EncodedRequestUri": "L3Bvb2xzP2FwaS12ZXJzaW9uPTIwMjItMDEtMDEuMTUuMA==", "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" + "89249ce1-e833-4b54-8724-0e49fde6d0ea" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:30:46 GMT" + "Tue, 15 Feb 2022 19:31: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.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", "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" + "0x8D9F0B9B4E44CC8" ], "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" + "d015128b-bbfd-4c5a-a060-450efb828e5f" ], "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" + "Tue, 15 Feb 2022 19:31:04 GMT" ], "Last-Modified": [ - "Tue, 09 Jun 2020 22:31:08 GMT" + "Tue, 15 Feb 2022 19:31:04 GMT" ] }, "ResponseBody": "", "StatusCode": 201 }, { - "RequestUri": "/pools/autoscalePool?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L3Bvb2xzL2F1dG9zY2FsZVBvb2w/YXBpLXZlcnNpb249MjAyMC0wMy0wMS4xMS4w", + "RequestUri": "/pools/autoscalePool?api-version=2022-01-01.15.0", + "EncodedRequestUri": "L3Bvb2xzL2F1dG9zY2FsZVBvb2w/YXBpLXZlcnNpb249MjAyMi0wMS0wMS4xNS4w", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "9e81977a-8bd0-435f-b6b1-3b375e4f61d5" + "1ee348b4-9c47-42b3-acc3-d977d5a220cc" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:31:08 GMT" + "Tue, 15 Feb 2022 19:31:05 GMT" + ], + "x-ms-client-request-id": [ + "6b41f6c1-6586-4def-bdc8-358cae7b5e03" ], "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.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", "AzurePowershell/Az1.0.0" ] }, @@ -95,13 +98,13 @@ "chunked" ], "ETag": [ - "0x8D80CC4CDEFCE4F" + "0x8D9F0B9B4E44CC8" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "c8df8686-6604-41cd-8ef4-92d6565a7771" + "5c17d735-3112-44c1-b7f3-64b352035cb4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -113,38 +116,41 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 22:31:30 GMT" + "Tue, 15 Feb 2022 19:31:04 GMT" ], "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Tue, 09 Jun 2020 22:31:08 GMT" + "Tue, 15 Feb 2022 19:31:04 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\": \"0x8D9F0B9B4E44CC8\",\r\n \"lastModified\": \"2022-02-15T19:31:04.4112584Z\",\r\n \"creationTime\": \"2022-02-15T19:31:04.4112584Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2022-02-15T19:31:04.4112584Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2022-02-15T19:31:04.4112584Z\",\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=2022-01-01.15.0", + "EncodedRequestUri": "L3Bvb2xzL2F1dG9zY2FsZVBvb2w/YXBpLXZlcnNpb249MjAyMi0wMS0wMS4xNS4w", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "ed107bbe-fb3b-401c-9db9-7c93c25e2a42" + "e840365f-2b5d-417f-817f-94bb62fafbd7" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:31:31 GMT" + "Tue, 15 Feb 2022 19:31:06 GMT" + ], + "x-ms-client-request-id": [ + "a851e41f-06a9-4daa-9b95-5c9bed3b5a80" ], "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.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", "AzurePowershell/Az1.0.0" ] }, @@ -153,13 +159,13 @@ "chunked" ], "ETag": [ - "0x8D80CC4DBA80528" + "0x8D9F0B9B5EA24D2" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "614009b1-c427-4b5e-a703-8586f01dc1ad" + "fdee3f45-037e-4926-b62f-c73e268e5f27" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -171,38 +177,41 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 22:31:31 GMT" + "Tue, 15 Feb 2022 19:31:05 GMT" ], "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Tue, 09 Jun 2020 22:31:31 GMT" + "Tue, 15 Feb 2022 19:31:06 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\": \"0x8D9F0B9B5EA24D2\",\r\n \"lastModified\": \"2022-02-15T19:31:06.1272786Z\",\r\n \"creationTime\": \"2022-02-15T19:31:04.4112584Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2022-02-15T19:31:04.4112584Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2022-02-15T19:31:06.1272786Z\",\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=2022-01-01.15.0", + "EncodedRequestUri": "L3Bvb2xzL2F1dG9zY2FsZVBvb2wvZW5hYmxlYXV0b3NjYWxlP2FwaS12ZXJzaW9uPTIwMjItMDEtMDEuMTUuMA==", "RequestMethod": "POST", "RequestBody": "{\r\n \"autoScaleFormula\": \"$TargetDedicatedNodes=0\",\r\n \"autoScaleEvaluationInterval\": \"PT8M\"\r\n}", "RequestHeaders": { "client-request-id": [ - "3bfdf46e-43c1-4b4e-976a-718475c6ecd2" + "96f28164-29f0-4e20-829b-9663b3cf9914" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:31:30 GMT" + "Tue, 15 Feb 2022 19:31:05 GMT" + ], + "x-ms-client-request-id": [ + "cd598980-143f-4b1c-9127-c8985e563f3f" ], "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.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", "AzurePowershell/Az1.0.0" ], "Content-Type": [ @@ -217,13 +226,13 @@ "chunked" ], "ETag": [ - "0x8D80CC4DB4B9256" + "0x8D9F0B9B4E44CC8" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "c71c1a38-d682-4648-9ba3-e494bb7bb3c6" + "9d85b744-0d38-45e2-ba90-2fe0c42faa0e" ], "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" + "Tue, 15 Feb 2022 19:31:05 GMT" ], "Last-Modified": [ - "Tue, 09 Jun 2020 22:31:30 GMT" + "Tue, 15 Feb 2022 19:31:04 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=2022-01-01.15.0&$filter=id%20eq%20%27autoscalePool%27", + "EncodedRequestUri": "L3Bvb2xzP2FwaS12ZXJzaW9uPTIwMjItMDEtMDEuMTUuMCYkZmlsdGVyPWlkJTIwZXElMjAlMjdhdXRvc2NhbGVQb29sJTI3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "eef16c44-68a9-4aca-81eb-060c07423d05" + "3a4b95c5-cd94-4593-ad41-2540fd88a669" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:31:30 GMT" + "Tue, 15 Feb 2022 19:31:06 GMT" + ], + "x-ms-client-request-id": [ + "3b6119cb-1baf-416a-87aa-f430f239c8c0" ], "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.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", "AzurePowershell/Az1.0.0" ] }, @@ -278,7 +290,7 @@ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "010ab620-c3e9-4eae-a6bc-b3d037ec66fc" + "f1402f78-5b5b-4ecc-bc20-afd7f70360c4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -290,35 +302,38 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 22:31:30 GMT" + "Tue, 15 Feb 2022 19:31:05 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\": \"0x8D9F0B9B4E44CC8\",\r\n \"lastModified\": \"2022-02-15T19:31:04.4112584Z\",\r\n \"creationTime\": \"2022-02-15T19:31:04.4112584Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2022-02-15T19:31:04.4112584Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2022-02-15T19:31:05.6962734Z\",\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=2022-01-01.15.0", + "EncodedRequestUri": "L3Bvb2xzL2F1dG9zY2FsZVBvb2wvZXZhbHVhdGVhdXRvc2NhbGU/YXBpLXZlcnNpb249MjAyMi0wMS0wMS4xNS4w", "RequestMethod": "POST", "RequestBody": "{\r\n \"autoScaleFormula\": \"$TargetDedicatedNodes=1\"\r\n}", "RequestHeaders": { "client-request-id": [ - "2e9f2868-4e09-49ae-820e-87581263ea5e" + "b30f77d0-27a9-4393-997a-24141838279f" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:31:30 GMT" + "Tue, 15 Feb 2022 19:31:06 GMT" + ], + "x-ms-client-request-id": [ + "503a790c-061d-4717-a909-9b22479f7376" ], "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.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", "AzurePowershell/Az1.0.0" ], "Content-Type": [ @@ -336,7 +351,7 @@ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "b7274790-f1b1-45ba-a39d-d2743cb2e161" + "3c607bcf-e6e3-45e7-a7a9-9901363c3a7c" ], "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" + "Tue, 15 Feb 2022 19:31:05 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\": \"2022-02-15T19:31:06.0223122Z\",\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=2022-01-01.15.0", + "EncodedRequestUri": "L3Bvb2xzL2F1dG9zY2FsZVBvb2wvZGlzYWJsZWF1dG9zY2FsZT9hcGktdmVyc2lvbj0yMDIyLTAxLTAxLjE1LjA=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "c7d892c7-8289-48d0-bd23-afe782d0c366" + "e1b42366-dda5-4721-b399-11565838acdb" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:31:31 GMT" + "Tue, 15 Feb 2022 19:31:06 GMT" + ], + "x-ms-client-request-id": [ + "cc3ea771-d695-4fae-8b64-94c3e9f523dc" ], "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.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", "AzurePowershell/Az1.0.0" ], "Content-Length": [ @@ -391,13 +409,13 @@ "chunked" ], "ETag": [ - "0x8D80CC4DBA80528" + "0x8D9F0B9B5EA24D2" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "f1aead4a-82dd-4d7f-902a-ea1c6afed619" + "e2f1bda2-bc47-43d5-8bfb-b12a930c7a3c" ], "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" + "Tue, 15 Feb 2022 19:31:05 GMT" ], "Last-Modified": [ - "Tue, 09 Jun 2020 22:31:31 GMT" + "Tue, 15 Feb 2022 19:31:06 GMT" ] }, "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/pools/autoscalePool?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L3Bvb2xzL2F1dG9zY2FsZVBvb2w/YXBpLXZlcnNpb249MjAyMC0wMy0wMS4xMS4w", + "RequestUri": "/pools/autoscalePool?api-version=2022-01-01.15.0", + "EncodedRequestUri": "L3Bvb2xzL2F1dG9zY2FsZVBvb2w/YXBpLXZlcnNpb249MjAyMi0wMS0wMS4xNS4w", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "aeb2d4dd-8c58-42a8-a9f1-331581cfe029" + "45fd6c0c-ed9b-4cad-a9d8-5bce3b647911" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:31:31 GMT" + "Tue, 15 Feb 2022 19:31: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.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", "AzurePowershell/Az1.0.0" ], "Content-Length": [ @@ -455,7 +473,7 @@ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "b6dab311-ef67-423d-aac3-599fbcbca79c" + "f51ef3bc-7a23-42fe-b285-be5a1201d237" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -467,7 +485,7 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 22:31:31 GMT" + "Tue, 15 Feb 2022 19:31:06 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..fa882f50d044 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=2022-01-01.15.0", + "EncodedRequestUri": "L3Bvb2xzP2FwaS12ZXJzaW9uPTIwMjItMDEtMDEuMTUuMA==", "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" + "044b1a3c-64dc-499f-a636-a54c9cc95c17" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:30:19 GMT" + "Tue, 15 Feb 2022 19:30:59 GMT" + ], + "x-ms-client-request-id": [ + "7e44cf9d-6de6-42f8-9f2b-adb54b678445" ], "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.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", "AzurePowershell/Az1.0.0" ], "Content-Type": [ @@ -34,16 +37,16 @@ "chunked" ], "ETag": [ - "0x8D80CC4BDBE59D4" + "0x8D9F0B9B1E20EF9" ], "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" + "ec9f9f18-ebba-4249-952a-5564aa320494" ], "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" + "Tue, 15 Feb 2022 19:30:58 GMT" ], "Last-Modified": [ - "Tue, 09 Jun 2020 22:30:40 GMT" + "Tue, 15 Feb 2022 19:30:59 GMT" ] }, "ResponseBody": "", "StatusCode": 201 }, { - "RequestUri": "/pools?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L3Bvb2xzP2FwaS12ZXJzaW9uPTIwMjAtMDMtMDEuMTEuMA==", + "RequestUri": "/pools?api-version=2022-01-01.15.0", + "EncodedRequestUri": "L3Bvb2xzP2FwaS12ZXJzaW9uPTIwMjItMDEtMDEuMTUuMA==", "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}", + "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\": \"20-04-lts\"\r\n },\r\n \"nodeAgentSKUId\": \"batch.node.ubuntu 20.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" + "b6c8e912-b7be-483d-bf79-8a38028159c4" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:30:41 GMT" + "Tue, 15 Feb 2022 19:30:59 GMT" + ], + "x-ms-client-request-id": [ + "587f23f3-ea22-43da-aff3-078cdf7cd728" ], "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.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", "AzurePowershell/Az1.0.0" ], "Content-Type": [ @@ -101,16 +107,16 @@ "chunked" ], "ETag": [ - "0x8D80CC4BDFFB911" + "0x8D9F0B9B20BDE13" ], "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" + "32fca914-e6ff-4d51-b7c1-d0acdf901e98" ], "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" + "Tue, 15 Feb 2022 19:30:59 GMT" ], "Last-Modified": [ - "Tue, 09 Jun 2020 22:30:41 GMT" + "Tue, 15 Feb 2022 19:30:59 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=2022-01-01.15.0&$filter=id%20eq%20%27pool1%27%20or%20id%20eq%20%27pool2%27", + "EncodedRequestUri": "L3Bvb2xzP2FwaS12ZXJzaW9uPTIwMjItMDEtMDEuMTUuMCYkZmlsdGVyPWlkJTIwZXElMjAlMjdwb29sMSUyNyUyMG9yJTIwaWQlMjBlcSUyMCUyN3Bvb2wyJTI3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "c95f4248-80ce-4107-b4e7-97fe3756b50a" + "dd50a43e-f239-470f-bb1f-b34a07526cd9" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:30:41 GMT" + "Tue, 15 Feb 2022 19:31:00 GMT" + ], + "x-ms-client-request-id": [ + "07152990-daf0-45bd-bed9-26ea729cfbed" ], "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.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", "AzurePowershell/Az1.0.0" ] }, @@ -165,7 +174,7 @@ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "faa8d6e0-a956-484b-ab88-a670477220cb" + "a9bc4510-2b8a-44fb-be41-e444b4efd38a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -177,35 +186,38 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 22:30:40 GMT" + "Tue, 15 Feb 2022 19:30:59 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\": \"0x8D9F0B9B1E20EF9\",\r\n \"lastModified\": \"2022-02-15T19:30:59.3634041Z\",\r\n \"creationTime\": \"2022-02-15T19:30:59.3634041Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2022-02-15T19:30:59.3634041Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2022-02-15T19:30:59.3634041Z\",\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\": \"0x8D9F0B9B20BDE13\",\r\n \"lastModified\": \"2022-02-15T19:30:59.6374035Z\",\r\n \"creationTime\": \"2022-02-15T19:30:59.6374035Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2022-02-15T19:30:59.6374035Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2022-02-15T19:30:59.6374035Z\",\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\": \"20-04-lts\",\r\n \"version\": \"latest\"\r\n },\r\n \"nodeAgentSKUId\": \"batch.node.ubuntu 20.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=2022-01-01.15.0", + "EncodedRequestUri": "L3Bvb2xzL3Bvb2wyL3VwZGF0ZXByb3BlcnRpZXM/YXBpLXZlcnNpb249MjAyMi0wMS0wMS4xNS4w", "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" + "24d845c3-1e7b-4569-a837-4f3d8eaa0fe4" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:30:41 GMT" + "Tue, 15 Feb 2022 19:31:00 GMT" + ], + "x-ms-client-request-id": [ + "32179468-8d0d-413d-830d-973689372ac8" ], "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.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", "AzurePowershell/Az1.0.0" ], "Content-Type": [ @@ -217,13 +229,13 @@ }, "ResponseHeaders": { "ETag": [ - "0x8D80CC4BFDC7973" + "0x8D9F0B9B2FF66CB" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "3929a6f4-ca61-4656-a797-d06b4b337865" + "134cbfa8-e07d-456e-a77a-b39cbeab4f01" ], "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" + "Tue, 15 Feb 2022 19:31:00 GMT" ], "Content-Length": [ "0" ], "Last-Modified": [ - "Tue, 09 Jun 2020 22:30:44 GMT" + "Tue, 15 Feb 2022 19:31:01 GMT" ] }, "ResponseBody": "", "StatusCode": 204 }, { - "RequestUri": "/pools/pool2?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L3Bvb2xzL3Bvb2wyP2FwaS12ZXJzaW9uPTIwMjAtMDMtMDEuMTEuMA==", + "RequestUri": "/pools/pool2?api-version=2022-01-01.15.0", + "EncodedRequestUri": "L3Bvb2xzL3Bvb2wyP2FwaS12ZXJzaW9uPTIwMjItMDEtMDEuMTUuMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "394b77cb-48af-430a-937a-cc2a329e6e7d" + "4c3317a7-d917-4d4f-a4c7-6298471a2dfb" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:30:44 GMT" + "Tue, 15 Feb 2022 19:31:01 GMT" + ], + "x-ms-client-request-id": [ + "37097133-5ba4-447b-afbe-bf43c28d972d" ], "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.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", "AzurePowershell/Az1.0.0" ] }, @@ -278,13 +293,13 @@ "chunked" ], "ETag": [ - "0x8D80CC4BFDC7973" + "0x8D9F0B9B2FF66CB" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "240e7f20-768a-4e82-b521-98bb2c42553a" + "4e7588fd-4b62-4929-a440-6adec238b0ab" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -296,38 +311,41 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 22:30:43 GMT" + "Tue, 15 Feb 2022 19:31:00 GMT" ], "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Tue, 09 Jun 2020 22:30:44 GMT" + "Tue, 15 Feb 2022 19:31:01 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\": \"0x8D9F0B9B2FF66CB\",\r\n \"lastModified\": \"2022-02-15T19:31:01.2334283Z\",\r\n \"creationTime\": \"2022-02-15T19:30:59.6374035Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2022-02-15T19:30:59.6374035Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2022-02-15T19:31:01.2014262Z\",\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\": \"20-04-lts\",\r\n \"version\": \"latest\"\r\n },\r\n \"nodeAgentSKUId\": \"batch.node.ubuntu 20.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=2022-01-01.15.0", + "EncodedRequestUri": "L3Bvb2xzL3Bvb2wxP2FwaS12ZXJzaW9uPTIwMjItMDEtMDEuMTUuMA==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "fda2fdb2-0a86-4f47-b9da-33c9896b83d5" + "b39770d8-8596-444e-b736-dda0b0717fc0" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:30:44 GMT" + "Tue, 15 Feb 2022 19:31:01 GMT" + ], + "x-ms-client-request-id": [ + "c2868af1-70ea-4d51-a239-bf208ff37e0c" ], "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.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", "AzurePowershell/Az1.0.0" ], "Content-Length": [ @@ -342,7 +360,7 @@ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "39dde690-d584-43f8-a5c2-20c18ec8f1d4" + "6e01b246-7a69-4ce3-92f9-0fa3f097013d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -354,32 +372,35 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 22:30:44 GMT" + "Tue, 15 Feb 2022 19:31:00 GMT" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/pools/pool2?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L3Bvb2xzL3Bvb2wyP2FwaS12ZXJzaW9uPTIwMjAtMDMtMDEuMTEuMA==", + "RequestUri": "/pools/pool2?api-version=2022-01-01.15.0", + "EncodedRequestUri": "L3Bvb2xzL3Bvb2wyP2FwaS12ZXJzaW9uPTIwMjItMDEtMDEuMTUuMA==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "b663143a-a90f-44e7-b803-ff0ac4c691ba" + "54c42372-1a08-4b9b-b1bc-ae0bd6adacee" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:30:44 GMT" + "Tue, 15 Feb 2022 19:31:01 GMT" + ], + "x-ms-client-request-id": [ + "d2173aa5-e2c9-40a6-a69b-2665af93fd57" ], "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.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", "AzurePowershell/Az1.0.0" ], "Content-Length": [ @@ -394,7 +415,7 @@ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "20a39ffd-3abe-49dc-b456-4493d6f4e578" + "aab415c1-9e38-4643-8957-7ba39ff334b2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -406,32 +427,35 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 22:30:44 GMT" + "Tue, 15 Feb 2022 19:31:01 GMT" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/pools?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L3Bvb2xzP2FwaS12ZXJzaW9uPTIwMjAtMDMtMDEuMTEuMA==", + "RequestUri": "/pools?api-version=2022-01-01.15.0", + "EncodedRequestUri": "L3Bvb2xzP2FwaS12ZXJzaW9uPTIwMjItMDEtMDEuMTUuMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "8778d7c6-40d1-4e67-afe3-ee7e3434bd01" + "3dddc764-bd54-4bd6-9831-c88ceb28aa01" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:30:45 GMT" + "Tue, 15 Feb 2022 19:31:01 GMT" + ], + "x-ms-client-request-id": [ + "7783b101-88ea-4547-9e68-1921e7059589" ], "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.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", "AzurePowershell/Az1.0.0" ] }, @@ -443,7 +467,7 @@ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "504303aa-480b-4646-8951-b48f7105b67f" + "36b877a9-5684-425f-ab67-0b29f5ebd92a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -455,21 +479,21 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 22:30:44 GMT" + "Tue, 15 Feb 2022 19:31:01 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\": \"exPoolName\",\r\n \"url\": \"https://mikeportal.eastus.batch.azure.com/pools/exPoolName\",\r\n \"eTag\": \"0x8D9ED839AFBEDEB\",\r\n \"lastModified\": \"2022-02-11T17:26:14.6336235Z\",\r\n \"creationTime\": \"2022-02-11T17:26:14.6336235Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2022-02-11T17:26:14.6336235Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2022-02-11T17:27:11.8723415Z\",\r\n \"vmSize\": \"standard_d2s_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 \"taskSlotsPerNode\": 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 \"extensions\": [\r\n {\r\n \"name\": \"secretext\",\r\n \"publisher\": \"Microsoft.Azure.KeyVault\",\r\n \"type\": \"KeyVaultForLinux\",\r\n \"typeHandlerVersion\": \"1.0\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\r\n \"secretsManagementSettings\": {\r\n \"pollingIntervalInS\": 300,\r\n \"certificateStoreLocation\": \"/var/lib/waagent/Microsoft.Azure.KeyVault\",\r\n \"requireInitialSync\": true,\r\n \"observedCertificates\": \"https://testkvwestus2.vault.azure.net/secrets/authsecreat\"\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"mpiPool\",\r\n \"url\": \"https://mikeportal.eastus.batch.azure.com/pools/mpiPool\",\r\n \"eTag\": \"0x8D9F0B8F8C8E04D\",\r\n \"lastModified\": \"2022-02-15T19:25:48.8198733Z\",\r\n \"creationTime\": \"2022-02-15T19:25:48.8198733Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2022-02-15T19:25:48.8198733Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2022-02-15T19:27:31.7072456Z\",\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\": \"0x8D9F0B9B3197E8E\",\r\n \"lastModified\": \"2022-02-15T19:31:01.4044302Z\",\r\n \"creationTime\": \"2022-02-15T19:30:59.3634041Z\",\r\n \"state\": \"deleting\",\r\n \"stateTransitionTime\": \"2022-02-15T19:31:01.4044302Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2022-02-15T19:31:01.4194314Z\",\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\": \"0x8D9F0B9B3258C7A\",\r\n \"lastModified\": \"2022-02-15T19:31:01.4834298Z\",\r\n \"creationTime\": \"2022-02-15T19:30:59.6374035Z\",\r\n \"state\": \"deleting\",\r\n \"stateTransitionTime\": \"2022-02-15T19:31:01.4834298Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2022-02-15T19:31:01.5464286Z\",\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\": \"20-04-lts\",\r\n \"version\": \"latest\"\r\n },\r\n \"nodeAgentSKUId\": \"batch.node.ubuntu 20.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\": \"testIaasPool\",\r\n \"url\": \"https://mikeportal.eastus.batch.azure.com/pools/testIaasPool\",\r\n \"eTag\": \"0x8D9EDA8858BE885\",\r\n \"lastModified\": \"2022-02-11T21:50:30.0463237Z\",\r\n \"creationTime\": \"2022-02-11T21:50:30.0463237Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2022-02-11T21:50:30.0463237Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2022-02-11T21:51:32.6167117Z\",\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\": \"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://mikeportal.eastus.batch.azure.com/pools/testPool\",\r\n \"eTag\": \"0x8D9EDA885571CAC\",\r\n \"lastModified\": \"2022-02-11T21:50:29.700318Z\",\r\n \"creationTime\": \"2022-02-11T21:50:29.700318Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2022-02-11T21:50:29.700318Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2022-02-11T21:53:32.5414481Z\",\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..992b65370aec 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=2022-01-01.15.0", + "EncodedRequestUri": "L3Bvb2xzP2FwaS12ZXJzaW9uPTIwMjItMDEtMDEuMTUuMA==", "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" + "4fea0684-4957-4776-baec-2baa5cdb669f" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:29:30 GMT" + "Tue, 15 Feb 2022 19:50: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.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", "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" + "0x8D9F0BC62561283" ], "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" + "deb1c5f0-2bcd-4e7e-afa2-b92216ea6891" ], "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" + "Tue, 15 Feb 2022 19:50:13 GMT" ], "Last-Modified": [ - "Tue, 09 Jun 2020 22:29:51 GMT" + "Tue, 15 Feb 2022 19:50:14 GMT" ] }, "ResponseBody": "", "StatusCode": 201 }, { - "RequestUri": "/pools/resizePool?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L3Bvb2xzL3Jlc2l6ZVBvb2w/YXBpLXZlcnNpb249MjAyMC0wMy0wMS4xMS4w", + "RequestUri": "/pools/resizePool?api-version=2022-01-01.15.0", + "EncodedRequestUri": "L3Bvb2xzL3Jlc2l6ZVBvb2w/YXBpLXZlcnNpb249MjAyMi0wMS0wMS4xNS4w", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "c3c97ff4-b347-4bc3-ad31-26625ee18b2d" + "91ec87fe-1571-40ab-80ea-9c800a5fe3d0" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:29:52 GMT" + "Tue, 15 Feb 2022 19:50:19 GMT" + ], + "x-ms-client-request-id": [ + "d214a171-ac09-48da-a1f3-bea53a9dd3f7" ], "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.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", "AzurePowershell/Az1.0.0" ] }, @@ -95,13 +98,13 @@ "chunked" ], "ETag": [ - "0x8D80CC4A081457A" + "0x8D9F0BC62561283" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "2ae568be-7651-44fe-a9b9-31d8c06c2d77" + "aed318f0-38e9-4d96-89a5-b4d7cd5727ad" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -113,38 +116,41 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 22:30:14 GMT" + "Tue, 15 Feb 2022 19:50:18 GMT" ], "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Tue, 09 Jun 2020 22:29:51 GMT" + "Tue, 15 Feb 2022 19:50:14 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\": \"0x8D9F0BC62561283\",\r\n \"lastModified\": \"2022-02-15T19:50:14.3961731Z\",\r\n \"creationTime\": \"2022-02-15T19:50:14.3961731Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2022-02-15T19:50:14.3961731Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2022-02-15T19:50:15.9092193Z\",\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=2022-01-01.15.0", + "EncodedRequestUri": "L3Bvb2xzL3Jlc2l6ZVBvb2w/YXBpLXZlcnNpb249MjAyMi0wMS0wMS4xNS4w", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "272ae7dc-0ac5-4a3f-9943-013866f25590" + "2fc9e4f6-969d-496c-83fe-6670429213f4" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:30:14 GMT" + "Tue, 15 Feb 2022 19:50:19 GMT" + ], + "x-ms-client-request-id": [ + "c6633536-1864-4387-b4b6-74a8df554e1f" ], "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.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", "AzurePowershell/Az1.0.0" ] }, @@ -153,13 +159,13 @@ "chunked" ], "ETag": [ - "0x8D80CC4ADE9845D" + "0x8D9F0BC6529B800" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "000132ad-6ae9-47bf-8aec-7de81d44b9cf" + "680f8a76-d855-4ea4-a519-30ce93d5514b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -171,38 +177,41 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 22:30:14 GMT" + "Tue, 15 Feb 2022 19:50:19 GMT" ], "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Tue, 09 Jun 2020 22:30:14 GMT" + "Tue, 15 Feb 2022 19:50:19 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\": \"0x8D9F0BC6529B800\",\r\n \"lastModified\": \"2022-02-15T19:50:19.1386624Z\",\r\n \"creationTime\": \"2022-02-15T19:50:14.3961731Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2022-02-15T19:50:14.3961731Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2022-02-15T19:50:19.1386624Z\",\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=2022-01-01.15.0", + "EncodedRequestUri": "L3Bvb2xzL3Jlc2l6ZVBvb2w/YXBpLXZlcnNpb249MjAyMi0wMS0wMS4xNS4w", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "7afc67f0-e3b0-4918-a02f-61111776e72e" + "bbbb7b3f-ef46-4266-b4de-b52e8c87b25a" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:30:14 GMT" + "Tue, 15 Feb 2022 19:50:19 GMT" + ], + "x-ms-client-request-id": [ + "b32e2aa6-74e5-41c1-9072-a6cfac20f37a" ], "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.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", "AzurePowershell/Az1.0.0" ] }, @@ -211,13 +220,13 @@ "chunked" ], "ETag": [ - "0x8D80CC4ADE9845D" + "0x8D9F0BC6529B800" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "b30a2b98-1ab3-48ee-b467-a8e82450379e" + "4b9ee34b-321b-4b88-b538-ff3ab4f2baca" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -229,38 +238,41 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 22:30:14 GMT" + "Tue, 15 Feb 2022 19:50:19 GMT" ], "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Tue, 09 Jun 2020 22:30:14 GMT" + "Tue, 15 Feb 2022 19:50:19 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\": \"0x8D9F0BC6529B800\",\r\n \"lastModified\": \"2022-02-15T19:50:19.1386624Z\",\r\n \"creationTime\": \"2022-02-15T19:50:14.3961731Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2022-02-15T19:50:14.3961731Z\",\r\n \"allocationState\": \"stopping\",\r\n \"allocationStateTransitionTime\": \"2022-02-15T19:50:19.3506631Z\",\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=2022-01-01.15.0", + "EncodedRequestUri": "L3Bvb2xzL3Jlc2l6ZVBvb2wvcmVzaXplP2FwaS12ZXJzaW9uPTIwMjItMDEtMDEuMTUuMA==", "RequestMethod": "POST", "RequestBody": "{\r\n \"targetDedicatedNodes\": 1\r\n}", "RequestHeaders": { "client-request-id": [ - "7b4068ea-2f48-4b8e-b6a1-1045718c95c0" + "e43ed32e-3153-4770-b55c-a17fa5b88df9" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:30:14 GMT" + "Tue, 15 Feb 2022 19:50:19 GMT" + ], + "x-ms-client-request-id": [ + "0830a803-382b-4d4c-82f3-3843e32d1608" ], "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.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", "AzurePowershell/Az1.0.0" ], "Content-Type": [ @@ -275,13 +287,13 @@ "chunked" ], "ETag": [ - "0x8D80CC4ADE9845D" + "0x8D9F0BC6529B800" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "e9cc340f-8098-4697-aa7c-19349db90bfe" + "ede67461-0cca-4eb6-bccc-a3017bfe5fa8" ], "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" + "Tue, 15 Feb 2022 19:50:19 GMT" ], "Last-Modified": [ - "Tue, 09 Jun 2020 22:30:14 GMT" + "Tue, 15 Feb 2022 19:50:19 GMT" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/pools/resizePool/stopresize?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L3Bvb2xzL3Jlc2l6ZVBvb2wvc3RvcHJlc2l6ZT9hcGktdmVyc2lvbj0yMDIwLTAzLTAxLjExLjA=", + "RequestUri": "/pools/resizePool/stopresize?api-version=2022-01-01.15.0", + "EncodedRequestUri": "L3Bvb2xzL3Jlc2l6ZVBvb2wvc3RvcHJlc2l6ZT9hcGktdmVyc2lvbj0yMDIyLTAxLTAxLjE1LjA=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "07dbb2d4-58cc-4036-8b10-bc55df09c925" + "7ed4f02a-84ae-4022-895c-bc56936c6465" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:30:14 GMT" + "Tue, 15 Feb 2022 19:50:19 GMT" + ], + "x-ms-client-request-id": [ + "28ef0ae3-0d6d-4118-85fe-f730cdb84c81" ], "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.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", "AzurePowershell/Az1.0.0" ], "Content-Length": [ @@ -336,13 +351,13 @@ "chunked" ], "ETag": [ - "0x8D80CC4ADE9845D" + "0x8D9F0BC6529B800" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "7205de5a-7a59-4f0d-ac51-f4411c13dfce" + "5f5540aa-14c8-4ba1-865e-b6fbf7215837" ], "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" + "Tue, 15 Feb 2022 19:50:19 GMT" ], "Last-Modified": [ - "Tue, 09 Jun 2020 22:30:14 GMT" + "Tue, 15 Feb 2022 19:50:19 GMT" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/pools/resizePool?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L3Bvb2xzL3Jlc2l6ZVBvb2w/YXBpLXZlcnNpb249MjAyMC0wMy0wMS4xMS4w", + "RequestUri": "/pools/resizePool?api-version=2022-01-01.15.0", + "EncodedRequestUri": "L3Bvb2xzL3Jlc2l6ZVBvb2w/YXBpLXZlcnNpb249MjAyMi0wMS0wMS4xNS4w", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "880c199d-0f45-4c49-a260-7ee016e4f4c4" + "c0eb3767-c4d9-4e3a-92e0-6a877a575976" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:30:15 GMT" + "Tue, 15 Feb 2022 19:50: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.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", "AzurePowershell/Az1.0.0" ], "Content-Length": [ @@ -400,7 +415,7 @@ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "bfbf8bee-9ed9-4785-8eff-e918c8d07545" + "7bd58dd6-6ec0-4940-804f-24d983722081" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -412,7 +427,7 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 22:30:15 GMT" + "Tue, 15 Feb 2022 19:50:19 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..92938d5efe6d 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=2022-01-01.15.0", + "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAyMi0wMS0wMS4xNS4w", "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" + "7d0cf414-40e9-4ccc-b212-40ca50cd8b68" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:31:32 GMT" + "Tue, 15 Feb 2022 19: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.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", "AzurePowershell/Az1.0.0" ], "Content-Type": [ @@ -34,16 +34,16 @@ "chunked" ], "ETag": [ - "0x8D80CC4E989D3D3" + "0x8D9F0B8F60DF229" ], "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" + "624ec866-2e39-41d5-8779-c3d241bdaa53" ], "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" + "Tue, 15 Feb 2022 19:25:43 GMT" ], "Last-Modified": [ - "Tue, 09 Jun 2020 22:31:54 GMT" + "Tue, 15 Feb 2022 19:25:44 GMT" ] }, "ResponseBody": "", "StatusCode": 201 }, { - "RequestUri": "/jobs/createTaskCollectionJob?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L2pvYnMvY3JlYXRlVGFza0NvbGxlY3Rpb25Kb2I/YXBpLXZlcnNpb249MjAyMC0wMy0wMS4xMS4w", + "RequestUri": "/jobs/createTaskCollectionJob?api-version=2022-01-01.15.0", + "EncodedRequestUri": "L2pvYnMvY3JlYXRlVGFza0NvbGxlY3Rpb25Kb2I/YXBpLXZlcnNpb249MjAyMi0wMS0wMS4xNS4w", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "a15f71b1-e526-4f35-a188-256002313f29" + "445973f3-6f16-4957-a060-a67dacf5c52e" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:31:54 GMT" + "Tue, 15 Feb 2022 19:25:45 GMT" + ], + "x-ms-client-request-id": [ + "fef220cc-b0d0-4240-ae47-390fa1cd1db0" ], "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.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", "AzurePowershell/Az1.0.0" ] }, @@ -95,13 +98,13 @@ "chunked" ], "ETag": [ - "0x8D80CC4E989D3D3" + "0x8D9F0B8F60DF229" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "fc918c03-5b4d-408b-a251-21bcfd5609fd" + "5bb94a98-07a0-4169-9d17-ddf795637953" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -113,38 +116,41 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 22:32:16 GMT" + "Tue, 15 Feb 2022 19:25:44 GMT" ], "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Tue, 09 Jun 2020 22:31:54 GMT" + "Tue, 15 Feb 2022 19:25:44 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\": \"0x8D9F0B8F60DF229\",\r\n \"lastModified\": \"2022-02-15T19:25:44.2393641Z\",\r\n \"creationTime\": \"2022-02-15T19:25:44.2133619Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2022-02-15T19:25:44.2393641Z\",\r\n \"priority\": 0,\r\n \"maxParallelTasks\": -1,\r\n \"usesTaskDependencies\": false,\r\n \"allowTaskPreemption\": 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\": \"2022-02-15T19:25:44.2393641Z\",\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=2022-01-01.15.0", + "EncodedRequestUri": "L2pvYnMvY3JlYXRlVGFza0NvbGxlY3Rpb25Kb2IvYWRkdGFza2NvbGxlY3Rpb24/YXBpLXZlcnNpb249MjAyMi0wMS0wMS4xNS4w", "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" + "d2a27f3d-18b1-46a4-aa2c-2bfdd4884dca" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:32:16 GMT" + "Tue, 15 Feb 2022 19:25:45 GMT" + ], + "x-ms-client-request-id": [ + "fef220cc-b0d0-4240-ae47-390fa1cd1db0" ], "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.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", "AzurePowershell/Az1.0.0" ], "Content-Type": [ @@ -162,7 +168,7 @@ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "19991f68-0645-4b47-a192-cdab79ba07c7" + "84792143-7e3a-46f4-a54e-ed718ceffad2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -174,35 +180,38 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 22:32:16 GMT" + "Tue, 15 Feb 2022 19:25:44 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\": \"0x8D9F0B8F6ADFA3A\",\r\n \"lastModified\": \"2022-02-15T19:25:45.2881466Z\",\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\": \"0x8D9F0B8F6AE6F30\",\r\n \"lastModified\": \"2022-02-15T19:25:45.2911408Z\",\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=2022-01-01.15.0", + "EncodedRequestUri": "L2pvYnMvY3JlYXRlVGFza0NvbGxlY3Rpb25Kb2IvYWRkdGFza2NvbGxlY3Rpb24/YXBpLXZlcnNpb249MjAyMi0wMS0wMS4xNS4w", "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}", "RequestHeaders": { "client-request-id": [ - "26a2e505-f296-4264-9beb-d3b01bb6f3c0" + "49e851e2-4a89-4f5c-a8fd-ec1ef254221b" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:32:17 GMT" + "Tue, 15 Feb 2022 19:25:46 GMT" + ], + "x-ms-client-request-id": [ + "9fbf4776-de47-47e9-adc9-ac9d1054ca54" ], "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.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", "AzurePowershell/Az1.0.0" ], "Content-Type": [ @@ -220,7 +229,7 @@ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "dc551187-36a6-4340-b846-f2c357a52885" + "25760c2d-e389-4bd6-bafb-0e8778f7ed11" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -232,35 +241,38 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 22:32:16 GMT" + "Tue, 15 Feb 2022 19:25:45 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\": \"complex1\",\r\n \"eTag\": \"0x8D9F0B8F6E3D266\",\r\n \"lastModified\": \"2022-02-15T19:25:45.6410214Z\",\r\n \"location\": \"https://mikeportal.eastus.batch.azure.com/jobs/createTaskCollectionJob/tasks/complex1\"\r\n },\r\n {\r\n \"status\": \"Success\",\r\n \"taskId\": \"simple3\",\r\n \"eTag\": \"0x8D9F0B8F6FEE57E\",\r\n \"lastModified\": \"2022-02-15T19:25:45.8184574Z\",\r\n \"location\": \"https://mikeportal.eastus.batch.azure.com/jobs/createTaskCollectionJob/tasks/simple3\"\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=2022-01-01.15.0", + "EncodedRequestUri": "L2pvYnMvY3JlYXRlVGFza0NvbGxlY3Rpb25Kb2IvdGFza3Mvc2ltcGxlMT9hcGktdmVyc2lvbj0yMDIyLTAxLTAxLjE1LjA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "483b3fc5-1ed3-4e7c-9a88-30a6bdc81b08" + "c5955a63-24dc-4aee-96c7-255616069e42" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:32:16 GMT" + "Tue, 15 Feb 2022 19:25:45 GMT" + ], + "x-ms-client-request-id": [ + "eab9aefe-483b-4a5b-a715-4fa43dedc3b5" ], "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.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", "AzurePowershell/Az1.0.0" ] }, @@ -269,13 +281,13 @@ "chunked" ], "ETag": [ - "0x8D80CC4F6E226B8" + "0x8D9F0B8F6ADFA3A" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "560488b5-64d7-4158-bf40-8f73fffe1019" + "b8c56b28-88be-491e-8e4d-a21964d32aa7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -287,38 +299,41 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 22:32:16 GMT" + "Tue, 15 Feb 2022 19:25:45 GMT" ], "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Tue, 09 Jun 2020 22:32:16 GMT" + "Tue, 15 Feb 2022 19:25:45 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\": \"0x8D9F0B8F6ADFA3A\",\r\n \"creationTime\": \"2022-02-15T19:25:45.2881466Z\",\r\n \"lastModified\": \"2022-02-15T19:25:45.2881466Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2022-02-15T19:25:45.2881466Z\",\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=2022-01-01.15.0", + "EncodedRequestUri": "L2pvYnMvY3JlYXRlVGFza0NvbGxlY3Rpb25Kb2IvdGFza3Mvc2ltcGxlMj9hcGktdmVyc2lvbj0yMDIyLTAxLTAxLjE1LjA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "03f49739-37a1-4f3e-bf91-268b5bf18a80" + "55dec162-af9b-4f01-a869-830a6f3e8ec3" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:32:17 GMT" + "Tue, 15 Feb 2022 19:25:45 GMT" + ], + "x-ms-client-request-id": [ + "07fcdd20-76df-4341-b522-427bf471c4b6" ], "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.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", "AzurePowershell/Az1.0.0" ] }, @@ -327,13 +342,13 @@ "chunked" ], "ETag": [ - "0x8D80CC4F6E83482" + "0x8D9F0B8F6AE6F30" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "56f36a73-c4d2-4ab5-a9cb-d7394613db96" + "a6d287fc-a4c1-4cb0-9f49-d6b51e757455" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -345,38 +360,41 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 22:32:16 GMT" + "Tue, 15 Feb 2022 19:25:45 GMT" ], "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Tue, 09 Jun 2020 22:32:16 GMT" + "Tue, 15 Feb 2022 19:25:45 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\": \"0x8D9F0B8F6AE6F30\",\r\n \"creationTime\": \"2022-02-15T19:25:45.2911408Z\",\r\n \"lastModified\": \"2022-02-15T19:25:45.2911408Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2022-02-15T19:25:45.2911408Z\",\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=2022-01-01.15.0", + "EncodedRequestUri": "L2pvYnMvY3JlYXRlVGFza0NvbGxlY3Rpb25Kb2IvdGFza3MvY29tcGxleDE/YXBpLXZlcnNpb249MjAyMi0wMS0wMS4xNS4w", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "550276a8-95a7-43ad-87a0-e3d78316eee9" + "93c46166-dd38-4011-86d4-92c08e7022a4" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:32:17 GMT" + "Tue, 15 Feb 2022 19:25:46 GMT" + ], + "x-ms-client-request-id": [ + "3f744563-fc34-4748-8a19-1819cd564819" ], "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.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", "AzurePowershell/Az1.0.0" ] }, @@ -385,13 +403,13 @@ "chunked" ], "ETag": [ - "0x8D80CC4F74441E5" + "0x8D9F0B8F6E3D266" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "cb96ada8-72c8-4f80-b7a3-6dd1e5606d47" + "9d3b502b-7e33-4554-8d57-a842ec222fae" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -403,38 +421,41 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 22:32:17 GMT" + "Tue, 15 Feb 2022 19:25:45 GMT" ], "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Tue, 09 Jun 2020 22:32:17 GMT" + "Tue, 15 Feb 2022 19:25:45 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\": \"0x8D9F0B8F6E3D266\",\r\n \"creationTime\": \"2022-02-15T19:25:45.6410214Z\",\r\n \"lastModified\": \"2022-02-15T19:25:45.6410214Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2022-02-15T19:25:45.6410214Z\",\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 \"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=2022-01-01.15.0", + "EncodedRequestUri": "L2pvYnMvY3JlYXRlVGFza0NvbGxlY3Rpb25Kb2IvdGFza3Mvc2ltcGxlMz9hcGktdmVyc2lvbj0yMDIyLTAxLTAxLjE1LjA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "97f9e0f7-46ee-4203-b5e7-bc1b12585f13" + "8a691dcd-2288-46f2-9117-c1e119ef2e05" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:32:17 GMT" + "Tue, 15 Feb 2022 19:25:46 GMT" + ], + "x-ms-client-request-id": [ + "8f2a9fce-446d-4ac9-a392-7b5c1c7b1f02" ], "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.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", "AzurePowershell/Az1.0.0" ] }, @@ -443,13 +464,13 @@ "chunked" ], "ETag": [ - "0x8D80CC4F7449023" + "0x8D9F0B8F6FEE57E" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "d84b37fb-8b91-4e72-8d0b-d4969616327e" + "0ce6494c-8e95-4f86-ae6b-73287b1121ae" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -461,38 +482,38 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 22:32:17 GMT" + "Tue, 15 Feb 2022 19:25:45 GMT" ], "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Tue, 09 Jun 2020 22:32:17 GMT" + "Tue, 15 Feb 2022 19:25:45 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\": \"0x8D9F0B8F6FEE57E\",\r\n \"creationTime\": \"2022-02-15T19:25:45.8184574Z\",\r\n \"lastModified\": \"2022-02-15T19:25:45.8184574Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2022-02-15T19:25:45.8184574Z\",\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=2022-01-01.15.0", + "EncodedRequestUri": "L2pvYnMvY3JlYXRlVGFza0NvbGxlY3Rpb25Kb2I/YXBpLXZlcnNpb249MjAyMi0wMS0wMS4xNS4w", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "606110c5-30c5-4d72-b460-8e122c0fdadd" + "6f26903c-f017-420d-be1a-14127cdab7f1" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:32:17 GMT" + "Tue, 15 Feb 2022 19:25: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.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", "AzurePowershell/Az1.0.0" ], "Content-Length": [ @@ -507,7 +528,7 @@ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "8381ff7b-cfba-49a6-b9b3-ef48054162f4" + "33278a60-b483-4987-a176-f5877fa205f7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -519,7 +540,7 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 22:32:18 GMT" + "Tue, 15 Feb 2022 19:25:45 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..9383358f1382 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=2022-01-01.15.0", + "EncodedRequestUri": "L3Bvb2xzL21waVBvb2w/YXBpLXZlcnNpb249MjAyMi0wMS0wMS4xNS4w", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "14e19ef5-8d06-4012-b100-55fc55497d1f" + "22fd78fd-bed7-4099-bd0f-8971b16d7ab4" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:32:19 GMT" + "Tue, 15 Feb 2022 19:25: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.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", "AzurePowershell/Az1.0.0" ] }, + "ResponseHeaders": { + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "48c49250-6117-46b9-93a5-3a809098010c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Tue, 15 Feb 2022 19:25:47 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:48c49250-6117-46b9-93a5-3a809098010c\\nTime:2022-02-15T19:25:48.6601833Z\"\r\n }\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/pools?api-version=2022-01-01.15.0", + "EncodedRequestUri": "L3Bvb2xzP2FwaS12ZXJzaW9uPTIwMjItMDEtMDEuMTUuMA==", + "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": [ + "26012167-463a-411a-9c2a-e76ad4255197" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Tue, 15 Feb 2022 19:25:49 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", + "AzurePowershell/Az1.0.0" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; charset=utf-8" + ], + "Content-Length": [ + "241" + ] + }, "ResponseHeaders": { "Transfer-Encoding": [ "chunked" ], "ETag": [ - "0x8D80BFAD858C375" + "0x8D9F0B8F8C8E04D" + ], + "Location": [ + "https://mikeportal.eastus.batch.azure.com/pools/mpiPool" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "ae135b6f-3616-4c6c-8205-7a9014a09f80" + "8b1c5082-3e28-43c4-9d60-0507646e2f6c" ], "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": [ + "Tue, 15 Feb 2022 19:25:48 GMT" ], "Last-Modified": [ - "Mon, 08 Jun 2020 22:25:27 GMT" + "Tue, 15 Feb 2022 19:25:48 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=2022-01-01.15.0", + "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAyMi0wMS0wMS4xNS4w", "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" + "66e35321-7f5c-4dae-9a29-ff2e094c3c9a" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:32:40 GMT" + "Tue, 15 Feb 2022 19: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.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", "AzurePowershell/Az1.0.0" ], "Content-Type": [ @@ -92,16 +153,16 @@ "chunked" ], "ETag": [ - "0x8D80CC505618091" + "0x8D9F0B8F8E5C73D" ], "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" + "1a3efcb8-fe69-4bd2-9e7d-76fcf2958146" ], "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" + "Tue, 15 Feb 2022 19:25:48 GMT" ], "Last-Modified": [ - "Tue, 09 Jun 2020 22:32:41 GMT" + "Tue, 15 Feb 2022 19:25:49 GMT" ] }, "ResponseBody": "", "StatusCode": 201 }, { - "RequestUri": "/jobs/listSubtaskJob/tasks?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMC0wMy0wMS4xMS4w", + "RequestUri": "/jobs/listSubtaskJob/tasks?api-version=2022-01-01.15.0", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMi0wMS0wMS4xNS4w", "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" + "e054241a-a9e4-4870-8e09-271ec82e1607" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:32:41 GMT" + "Tue, 15 Feb 2022 19: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.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", "AzurePowershell/Az1.0.0" ], "Content-Type": [ @@ -159,16 +220,16 @@ "chunked" ], "ETag": [ - "0x8D80CC5057E5E44" + "0x8D9F0B8F919A4E9" ], "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" + "5e519f0d-f68f-4a48-9140-2a8b8e0533d1" ], "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" + "Tue, 15 Feb 2022 19:25:48 GMT" ], "Last-Modified": [ - "Tue, 09 Jun 2020 22:32:41 GMT" + "Tue, 15 Feb 2022 19:25:49 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=2022-01-01.15.0", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3MvdGVzdFRhc2s/YXBpLXZlcnNpb249MjAyMi0wMS0wMS4xNS4w", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "55657a2f-0209-4ef4-af4b-d8c1d90888ec" + "08992a10-faf4-4ff7-80e8-2ade257f077f" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:32:41 GMT" + "Tue, 15 Feb 2022 19: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.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", "AzurePowershell/Az1.0.0" ] }, @@ -220,13 +281,13 @@ "chunked" ], "ETag": [ - "0x8D80CC5057E5E44" + "0x8D9F0B8F919A4E9" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "8700e723-5419-41d6-ab80-c4b64ff35697" + "41a1272b-a666-4c8d-953f-fee5e1440ee0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -238,38 +299,41 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 22:32:40 GMT" + "Tue, 15 Feb 2022 19:25:48 GMT" ], "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Tue, 09 Jun 2020 22:32:41 GMT" + "Tue, 15 Feb 2022 19:25:49 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\": \"0x8D9F0B8F919A4E9\",\r\n \"creationTime\": \"2022-02-15T19:25:49.3491945Z\",\r\n \"lastModified\": \"2022-02-15T19:25:49.3491945Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2022-02-15T19:25:49.3491945Z\",\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=2022-01-01.15.0", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3MvdGVzdFRhc2s/YXBpLXZlcnNpb249MjAyMi0wMS0wMS4xNS4w", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "6e622959-c129-4cec-afea-ed11c1857e15" + "ab635285-9db6-47a8-846c-1b44e1c33a65" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:33:08 GMT" + "Tue, 15 Feb 2022 19:30:43 GMT" + ], + "x-ms-client-request-id": [ + "7a1c682d-52c1-475a-88e5-4cb24fbcee17" ], "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.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", "AzurePowershell/Az1.0.0" ] }, @@ -278,13 +342,13 @@ "chunked" ], "ETag": [ - "0x8D80CC5057E5E44" + "0x8D9F0B8F919A4E9" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "33b8e934-0f6d-4b34-bffd-6b5ef15ef005" + "a5cb115e-b75b-47f9-b76c-e3c78f4af81e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -296,38 +360,246 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 22:33:08 GMT" + "Tue, 15 Feb 2022 19:30:43 GMT" ], "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Tue, 09 Jun 2020 22:32:41 GMT" + "Tue, 15 Feb 2022 19:25:49 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\": \"0x8D9F0B8F919A4E9\",\r\n \"creationTime\": \"2022-02-15T19:25:49.3491945Z\",\r\n \"lastModified\": \"2022-02-15T19:25:49.3491945Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2022-02-15T19:30:41.618949Z\",\r\n \"previousState\": \"running\",\r\n \"previousStateTransitionTime\": \"2022-02-15T19:30:38.395653Z\",\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\": \"2022-02-15T19:30:38.458997Z\",\r\n \"endTime\": \"2022-02-15T19:30:41.618949Z\",\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_7e4cb8c2a7b5bdc77af21f2649dacd675cd823dd00ac9d2ba804ab59f7339c40_d\",\r\n \"nodeUrl\": \"https://mikeportal.eastus.batch.azure.com/pools/mpiPool/nodes/tvmps_7e4cb8c2a7b5bdc77af21f2649dacd675cd823dd00ac9d2ba804ab59f7339c40_d\",\r\n \"poolId\": \"mpiPool\",\r\n \"nodeId\": \"tvmps_7e4cb8c2a7b5bdc77af21f2649dacd675cd823dd00ac9d2ba804ab59f7339c40_d\",\r\n \"taskRootDirectory\": \"workitems\\\\listSubtaskJob\\\\job-1\\\\testTask\",\r\n \"taskRootDirectoryUrl\": \"https://mikeportal.eastus.batch.azure.com/pools/mpiPool/nodes/tvmps_7e4cb8c2a7b5bdc77af21f2649dacd675cd823dd00ac9d2ba804ab59f7339c40_d/files/workitems/listSubtaskJob/job-1/testTask\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/listSubtaskJob/tasks?api-version=2022-01-01.15.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMi0wMS0wMS4xNS4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "1c5b237c-47a6-44b8-8e6e-c2967a02ad3d" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Tue, 15 Feb 2022 19:25:49 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "62577e25-57f2-4055-8824-894f321fdeb0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Tue, 15 Feb 2022 19:25: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=2022-01-01.15.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMi0wMS0wMS4xNS4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "2f81f4cd-7292-4b74-a1d2-1b0a7631d327" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Tue, 15 Feb 2022 19:25:52 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "c4af6238-ca3d-4b0d-9f8e-2b4146ea374f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Tue, 15 Feb 2022 19:25: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=2022-01-01.15.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMi0wMS0wMS4xNS4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "ca9851ce-cf1d-485d-b1fd-fb6a1bd92be0" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Tue, 15 Feb 2022 19:25:54 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "a3f16029-f1af-4bd1-8c10-a45ee1d6ced6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Tue, 15 Feb 2022 19:25: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=2022-01-01.15.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMi0wMS0wMS4xNS4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "20b8e8ab-2762-44a9-8496-2c7cd48ab843" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Tue, 15 Feb 2022 19:25:56 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "cc43e383-2e7c-48d7-be21-5ef38ca770c2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Tue, 15 Feb 2022 19:25:54 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=2022-01-01.15.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMi0wMS0wMS4xNS4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "56b13606-98b6-4fcd-8980-4fd228388800" + "8ad9e9c9-b9bd-4d62-a497-a3b833c6ebea" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:32:41 GMT" + "Tue, 15 Feb 2022 19:25: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.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", "AzurePowershell/Az1.0.0" ] }, @@ -339,7 +611,7 @@ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "42ff6267-6c4d-4a91-8224-883ee107886d" + "bb3f02e2-be68-4d55-ba27-5ec8087520bd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -351,35 +623,35 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 22:32:40 GMT" + "Tue, 15 Feb 2022 19:25:57 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=2022-01-01.15.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMi0wMS0wMS4xNS4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "b9f878a1-0db9-4257-9228-df974630dc72" + "66ac0f9d-2636-41c5-8f01-ce870bec595e" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:32:43 GMT" + "Tue, 15 Feb 2022 19:26:00 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.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", "AzurePowershell/Az1.0.0" ] }, @@ -391,7 +663,7 @@ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "9e81b9a9-5b00-4cce-9a37-4e05978b122b" + "cf5146a2-a86c-48de-88de-d8644c390d80" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -403,35 +675,35 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 22:32:43 GMT" + "Tue, 15 Feb 2022 19:25:59 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=2022-01-01.15.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMi0wMS0wMS4xNS4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "bc0a3503-8733-46c4-918e-1b3a4d686eec" + "e011b786-7a46-40a1-8b16-8a48f31cd700" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:32:45 GMT" + "Tue, 15 Feb 2022 19:26: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.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", "AzurePowershell/Az1.0.0" ] }, @@ -443,7 +715,7 @@ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "35382561-5fed-4fb4-a0b7-e4377b8d1c60" + "2659a94a-c7d7-4c87-b29e-7b8a957af227" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -455,35 +727,35 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 22:32:45 GMT" + "Tue, 15 Feb 2022 19:26:01 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=2022-01-01.15.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMi0wMS0wMS4xNS4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "6dccefd6-505d-47f2-9798-2c88d591c12c" + "0ef6380e-c5ef-4884-bbe9-ab7c60d2d60c" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:32:46 GMT" + "Tue, 15 Feb 2022 19: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.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", "AzurePowershell/Az1.0.0" ] }, @@ -495,7 +767,7 @@ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "f8bd4961-ac46-4978-a5cb-d85967e74ea3" + "0b3da783-0a09-4ca9-8d4a-6deceaa2c10d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -507,35 +779,7061 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 22:33:08 GMT" + "Tue, 15 Feb 2022 19:26:03 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=2022-01-01.15.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMi0wMS0wMS4xNS4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "58e98286-50ed-4678-95c2-7904e9568f6d" + "0530222d-4f63-47e7-939b-172a860fb773" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:33:08 GMT" + "Tue, 15 Feb 2022 19:26:06 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "f9f21889-c7ea-4965-8a9a-9ae96b51c150" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Tue, 15 Feb 2022 19:26: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=2022-01-01.15.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMi0wMS0wMS4xNS4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "3063674f-e42a-4e77-928e-543d947cb705" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Tue, 15 Feb 2022 19:26:08 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "cf0c7971-f8f8-488e-9767-a9bb462c931c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Tue, 15 Feb 2022 19:26: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=2022-01-01.15.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMi0wMS0wMS4xNS4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "ee28f4bb-aea6-4638-9965-a61804ae683e" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Tue, 15 Feb 2022 19:26:10 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "d1c1d156-52d5-41a2-996f-6b0722199b0e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Tue, 15 Feb 2022 19:26: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=2022-01-01.15.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMi0wMS0wMS4xNS4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "029a31d5-329b-49ee-9a25-ec31edbac22d" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Tue, 15 Feb 2022 19:26:12 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "1642811d-61c6-46d4-b780-1dbca0b77e40" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Tue, 15 Feb 2022 19:26: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=2022-01-01.15.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMi0wMS0wMS4xNS4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "cfea0544-2e21-4678-aacc-9abb273ee0f3" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Tue, 15 Feb 2022 19:26:14 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "3bacb29f-e44c-4cb0-8a68-2d1b761dcc9e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Tue, 15 Feb 2022 19:26: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=2022-01-01.15.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMi0wMS0wMS4xNS4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "abd57ca1-ea20-4b3d-853f-6e7c500a36a2" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Tue, 15 Feb 2022 19:26:16 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "72b14f39-ab9d-4048-be11-29c2a9a5c87c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Tue, 15 Feb 2022 19:26: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=2022-01-01.15.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMi0wMS0wMS4xNS4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "4da92763-b482-45c5-93f3-4ef0151d9576" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Tue, 15 Feb 2022 19:26:18 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "2d59a7c6-4411-4b19-a696-c71af21f6d06" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Tue, 15 Feb 2022 19:26: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=2022-01-01.15.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMi0wMS0wMS4xNS4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "ec6c9463-dd99-4391-b150-8eda1c0632b2" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Tue, 15 Feb 2022 19:26:20 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "c11d0dd1-d483-418a-b81c-36100ec94bda" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Tue, 15 Feb 2022 19:26: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=2022-01-01.15.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMi0wMS0wMS4xNS4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "f20fb89e-79ae-4526-bfbd-a8a1deb2ab34" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Tue, 15 Feb 2022 19:26:23 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "faaac39e-4c44-4310-8d8e-790d8d21c4b0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Tue, 15 Feb 2022 19:26:21 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=2022-01-01.15.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMi0wMS0wMS4xNS4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "2cbf5601-935c-4eaa-a653-1caee1af9f85" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Tue, 15 Feb 2022 19:26:25 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "8bf9ec59-2113-4cf7-aadc-abc380b0e8c9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Tue, 15 Feb 2022 19:26:23 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=2022-01-01.15.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMi0wMS0wMS4xNS4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "629ee4ac-7e55-413e-8501-c3430937242a" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Tue, 15 Feb 2022 19:26:27 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "210f76d4-f30c-43fb-a131-8155653a5001" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Tue, 15 Feb 2022 19:26: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=2022-01-01.15.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMi0wMS0wMS4xNS4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "d451bc58-966c-4f73-b0d5-2398cd440097" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Tue, 15 Feb 2022 19:26:29 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "b792aa65-789a-446c-8547-39c82de320c5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Tue, 15 Feb 2022 19:26: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=2022-01-01.15.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMi0wMS0wMS4xNS4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "25cf9548-b2bc-4a2b-b118-0c2dddfff2f3" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Tue, 15 Feb 2022 19:26:31 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "d0a94ecf-bf10-48f3-b5da-4527d2704ef3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Tue, 15 Feb 2022 19:26: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=2022-01-01.15.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMi0wMS0wMS4xNS4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "c6a2d6f7-5b36-40ac-8950-7041d30a02bd" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Tue, 15 Feb 2022 19:26:33 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "e19218f9-584f-478c-a460-b11d9dccda2d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Tue, 15 Feb 2022 19:26: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=2022-01-01.15.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMi0wMS0wMS4xNS4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "4a67ee73-055e-4a3c-98ef-6f3d4e5e5129" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Tue, 15 Feb 2022 19:26:35 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "94d82f70-2a38-49a6-898c-a9ddcc411db4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Tue, 15 Feb 2022 19:26: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=2022-01-01.15.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMi0wMS0wMS4xNS4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "92ba556e-e54b-4c86-a44c-893ea83b9c2c" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Tue, 15 Feb 2022 19:26:37 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "c9eb1d8f-57ea-4661-a221-3519a93a3868" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Tue, 15 Feb 2022 19:26: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=2022-01-01.15.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMi0wMS0wMS4xNS4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "fc79d154-d4fa-4743-879e-011b3905e7b9" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Tue, 15 Feb 2022 19:26:39 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "480fb1a0-423e-4c5a-a4b1-bec5c5cbe896" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Tue, 15 Feb 2022 19:26: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=2022-01-01.15.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMi0wMS0wMS4xNS4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "016bd142-c192-447b-8cdf-ecdcb03dc9c1" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Tue, 15 Feb 2022 19:26:41 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "c3bd5a50-3aee-4df9-abc6-9f453f94d495" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Tue, 15 Feb 2022 19:26: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=2022-01-01.15.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMi0wMS0wMS4xNS4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "4a579a77-1da9-4a33-ad20-d82b0043fb18" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Tue, 15 Feb 2022 19:26:43 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "95e57fcc-e3d2-42bb-af49-97223a8b2d2f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Tue, 15 Feb 2022 19:26: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=2022-01-01.15.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMi0wMS0wMS4xNS4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "fc175d16-54d0-43da-baa8-566220d69e2f" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Tue, 15 Feb 2022 19:26:45 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "49c7b73e-0d59-45dc-b09e-97590c75a413" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Tue, 15 Feb 2022 19:26: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=2022-01-01.15.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMi0wMS0wMS4xNS4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "2f181d17-27fd-487a-aa91-fa6ebf0cf91e" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Tue, 15 Feb 2022 19:26:47 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "fa5b7534-8b1d-4322-ae62-74f0ee1fda2a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Tue, 15 Feb 2022 19:26: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=2022-01-01.15.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMi0wMS0wMS4xNS4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "d44fbc51-4548-4853-858d-c163a891d2a5" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Tue, 15 Feb 2022 19:26:50 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "592dc761-95dc-4e9d-bdda-b60e177c6106" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Tue, 15 Feb 2022 19:26: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=2022-01-01.15.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMi0wMS0wMS4xNS4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "de282983-b298-497f-b871-11931cbc66b7" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Tue, 15 Feb 2022 19:26:52 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "e3febcb0-5021-400b-ba50-99a7273119cd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Tue, 15 Feb 2022 19:26: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=2022-01-01.15.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMi0wMS0wMS4xNS4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "c10bdc55-f01e-484e-815d-c6791982878a" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Tue, 15 Feb 2022 19:26:54 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "f7abed0f-4a34-4abe-b3d9-3c19077a4ee7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Tue, 15 Feb 2022 19:26: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=2022-01-01.15.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMi0wMS0wMS4xNS4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "6e93c23d-50b3-42db-aafe-8c4f895caeb1" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Tue, 15 Feb 2022 19:26:56 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "7a272ff6-524c-4a84-a40d-02af35d24521" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Tue, 15 Feb 2022 19:26: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=2022-01-01.15.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMi0wMS0wMS4xNS4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "f3a14df2-918c-4ae7-be13-4712bd18925a" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Tue, 15 Feb 2022 19:26:58 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "b80e3901-ac5c-486d-9cc3-b12ae5ce44fa" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Tue, 15 Feb 2022 19:26: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=2022-01-01.15.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMi0wMS0wMS4xNS4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "c0a12715-bf5b-41eb-a572-7107b28517f9" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Tue, 15 Feb 2022 19:27:00 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "6e69ef5e-af21-409e-a69a-bdc9b5633dc3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Tue, 15 Feb 2022 19:26: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=2022-01-01.15.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMi0wMS0wMS4xNS4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "cf8bf301-df33-4f7e-9892-bbf27df31512" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Tue, 15 Feb 2022 19:27:02 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "d82b87e6-9755-4eac-8532-6565ce960c6f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Tue, 15 Feb 2022 19:27: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=2022-01-01.15.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMi0wMS0wMS4xNS4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "ee49b96d-5f4d-4d2d-abae-69527b8b50b2" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Tue, 15 Feb 2022 19:27:04 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "fe84f525-c1b3-4451-9b35-83bf05d8ac5c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Tue, 15 Feb 2022 19:27: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=2022-01-01.15.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMi0wMS0wMS4xNS4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "ef05aa78-38ec-47b2-9c14-314879ba653b" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Tue, 15 Feb 2022 19:27:06 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "0264ac49-8ba6-4d5e-ade0-66017170d9fb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Tue, 15 Feb 2022 19:27: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=2022-01-01.15.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMi0wMS0wMS4xNS4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "349475db-d510-49ed-a488-6e6e72efe055" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Tue, 15 Feb 2022 19:27:08 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "a3c02d47-1f69-4ac8-b5e6-0af1889b09c8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Tue, 15 Feb 2022 19:27: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=2022-01-01.15.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMi0wMS0wMS4xNS4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "7851f729-df1b-4cb1-92b9-a41f43bc0201" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Tue, 15 Feb 2022 19:27:10 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "f58a2ff5-ad3a-48f7-b348-27281d3c28c8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Tue, 15 Feb 2022 19:27: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=2022-01-01.15.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMi0wMS0wMS4xNS4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "ea7818a2-2e7d-4274-a531-9e697b4d19ae" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Tue, 15 Feb 2022 19:27:13 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "b5ac215f-f0cf-4b68-a9ef-cb73f941027f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Tue, 15 Feb 2022 19:27: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=2022-01-01.15.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMi0wMS0wMS4xNS4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "29106eed-2752-4ad6-9cf0-7f87fef998b6" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Tue, 15 Feb 2022 19:27:15 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "72067c0c-c5a8-46de-ae2d-9338a16d0f08" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Tue, 15 Feb 2022 19:27: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=2022-01-01.15.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMi0wMS0wMS4xNS4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "4a6308e8-9640-4e7d-836c-d7000c0a3621" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Tue, 15 Feb 2022 19:27:17 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "ff385d40-d548-4846-b3e6-8e14dc935b77" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Tue, 15 Feb 2022 19:27: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=2022-01-01.15.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMi0wMS0wMS4xNS4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "299b37b3-ea5e-42f0-a378-2e2d36065c0d" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Tue, 15 Feb 2022 19:27:19 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "435bf907-b5c7-471f-9435-78299fb3a8c6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Tue, 15 Feb 2022 19:27: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=2022-01-01.15.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMi0wMS0wMS4xNS4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "5d8e6452-3819-4670-95d9-c44376c961af" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Tue, 15 Feb 2022 19:27:21 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "78b45b78-e2d0-412a-b5cf-5f182155625b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Tue, 15 Feb 2022 19:27: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=2022-01-01.15.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMi0wMS0wMS4xNS4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "09b2e939-ae58-4622-915c-a0edabddeb44" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Tue, 15 Feb 2022 19:27:23 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "e7211da7-2098-41a0-a645-d60dd7a72e3f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Tue, 15 Feb 2022 19:27: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=2022-01-01.15.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMi0wMS0wMS4xNS4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "0908b72c-c734-478a-b2c3-844744db1566" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Tue, 15 Feb 2022 19:27:25 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "6c4d7002-0dda-4471-ba8a-e6304e692442" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Tue, 15 Feb 2022 19:27: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=2022-01-01.15.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMi0wMS0wMS4xNS4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "f3f9f7c0-84ed-45c2-83fb-3bf3786410cb" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Tue, 15 Feb 2022 19:27:27 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "0d520563-cfdf-4c84-ad87-dae33a14ca85" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Tue, 15 Feb 2022 19:27: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=2022-01-01.15.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMi0wMS0wMS4xNS4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "d5275285-58e4-446b-b638-6f37e79c4fa1" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Tue, 15 Feb 2022 19:27:29 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "b9bb0191-a693-4e9b-9efa-00e3945bea1d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Tue, 15 Feb 2022 19:27: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=2022-01-01.15.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMi0wMS0wMS4xNS4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "a537f1e6-743e-4810-bb96-7069deda582d" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Tue, 15 Feb 2022 19:27:31 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "9cac283e-9f73-4268-92a8-fbaa0e3ad442" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Tue, 15 Feb 2022 19:27: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=2022-01-01.15.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMi0wMS0wMS4xNS4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "74cedafe-2936-4812-852c-7db866b3658e" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Tue, 15 Feb 2022 19:27:33 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "fdc65ea7-a10e-4340-b466-7f1a51aff247" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Tue, 15 Feb 2022 19:27: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=2022-01-01.15.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMi0wMS0wMS4xNS4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "1b4f7586-c1c6-4593-9ea7-e95803174331" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Tue, 15 Feb 2022 19:27:35 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "75d15800-a67c-471a-bc4d-8b7fcb64223e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Tue, 15 Feb 2022 19:27: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=2022-01-01.15.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMi0wMS0wMS4xNS4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "8d82ceb3-d5db-4ccc-812c-2f13f7d07045" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Tue, 15 Feb 2022 19:27:37 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "8fbfeaf6-9807-44de-886f-7f7978d1fbfb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Tue, 15 Feb 2022 19:27: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=2022-01-01.15.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMi0wMS0wMS4xNS4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "5cbf028d-1a7c-42b5-9d1b-1d5bc841d8f6" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Tue, 15 Feb 2022 19:27:40 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "c41ade57-bcde-4a61-9f77-ba180eabf359" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Tue, 15 Feb 2022 19:27: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=2022-01-01.15.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMi0wMS0wMS4xNS4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "35e01218-37ee-4542-9f12-7c133fe554e3" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Tue, 15 Feb 2022 19:27:42 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "b181578f-2c14-42e4-99fd-fa7e858f1dce" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Tue, 15 Feb 2022 19:27: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=2022-01-01.15.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMi0wMS0wMS4xNS4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "bc1f02e5-b65b-4532-a18c-fc0325533661" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Tue, 15 Feb 2022 19:27:44 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "1a9fe45a-c96b-4ba8-b50a-18241291f7be" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Tue, 15 Feb 2022 19:27: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=2022-01-01.15.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMi0wMS0wMS4xNS4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "37829afd-afcc-4e1e-9f62-714d1d6317a8" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Tue, 15 Feb 2022 19:27:46 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "ab2c05c8-7e1c-4293-aabc-f5cb3ec9eee2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Tue, 15 Feb 2022 19:27: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=2022-01-01.15.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMi0wMS0wMS4xNS4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "3406bd86-e887-4697-ac01-1dd8b5973fce" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Tue, 15 Feb 2022 19:27:48 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "994d6733-3eeb-42b6-9fa8-c9b4f7ccc4c2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Tue, 15 Feb 2022 19:27: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=2022-01-01.15.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMi0wMS0wMS4xNS4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "4b10fb31-14b0-492a-a085-b9bd2b7e26f6" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Tue, 15 Feb 2022 19:27:50 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "c2ed8fe3-9ff7-47de-b7d6-10bad9bd1e95" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Tue, 15 Feb 2022 19:27: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=2022-01-01.15.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMi0wMS0wMS4xNS4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "85b81ed8-652d-4136-83bf-eef6f59f9642" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Tue, 15 Feb 2022 19:27:52 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "bc0e0f9d-8513-4b28-a5e0-9d9a86ddd952" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Tue, 15 Feb 2022 19:27: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=2022-01-01.15.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMi0wMS0wMS4xNS4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "ac44450f-2782-42c8-acbc-2517bb0b03db" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Tue, 15 Feb 2022 19:27:54 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "cb3c39cf-4f19-4a85-9108-fab838b30b27" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Tue, 15 Feb 2022 19:27: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=2022-01-01.15.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMi0wMS0wMS4xNS4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "213a408c-e168-4f4e-8506-04b3dc904fd9" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Tue, 15 Feb 2022 19:27:56 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "2eb3b432-2e7b-4f6a-a648-0a0dc5f241f9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Tue, 15 Feb 2022 19:27: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=2022-01-01.15.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMi0wMS0wMS4xNS4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "dbf0d190-5047-4e07-b93d-351d288c16b5" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Tue, 15 Feb 2022 19:27:58 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "0d0d56a3-02ac-4639-bc8b-752f1b7b511e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Tue, 15 Feb 2022 19:27: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=2022-01-01.15.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMi0wMS0wMS4xNS4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "a6530656-624c-4fc8-9784-405091a4ea44" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Tue, 15 Feb 2022 19:28:00 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "8b262c46-0ec1-4f72-aef4-7b2bf978aff9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Tue, 15 Feb 2022 19:27: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=2022-01-01.15.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMi0wMS0wMS4xNS4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "98571fec-4848-47ec-9f55-839f6b231bd9" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Tue, 15 Feb 2022 19:28:02 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "74b483fd-1319-47d9-bb9b-2e75dae088da" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Tue, 15 Feb 2022 19:28: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=2022-01-01.15.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMi0wMS0wMS4xNS4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "54b1be87-2408-43ff-bb73-50138edb3e57" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Tue, 15 Feb 2022 19:28:04 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "df629b68-1386-46b3-a43c-291e46b16a5c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Tue, 15 Feb 2022 19:28: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=2022-01-01.15.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMi0wMS0wMS4xNS4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "c72b90ee-8e3f-4e25-8e29-5745a318f060" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Tue, 15 Feb 2022 19:28:07 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "100755c6-6172-4c19-8334-6f9764a26062" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Tue, 15 Feb 2022 19:28: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=2022-01-01.15.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMi0wMS0wMS4xNS4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "08887869-09c5-4535-80e2-dd2e027d2066" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Tue, 15 Feb 2022 19:28:09 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "e1d3e0a0-ea23-4011-b70e-8b07a27005fa" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Tue, 15 Feb 2022 19:28: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=2022-01-01.15.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMi0wMS0wMS4xNS4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "6e2d4b26-f5f5-4795-8887-70d961fc50ad" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Tue, 15 Feb 2022 19:28:11 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "7a3ec8d9-62e2-48e3-ba8d-84358f2a9bb6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Tue, 15 Feb 2022 19:28: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=2022-01-01.15.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMi0wMS0wMS4xNS4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "0bad6ae1-aca6-4dc6-86a2-9861256fc1ca" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Tue, 15 Feb 2022 19:28:13 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "b6fcf236-d002-4d84-9be4-e653f13ff626" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Tue, 15 Feb 2022 19:28: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=2022-01-01.15.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMi0wMS0wMS4xNS4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "bd668683-8911-4688-b036-17f90d5bacfb" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Tue, 15 Feb 2022 19:28:15 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "ff11d4a4-7d56-4a63-b25c-6b0c3eaad9a1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Tue, 15 Feb 2022 19:28: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=2022-01-01.15.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMi0wMS0wMS4xNS4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "75ba77d6-d938-434c-ae0f-48e4ea6f219a" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Tue, 15 Feb 2022 19:28:17 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "3c6f31e5-e368-4119-8dfa-fabc73ffe708" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Tue, 15 Feb 2022 19:28: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=2022-01-01.15.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMi0wMS0wMS4xNS4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "34a3e6fc-44bd-4f6d-a66b-1dc0fc1fb14d" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Tue, 15 Feb 2022 19:28:19 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "e13ec9c9-c81e-4d60-9862-48c940e449d9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Tue, 15 Feb 2022 19:28: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=2022-01-01.15.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMi0wMS0wMS4xNS4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "591a7690-5f14-4f55-9ba0-b6f878377670" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Tue, 15 Feb 2022 19:28:21 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "baa9bdee-dc49-4d8c-8aa8-dc89197014a1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Tue, 15 Feb 2022 19:28: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=2022-01-01.15.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMi0wMS0wMS4xNS4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "3e363d67-13f9-4dff-8696-0cd1015d5865" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Tue, 15 Feb 2022 19:28:23 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "f46d6364-3df8-42ad-af6f-836b310daa1f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Tue, 15 Feb 2022 19:28: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=2022-01-01.15.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMi0wMS0wMS4xNS4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "baf98bac-18c1-4839-805c-9feb3a6bca0d" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Tue, 15 Feb 2022 19:28:25 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "3e098df3-77d4-4f4d-83f2-4117912c5a3b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Tue, 15 Feb 2022 19:28: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=2022-01-01.15.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMi0wMS0wMS4xNS4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "35f1f8fb-3d89-4580-8324-3c2738596f42" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Tue, 15 Feb 2022 19:28:27 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "12d1b8cc-ce81-4bed-b68d-91b55969cf04" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Tue, 15 Feb 2022 19:28: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=2022-01-01.15.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMi0wMS0wMS4xNS4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "749c04b7-c6e1-4b58-abb2-201edc50547a" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Tue, 15 Feb 2022 19:28:29 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "f99901b5-8402-44c3-8b6c-c7bbb68ef4d5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Tue, 15 Feb 2022 19:28: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=2022-01-01.15.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMi0wMS0wMS4xNS4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "fd11da38-328b-4697-9210-5d12f12b771a" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Tue, 15 Feb 2022 19:28:31 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "a898c80c-3cc0-48fd-be7b-73cbf41a5257" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Tue, 15 Feb 2022 19:28: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=2022-01-01.15.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMi0wMS0wMS4xNS4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "ed8ea226-77ec-4e34-ac28-55362563afe1" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Tue, 15 Feb 2022 19:28:34 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "c916c18a-e35e-4fc8-adbe-ecd13c3cdc43" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Tue, 15 Feb 2022 19:28: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=2022-01-01.15.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMi0wMS0wMS4xNS4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "10aee58a-8acc-4343-a372-9fd04913ea07" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Tue, 15 Feb 2022 19:28:36 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "fcb98494-2ef6-43f9-abd4-0bdafe060d02" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Tue, 15 Feb 2022 19:28: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=2022-01-01.15.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMi0wMS0wMS4xNS4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "23b90d42-320b-460f-9256-2fa3aff0aab7" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Tue, 15 Feb 2022 19:28:38 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "bad9498a-1644-4903-be3d-90b396cf23d0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Tue, 15 Feb 2022 19:28: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=2022-01-01.15.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMi0wMS0wMS4xNS4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "5d334661-aa24-45dd-9a91-cd86763176b2" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Tue, 15 Feb 2022 19:28:40 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "a42ead45-dd72-47a4-929f-b0ce9c800f17" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Tue, 15 Feb 2022 19:28: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=2022-01-01.15.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMi0wMS0wMS4xNS4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "e33063a1-0fc1-4256-a023-863c82914b74" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Tue, 15 Feb 2022 19:28:42 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "4ffc5853-2367-4626-9b40-41e1cc750834" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Tue, 15 Feb 2022 19:28: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=2022-01-01.15.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMi0wMS0wMS4xNS4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "f208f267-1137-43dc-8aa2-9a5cfcc8bcfc" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Tue, 15 Feb 2022 19:28:44 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "99c5e9b9-9173-4a18-ba97-ae469f836fc3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Tue, 15 Feb 2022 19:28: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=2022-01-01.15.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMi0wMS0wMS4xNS4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "1188c656-b231-4237-9d67-b54270cb9fe5" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Tue, 15 Feb 2022 19:28:46 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "b9ec2ba9-47f8-43c4-b632-d59b51d2e78f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Tue, 15 Feb 2022 19:28: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=2022-01-01.15.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMi0wMS0wMS4xNS4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "5aacf552-6aa3-4074-9dfb-0e936db3974f" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Tue, 15 Feb 2022 19:28:48 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "3ba6ab7a-971c-4447-971c-a865e649050c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Tue, 15 Feb 2022 19:28: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=2022-01-01.15.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMi0wMS0wMS4xNS4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "e7c1ee29-37d9-4e85-b9b5-964ce06eaf44" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Tue, 15 Feb 2022 19:28:50 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "6e61ec18-9a74-401f-8ce4-4ef20c074190" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Tue, 15 Feb 2022 19:28: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=2022-01-01.15.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMi0wMS0wMS4xNS4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "a14e447a-0462-498c-9e99-5e263e27715c" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Tue, 15 Feb 2022 19:28:52 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "0d892e63-b2b0-4fb6-baf4-2a2f219e0e71" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Tue, 15 Feb 2022 19:28: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=2022-01-01.15.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMi0wMS0wMS4xNS4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "be7a3a83-6051-4e35-88b3-8afc47b97b49" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Tue, 15 Feb 2022 19:28:54 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "571f54e3-b4d0-4340-85ab-fedb07cbf173" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Tue, 15 Feb 2022 19:28: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=2022-01-01.15.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMi0wMS0wMS4xNS4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "b9feb5fa-06f2-4e59-bd17-a4d5567b5542" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Tue, 15 Feb 2022 19:28:56 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "ca765353-58bc-4214-a95f-d09ea4ca9688" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Tue, 15 Feb 2022 19:28: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=2022-01-01.15.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMi0wMS0wMS4xNS4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "c9e99fdc-43f4-4d3b-98d2-ac4ef199e3ad" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Tue, 15 Feb 2022 19:28:58 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "5fe64cbc-5370-4bfb-ac3a-9d8777fc2ab4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Tue, 15 Feb 2022 19:28: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=2022-01-01.15.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMi0wMS0wMS4xNS4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "c2083ebb-c6ba-420a-9e41-05efeaa2c944" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Tue, 15 Feb 2022 19:29:01 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "17cdd617-430f-4f33-a5ba-2bc936a2db99" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Tue, 15 Feb 2022 19:29: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=2022-01-01.15.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMi0wMS0wMS4xNS4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "2fd739fc-a545-41bf-9a21-f33f84f43bb3" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Tue, 15 Feb 2022 19:29:03 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "8f54884c-4a49-4630-846b-1d3fa7a75cde" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Tue, 15 Feb 2022 19:29: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=2022-01-01.15.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMi0wMS0wMS4xNS4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "fb6fae84-a502-434b-b45d-f48dcb812fe8" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Tue, 15 Feb 2022 19:29:05 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "06ab92f5-c2d3-4b6e-ad23-1fed8f8ade1b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Tue, 15 Feb 2022 19:29: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=2022-01-01.15.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMi0wMS0wMS4xNS4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "e2db69d5-7104-4e6d-8237-128a42b2a188" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Tue, 15 Feb 2022 19:29:07 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "fe5960bb-095b-4840-82c8-26f10e4be48c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Tue, 15 Feb 2022 19:29: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=2022-01-01.15.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMi0wMS0wMS4xNS4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "75f2e804-5761-4acb-b8f9-f516e76499cf" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Tue, 15 Feb 2022 19:29:09 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "71b0b1a3-3e32-4d69-b232-fb4fed0fa1f1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Tue, 15 Feb 2022 19:29: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=2022-01-01.15.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMi0wMS0wMS4xNS4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "400b28ef-40fc-48ae-81a2-f74eb2ecfac7" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Tue, 15 Feb 2022 19:29:11 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "13c1aca7-568b-4f2c-b0b4-e107eaa94c9a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Tue, 15 Feb 2022 19:29: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=2022-01-01.15.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMi0wMS0wMS4xNS4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "807cdab3-5bf6-434a-80d1-cd42ff036491" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Tue, 15 Feb 2022 19:29:13 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "838501e6-d045-4ac7-8d4b-ea165acffd5c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Tue, 15 Feb 2022 19:29: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=2022-01-01.15.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMi0wMS0wMS4xNS4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "ac8e6cb1-81e4-4aa6-956b-660fcf535a54" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Tue, 15 Feb 2022 19:29:15 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "24060097-4624-4334-a491-7234f29cced8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Tue, 15 Feb 2022 19:29: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=2022-01-01.15.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMi0wMS0wMS4xNS4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "5ec22ce6-9f55-4fdb-bc33-6aa350167d23" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Tue, 15 Feb 2022 19:29:17 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "b279a5c6-d710-4213-9ed4-44e7f4eaed5c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Tue, 15 Feb 2022 19:29: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=2022-01-01.15.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMi0wMS0wMS4xNS4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "ccfcffab-22a5-46d0-b0fe-4a83db7bf218" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Tue, 15 Feb 2022 19:29:19 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "0a8f5384-d356-4fa5-b791-dd91a7cfa686" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Tue, 15 Feb 2022 19:29: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=2022-01-01.15.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMi0wMS0wMS4xNS4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "709ee214-c2a8-44d9-b440-98a3472d1608" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Tue, 15 Feb 2022 19:29:21 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "bb30e229-7557-4ffa-a9d8-3d790dc408fe" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Tue, 15 Feb 2022 19:29: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=2022-01-01.15.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMi0wMS0wMS4xNS4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "13553ddc-e0e2-4323-a475-8f8e89569113" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Tue, 15 Feb 2022 19:29:23 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "227c4895-494f-4457-8361-c0f16ab3c7c2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Tue, 15 Feb 2022 19:29: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=2022-01-01.15.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMi0wMS0wMS4xNS4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "9f7e833a-bce7-41ce-82eb-8164ed9f328e" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Tue, 15 Feb 2022 19:29:25 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "9ba372d6-0267-4d7e-9edc-f275193c9454" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Tue, 15 Feb 2022 19:29:25 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=2022-01-01.15.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMi0wMS0wMS4xNS4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "0082d3cc-7e93-4fb7-a707-04856baf8e6c" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Tue, 15 Feb 2022 19:29:28 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "d688d782-5c53-4efe-b550-5c0a35a0f193" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Tue, 15 Feb 2022 19:29:27 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=2022-01-01.15.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMi0wMS0wMS4xNS4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "6cf9124b-bc34-47ec-9602-73df940524d1" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Tue, 15 Feb 2022 19:29:30 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "cbf42786-5f7e-4ca3-8f53-e6d1b03bd4de" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Tue, 15 Feb 2022 19:29: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=2022-01-01.15.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMi0wMS0wMS4xNS4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "e0ad8d2c-8353-46e6-8f1f-21e29e71c3fe" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Tue, 15 Feb 2022 19:29:32 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "a3b20e36-42ff-4a21-a1ea-29cbe98933ff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Tue, 15 Feb 2022 19:29: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=2022-01-01.15.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMi0wMS0wMS4xNS4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "194ad42e-cecb-4887-a5bb-a5521a3a8519" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Tue, 15 Feb 2022 19:29:34 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "3eb45975-ac2d-4917-88d1-ab1e6878e36d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Tue, 15 Feb 2022 19:29: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=2022-01-01.15.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMi0wMS0wMS4xNS4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "7c1f7f3d-6cfe-43c7-9bde-a08f14467196" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Tue, 15 Feb 2022 19:29:36 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "c741ab80-c723-41f3-a74e-b7cf4b312c13" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Tue, 15 Feb 2022 19:29: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=2022-01-01.15.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMi0wMS0wMS4xNS4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "b23185ad-00a8-4c6b-9e14-0246f41cf54c" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Tue, 15 Feb 2022 19:29:38 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "49ae3d39-49d6-4a84-ab71-69fd22e09324" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Tue, 15 Feb 2022 19:29: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=2022-01-01.15.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMi0wMS0wMS4xNS4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "0ea82b21-ea23-4f68-942f-75283ba5c5b5" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Tue, 15 Feb 2022 19:29:40 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "5ac5af73-7130-4390-bfba-65dcade3b3ec" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Tue, 15 Feb 2022 19:29: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=2022-01-01.15.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMi0wMS0wMS4xNS4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "453c0c79-ebf5-48bf-b292-4a05bfb4da5b" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Tue, 15 Feb 2022 19:29:42 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "a4f4e63c-422f-484e-9172-5effed4a037f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Tue, 15 Feb 2022 19:29: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=2022-01-01.15.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMi0wMS0wMS4xNS4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "c42e5c1e-a990-45ae-8b16-fa1b6c15f272" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Tue, 15 Feb 2022 19:29:44 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "3b8de2f7-d1c3-4594-b2ba-ec63138295f3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Tue, 15 Feb 2022 19:29: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=2022-01-01.15.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMi0wMS0wMS4xNS4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "3ad2de53-35d2-4c67-8213-bbdfb63044a7" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Tue, 15 Feb 2022 19:29:46 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "972b9400-95e0-41e3-b7a1-80417c3d74d2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Tue, 15 Feb 2022 19:29: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=2022-01-01.15.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMi0wMS0wMS4xNS4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "bbb68119-2264-49c3-943d-164f67a9d7ff" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Tue, 15 Feb 2022 19:29:48 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "0787f6b1-713a-4a83-93f1-cf8ab7f3c186" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Tue, 15 Feb 2022 19:29: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=2022-01-01.15.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMi0wMS0wMS4xNS4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "5e3b0639-02a7-4aa7-9542-80931070665b" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Tue, 15 Feb 2022 19:29:50 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "4c8fbac0-7a61-444d-8888-0bdc9735cc2f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Tue, 15 Feb 2022 19:29: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=2022-01-01.15.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMi0wMS0wMS4xNS4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "b613925e-b9de-4e7c-996b-6843a715f32f" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Tue, 15 Feb 2022 19:29:52 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "012ffbf6-f761-46af-bb22-c8b5cc5c2536" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Tue, 15 Feb 2022 19:29: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=2022-01-01.15.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMi0wMS0wMS4xNS4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "06afb3f5-33ce-4779-9f91-00ba6b66f839" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Tue, 15 Feb 2022 19:29:54 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "a9e17d53-bcda-4f79-915d-5bfb9adc0441" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Tue, 15 Feb 2022 19:29: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=2022-01-01.15.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMi0wMS0wMS4xNS4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "ac667cf2-ff40-4a38-a510-c093218998e9" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Tue, 15 Feb 2022 19:29:56 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "5251f531-92ea-4bf6-b4ea-d6ea1ee0f8fa" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Tue, 15 Feb 2022 19:29: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=2022-01-01.15.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMi0wMS0wMS4xNS4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "3ea5d96a-2d14-42e5-ac1d-65f486008c7b" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Tue, 15 Feb 2022 19:29:59 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "bff76bd2-5697-4843-94a7-f4f50d7d2a97" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Tue, 15 Feb 2022 19:29: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=2022-01-01.15.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMi0wMS0wMS4xNS4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "477598de-6926-43c7-bc32-47bb949dda04" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Tue, 15 Feb 2022 19:30:01 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "47e6a0ab-3261-4484-86e5-c9a8feb5e23c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Tue, 15 Feb 2022 19:29: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=2022-01-01.15.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMi0wMS0wMS4xNS4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "53acf681-822f-405e-a937-b562d5821b68" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Tue, 15 Feb 2022 19:30:03 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "47a3693e-6ef8-403a-976c-468bc655e7e6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Tue, 15 Feb 2022 19:30: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=2022-01-01.15.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMi0wMS0wMS4xNS4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "7c096f99-68c6-47b1-94a9-8c4305e8ae28" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Tue, 15 Feb 2022 19:30:05 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "755e1665-05d6-4d98-979d-dbd5c5b278bd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Tue, 15 Feb 2022 19:30: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=2022-01-01.15.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMi0wMS0wMS4xNS4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "1e6c9b6e-c705-471f-989c-1a117aea514a" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Tue, 15 Feb 2022 19:30:07 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "2142fd38-776e-4355-8f4a-f9138ec250ad" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Tue, 15 Feb 2022 19:30: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=2022-01-01.15.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMi0wMS0wMS4xNS4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "b303f8f1-cd2a-45e9-964c-6b51ad831606" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Tue, 15 Feb 2022 19:30:09 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "6497c33a-6b53-4887-b115-30da6a0a7adc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Tue, 15 Feb 2022 19:30: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=2022-01-01.15.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMi0wMS0wMS4xNS4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "12af5f18-2285-4aec-8d1c-f4e1f57216c3" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Tue, 15 Feb 2022 19:30:11 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "9205b3f6-2562-4fad-bda0-1d9d6159c497" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Tue, 15 Feb 2022 19:30: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=2022-01-01.15.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMi0wMS0wMS4xNS4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "5fc5759c-418a-44b8-979b-16b918a43984" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Tue, 15 Feb 2022 19:30:13 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "dd7383ef-855d-44d5-a0cc-923a20c02787" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Tue, 15 Feb 2022 19:30: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=2022-01-01.15.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMi0wMS0wMS4xNS4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "4a94c790-742e-4e69-acff-1b584bd5945b" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Tue, 15 Feb 2022 19:30:15 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "4092e342-bdd5-469c-addf-970821512468" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Tue, 15 Feb 2022 19:30: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=2022-01-01.15.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMi0wMS0wMS4xNS4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "705b73aa-e357-4100-8cbe-94f7dbab2dbf" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Tue, 15 Feb 2022 19:30:17 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "fcc5cea4-142e-449e-9750-726eece68d64" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Tue, 15 Feb 2022 19:30: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=2022-01-01.15.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMi0wMS0wMS4xNS4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "2c8b6e6d-a946-417b-bd9e-7213eb6d920f" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Tue, 15 Feb 2022 19:30:19 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "56f03a41-9afe-48ce-9073-22ca45c12088" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Tue, 15 Feb 2022 19:30: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=2022-01-01.15.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMi0wMS0wMS4xNS4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "8392ae27-3df6-4ac4-8a6f-ad2e57c80032" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Tue, 15 Feb 2022 19:30:21 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "f7266d6c-d6db-4df4-a60c-5c2cd1cf585d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Tue, 15 Feb 2022 19:30:21 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=2022-01-01.15.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMi0wMS0wMS4xNS4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "7a71b8ac-be45-40a5-875c-9eb252069961" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Tue, 15 Feb 2022 19:30:24 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "f57cba9c-43f2-474b-a779-22f13563eb85" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Tue, 15 Feb 2022 19:30:23 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=2022-01-01.15.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMi0wMS0wMS4xNS4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "e1f83719-0176-4a3c-9a8f-f8dae29dec90" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Tue, 15 Feb 2022 19:30:26 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "c1157925-4b72-43c3-b34f-33272e2830b6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Tue, 15 Feb 2022 19:30:25 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=2022-01-01.15.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMi0wMS0wMS4xNS4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "17ea1006-0890-41e9-a5ec-0dd6d8144465" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Tue, 15 Feb 2022 19:30:28 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "60e6149d-c0d1-4d30-9980-148eca3141b1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Tue, 15 Feb 2022 19:30:27 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=2022-01-01.15.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMi0wMS0wMS4xNS4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "40432225-52f3-41e1-b9d6-0d9bdb0b2955" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Tue, 15 Feb 2022 19:30:30 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "424c1772-e2e6-4ca3-bab2-1edeb719943d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Tue, 15 Feb 2022 19:30: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=2022-01-01.15.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMi0wMS0wMS4xNS4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "8f4a46a2-f731-459a-a3ee-2e2ac47f7ee8" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Tue, 15 Feb 2022 19:30:32 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "15f2a9ea-0444-41aa-8bf7-b77d314ff9da" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Tue, 15 Feb 2022 19:30: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=2022-01-01.15.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMi0wMS0wMS4xNS4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "ef9e79bb-e790-477e-87c7-a8291d666973" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Tue, 15 Feb 2022 19:30:34 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "4b4a4512-cc74-4c97-b13f-886bf0eecd31" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Tue, 15 Feb 2022 19:30: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=2022-01-01.15.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMi0wMS0wMS4xNS4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "ef277720-5710-4988-a9c5-3ba75cce079d" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Tue, 15 Feb 2022 19:30:36 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "b70bfc85-e13f-4d66-933d-430fcc1aff6c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Tue, 15 Feb 2022 19:30: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=2022-01-01.15.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMi0wMS0wMS4xNS4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "b59afc51-d002-48a3-b21b-a19f2d33f225" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Tue, 15 Feb 2022 19:30:38 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "6314c9d8-47ef-4e7e-a9de-df775be4ca06" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Tue, 15 Feb 2022 19:30: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=2022-01-01.15.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMi0wMS0wMS4xNS4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "5802b6fe-bad9-40a2-aa48-8f547403001d" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Tue, 15 Feb 2022 19:30:40 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "3822b3fc-c818-4511-b065-6cffa890dc63" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Tue, 15 Feb 2022 19:30: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\": \"running\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/listSubtaskJob/tasks?api-version=2022-01-01.15.0&$filter=id%20eq%20%27testTask%27&$select=id%2Cstate", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMi0wMS0wMS4xNS4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rlc3RUYXNrJTI3JiRzZWxlY3Q9aWQlMkNzdGF0ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "4c7d5642-8b6b-4d52-91df-bf9ee3277728" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Tue, 15 Feb 2022 19:30:42 GMT" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "770f0c22-6f3e-4b4c-8a5f-d5380ee2be07" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Tue, 15 Feb 2022 19:30: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\": \"completed\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/jobs/listSubtaskJob/tasks/testTask/subtasksinfo?api-version=2022-01-01.15.0", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3MvdGVzdFRhc2svc3VidGFza3NpbmZvP2FwaS12ZXJzaW9uPTIwMjItMDEtMDEuMTUuMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "ddedbc6f-4ba9-4b87-802e-84278412b87b" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Tue, 15 Feb 2022 19:30:43 GMT" + ], + "x-ms-client-request-id": [ + "c5852306-fc38-43f4-867a-09a2a9f86d18" + ], + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", + "AzurePowershell/Az1.0.0" + ] + }, + "ResponseHeaders": { + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "request-id": [ + "4f3659f9-fdd5-4e05-a400-22b3a934bb6e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0" + ], + "Date": [ + "Tue, 15 Feb 2022 19:30:43 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\": \"2022-02-15T19:30:38.430722Z\",\r\n \"endTime\": \"2022-02-15T19:30:41.633114Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2022-02-15T19:30:41.633114Z\",\r\n \"previousState\": \"running\",\r\n \"previousStateTransitionTime\": \"2022-02-15T19:30:38.381802Z\",\r\n \"result\": \"success\",\r\n \"exitCode\": 0,\r\n \"nodeInfo\": {\r\n \"affinityId\": \"TVM:tvmps_090c80a26363be75590a9faa8fbb3be822df67df49a6bbf13235720bf7a1bbe8_d\",\r\n \"nodeUrl\": \"https://mikeportal.eastus.batch.azure.com/pools/mpiPool/nodes/tvmps_090c80a26363be75590a9faa8fbb3be822df67df49a6bbf13235720bf7a1bbe8_d\",\r\n \"poolId\": \"mpiPool\",\r\n \"nodeId\": \"tvmps_090c80a26363be75590a9faa8fbb3be822df67df49a6bbf13235720bf7a1bbe8_d\",\r\n \"taskRootDirectory\": \"workitems\\\\listSubtaskJob\\\\job-1\\\\testTask\",\r\n \"taskRootDirectoryUrl\": \"https://mikeportal.eastus.batch.azure.com/pools/mpiPool/nodes/tvmps_090c80a26363be75590a9faa8fbb3be822df67df49a6bbf13235720bf7a1bbe8_d/files/workitems/listSubtaskJob/job-1/testTask\"\r\n }\r\n },\r\n {\r\n \"id\": 2,\r\n \"startTime\": \"2022-02-15T19:30:38.409896Z\",\r\n \"endTime\": \"2022-02-15T19:30:41.607445Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2022-02-15T19:30:41.607445Z\",\r\n \"previousState\": \"running\",\r\n \"previousStateTransitionTime\": \"2022-02-15T19:30:38.363019Z\",\r\n \"result\": \"success\",\r\n \"exitCode\": 0,\r\n \"nodeInfo\": {\r\n \"affinityId\": \"TVM:tvmps_4d95b6b52be1ca0a7f3cadd8d9c40a58abbace7766f57785b5685745ca55acc4_d\",\r\n \"nodeUrl\": \"https://mikeportal.eastus.batch.azure.com/pools/mpiPool/nodes/tvmps_4d95b6b52be1ca0a7f3cadd8d9c40a58abbace7766f57785b5685745ca55acc4_d\",\r\n \"poolId\": \"mpiPool\",\r\n \"nodeId\": \"tvmps_4d95b6b52be1ca0a7f3cadd8d9c40a58abbace7766f57785b5685745ca55acc4_d\",\r\n \"taskRootDirectory\": \"workitems\\\\listSubtaskJob\\\\job-1\\\\testTask\",\r\n \"taskRootDirectoryUrl\": \"https://mikeportal.eastus.batch.azure.com/pools/mpiPool/nodes/tvmps_4d95b6b52be1ca0a7f3cadd8d9c40a58abbace7766f57785b5685745ca55acc4_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=2022-01-01.15.0", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2IvdGFza3MvdGVzdFRhc2svc3VidGFza3NpbmZvP2FwaS12ZXJzaW9uPTIwMjItMDEtMDEuMTUuMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "b23b32ee-9a0f-45cd-8d65-4df55ac84f15" + ], + "Accept-Language": [ + "en-US" + ], + "ocp-date": [ + "Tue, 15 Feb 2022 19:30:44 GMT" + ], + "x-ms-client-request-id": [ + "7a1c682d-52c1-475a-88e5-4cb24fbcee17" ], "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.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", "AzurePowershell/Az1.0.0" ] }, @@ -547,7 +7845,7 @@ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "0a9d4734-cd93-4331-8e15-1458417ee595" + "7d075542-933c-4ebe-a3db-e8113ed86cbe" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -559,35 +7857,35 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 22:33:08 GMT" + "Tue, 15 Feb 2022 19:30:43 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\": \"2022-02-15T19:30:38.430722Z\",\r\n \"endTime\": \"2022-02-15T19:30:41.633114Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2022-02-15T19:30:41.633114Z\",\r\n \"previousState\": \"running\",\r\n \"previousStateTransitionTime\": \"2022-02-15T19:30:38.381802Z\",\r\n \"result\": \"success\",\r\n \"exitCode\": 0,\r\n \"nodeInfo\": {\r\n \"affinityId\": \"TVM:tvmps_090c80a26363be75590a9faa8fbb3be822df67df49a6bbf13235720bf7a1bbe8_d\",\r\n \"nodeUrl\": \"https://mikeportal.eastus.batch.azure.com/pools/mpiPool/nodes/tvmps_090c80a26363be75590a9faa8fbb3be822df67df49a6bbf13235720bf7a1bbe8_d\",\r\n \"poolId\": \"mpiPool\",\r\n \"nodeId\": \"tvmps_090c80a26363be75590a9faa8fbb3be822df67df49a6bbf13235720bf7a1bbe8_d\",\r\n \"taskRootDirectory\": \"workitems\\\\listSubtaskJob\\\\job-1\\\\testTask\",\r\n \"taskRootDirectoryUrl\": \"https://mikeportal.eastus.batch.azure.com/pools/mpiPool/nodes/tvmps_090c80a26363be75590a9faa8fbb3be822df67df49a6bbf13235720bf7a1bbe8_d/files/workitems/listSubtaskJob/job-1/testTask\"\r\n }\r\n },\r\n {\r\n \"id\": 2,\r\n \"startTime\": \"2022-02-15T19:30:38.409896Z\",\r\n \"endTime\": \"2022-02-15T19:30:41.607445Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2022-02-15T19:30:41.607445Z\",\r\n \"previousState\": \"running\",\r\n \"previousStateTransitionTime\": \"2022-02-15T19:30:38.363019Z\",\r\n \"result\": \"success\",\r\n \"exitCode\": 0,\r\n \"nodeInfo\": {\r\n \"affinityId\": \"TVM:tvmps_4d95b6b52be1ca0a7f3cadd8d9c40a58abbace7766f57785b5685745ca55acc4_d\",\r\n \"nodeUrl\": \"https://mikeportal.eastus.batch.azure.com/pools/mpiPool/nodes/tvmps_4d95b6b52be1ca0a7f3cadd8d9c40a58abbace7766f57785b5685745ca55acc4_d\",\r\n \"poolId\": \"mpiPool\",\r\n \"nodeId\": \"tvmps_4d95b6b52be1ca0a7f3cadd8d9c40a58abbace7766f57785b5685745ca55acc4_d\",\r\n \"taskRootDirectory\": \"workitems\\\\listSubtaskJob\\\\job-1\\\\testTask\",\r\n \"taskRootDirectoryUrl\": \"https://mikeportal.eastus.batch.azure.com/pools/mpiPool/nodes/tvmps_4d95b6b52be1ca0a7f3cadd8d9c40a58abbace7766f57785b5685745ca55acc4_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=2022-01-01.15.0", + "EncodedRequestUri": "L2pvYnMvbGlzdFN1YnRhc2tKb2I/YXBpLXZlcnNpb249MjAyMi0wMS0wMS4xNS4w", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "7115fbad-c58a-491a-bc36-94ff7c872e25" + "32e349ab-a127-48ad-80c8-f4aacf11f6a3" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:33:08 GMT" + "Tue, 15 Feb 2022 19:30: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.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", "AzurePowershell/Az1.0.0" ], "Content-Length": [ @@ -602,7 +7900,7 @@ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "4e371537-00b2-4f06-87b0-319aeadbed45" + "e88e76d5-1af1-4e54-8de8-73f9cf4ef645" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -614,7 +7912,7 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 22:33:08 GMT" + "Tue, 15 Feb 2022 19:30:43 GMT" ] }, "ResponseBody": "", @@ -623,9 +7921,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..024d89ab7e15 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=2022-01-01.15.0", + "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAyMi0wMS0wMS4xNS4w", "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" + "fc5113bc-553c-46ad-8b6b-476d58481dc1" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:33:10 GMT" + "Tue, 15 Feb 2022 19:30: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.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", "AzurePowershell/Az1.0.0" ], "Content-Type": [ @@ -34,16 +34,16 @@ "chunked" ], "ETag": [ - "0x8D80CC523A9DCFE" + "0x8D9F0B9AA084E90" ], "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" + "dda545bd-8c4c-44ce-8eb4-bfcf59cc92e2" ], "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" + "Tue, 15 Feb 2022 19:30:45 GMT" ], "Last-Modified": [ - "Tue, 09 Jun 2020 22:33:31 GMT" + "Tue, 15 Feb 2022 19:30:46 GMT" ] }, "ResponseBody": "", "StatusCode": 201 }, { - "RequestUri": "/jobs/taskCrudJob/tasks?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L2pvYnMvdGFza0NydWRKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMC0wMy0wMS4xMS4w", + "RequestUri": "/jobs/taskCrudJob/tasks?api-version=2022-01-01.15.0", + "EncodedRequestUri": "L2pvYnMvdGFza0NydWRKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMi0wMS0wMS4xNS4w", "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" + "048c3e7c-02da-4aaf-b45e-2e67c18102b6" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:33:32 GMT" + "Tue, 15 Feb 2022 19:30:47 GMT" + ], + "x-ms-client-request-id": [ + "89a60d54-96a9-43fc-8e75-46ece5914537" ], "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.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", "AzurePowershell/Az1.0.0" ], "Content-Type": [ @@ -101,16 +104,16 @@ "chunked" ], "ETag": [ - "0x8D80CC530E550B4" + "0x8D9F0B9AA7BF811" ], "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" + "07c0c4eb-bd4f-45f1-b4d1-ebb8f91d5208" ], "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" + "Tue, 15 Feb 2022 19:30:46 GMT" ], "Last-Modified": [ - "Tue, 09 Jun 2020 22:33:54 GMT" + "Tue, 15 Feb 2022 19:30:46 GMT" ] }, "ResponseBody": "", "StatusCode": 201 }, { - "RequestUri": "/jobs/taskCrudJob/tasks?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L2pvYnMvdGFza0NydWRKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMC0wMy0wMS4xMS4w", + "RequestUri": "/jobs/taskCrudJob/tasks?api-version=2022-01-01.15.0", + "EncodedRequestUri": "L2pvYnMvdGFza0NydWRKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMi0wMS0wMS4xNS4w", "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" + "49464ce7-6ec9-41c6-a23c-3c2b21dcda82" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:33:54 GMT" + "Tue, 15 Feb 2022 19:30:47 GMT" + ], + "x-ms-client-request-id": [ + "50b9de55-26e9-485a-8db0-3e7d94a19449" ], "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.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", "AzurePowershell/Az1.0.0" ], "Content-Type": [ @@ -168,16 +174,16 @@ "chunked" ], "ETag": [ - "0x8D80CC53102E3C1" + "0x8D9F0B9AA8790DC" ], "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" + "2b69f14b-948e-4eee-8eab-ba84d7ee2d2b" ], "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" + "Tue, 15 Feb 2022 19:30:46 GMT" ], "Last-Modified": [ - "Tue, 09 Jun 2020 22:33:54 GMT" + "Tue, 15 Feb 2022 19:30:47 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=2022-01-01.15.0&$filter=id%20eq%20%27task1%27%20or%20id%20eq%20%27task2%27", + "EncodedRequestUri": "L2pvYnMvdGFza0NydWRKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMi0wMS0wMS4xNS4wJiRmaWx0ZXI9aWQlMjBlcSUyMCUyN3Rhc2sxJTI3JTIwb3IlMjBpZCUyMGVxJTIwJTI3dGFzazIlMjc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "c8a48bfd-1dc9-46cd-8248-40e27165385c" + "666ce0cf-e4ae-4f7c-933c-cc9de977435a" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:33:54 GMT" + "Tue, 15 Feb 2022 19:30:47 GMT" + ], + "x-ms-client-request-id": [ + "af79d236-e573-45d5-8b2b-9a04d4262d98" ], "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.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", "AzurePowershell/Az1.0.0" ] }, @@ -232,7 +241,7 @@ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "4c728dbb-8b9c-412c-a42d-5c8d1efada32" + "24f271cd-8bba-4f15-b87e-ee48a5d56313" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -244,35 +253,38 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 22:33:54 GMT" + "Tue, 15 Feb 2022 19:30:46 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\": \"0x8D9F0B9AA7BF811\",\r\n \"creationTime\": \"2022-02-15T19:30:46.9502993Z\",\r\n \"lastModified\": \"2022-02-15T19:30:46.9502993Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2022-02-15T19:30:46.9502993Z\",\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\": \"0x8D9F0B9AA8790DC\",\r\n \"creationTime\": \"2022-02-15T19:30:47.0263004Z\",\r\n \"lastModified\": \"2022-02-15T19:30:47.0263004Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2022-02-15T19:30:47.0263004Z\",\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=2022-01-01.15.0", + "EncodedRequestUri": "L2pvYnMvdGFza0NydWRKb2IvdGFza3MvdGFzazI/YXBpLXZlcnNpb249MjAyMi0wMS0wMS4xNS4w", "RequestMethod": "PUT", "RequestBody": "{\r\n \"constraints\": {\r\n \"maxTaskRetryCount\": 3\r\n }\r\n}", "RequestHeaders": { "client-request-id": [ - "bf322370-fae1-41c7-a340-86dcad0a4d2c" + "f649f9db-de66-40a8-b1cb-4baa1406af41" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:33:54 GMT" + "Tue, 15 Feb 2022 19:30:47 GMT" + ], + "x-ms-client-request-id": [ + "955a787c-d6ff-4424-93a3-c38f1ba016b6" ], "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.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", "AzurePowershell/Az1.0.0" ], "Content-Type": [ @@ -287,13 +299,13 @@ "chunked" ], "ETag": [ - "0x8D80CC53143EDEA" + "0x8D9F0B9AAA8AD6F" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "61a03e90-efd4-451e-b753-2e7106b5fe1b" + "92b91741-d3c3-41e2-a225-a144e749f021" ], "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" + "Tue, 15 Feb 2022 19:30:46 GMT" ], "Last-Modified": [ - "Tue, 09 Jun 2020 22:33:54 GMT" + "Tue, 15 Feb 2022 19:30:47 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=2022-01-01.15.0", + "EncodedRequestUri": "L2pvYnMvdGFza0NydWRKb2IvdGFza3MvdGFzazI/YXBpLXZlcnNpb249MjAyMi0wMS0wMS4xNS4w", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "fbc1423d-ef75-41bc-8371-74fd3341d3bc" + "e966ed1e-1979-4a05-9841-402649968955" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:33:54 GMT" + "Tue, 15 Feb 2022 19:30:47 GMT" + ], + "x-ms-client-request-id": [ + "926d4f2e-a641-43c7-9f24-f52ea3004459" ], "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.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", "AzurePowershell/Az1.0.0" ] }, @@ -345,13 +360,13 @@ "chunked" ], "ETag": [ - "0x8D80CC53143EDEA" + "0x8D9F0B9AAA8AD6F" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "a35a026c-b62a-4c46-a1d5-d96978527d8b" + "efe5f430-add9-4f7e-8fcd-bb4a66ea4ab5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -363,38 +378,41 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 22:33:54 GMT" + "Tue, 15 Feb 2022 19:30:46 GMT" ], "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Tue, 09 Jun 2020 22:33:54 GMT" + "Tue, 15 Feb 2022 19:30:47 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\": \"0x8D9F0B9AAA8AD6F\",\r\n \"creationTime\": \"2022-02-15T19:30:47.0263004Z\",\r\n \"lastModified\": \"2022-02-15T19:30:47.2433007Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2022-02-15T19:30:47.0263004Z\",\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=2022-01-01.15.0", + "EncodedRequestUri": "L2pvYnMvdGFza0NydWRKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMi0wMS0wMS4xNS4w", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "230f2d72-de8c-417f-af06-d8589dc83eed" + "c85ae5fb-08ca-409a-98c5-dd0c1990bd07" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:33:55 GMT" + "Tue, 15 Feb 2022 19:30:47 GMT" + ], + "x-ms-client-request-id": [ + "b5b7abc2-6f70-47bb-a3e9-317ea1f4aec1" ], "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.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", "AzurePowershell/Az1.0.0" ] }, @@ -406,7 +424,7 @@ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "6a15867d-b345-4036-894f-0474b5a26673" + "f29e7429-07a7-49a2-9146-9e29f9586373" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -418,35 +436,38 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 22:33:54 GMT" + "Tue, 15 Feb 2022 19:30:46 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\": \"0x8D9F0B9AA7BF811\",\r\n \"creationTime\": \"2022-02-15T19:30:46.9502993Z\",\r\n \"lastModified\": \"2022-02-15T19:30:46.9502993Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2022-02-15T19:30:46.9502993Z\",\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\": \"0x8D9F0B9AAA8AD6F\",\r\n \"creationTime\": \"2022-02-15T19:30:47.0263004Z\",\r\n \"lastModified\": \"2022-02-15T19:30:47.2433007Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2022-02-15T19:30:47.0263004Z\",\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=2022-01-01.15.0", + "EncodedRequestUri": "L2pvYnMvdGFza0NydWRKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMi0wMS0wMS4xNS4w", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "4bb3ff70-4057-4a88-b0c2-99057fe450d7" + "6daebcbe-be45-4b02-8e36-d89e7a35cdec" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:33:55 GMT" + "Tue, 15 Feb 2022 19:30:48 GMT" + ], + "x-ms-client-request-id": [ + "754d60ca-ce4e-4e5c-8789-e9eadf891f96" ], "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.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", "AzurePowershell/Az1.0.0" ] }, @@ -458,7 +479,7 @@ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "3c7317a8-3374-4a83-b1b6-8850753dc6ff" + "5fd31e31-c7f8-41ab-95a3-42ad818e891d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -470,35 +491,38 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 22:33:55 GMT" + "Tue, 15 Feb 2022 19:30: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}", + "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=2022-01-01.15.0", + "EncodedRequestUri": "L2pvYnMvdGFza0NydWRKb2IvdGFza3MvdGFzazE/YXBpLXZlcnNpb249MjAyMi0wMS0wMS4xNS4w", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "d6c32e85-f0d0-43e6-a551-18b3f8328125" + "4baa0a69-c3cd-429c-a234-bc0532af825c" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:33:55 GMT" + "Tue, 15 Feb 2022 19:30:47 GMT" + ], + "x-ms-client-request-id": [ + "b5b7abc2-6f70-47bb-a3e9-317ea1f4aec1" ], "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.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", "AzurePowershell/Az1.0.0" ], "Content-Length": [ @@ -513,7 +537,7 @@ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "5aa05f60-bbc5-426c-a039-630fd716a545" + "6366152f-9b03-4040-af1e-81d605fded31" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -525,32 +549,35 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 22:33:55 GMT" + "Tue, 15 Feb 2022 19:30:47 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=2022-01-01.15.0", + "EncodedRequestUri": "L2pvYnMvdGFza0NydWRKb2IvdGFza3MvdGFzazI/YXBpLXZlcnNpb249MjAyMi0wMS0wMS4xNS4w", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "e7bdb516-5ba7-4fef-812d-b86dae55c5fe" + "eb3d7430-c762-4ede-b8b8-0460edf6943e" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:33:55 GMT" + "Tue, 15 Feb 2022 19:30:47 GMT" + ], + "x-ms-client-request-id": [ + "b5b7abc2-6f70-47bb-a3e9-317ea1f4aec1" ], "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.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", "AzurePowershell/Az1.0.0" ], "Content-Length": [ @@ -565,7 +592,7 @@ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "55647722-c833-4f07-8eeb-393b56da8068" + "c17eb32e-16e7-489d-adbe-df2d46ba314e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -577,32 +604,32 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 22:33:55 GMT" + "Tue, 15 Feb 2022 19:30:47 GMT" ] }, "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/jobs/taskCrudJob?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L2pvYnMvdGFza0NydWRKb2I/YXBpLXZlcnNpb249MjAyMC0wMy0wMS4xMS4w", + "RequestUri": "/jobs/taskCrudJob?api-version=2022-01-01.15.0", + "EncodedRequestUri": "L2pvYnMvdGFza0NydWRKb2I/YXBpLXZlcnNpb249MjAyMi0wMS0wMS4xNS4w", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "c8c9a04b-78ea-441c-ac97-892f5d59d8ef" + "ed9c480a-18a8-4291-ab4b-dc162908006d" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:33:55 GMT" + "Tue, 15 Feb 2022 19:30: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.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", "AzurePowershell/Az1.0.0" ], "Content-Length": [ @@ -617,7 +644,7 @@ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "9c7171b0-fa89-47d7-8540-47dac12b5181" + "c05494c7-64a9-476b-b417-abec82002e39" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -629,7 +656,7 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 22:33:55 GMT" + "Tue, 15 Feb 2022 19:30:46 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..02f989d5d6dc 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=2022-01-01.15.0", + "EncodedRequestUri": "L2pvYnM/YXBpLXZlcnNpb249MjAyMi0wMS0wMS4xNS4w", "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" + "ea674a0c-416b-4248-b7f2-b47beb607aaf" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:33:57 GMT" + "Tue, 15 Feb 2022 19:30:50 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.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", "AzurePowershell/Az1.0.0" ], "Content-Type": [ @@ -34,16 +34,16 @@ "chunked" ], "ETag": [ - "0x8D80CC53F8DF03B" + "0x8D9F0B9ACD60843" ], "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" + "ac51c3c5-fa92-496c-89ae-f2799df2426e" ], "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" + "Tue, 15 Feb 2022 19:30:50 GMT" ], "Last-Modified": [ - "Tue, 09 Jun 2020 22:34:18 GMT" + "Tue, 15 Feb 2022 19:30:50 GMT" ] }, "ResponseBody": "", "StatusCode": 201 }, { - "RequestUri": "/jobs/testTerminateTaskJob/tasks?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L2pvYnMvdGVzdFRlcm1pbmF0ZVRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMC0wMy0wMS4xMS4w", + "RequestUri": "/jobs/testTerminateTaskJob/tasks?api-version=2022-01-01.15.0", + "EncodedRequestUri": "L2pvYnMvdGVzdFRlcm1pbmF0ZVRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMi0wMS0wMS4xNS4w", "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" + "4a0bdc34-30cf-4c7a-9a1f-365f9003c1e9" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:34:18 GMT" + "Tue, 15 Feb 2022 19:30: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.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", "AzurePowershell/Az1.0.0" ], "Content-Type": [ @@ -101,16 +101,16 @@ "chunked" ], "ETag": [ - "0x8D80CC53FAB2597" + "0x8D9F0B9ACE479F6" ], "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" + "d18af895-b209-4cab-87f5-531bd139464a" ], "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" + "Tue, 15 Feb 2022 19:30:50 GMT" ], "Last-Modified": [ - "Tue, 09 Jun 2020 22:34:18 GMT" + "Tue, 15 Feb 2022 19:30:50 GMT" ] }, "ResponseBody": "", "StatusCode": 201 }, { - "RequestUri": "/jobs/testTerminateTaskJob/tasks?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L2pvYnMvdGVzdFRlcm1pbmF0ZVRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMC0wMy0wMS4xMS4w", + "RequestUri": "/jobs/testTerminateTaskJob/tasks?api-version=2022-01-01.15.0", + "EncodedRequestUri": "L2pvYnMvdGVzdFRlcm1pbmF0ZVRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMi0wMS0wMS4xNS4w", "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" + "72fdf98b-3ad5-4fc7-87d7-72d2017ac03c" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:34:18 GMT" + "Tue, 15 Feb 2022 19:30: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.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", "AzurePowershell/Az1.0.0" ], "Content-Type": [ @@ -168,16 +168,16 @@ "chunked" ], "ETag": [ - "0x8D80CC53FC5E180" + "0x8D9F0B9ACF0FD0A" ], "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" + "e4bf0886-3716-43d4-a163-91ea7d5b3502" ], "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" + "Tue, 15 Feb 2022 19:30:51 GMT" ], "Last-Modified": [ - "Tue, 09 Jun 2020 22:34:19 GMT" + "Tue, 15 Feb 2022 19:30:51 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=2022-01-01.15.0", + "EncodedRequestUri": "L2pvYnMvdGVzdFRlcm1pbmF0ZVRhc2tKb2IvdGFza3MvdGVzdFRhc2sxL3Rlcm1pbmF0ZT9hcGktdmVyc2lvbj0yMDIyLTAxLTAxLjE1LjA=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "cbc62edd-e6b9-4daa-8480-4e61e29d72f4" + "3e452198-5ab9-4c4d-847e-1970670f9b26" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:34:19 GMT" + "Tue, 15 Feb 2022 19:30:52 GMT" + ], + "x-ms-client-request-id": [ + "f5f13c60-24f6-49bb-b8d9-9d1879b4c4db" ], "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.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", "AzurePowershell/Az1.0.0" ], "Content-Length": [ @@ -229,13 +232,13 @@ }, "ResponseHeaders": { "ETag": [ - "0x8D80CC54D0816FA" + "0x8D9F0B9AD6A1BBC" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "eeddde3c-9bdd-472f-8113-d59108844788" + "53e2443d-11bf-469f-a6e0-ad9c32be5ed1" ], "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" + "Tue, 15 Feb 2022 19:30:51 GMT" ], "Content-Length": [ "0" ], "Last-Modified": [ - "Tue, 09 Jun 2020 22:34:41 GMT" + "Tue, 15 Feb 2022 19:30:51 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=2022-01-01.15.0", + "EncodedRequestUri": "L2pvYnMvdGVzdFRlcm1pbmF0ZVRhc2tKb2IvdGFza3MvdGVzdFRhc2syP2FwaS12ZXJzaW9uPTIwMjItMDEtMDEuMTUuMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "0fb75631-1b3b-48aa-942a-cd13f6b70ea2" + "f4c669d4-3e98-4abf-945b-154fefe20401" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:34:41 GMT" + "Tue, 15 Feb 2022 19:30:52 GMT" + ], + "x-ms-client-request-id": [ + "f9264eba-ddab-4c26-bdbe-0404b2832370" ], "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.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", "AzurePowershell/Az1.0.0" ] }, @@ -290,13 +296,13 @@ "chunked" ], "ETag": [ - "0x8D80CC53FC5E180" + "0x8D9F0B9ACF0FD0A" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "b01a46e0-f43e-4b86-a90d-b0c10987400f" + "8cfb4901-e63a-45dd-b96d-7a161afda5e6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -308,38 +314,41 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 22:34:41 GMT" + "Tue, 15 Feb 2022 19:30:51 GMT" ], "Content-Type": [ "application/json; odata=minimalmetadata" ], "Last-Modified": [ - "Tue, 09 Jun 2020 22:34:19 GMT" + "Tue, 15 Feb 2022 19:30:51 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\": \"0x8D9F0B9ACF0FD0A\",\r\n \"creationTime\": \"2022-02-15T19:30:51.072641Z\",\r\n \"lastModified\": \"2022-02-15T19:30:51.072641Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2022-02-15T19:30:51.072641Z\",\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 \"retryCount\": 0,\r\n \"requeueCount\": 0\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=2022-01-01.15.0", + "EncodedRequestUri": "L2pvYnMvdGVzdFRlcm1pbmF0ZVRhc2tKb2IvdGFza3MvdGVzdFRhc2syL3Rlcm1pbmF0ZT9hcGktdmVyc2lvbj0yMDIyLTAxLTAxLjE1LjA=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "04d84f8a-7184-4b74-9b03-b862bc892bf5" + "e9e4d6a9-7e50-4b93-b354-877b8ce93453" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:34:41 GMT" + "Tue, 15 Feb 2022 19:30:52 GMT" + ], + "x-ms-client-request-id": [ + "f9264eba-ddab-4c26-bdbe-0404b2832370" ], "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.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", "AzurePowershell/Az1.0.0" ], "Content-Length": [ @@ -348,13 +357,13 @@ }, "ResponseHeaders": { "ETag": [ - "0x8D80CC54D6EC104" + "0x8D9F0B9AD83BE75" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "c0f6083d-059b-46b0-b2f2-25d3fb9de729" + "d3f57776-7cc7-495d-9ed6-1f626c7dc5d6" ], "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" + "Tue, 15 Feb 2022 19:30:51 GMT" ], "Content-Length": [ "0" ], "Last-Modified": [ - "Tue, 09 Jun 2020 22:34:42 GMT" + "Tue, 15 Feb 2022 19:30:52 GMT" ] }, "ResponseBody": "", "StatusCode": 204 }, { - "RequestUri": "/jobs/testTerminateTaskJob/tasks?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L2pvYnMvdGVzdFRlcm1pbmF0ZVRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMC0wMy0wMS4xMS4w", + "RequestUri": "/jobs/testTerminateTaskJob/tasks?api-version=2022-01-01.15.0", + "EncodedRequestUri": "L2pvYnMvdGVzdFRlcm1pbmF0ZVRhc2tKb2IvdGFza3M/YXBpLXZlcnNpb249MjAyMi0wMS0wMS4xNS4w", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "66f6d66b-c152-4794-b805-732e6a59ba3e" + "269535de-c701-4dc1-a086-e7fb1e5cf0a2" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:34:42 GMT" + "Tue, 15 Feb 2022 19:30:52 GMT" + ], + "x-ms-client-request-id": [ + "872f51f9-e330-4cd8-a13d-88d7cedbc267" ], "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.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", "AzurePowershell/Az1.0.0" ] }, @@ -412,7 +424,7 @@ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "dca65299-9ed5-4254-9c12-c93e244dd91f" + "fd1dbdfd-c953-4958-a946-778d2c6c615f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -424,35 +436,35 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 22:34:41 GMT" + "Tue, 15 Feb 2022 19:30:51 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\": \"0x8D9F0B9AD6A1BBC\",\r\n \"creationTime\": \"2022-02-15T19:30:50.9906422Z\",\r\n \"lastModified\": \"2022-02-15T19:30:51.8664124Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2022-02-15T19:30:51.8664124Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2022-02-15T19:30:50.9906422Z\",\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\": \"2022-02-15T19:30:51.8664124Z\",\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\": \"0x8D9F0B9AD83BE75\",\r\n \"creationTime\": \"2022-02-15T19:30:51.072641Z\",\r\n \"lastModified\": \"2022-02-15T19:30:52.0344181Z\",\r\n \"state\": \"completed\",\r\n \"stateTransitionTime\": \"2022-02-15T19:30:52.0344181Z\",\r\n \"previousState\": \"active\",\r\n \"previousStateTransitionTime\": \"2022-02-15T19:30:51.072641Z\",\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\": \"2022-02-15T19:30:52.0344181Z\",\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}", "StatusCode": 200 }, { - "RequestUri": "/jobs/testTerminateTaskJob?api-version=2020-03-01.11.0", - "EncodedRequestUri": "L2pvYnMvdGVzdFRlcm1pbmF0ZVRhc2tKb2I/YXBpLXZlcnNpb249MjAyMC0wMy0wMS4xMS4w", + "RequestUri": "/jobs/testTerminateTaskJob?api-version=2022-01-01.15.0", + "EncodedRequestUri": "L2pvYnMvdGVzdFRlcm1pbmF0ZVRhc2tKb2I/YXBpLXZlcnNpb249MjAyMi0wMS0wMS4xNS4w", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "a08af711-1d55-46b1-bbcd-2c8a8e4c3194" + "d7826dbf-c782-4335-9e69-dc32b05b05e4" ], "Accept-Language": [ "en-US" ], "ocp-date": [ - "Tue, 09 Jun 2020 22:34:42 GMT" + "Tue, 15 Feb 2022 19:30: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.19044.", + "Microsoft.Azure.Batch.Protocol.BatchServiceClient/15.300.22.6302", "AzurePowershell/Az1.0.0" ], "Content-Length": [ @@ -467,7 +479,7 @@ "Microsoft-HTTPAPI/2.0" ], "request-id": [ - "b89f7f8a-cf51-4266-9b70-d2d5b7aaeabc" + "a6686487-463a-4edd-ae8c-a7c236099924" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -479,7 +491,7 @@ "3.0" ], "Date": [ - "Tue, 09 Jun 2020 22:34:42 GMT" + "Tue, 15 Feb 2022 19:30:52 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 From 2411ef0052cfede3e4c28da4f42ae0854e799fb0 Mon Sep 17 00:00:00 2001 From: Mike Pateras Date: Mon, 31 Jan 2022 11:11:04 -0500 Subject: [PATCH 10/18] Cleanup Cleanup --- .../Batch/Models/BatchClient.Certificates.cs | 2 +- .../Batch/Models/BatchClient.ComputeNodes.cs | 10 +- src/Batch/Batch/Models/BatchClient.Files.cs | 4 +- .../Batch/Models/BatchClient.JobSchedules.cs | 2 +- src/Batch/Batch/Models/BatchClient.Jobs.cs | 4 +- src/Batch/Batch/Models/BatchClient.Pools.cs | 4 +- src/Batch/Batch/Models/BatchClient.Tasks.cs | 4 +- tools/BatchModelGenerator/Program.cs | 139 +++++++++--------- 8 files changed, 86 insertions(+), 83 deletions(-) diff --git a/src/Batch/Batch/Models/BatchClient.Certificates.cs b/src/Batch/Batch/Models/BatchClient.Certificates.cs index 7821db8abd99..6b06b0b83990 100644 --- a/src/Batch/Batch/Models/BatchClient.Certificates.cs +++ b/src/Batch/Batch/Models/BatchClient.Certificates.cs @@ -64,7 +64,7 @@ public IEnumerable ListCertificates(ListCertificateOptions option IPagedEnumerable certificates = certOperations.ListCertificates(listDetailLevel, options.AdditionalBehaviors); Func mappingFunction = c => { return new PSCertificate(c); }; return PSPagedEnumerable.CreateWithMaxCount( - certificates, mappingFunction, options.MaxCount, () => WriteVerbose(string.Format(Resources.MaxCount, options.MaxCount))); + certificates, mappingFunction, options.MaxCount, () => WriteMaxCount(options.MaxCount)); } } diff --git a/src/Batch/Batch/Models/BatchClient.ComputeNodes.cs b/src/Batch/Batch/Models/BatchClient.ComputeNodes.cs index 558c44a48aba..37921181ff33 100644 --- a/src/Batch/Batch/Models/BatchClient.ComputeNodes.cs +++ b/src/Batch/Batch/Models/BatchClient.ComputeNodes.cs @@ -65,9 +65,13 @@ public IEnumerable ListComputeNodes(ListComputeNodeOptions option PoolOperations poolOperations = options.Context.BatchOMClient.PoolOperations; IPagedEnumerable computeNodes = poolOperations.ListComputeNodes(poolId, listDetailLevel, options.AdditionalBehaviors); - Func mappingFunction = c => { return new PSComputeNode(c); }; - return PSPagedEnumerable.CreateWithMaxCount( - computeNodes, mappingFunction, options.MaxCount, () => WriteVerbose(string.Format(Resources.MaxCount, options.MaxCount))); + return PSPagedEnumerable.CreateWithMaxCount + ( + computeNodes, + c => { return new PSComputeNode(c); }, + options.MaxCount, + () => WriteMaxCount(options.MaxCount) + ); } } diff --git a/src/Batch/Batch/Models/BatchClient.Files.cs b/src/Batch/Batch/Models/BatchClient.Files.cs index f9cb95397b08..0a43d455207f 100644 --- a/src/Batch/Batch/Models/BatchClient.Files.cs +++ b/src/Batch/Batch/Models/BatchClient.Files.cs @@ -96,7 +96,7 @@ private IEnumerable ListNodeFilesByTask(ListNodeFileOptions options) } Func mappingFunction = f => { return new PSNodeFile(f); }; return PSPagedEnumerable.CreateWithMaxCount( - nodeFiles, mappingFunction, options.MaxCount, () => WriteVerbose(string.Format(Resources.MaxCount, options.MaxCount))); + nodeFiles, mappingFunction, options.MaxCount, () => WriteMaxCount(options.MaxCount)); } } @@ -141,7 +141,7 @@ private IEnumerable ListNodeFilesByComputeNode(ListNodeFileOptions o } Func mappingFunction = f => { return new PSNodeFile(f); }; return PSPagedEnumerable.CreateWithMaxCount( - nodeFiles, mappingFunction, options.MaxCount, () => WriteVerbose(string.Format(Resources.MaxCount, options.MaxCount))); + nodeFiles, mappingFunction, options.MaxCount, () => WriteMaxCount(options.MaxCount)); } } diff --git a/src/Batch/Batch/Models/BatchClient.JobSchedules.cs b/src/Batch/Batch/Models/BatchClient.JobSchedules.cs index 492a09a3cc02..286b426f986b 100644 --- a/src/Batch/Batch/Models/BatchClient.JobSchedules.cs +++ b/src/Batch/Batch/Models/BatchClient.JobSchedules.cs @@ -64,7 +64,7 @@ public IEnumerable ListJobSchedules(ListJobScheduleOptions o IPagedEnumerable workItems = jobScheduleOperations.ListJobSchedules(listDetailLevel, options.AdditionalBehaviors); Func mappingFunction = j => { return new PSCloudJobSchedule(j); }; return PSPagedEnumerable.CreateWithMaxCount( - workItems, mappingFunction, options.MaxCount, () => WriteVerbose(string.Format(Resources.MaxCount, options.MaxCount))); + workItems, mappingFunction, options.MaxCount, () => WriteMaxCount(options.MaxCount)); } } diff --git a/src/Batch/Batch/Models/BatchClient.Jobs.cs b/src/Batch/Batch/Models/BatchClient.Jobs.cs index 3afed714ba0f..5f28e9319f47 100644 --- a/src/Batch/Batch/Models/BatchClient.Jobs.cs +++ b/src/Batch/Batch/Models/BatchClient.Jobs.cs @@ -76,7 +76,7 @@ public IEnumerable ListJobs(ListJobOptions options) } Func mappingFunction = j => { return new PSCloudJob(j); }; return PSPagedEnumerable.CreateWithMaxCount( - jobs, mappingFunction, options.MaxCount, () => WriteVerbose(string.Format(Resources.MaxCount, options.MaxCount))); + jobs, mappingFunction, options.MaxCount, () => WriteMaxCount(options.MaxCount)); } } @@ -303,7 +303,7 @@ public IEnumerable ListJobPr j => new PSJobPreparationAndReleaseTaskExecutionInformation(j); return PSPagedEnumerable.CreateWithMaxCount( - jobPrepAndReleaseDetails, mappingFunction, options.MaxCount, () => WriteVerbose(string.Format(Resources.MaxCount, options.MaxCount))); + jobPrepAndReleaseDetails, mappingFunction, options.MaxCount, () => WriteMaxCount(options.MaxCount)); } } } diff --git a/src/Batch/Batch/Models/BatchClient.Pools.cs b/src/Batch/Batch/Models/BatchClient.Pools.cs index 08beb8edff00..198a94ef8c14 100644 --- a/src/Batch/Batch/Models/BatchClient.Pools.cs +++ b/src/Batch/Batch/Models/BatchClient.Pools.cs @@ -65,7 +65,7 @@ public IEnumerable ListPools(ListPoolOptions options) IPagedEnumerable pools = poolOperations.ListPools(listDetailLevel, options.AdditionalBehaviors); Func mappingFunction = p => { return new PSCloudPool(p); }; return PSPagedEnumerable.CreateWithMaxCount( - pools, mappingFunction, options.MaxCount, () => WriteVerbose(string.Format(Resources.MaxCount, options.MaxCount))); + pools, mappingFunction, options.MaxCount, () => WriteMaxCount(options.MaxCount)); } } @@ -383,7 +383,7 @@ public IEnumerable ListPoolNodeCounts(ListPoolNodeCountsOption Func mappingFunction = p => { return new PSPoolNodeCounts(p); }; return PSPagedEnumerable.CreateWithMaxCount(poolNodeCounts, mappingFunction, - options.MaxCount, () => WriteVerbose(string.Format(Resources.MaxCount, options.MaxCount))); + options.MaxCount, () => WriteMaxCount(options.MaxCount)); } } } diff --git a/src/Batch/Batch/Models/BatchClient.Tasks.cs b/src/Batch/Batch/Models/BatchClient.Tasks.cs index 33e45d6d9735..5da117cd8bdb 100644 --- a/src/Batch/Batch/Models/BatchClient.Tasks.cs +++ b/src/Batch/Batch/Models/BatchClient.Tasks.cs @@ -74,7 +74,7 @@ public IEnumerable ListTasks(ListTaskOptions options) } Func mappingFunction = t => { return new PSCloudTask(t); }; return PSPagedEnumerable.CreateWithMaxCount( - tasks, mappingFunction, options.MaxCount, () => WriteVerbose(string.Format(Resources.MaxCount, options.MaxCount))); + tasks, mappingFunction, options.MaxCount, () => WriteMaxCount(options.MaxCount)); } } @@ -330,7 +330,7 @@ public IEnumerable ListSubtasks(ListSubtaskOptions options } Func mappingFunction = s => { return new PSSubtaskInformation(s); }; return PSPagedEnumerable.CreateWithMaxCount( - subtasks, mappingFunction, options.MaxCount, () => WriteVerbose(string.Format(Resources.MaxCount, options.MaxCount))); + subtasks, mappingFunction, options.MaxCount, () => WriteMaxCount(options.MaxCount)); } /// diff --git a/tools/BatchModelGenerator/Program.cs b/tools/BatchModelGenerator/Program.cs index 7b1846c9386a..1d410db87985 100644 --- a/tools/BatchModelGenerator/Program.cs +++ b/tools/BatchModelGenerator/Program.cs @@ -29,20 +29,20 @@ public class Program private const string OmObject = "omObject"; private static string AssemblyPath; - private static readonly Dictionary> OMToPSDictionaryConversionMappings = new Dictionary>() + private static readonly Dictionary> OMToPSDictionaryConversionMappings = new() { { "Microsoft.Azure.Batch.EnvironmentSetting", new Tuple("Name", "Value") }, { "Microsoft.Azure.Batch.MetadataItem", new Tuple("Name", "Value") }, }; - private static readonly Dictionary customMappings = new Dictionary + private static readonly Dictionary customMappings = new() { { "Microsoft.Azure.Batch.UploadBatchServiceLogsResult", "PSStartComputeNodeServiceLogUploadResult" }, }; - private static readonly Dictionary OMtoPSClassMappings = new Dictionary(); + private static readonly Dictionary OMtoPSClassMappings = new(); - private static readonly Dictionary OmittedProperties = new Dictionary() + private static readonly Dictionary OmittedProperties = new() { // Hide Custom Behaviors {"Microsoft.Azure.Batch.Certificate", new string[] {"CustomBehaviors"}}, @@ -114,8 +114,8 @@ private static void ShowUsage() private static void GenerateModel(string fileName, Type omType, string modelName) { - CodeCompileUnit compileUnit = new CodeCompileUnit(); - CodeNamespace codeNamespace = new CodeNamespace(ModelNamespace); + CodeCompileUnit compileUnit = new(); + CodeNamespace codeNamespace = new(ModelNamespace); GenerateUsingDirectives(codeNamespace); var codeType = new CodeTypeDeclaration(modelName) @@ -129,7 +129,7 @@ private static void GenerateModel(string fileName, Type omType, string modelName compileUnit.Namespaces.Add(codeNamespace); // The wrapped OM object - CodeMemberField wrappedField = new CodeMemberField(); + CodeMemberField wrappedField = new(); wrappedField.Attributes = MemberAttributes.Assembly; wrappedField.Name = OmObject; wrappedField.Type = new CodeTypeReference(omType); @@ -169,11 +169,11 @@ private static void GenerateUsingDirectives(CodeNamespace codeNamespace) private static void GenerateConstructors(Type t, CodeTypeDeclaration codeType) { - CodeFieldReferenceExpression omObjectFieldReference = new CodeFieldReferenceExpression(new CodeThisReferenceExpression(), OmObject); + CodeFieldReferenceExpression omObjectFieldReference = new(new CodeThisReferenceExpression(), OmObject); ConstructorInfo[] constructors = t.GetConstructors(); ConstructorInfo publicParameterless = null; - List publicGeneralParams = new List(); + List publicGeneralParams = new(); foreach (ConstructorInfo con in constructors.Where(c => c.IsPublic || c.IsStatic)) { ParameterInfo[] parameters = con.GetParameters(); @@ -192,9 +192,9 @@ private static void GenerateConstructors(Type t, CodeTypeDeclaration codeType) if (publicParameterless != null) { - CodeConstructor constructor = new CodeConstructor(); + CodeConstructor constructor = new(); constructor.Attributes = MemberAttributes.Public; - CodeObjectCreateExpression createExpression = new CodeObjectCreateExpression(t); + CodeObjectCreateExpression createExpression = new(t); constructor.Statements.Add(new CodeAssignStatement(omObjectFieldReference, createExpression)); codeType.Members.Add(constructor); } @@ -205,14 +205,14 @@ private static void GenerateConstructors(Type t, CodeTypeDeclaration codeType) } // Default internal constructor that accepts the OM object to wrap - CodeConstructor defaultConstructor = new CodeConstructor(); + CodeConstructor defaultConstructor = new(); defaultConstructor.Attributes = MemberAttributes.Assembly; - CodeParameterDeclarationExpression omObjectParameter = new CodeParameterDeclarationExpression(t, OmObject); + CodeParameterDeclarationExpression omObjectParameter = new(t, OmObject); defaultConstructor.Parameters.Add(omObjectParameter); - CodeArgumentReferenceExpression omObjectArgumentReference = new CodeArgumentReferenceExpression(OmObject); - CodeObjectCreateExpression createException = new CodeObjectCreateExpression(typeof(ArgumentNullException), new CodePrimitiveExpression(OmObject)); - CodeThrowExceptionStatement throwException = new CodeThrowExceptionStatement(createException); - CodeBinaryOperatorExpression nullCheck = new CodeBinaryOperatorExpression(omObjectArgumentReference, CodeBinaryOperatorType.IdentityEquality, new CodePrimitiveExpression(null)); + CodeArgumentReferenceExpression omObjectArgumentReference = new(OmObject); + CodeObjectCreateExpression createException = new(typeof(ArgumentNullException), new CodePrimitiveExpression(OmObject)); + CodeThrowExceptionStatement throwException = new(createException); + CodeBinaryOperatorExpression nullCheck = new(omObjectArgumentReference, CodeBinaryOperatorType.IdentityEquality, new CodePrimitiveExpression(null)); // if the parameter is null, throw an exception defaultConstructor.Statements.Add(new CodeConditionStatement(nullCheck, throwException)); @@ -223,7 +223,7 @@ private static void GenerateConstructors(Type t, CodeTypeDeclaration codeType) private static void AddConstructorWithCopiedParameters(CodeTypeDeclaration codeType, Type implementationType, CodeFieldReferenceExpression omObjectFieldReference, ConstructorInfo constructorInfo) { - CodeConstructor constructor = new CodeConstructor(); + CodeConstructor constructor = new(); constructor.Attributes = MemberAttributes.Public; ParameterInfo[] parameters = constructorInfo.GetParameters(); @@ -253,16 +253,16 @@ private static void AddConstructorWithCopiedParameters(CodeTypeDeclaration codeT // Need to do a null check for calling an omObject from a PS wrapper class if (isOmTypeArg && parameters[i].IsOptional) { - CodeVariableDeclarationStatement omObjectDeclaration = new CodeVariableDeclarationStatement( + CodeVariableDeclarationStatement omObjectDeclaration = new( parameters[i].ParameterType, string.Format("{0}{1}", parameters[i].Name, "OmObject"), new CodePrimitiveExpression(null)); constructor.Statements.Add(omObjectDeclaration); - CodeArgumentReferenceExpression omObjectArgumentReference = new CodeArgumentReferenceExpression(parameters[i].Name); - CodeAssignStatement omObjectAssignStatement = new CodeAssignStatement(new CodeVariableReferenceExpression(string.Format("{0}{1}", parameters[i].Name, "OmObject")), new CodeVariableReferenceExpression(string.Format("{0}.{1}", parameters[i].Name, OmObject))); - CodeBinaryOperatorExpression nullCheck = new CodeBinaryOperatorExpression(omObjectArgumentReference, CodeBinaryOperatorType.IdentityInequality, new CodePrimitiveExpression(null)); + CodeArgumentReferenceExpression omObjectArgumentReference = new(parameters[i].Name); + CodeAssignStatement omObjectAssignStatement = new(new CodeVariableReferenceExpression(string.Format("{0}{1}", parameters[i].Name, "OmObject")), new CodeVariableReferenceExpression(string.Format("{0}.{1}", parameters[i].Name, OmObject))); + CodeBinaryOperatorExpression nullCheck = new(omObjectArgumentReference, CodeBinaryOperatorType.IdentityInequality, new CodePrimitiveExpression(null)); // if the parameter is not null, use the omObject of the PS Wrapper class constructor.Statements.Add(new CodeConditionStatement(nullCheck, omObjectAssignStatement)); @@ -282,7 +282,7 @@ private static void AddConstructorWithCopiedParameters(CodeTypeDeclaration codeT constructor.Parameters.Add(new CodeParameterDeclarationExpression(paramType, paramName)); } - CodeObjectCreateExpression createExpression = new CodeObjectCreateExpression(implementationType, codeArgumentReferences); + CodeObjectCreateExpression createExpression = new(implementationType, codeArgumentReferences); constructor.Statements.Add(new CodeAssignStatement(omObjectFieldReference, createExpression)); codeType.Members.Add(constructor); } @@ -307,14 +307,14 @@ private static void GenerateProperties(Type t, CodeTypeDeclaration codeType) property.PropertyType.GetGenericTypeDefinition() == typeof(IEnumerable<>) || property.PropertyType.GetGenericTypeDefinition() == typeof(IReadOnlyList<>)); - CodeFieldReferenceExpression wrappedObject = new CodeFieldReferenceExpression(new CodeThisReferenceExpression(), OmObject); - CodePropertyReferenceExpression wrappedObjectProperty = new CodePropertyReferenceExpression(wrappedObject, property.Name); + CodeFieldReferenceExpression wrappedObject = new(new CodeThisReferenceExpression(), OmObject); + CodePropertyReferenceExpression wrappedObjectProperty = new(wrappedObject, property.Name); CodeFieldReferenceExpression fieldReference = null; if (isGenericCollection || OMtoPSClassMappings.ContainsKey(property.PropertyType.FullName)) { // Add a backing field for the property with the same name but using camel case. - string fieldName = string.Format("{0}{1}", property.Name.ToLower()[0], property.Name.Substring(1, property.Name.Length - 1)); - CodeMemberField backingField = new CodeMemberField(); + string fieldName = $"{property.Name.ToLower()[0]}{property.Name[1..]}"; + CodeMemberField backingField = new(); backingField.Attributes = MemberAttributes.Private; backingField.Name = fieldName; backingField.Type = new CodeTypeReference(propertyType); @@ -323,7 +323,7 @@ private static void GenerateProperties(Type t, CodeTypeDeclaration codeType) fieldReference = new CodeFieldReferenceExpression(new CodeThisReferenceExpression(), fieldName); } - CodeMemberProperty codeProperty = new CodeMemberProperty(); + CodeMemberProperty codeProperty = new(); codeProperty.Attributes = MemberAttributes.Public | MemberAttributes.Final; codeProperty.Name = property.Name; codeProperty.Type = new CodeTypeReference(propertyType); @@ -344,27 +344,27 @@ private static void GenerateProperties(Type t, CodeTypeDeclaration codeType) { // Collections are not kept in sync with the wrapped OM object. Cmdlets will need to sync them before sending // a request to the server. - CodeVariableDeclarationStatement declaration = new CodeVariableDeclarationStatement(wrapperType, variableName); - CodeVariableReferenceExpression reference = new CodeVariableReferenceExpression(variableName); - CodeAssignStatement initialize = new CodeAssignStatement(reference, new CodeObjectCreateExpression(wrapperType)); + CodeVariableDeclarationStatement declaration = new(wrapperType, variableName); + CodeVariableReferenceExpression reference = new(variableName); + CodeAssignStatement initialize = new(reference, new CodeObjectCreateExpression(wrapperType)); // CodeDom doesn't support foreach loops very well, so instead explicitly get the enumerator and loop on MoveNext() calls const string enumeratorVariableName = "enumerator"; - CodeVariableDeclarationStatement enumeratorDeclaration = new CodeVariableDeclarationStatement(string.Format("IEnumerator<{0}>", argType.FullName), enumeratorVariableName); - CodeVariableReferenceExpression enumeratorReference = new CodeVariableReferenceExpression(enumeratorVariableName); - CodeAssignStatement initializeEnumerator = new CodeAssignStatement(enumeratorReference, new CodeMethodInvokeExpression(wrappedObjectProperty, "GetEnumerator")); - CodeIterationStatement loopStatement = new CodeIterationStatement(); + CodeVariableDeclarationStatement enumeratorDeclaration = new(string.Format("IEnumerator<{0}>", argType.FullName), enumeratorVariableName); + CodeVariableReferenceExpression enumeratorReference = new(enumeratorVariableName); + CodeAssignStatement initializeEnumerator = new(enumeratorReference, new CodeMethodInvokeExpression(wrappedObjectProperty, "GetEnumerator")); + CodeIterationStatement loopStatement = new(); loopStatement.TestExpression = new CodeMethodInvokeExpression(enumeratorReference, "MoveNext"); loopStatement.IncrementStatement = new CodeSnippetStatement(string.Empty); loopStatement.InitStatement = new CodeSnippetStatement(string.Empty); - CodePropertyReferenceExpression enumeratorCurrent = new CodePropertyReferenceExpression(enumeratorReference, "Current"); + CodePropertyReferenceExpression enumeratorCurrent = new(enumeratorReference, "Current"); // Fill the list by individually wrapping each item in the loop if (magicalDictConversion) { var keyReference = new CodePropertyReferenceExpression(enumeratorCurrent, OMToPSDictionaryConversionMappings[argType.FullName].Item1); var valueReference = new CodePropertyReferenceExpression(enumeratorCurrent, OMToPSDictionaryConversionMappings[argType.FullName].Item2); - CodeMethodInvokeExpression addToList = new CodeMethodInvokeExpression(reference, "Add", keyReference, valueReference); + CodeMethodInvokeExpression addToList = new(reference, "Add", keyReference, valueReference); loopStatement.Statements.Add(addToList); } else @@ -372,24 +372,24 @@ private static void GenerateProperties(Type t, CodeTypeDeclaration codeType) // Fill the list by individually wrapping each item in the loop if (wrapperArgType.Contains("System") || wrapperArgType.StartsWith("Microsoft.Azure.Batch.Common")) { - CodeMethodInvokeExpression addToList = new CodeMethodInvokeExpression(reference, "Add", enumeratorCurrent); + CodeMethodInvokeExpression addToList = new(reference, "Add", enumeratorCurrent); loopStatement.Statements.Add(addToList); } else { - CodeObjectCreateExpression createListItem = new CodeObjectCreateExpression(wrapperArgType, enumeratorCurrent); - CodeMethodInvokeExpression addToList = new CodeMethodInvokeExpression(reference, "Add", createListItem); + CodeObjectCreateExpression createListItem = new(wrapperArgType, enumeratorCurrent); + CodeMethodInvokeExpression addToList = new(reference, "Add", createListItem); loopStatement.Statements.Add(addToList); } } // Initialize the backing field with the built list on first access of the property - CodeAssignStatement assignStatement = new CodeAssignStatement(fieldReference, reference); + CodeAssignStatement assignStatement = new(fieldReference, reference); - CodePrimitiveExpression nullExpression = new CodePrimitiveExpression(null); - CodeBinaryOperatorExpression fieldNullCheck = new CodeBinaryOperatorExpression(fieldReference, CodeBinaryOperatorType.IdentityEquality, nullExpression); - CodeBinaryOperatorExpression wrappedPropertyNullCheck = new CodeBinaryOperatorExpression(wrappedObjectProperty, CodeBinaryOperatorType.IdentityInequality, nullExpression); - CodeBinaryOperatorExpression condition = new CodeBinaryOperatorExpression(fieldNullCheck, CodeBinaryOperatorType.BooleanAnd, wrappedPropertyNullCheck); - CodeConditionStatement ifBlock = new CodeConditionStatement(condition, declaration, initialize, enumeratorDeclaration, initializeEnumerator, loopStatement, assignStatement); + CodePrimitiveExpression nullExpression = new(null); + CodeBinaryOperatorExpression fieldNullCheck = new(fieldReference, CodeBinaryOperatorType.IdentityEquality, nullExpression); + CodeBinaryOperatorExpression wrappedPropertyNullCheck = new(wrappedObjectProperty, CodeBinaryOperatorType.IdentityInequality, nullExpression); + CodeBinaryOperatorExpression condition = new(fieldNullCheck, CodeBinaryOperatorType.BooleanAnd, wrappedPropertyNullCheck); + CodeConditionStatement ifBlock = new(condition, declaration, initialize, enumeratorDeclaration, initializeEnumerator, loopStatement, assignStatement); codeProperty.GetStatements.Add(ifBlock); codeProperty.GetStatements.Add(new CodeMethodReturnStatement(fieldReference)); } @@ -398,11 +398,11 @@ private static void GenerateProperties(Type t, CodeTypeDeclaration codeType) { // Call the "set" on the OM object to ensure that constraints are enforced. codeProperty.HasSet = true; - CodePropertySetValueReferenceExpression valueReference = new CodePropertySetValueReferenceExpression(); - CodeBinaryOperatorExpression nullCheck = new CodeBinaryOperatorExpression(valueReference, CodeBinaryOperatorType.IdentityEquality, new CodePrimitiveExpression(null)); - CodeAssignStatement nullAssignment = new CodeAssignStatement(wrappedObjectProperty, new CodePrimitiveExpression(null)); - CodeAssignStatement nonNullAssignment = new CodeAssignStatement(wrappedObjectProperty, new CodeObjectCreateExpression(string.Format("List<{0}>", argType.FullName))); - CodeConditionStatement ifBlock = new CodeConditionStatement(nullCheck, new CodeStatement[] { nullAssignment }, new CodeStatement[] { nonNullAssignment }); + CodePropertySetValueReferenceExpression valueReference = new(); + CodeBinaryOperatorExpression nullCheck = new(valueReference, CodeBinaryOperatorType.IdentityEquality, new CodePrimitiveExpression(null)); + CodeAssignStatement nullAssignment = new(wrappedObjectProperty, new CodePrimitiveExpression(null)); + CodeAssignStatement nonNullAssignment = new(wrappedObjectProperty, new CodeObjectCreateExpression(string.Format("List<{0}>", argType.FullName))); + CodeConditionStatement ifBlock = new(nullCheck, new CodeStatement[] { nullAssignment }, new CodeStatement[] { nonNullAssignment }); codeProperty.SetStatements.Add(ifBlock); codeProperty.SetStatements.Add(new CodeAssignStatement(fieldReference, valueReference)); } @@ -412,25 +412,25 @@ private static void GenerateProperties(Type t, CodeTypeDeclaration codeType) if (property.GetMethod != null && property.GetMethod.IsPublic) { codeProperty.HasGet = true; - CodeObjectCreateExpression createFieldObject = new CodeObjectCreateExpression(OMtoPSClassMappings[property.PropertyType.FullName], wrappedObjectProperty); - CodeAssignStatement assignStatement = new CodeAssignStatement(fieldReference, createFieldObject); - CodePrimitiveExpression nullExpression = new CodePrimitiveExpression(null); - CodeBinaryOperatorExpression fieldNullCheck = new CodeBinaryOperatorExpression(fieldReference, CodeBinaryOperatorType.IdentityEquality, nullExpression); - CodeBinaryOperatorExpression wrappedPropertyNullCheck = new CodeBinaryOperatorExpression(wrappedObjectProperty, CodeBinaryOperatorType.IdentityInequality, nullExpression); - CodeBinaryOperatorExpression condition = new CodeBinaryOperatorExpression(fieldNullCheck, CodeBinaryOperatorType.BooleanAnd, wrappedPropertyNullCheck); - CodeConditionStatement ifBlock = new CodeConditionStatement(condition, assignStatement); + CodeObjectCreateExpression createFieldObject = new(OMtoPSClassMappings[property.PropertyType.FullName], wrappedObjectProperty); + CodeAssignStatement assignStatement = new(fieldReference, createFieldObject); + CodePrimitiveExpression nullExpression = new(null); + CodeBinaryOperatorExpression fieldNullCheck = new(fieldReference, CodeBinaryOperatorType.IdentityEquality, nullExpression); + CodeBinaryOperatorExpression wrappedPropertyNullCheck = new(wrappedObjectProperty, CodeBinaryOperatorType.IdentityInequality, nullExpression); + CodeBinaryOperatorExpression condition = new(fieldNullCheck, CodeBinaryOperatorType.BooleanAnd, wrappedPropertyNullCheck); + CodeConditionStatement ifBlock = new(condition, assignStatement); codeProperty.GetStatements.Add(ifBlock); codeProperty.GetStatements.Add(new CodeMethodReturnStatement(fieldReference)); } if (property.SetMethod != null && property.SetMethod.IsPublic) { codeProperty.HasSet = true; - CodePropertySetValueReferenceExpression valueReference = new CodePropertySetValueReferenceExpression(); - CodeBinaryOperatorExpression nullCheck = new CodeBinaryOperatorExpression(valueReference, CodeBinaryOperatorType.IdentityEquality, new CodePrimitiveExpression(null)); - CodeAssignStatement nullAssignment = new CodeAssignStatement(wrappedObjectProperty, new CodePrimitiveExpression(null)); - CodePropertyReferenceExpression valueProperty = new CodePropertyReferenceExpression(valueReference, OmObject); - CodeAssignStatement nonNullAssignment = new CodeAssignStatement(wrappedObjectProperty, valueProperty); - CodeConditionStatement ifBlock = new CodeConditionStatement(nullCheck, new CodeStatement[] { nullAssignment }, new CodeStatement[] { nonNullAssignment }); + CodePropertySetValueReferenceExpression valueReference = new(); + CodeBinaryOperatorExpression nullCheck = new(valueReference, CodeBinaryOperatorType.IdentityEquality, new CodePrimitiveExpression(null)); + CodeAssignStatement nullAssignment = new(wrappedObjectProperty, new CodePrimitiveExpression(null)); + CodePropertyReferenceExpression valueProperty = new(valueReference, OmObject); + CodeAssignStatement nonNullAssignment = new(wrappedObjectProperty, valueProperty); + CodeConditionStatement ifBlock = new(nullCheck, new CodeStatement[] { nullAssignment }, new CodeStatement[] { nonNullAssignment }); codeProperty.SetStatements.Add(ifBlock); codeProperty.SetStatements.Add(new CodeAssignStatement(fieldReference, valueReference)); } @@ -456,13 +456,12 @@ private static void GenerateProperties(Type t, CodeTypeDeclaration codeType) private static void GenerateCodeFile(string fileName, CodeCompileUnit compileUnit) { CodeDomProvider provider = CodeDomProvider.CreateProvider("CSharp"); - CodeGeneratorOptions options = new CodeGeneratorOptions(); + CodeGeneratorOptions options = new(); options.BracingStyle = "C"; - using (StreamWriter sourceWriter = new StreamWriter(fileName)) - { - GenerateCopyrightText(sourceWriter); - provider.GenerateCodeFromCompileUnit(compileUnit, sourceWriter, options); - } + + using StreamWriter sourceWriter = new(fileName); + GenerateCopyrightText(sourceWriter); + provider.GenerateCodeFromCompileUnit(compileUnit, sourceWriter, options); } private static string GetPropertyType(Type t) From d3d83a4f1a6d6f2faa96bffdc06a5d70c3ae4e61 Mon Sep 17 00:00:00 2001 From: Mike Pateras Date: Thu, 24 Feb 2022 11:35:34 -0500 Subject: [PATCH 11/18] CI Error Fixes Added default parameter set Added PSPoolSpecificiation alias property for MaxTasksPerComputeNode --- .../ScenarioTests/CertificateTests.ps1 | 2 +- .../GetBatchComputeNodeExtensionCommand.cs | 2 +- src/Batch/Batch/Models/PSPoolSpecification.cs | 43 +++++++++++++ .../help/Get-AzBatchComputeNodeExtension.md | 2 +- tools/ScenarioTest.ResourceManager/Assert.ps1 | 60 ++++++++++++++++++- 5 files changed, 103 insertions(+), 6 deletions(-) create mode 100644 src/Batch/Batch/Models/PSPoolSpecification.cs diff --git a/src/Batch/Batch.Test/ScenarioTests/CertificateTests.ps1 b/src/Batch/Batch.Test/ScenarioTests/CertificateTests.ps1 index 953287a52b56..fed5b0b2de8b 100644 --- a/src/Batch/Batch.Test/ScenarioTests/CertificateTests.ps1 +++ b/src/Batch/Batch.Test/ScenarioTests/CertificateTests.ps1 @@ -65,5 +65,5 @@ function Test-TestCancelCertificateDelete $filter = "state eq 'active'"; $cert = Get-AzBatchCertificate -Filter $filter -BatchContext $context - Assert-True { $cert.Thumbprint.ToLowerInvariant() -Contains $thumbprint } + Assert-ContainsItem $cert.Thumbprint.ToLowerInvariant() $thumbprint } \ No newline at end of file diff --git a/src/Batch/Batch/ComputeNodeExtensions/GetBatchComputeNodeExtensionCommand.cs b/src/Batch/Batch/ComputeNodeExtensions/GetBatchComputeNodeExtensionCommand.cs index eaafe45647e0..2ef53645786e 100644 --- a/src/Batch/Batch/ComputeNodeExtensions/GetBatchComputeNodeExtensionCommand.cs +++ b/src/Batch/Batch/ComputeNodeExtensions/GetBatchComputeNodeExtensionCommand.cs @@ -21,7 +21,7 @@ namespace Microsoft.Azure.Commands.Batch { - [Cmdlet("Get", ResourceManager.Common.AzureRMConstants.AzurePrefix + "BatchComputeNodeExtension"), OutputType(typeof(PSNodeVMExtension))] + [Cmdlet("Get", ResourceManager.Common.AzureRMConstants.AzurePrefix + "BatchComputeNodeExtension", DefaultParameterSetName = Constants.IdParameterSet), OutputType(typeof(PSNodeVMExtension))] public class GetBatchComputeNodeExtensionCommand : BatchObjectModelCmdletBase { private int maxCount = Constants.DefaultMaxCount; diff --git a/src/Batch/Batch/Models/PSPoolSpecification.cs b/src/Batch/Batch/Models/PSPoolSpecification.cs new file mode 100644 index 000000000000..d54af32316ea --- /dev/null +++ b/src/Batch/Batch/Models/PSPoolSpecification.cs @@ -0,0 +1,43 @@ +// ----------------------------------------------------------------------------- +// +// 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.13 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace Microsoft.Azure.Commands.Batch.Models +{ + public partial class PSPoolSpecification + { + /// + /// This property is an alias of TaskSlotsPerNode. + /// + public int? MaxTasksPerComputeNode + { + get + { + return TaskSlotsPerNode; + } + set + { + TaskSlotsPerNode = value; + } + } + } +} diff --git a/src/Batch/Batch/help/Get-AzBatchComputeNodeExtension.md b/src/Batch/Batch/help/Get-AzBatchComputeNodeExtension.md index b0c5482f0b39..208147dcd4af 100644 --- a/src/Batch/Batch/help/Get-AzBatchComputeNodeExtension.md +++ b/src/Batch/Batch/help/Get-AzBatchComputeNodeExtension.md @@ -12,7 +12,7 @@ Gets Batch compute node extensions from a compute node. ## SYNTAX -### Id +### Id (Default) ``` Get-AzBatchComputeNodeExtension [-PoolId] [-ComputeNodeId] [[-ExtensionName] ] [-Select ] [-MaxCount ] -BatchContext diff --git a/tools/ScenarioTest.ResourceManager/Assert.ps1 b/tools/ScenarioTest.ResourceManager/Assert.ps1 index df237ddd7e30..1a2c8d3597ba 100644 --- a/tools/ScenarioTest.ResourceManager/Assert.ps1 +++ b/tools/ScenarioTest.ResourceManager/Assert.ps1 @@ -215,6 +215,30 @@ function Assert-NotNull return $true } +################### +# +# Verify that the given string is not null or empty +# +# param [string] $actual : The actual string +# param [string] $message : The message to return if the given script does not return true +#################### +function Assert-NotNullOrEmpty +{ + param([string] $actual, [string] $message) + + if (!$message) + { + $message = "Assertion failed because the string is null or empty: " + $actual + } + + if ([string]::IsNullOrEmpty($actual)) + { + throw $message + } + + return $true +} + ###################### # # Assert that the given file exists @@ -390,7 +414,7 @@ function Assert-StartsWith { param([string] $expectedPrefix, [string] $actual, [string] $message) - Assert-NotNull $actual + Assert-NotNullOrEmpty $actual if (!$message) { @@ -417,7 +441,7 @@ function Assert-Match { param([string] $regex, [string] $actual, [string] $message) - Assert-NotNull $actual + Assert-NotNullOrEmpty $actual if (!$message) { @@ -444,7 +468,7 @@ function Assert-NotMatch { param([string] $regex, [string] $actual, [string] $message) - Assert-NotNull $actual + Assert-NotNullOrEmpty $actual if (!$message) { @@ -456,5 +480,35 @@ function Assert-NotMatch throw $message } + return $true +} + +################### +# +# Verify that the a space-delimited string contains an item matching a specific value. +# +# param [string] $actual : The actual string +# param [string] $expected : The expected value. +# param [string] $message : The message to return if the actual string does not contain the expected value. +#################### +function Assert-ContainsItem +{ + param([string] $actual, [string] $expected, [string] $message) + + Assert-NotNullOrEmpty $actual + Assert-NotNullOrEmpty $expected + + if (!$message) + { + $message = "Assertion failed because actual '$actual' does not contain an item matching '$expected'" + } + + $split = $actual -Split ' ' + + if (!$split.contains($expected)) + { + throw $message + } + return $true } \ No newline at end of file From 012299b1b3406612450fc72bb60deb2e6cb2de16 Mon Sep 17 00:00:00 2001 From: Mike Pateras Date: Mon, 14 Mar 2022 11:22:55 -0400 Subject: [PATCH 12/18] PR Feedback PR Feedback --- ...etBatchComputeNodeExtensionCommandTests.cs | 4 +-- .../GetBatchComputeNodeExtensionCommand.cs | 4 +-- src/Batch/Batch/Pools/NewBatchPoolCommand.cs | 2 +- .../Tasks/GetBatchTaskSlotCountCommand.cs | 16 ++++++++--- .../help/Get-AzBatchComputeNodeExtension.md | 27 ++++++++++--------- .../Batch/help/Get-AzBatchTaskSlotCount.md | 3 +-- src/Batch/Batch/help/New-AzBatchPool.md | 3 ++- 7 files changed, 35 insertions(+), 24 deletions(-) diff --git a/src/Batch/Batch.Test/ComputeNodeExtensions/GetBatchComputeNodeExtensionCommandTests.cs b/src/Batch/Batch.Test/ComputeNodeExtensions/GetBatchComputeNodeExtensionCommandTests.cs index f3a9a39b466c..c0405cc23944 100644 --- a/src/Batch/Batch.Test/ComputeNodeExtensions/GetBatchComputeNodeExtensionCommandTests.cs +++ b/src/Batch/Batch.Test/ComputeNodeExtensions/GetBatchComputeNodeExtensionCommandTests.cs @@ -61,7 +61,7 @@ public void GetBatchComputeNodeExtensionTest() cmdlet.BatchContext = context; cmdlet.PoolId = "testPool"; cmdlet.ComputeNodeId = "testComputeNode"; - cmdlet.ExtensionName = extensionName; + cmdlet.Name = extensionName; VMExtension extension = new VMExtension(extensionName, publisher, type); @@ -102,7 +102,7 @@ public void GetBatchComputeNodeExtensionODataTest() cmdlet.BatchContext = context; cmdlet.PoolId = "testPool"; cmdlet.ComputeNodeId = "testComputeNode"; - cmdlet.ExtensionName = extensionName; + cmdlet.Name = extensionName; cmdlet.Select = "ExtensionName,Publisher"; VMExtension extension = new VMExtension(extensionName, publisher, type); diff --git a/src/Batch/Batch/ComputeNodeExtensions/GetBatchComputeNodeExtensionCommand.cs b/src/Batch/Batch/ComputeNodeExtensions/GetBatchComputeNodeExtensionCommand.cs index 2ef53645786e..1bed1217dc2e 100644 --- a/src/Batch/Batch/ComputeNodeExtensions/GetBatchComputeNodeExtensionCommand.cs +++ b/src/Batch/Batch/ComputeNodeExtensions/GetBatchComputeNodeExtensionCommand.cs @@ -42,7 +42,7 @@ public class GetBatchComputeNodeExtensionCommand : BatchObjectModelCmdletBase [Parameter(Position = 2, ParameterSetName = Constants.IdParameterSet, ValueFromPipelineByPropertyName = true, HelpMessage = "The name of the extension to get.")] [Parameter(Position = 2, ParameterSetName = Constants.ParentObjectParameterSet, ValueFromPipelineByPropertyName = true)] [ValidateNotNullOrEmpty] - public string ExtensionName { get; set; } + public string Name { get; set; } [Parameter(ParameterSetName = Constants.IdParameterSet)] [Parameter(ParameterSetName = Constants.ParentObjectParameterSet)] @@ -61,7 +61,7 @@ public int MaxCount protected override void ExecuteCmdletImpl() { - ListComputeNodeExtensionParameters options = new ListComputeNodeExtensionParameters(BatchContext, PoolId, Pool, ComputeNodeId, ExtensionName, AdditionalBehaviors) + ListComputeNodeExtensionParameters options = new ListComputeNodeExtensionParameters(BatchContext, PoolId, Pool, ComputeNodeId, Name, AdditionalBehaviors) { Select = Select, MaxCount = MaxCount, diff --git a/src/Batch/Batch/Pools/NewBatchPoolCommand.cs b/src/Batch/Batch/Pools/NewBatchPoolCommand.cs index 11b1d9f73fc2..e971424ec87d 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] - [GenericBreakingChange("MaxTasksPerComputeNode alias will be removed in an upcoming breaking change release", "4.2.0")] + [CmdletParameterBreakingChange("MaxTasksPerComputeNode", "MaxTasksPerComputeNode alias will be removed in an upcoming breaking change release.")] [Alias("MaxTasksPerComputeNode")] public int? TaskSlotsPerNode { get; set; } diff --git a/src/Batch/Batch/Tasks/GetBatchTaskSlotCountCommand.cs b/src/Batch/Batch/Tasks/GetBatchTaskSlotCountCommand.cs index d3ac5904436c..46dfcb5696fc 100644 --- a/src/Batch/Batch/Tasks/GetBatchTaskSlotCountCommand.cs +++ b/src/Batch/Batch/Tasks/GetBatchTaskSlotCountCommand.cs @@ -23,12 +23,22 @@ namespace Microsoft.Azure.Commands.Batch [Cmdlet("Get", ResourceManager.Common.AzureRMConstants.AzurePrefix + "BatchTaskSlotCount", DefaultParameterSetName = Constants.IdParameterSet), OutputType(typeof(PSTaskSlotCounts))] public class GetBatchTaskSlotCountCommand : BatchObjectModelCmdletBase { - [Parameter(Position = 0, ParameterSetName = Constants.IdParameterSet, Mandatory = true, - ValueFromPipelineByPropertyName = true, HelpMessage = "The id of the job for which to get task slot counts.")] + [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)] + [Parameter( + Position = 0, + ParameterSetName = Constants.ParentObjectParameterSet, + ValueFromPipeline = true, + HelpMessage = "Specifies the job that contains tasks that this cmdlet gets. To obtain a **PSCloudJob** object, use the Get-AzBatchJob cmdlet." + )] [ValidateNotNullOrEmpty] public PSCloudJob Job { get; set; } diff --git a/src/Batch/Batch/help/Get-AzBatchComputeNodeExtension.md b/src/Batch/Batch/help/Get-AzBatchComputeNodeExtension.md index 208147dcd4af..775ef59ccb73 100644 --- a/src/Batch/Batch/help/Get-AzBatchComputeNodeExtension.md +++ b/src/Batch/Batch/help/Get-AzBatchComputeNodeExtension.md @@ -14,14 +14,14 @@ Gets Batch compute node extensions from a compute node. ### Id (Default) ``` -Get-AzBatchComputeNodeExtension [-PoolId] [-ComputeNodeId] [[-ExtensionName] ] +Get-AzBatchComputeNodeExtension [-PoolId] [-ComputeNodeId] [[-Name] ] [-Select ] [-MaxCount ] -BatchContext [-DefaultProfile ] [] ``` ### ParentObject ``` -Get-AzBatchComputeNodeExtension [-Pool] [-ComputeNodeId] [[-ExtensionName] ] +Get-AzBatchComputeNodeExtension [-Pool] [-ComputeNodeId] [[-Name] ] [-Select ] [-MaxCount ] -BatchContext [-DefaultProfile ] [] ``` @@ -102,33 +102,33 @@ Accept pipeline input: False Accept wildcard characters: False ``` -### -ExtensionName -The name of the extension to get. +### -MaxCount +Specifies the maximum number of compute node extensions to return. ```yaml -Type: System.String +Type: System.Int32 Parameter Sets: (All) Aliases: Required: False -Position: 2 +Position: Named Default value: None -Accept pipeline input: True (ByPropertyName) +Accept pipeline input: False Accept wildcard characters: False ``` -### -MaxCount -{{ Fill MaxCount Description }} +### -Name +The name of the extension to get. ```yaml -Type: System.Int32 +Type: System.String Parameter Sets: (All) Aliases: Required: False -Position: Named +Position: 2 Default value: None -Accept pipeline input: False +Accept pipeline input: True (ByPropertyName) Accept wildcard characters: False ``` @@ -163,7 +163,8 @@ Accept wildcard characters: False ``` ### -Select -{{ Fill Select Description }} +Specifies an OData select clause. +Specify a value for this parameter to get specific properties rather than all object properties. ```yaml Type: System.String diff --git a/src/Batch/Batch/help/Get-AzBatchTaskSlotCount.md b/src/Batch/Batch/help/Get-AzBatchTaskSlotCount.md index 44f473a229a1..c1e080760fad 100644 --- a/src/Batch/Batch/help/Get-AzBatchTaskSlotCount.md +++ b/src/Batch/Batch/help/Get-AzBatchTaskSlotCount.md @@ -82,8 +82,7 @@ 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. +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 diff --git a/src/Batch/Batch/help/New-AzBatchPool.md b/src/Batch/Batch/help/New-AzBatchPool.md index c6447f943307..cf9ba7cede04 100644 --- a/src/Batch/Batch/help/New-AzBatchPool.md +++ b/src/Batch/Batch/help/New-AzBatchPool.md @@ -416,7 +416,8 @@ Accept wildcard characters: False ``` ### -TaskSlotsPerNode -{{ Fill TaskSlotsPerNode Description }} +The number of task slots that can be used to run concurrent tasks on a single compute node in the pool. +The default value is 1. The maximum value is the smaller of 4 times the number of cores of the vmSize of the pool or 256. ```yaml Type: System.Nullable`1[System.Int32] From 70fd3afa9e4a350d9ed7cdd905f2777999faeb37 Mon Sep 17 00:00:00 2001 From: Mike Pateras Date: Mon, 21 Mar 2022 17:26:22 -0400 Subject: [PATCH 13/18] Moved previously generated file out of generated folder --- .../Batch/{Models.Generated => Models}/PSNodeFile.cs | 9 --------- 1 file changed, 9 deletions(-) rename src/Batch/Batch/{Models.Generated => Models}/PSNodeFile.cs (85%) diff --git a/src/Batch/Batch/Models.Generated/PSNodeFile.cs b/src/Batch/Batch/Models/PSNodeFile.cs similarity index 85% rename from src/Batch/Batch/Models.Generated/PSNodeFile.cs rename to src/Batch/Batch/Models/PSNodeFile.cs index 89f796c98eaa..3636ccc75165 100644 --- a/src/Batch/Batch/Models.Generated/PSNodeFile.cs +++ b/src/Batch/Batch/Models/PSNodeFile.cs @@ -11,15 +11,6 @@ // 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.13 -// -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// -//------------------------------------------------------------------------------ namespace Microsoft.Azure.Commands.Batch.Models { From cf35e2456406aead3a2ef409d667105b665a2a51 Mon Sep 17 00:00:00 2001 From: Mike Pateras Date: Mon, 21 Mar 2022 17:28:44 -0400 Subject: [PATCH 14/18] Cleanup and add ability to wrap Microsoft.Azure.Batch.Common enums. --- tools/BatchModelGenerator/Program.cs | 275 ++++++++++++++++----------- 1 file changed, 159 insertions(+), 116 deletions(-) diff --git a/tools/BatchModelGenerator/Program.cs b/tools/BatchModelGenerator/Program.cs index 1d410db87985..af394ca7ca79 100644 --- a/tools/BatchModelGenerator/Program.cs +++ b/tools/BatchModelGenerator/Program.cs @@ -94,7 +94,12 @@ private static void CreateMappings(Assembly omAssembly) 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(); + Type[] allTypes = omAssembly.GetTypes(); + List<(string FullName, string Name)> typeNames = allTypes + .Where(t => t.GetInterface("IPropertyMetadata") != null && t.Namespace == "Microsoft.Azure.Batch" && t.IsPublic).Select(t => (t.FullName, t.Name)).ToList(); + + // We may want to wrap all enums in this namespace in the future, but limiting it to the scope of this change for now. + typeNames.Add(("Microsoft.Azure.Batch.Common.StatusLevelTypes", "StatusLevelTypes")); foreach ((string fullName, string className) in typeNames) { @@ -231,51 +236,52 @@ private static void AddConstructorWithCopiedParameters(CodeTypeDeclaration codeT for (int i = 0; i < parameters.Length; i++) { bool isOmTypeArg = false; - - string paramType = parameters[i].ParameterType.FullName; + ParameterInfo parameter = parameters[i]; + string paramName = parameter.Name; + string paramType = parameter.ParameterType.FullName; + //string paramType = GetFullName(parameter.ParameterType); if (OMtoPSClassMappings.ContainsKey(paramType)) { paramType = OMtoPSClassMappings[paramType]; isOmTypeArg = true; } - string paramName = parameters[i].Name; string passedInArg; // Create the proper parameter for optional - if (parameters[i].IsOptional) + if (parameter.IsOptional) { paramName = paramType.Contains("System") - ? string.Format("{0} = null", parameters[i].Name) - : string.Format("{0} = default({1})", parameters[i].Name, paramType); + ? string.Format("{0} = null", parameter.Name) + : string.Format("{0} = default({1})", parameter.Name, paramType); } // Need to do a null check for calling an omObject from a PS wrapper class - if (isOmTypeArg && parameters[i].IsOptional) + if (isOmTypeArg && parameter.IsOptional) { CodeVariableDeclarationStatement omObjectDeclaration = new( - parameters[i].ParameterType, - string.Format("{0}{1}", parameters[i].Name, "OmObject"), + parameter.ParameterType, + string.Format("{0}{1}", parameter.Name, "OmObject"), new CodePrimitiveExpression(null)); constructor.Statements.Add(omObjectDeclaration); - CodeArgumentReferenceExpression omObjectArgumentReference = new(parameters[i].Name); - CodeAssignStatement omObjectAssignStatement = new(new CodeVariableReferenceExpression(string.Format("{0}{1}", parameters[i].Name, "OmObject")), new CodeVariableReferenceExpression(string.Format("{0}.{1}", parameters[i].Name, OmObject))); + CodeArgumentReferenceExpression omObjectArgumentReference = new(parameter.Name); + CodeAssignStatement omObjectAssignStatement = new(new CodeVariableReferenceExpression(string.Format("{0}{1}", parameter.Name, "OmObject")), new CodeVariableReferenceExpression(string.Format("{0}.{1}", parameter.Name, OmObject))); CodeBinaryOperatorExpression nullCheck = new(omObjectArgumentReference, CodeBinaryOperatorType.IdentityInequality, new CodePrimitiveExpression(null)); // if the parameter is not null, use the omObject of the PS Wrapper class constructor.Statements.Add(new CodeConditionStatement(nullCheck, omObjectAssignStatement)); - passedInArg = string.Format("{0}{1}", parameters[i].Name, "OmObject"); + passedInArg = string.Format("{0}{1}", parameter.Name, "OmObject"); } else if (isOmTypeArg) { - passedInArg = string.Format("{0}.{1}", parameters[i].Name, OmObject); + passedInArg = string.Format("{0}.{1}", parameter.Name, OmObject); } else { - passedInArg = parameters[i].Name; + passedInArg = parameter.Name; } codeArgumentReferences[i] = new CodeArgumentReferenceExpression(passedInArg); @@ -291,6 +297,8 @@ private static void GenerateProperties(Type t, CodeTypeDeclaration codeType) { foreach (PropertyInfo property in t.GetProperties()) { + string propertyFullName = GetFullName(property.PropertyType); + if (OmittedProperties.ContainsKey(t.FullName) && OmittedProperties[t.FullName].Contains(property.Name)) { continue; @@ -310,7 +318,7 @@ private static void GenerateProperties(Type t, CodeTypeDeclaration codeType) CodeFieldReferenceExpression wrappedObject = new(new CodeThisReferenceExpression(), OmObject); CodePropertyReferenceExpression wrappedObjectProperty = new(wrappedObject, property.Name); CodeFieldReferenceExpression fieldReference = null; - if (isGenericCollection || OMtoPSClassMappings.ContainsKey(property.PropertyType.FullName)) + if (isGenericCollection || OMtoPSClassMappings.ContainsKey(propertyFullName)) { // Add a backing field for the property with the same name but using camel case. string fieldName = $"{property.Name.ToLower()[0]}{property.Name[1..]}"; @@ -334,106 +342,11 @@ private static void GenerateProperties(Type t, CodeTypeDeclaration codeType) if (isGenericCollection) { - // Special handling for dict - Type argType = property.PropertyType.GetGenericArguments()[0]; - bool magicalDictConversion = propertyType == "IDictionary"; - string wrapperArgType = argType.FullName.StartsWith("System") || argType.FullName.StartsWith("Microsoft.Azure.Batch.Common") ? argType.FullName : OMtoPSClassMappings[argType.FullName]; - string wrapperType = magicalDictConversion ? string.Format("Dictionary") : string.Format("List<{0}>", wrapperArgType); - string variableName = magicalDictConversion ? "dict" : "list"; - if (property.GetMethod != null && property.GetMethod.IsPublic) - { - // Collections are not kept in sync with the wrapped OM object. Cmdlets will need to sync them before sending - // a request to the server. - CodeVariableDeclarationStatement declaration = new(wrapperType, variableName); - CodeVariableReferenceExpression reference = new(variableName); - CodeAssignStatement initialize = new(reference, new CodeObjectCreateExpression(wrapperType)); - - // CodeDom doesn't support foreach loops very well, so instead explicitly get the enumerator and loop on MoveNext() calls - const string enumeratorVariableName = "enumerator"; - CodeVariableDeclarationStatement enumeratorDeclaration = new(string.Format("IEnumerator<{0}>", argType.FullName), enumeratorVariableName); - CodeVariableReferenceExpression enumeratorReference = new(enumeratorVariableName); - CodeAssignStatement initializeEnumerator = new(enumeratorReference, new CodeMethodInvokeExpression(wrappedObjectProperty, "GetEnumerator")); - CodeIterationStatement loopStatement = new(); - loopStatement.TestExpression = new CodeMethodInvokeExpression(enumeratorReference, "MoveNext"); - loopStatement.IncrementStatement = new CodeSnippetStatement(string.Empty); - loopStatement.InitStatement = new CodeSnippetStatement(string.Empty); - CodePropertyReferenceExpression enumeratorCurrent = new(enumeratorReference, "Current"); - - // Fill the list by individually wrapping each item in the loop - if (magicalDictConversion) - { - var keyReference = new CodePropertyReferenceExpression(enumeratorCurrent, OMToPSDictionaryConversionMappings[argType.FullName].Item1); - var valueReference = new CodePropertyReferenceExpression(enumeratorCurrent, OMToPSDictionaryConversionMappings[argType.FullName].Item2); - CodeMethodInvokeExpression addToList = new(reference, "Add", keyReference, valueReference); - loopStatement.Statements.Add(addToList); - } - else - { - // Fill the list by individually wrapping each item in the loop - if (wrapperArgType.Contains("System") || wrapperArgType.StartsWith("Microsoft.Azure.Batch.Common")) - { - CodeMethodInvokeExpression addToList = new(reference, "Add", enumeratorCurrent); - loopStatement.Statements.Add(addToList); - } - else - { - CodeObjectCreateExpression createListItem = new(wrapperArgType, enumeratorCurrent); - CodeMethodInvokeExpression addToList = new(reference, "Add", createListItem); - loopStatement.Statements.Add(addToList); - } - } - // Initialize the backing field with the built list on first access of the property - CodeAssignStatement assignStatement = new(fieldReference, reference); - - CodePrimitiveExpression nullExpression = new(null); - CodeBinaryOperatorExpression fieldNullCheck = new(fieldReference, CodeBinaryOperatorType.IdentityEquality, nullExpression); - CodeBinaryOperatorExpression wrappedPropertyNullCheck = new(wrappedObjectProperty, CodeBinaryOperatorType.IdentityInequality, nullExpression); - CodeBinaryOperatorExpression condition = new(fieldNullCheck, CodeBinaryOperatorType.BooleanAnd, wrappedPropertyNullCheck); - CodeConditionStatement ifBlock = new(condition, declaration, initialize, enumeratorDeclaration, initializeEnumerator, loopStatement, assignStatement); - codeProperty.GetStatements.Add(ifBlock); - codeProperty.GetStatements.Add(new CodeMethodReturnStatement(fieldReference)); - } - - if (property.SetMethod != null && property.SetMethod.IsPublic) - { - // Call the "set" on the OM object to ensure that constraints are enforced. - codeProperty.HasSet = true; - CodePropertySetValueReferenceExpression valueReference = new(); - CodeBinaryOperatorExpression nullCheck = new(valueReference, CodeBinaryOperatorType.IdentityEquality, new CodePrimitiveExpression(null)); - CodeAssignStatement nullAssignment = new(wrappedObjectProperty, new CodePrimitiveExpression(null)); - CodeAssignStatement nonNullAssignment = new(wrappedObjectProperty, new CodeObjectCreateExpression(string.Format("List<{0}>", argType.FullName))); - CodeConditionStatement ifBlock = new(nullCheck, new CodeStatement[] { nullAssignment }, new CodeStatement[] { nonNullAssignment }); - codeProperty.SetStatements.Add(ifBlock); - codeProperty.SetStatements.Add(new CodeAssignStatement(fieldReference, valueReference)); - } + GenerateGenericCollectionProperty(property, propertyType, fieldReference, wrappedObjectProperty, codeProperty); } - else if (OMtoPSClassMappings.ContainsKey(property.PropertyType.FullName)) + else if (OMtoPSClassMappings.ContainsKey(propertyFullName)) { - if (property.GetMethod != null && property.GetMethod.IsPublic) - { - codeProperty.HasGet = true; - CodeObjectCreateExpression createFieldObject = new(OMtoPSClassMappings[property.PropertyType.FullName], wrappedObjectProperty); - CodeAssignStatement assignStatement = new(fieldReference, createFieldObject); - CodePrimitiveExpression nullExpression = new(null); - CodeBinaryOperatorExpression fieldNullCheck = new(fieldReference, CodeBinaryOperatorType.IdentityEquality, nullExpression); - CodeBinaryOperatorExpression wrappedPropertyNullCheck = new(wrappedObjectProperty, CodeBinaryOperatorType.IdentityInequality, nullExpression); - CodeBinaryOperatorExpression condition = new(fieldNullCheck, CodeBinaryOperatorType.BooleanAnd, wrappedPropertyNullCheck); - CodeConditionStatement ifBlock = new(condition, assignStatement); - codeProperty.GetStatements.Add(ifBlock); - codeProperty.GetStatements.Add(new CodeMethodReturnStatement(fieldReference)); - } - if (property.SetMethod != null && property.SetMethod.IsPublic) - { - codeProperty.HasSet = true; - CodePropertySetValueReferenceExpression valueReference = new(); - CodeBinaryOperatorExpression nullCheck = new(valueReference, CodeBinaryOperatorType.IdentityEquality, new CodePrimitiveExpression(null)); - CodeAssignStatement nullAssignment = new(wrappedObjectProperty, new CodePrimitiveExpression(null)); - CodePropertyReferenceExpression valueProperty = new(valueReference, OmObject); - CodeAssignStatement nonNullAssignment = new(wrappedObjectProperty, valueProperty); - CodeConditionStatement ifBlock = new(nullCheck, new CodeStatement[] { nullAssignment }, new CodeStatement[] { nonNullAssignment }); - codeProperty.SetStatements.Add(ifBlock); - codeProperty.SetStatements.Add(new CodeAssignStatement(fieldReference, valueReference)); - } + GenerateMappedProperty(property, propertyFullName, fieldReference, wrappedObjectProperty, codeProperty); } else { @@ -453,6 +366,112 @@ private static void GenerateProperties(Type t, CodeTypeDeclaration codeType) } } + private static void GenerateGenericCollectionProperty(PropertyInfo property, string propertyType, CodeFieldReferenceExpression fieldReference, CodePropertyReferenceExpression wrappedObjectProperty, CodeMemberProperty codeProperty) + { + // Special handling for dict + Type argType = property.PropertyType.GetGenericArguments()[0]; + bool magicalDictConversion = propertyType == "IDictionary"; + string wrapperArgType = argType.FullName.StartsWith("System") || argType.FullName.StartsWith("Microsoft.Azure.Batch.Common") ? argType.FullName : OMtoPSClassMappings[argType.FullName]; + string wrapperType = magicalDictConversion ? string.Format("Dictionary") : string.Format("List<{0}>", wrapperArgType); + string variableName = magicalDictConversion ? "dict" : "list"; + if (property.GetMethod != null && property.GetMethod.IsPublic) + { + // Collections are not kept in sync with the wrapped OM object. Cmdlets will need to sync them before sending + // a request to the server. + CodeVariableDeclarationStatement declaration = new(wrapperType, variableName); + CodeVariableReferenceExpression reference = new(variableName); + CodeAssignStatement initialize = new(reference, new CodeObjectCreateExpression(wrapperType)); + + // CodeDom doesn't support foreach loops very well, so instead explicitly get the enumerator and loop on MoveNext() calls + const string enumeratorVariableName = "enumerator"; + CodeVariableDeclarationStatement enumeratorDeclaration = new(string.Format("IEnumerator<{0}>", argType.FullName), enumeratorVariableName); + CodeVariableReferenceExpression enumeratorReference = new(enumeratorVariableName); + CodeAssignStatement initializeEnumerator = new(enumeratorReference, new CodeMethodInvokeExpression(wrappedObjectProperty, "GetEnumerator")); + CodeIterationStatement loopStatement = new(); + loopStatement.TestExpression = new CodeMethodInvokeExpression(enumeratorReference, "MoveNext"); + loopStatement.IncrementStatement = new CodeSnippetStatement(string.Empty); + loopStatement.InitStatement = new CodeSnippetStatement(string.Empty); + CodePropertyReferenceExpression enumeratorCurrent = new(enumeratorReference, "Current"); + + // Fill the list by individually wrapping each item in the loop + if (magicalDictConversion) + { + var keyReference = new CodePropertyReferenceExpression(enumeratorCurrent, OMToPSDictionaryConversionMappings[argType.FullName].Item1); + var valueReference = new CodePropertyReferenceExpression(enumeratorCurrent, OMToPSDictionaryConversionMappings[argType.FullName].Item2); + CodeMethodInvokeExpression addToList = new(reference, "Add", keyReference, valueReference); + loopStatement.Statements.Add(addToList); + } + else + { + // Fill the list by individually wrapping each item in the loop + if (wrapperArgType.Contains("System") || wrapperArgType.StartsWith("Microsoft.Azure.Batch.Common")) + { + CodeMethodInvokeExpression addToList = new(reference, "Add", enumeratorCurrent); + loopStatement.Statements.Add(addToList); + } + else + { + CodeObjectCreateExpression createListItem = new(wrapperArgType, enumeratorCurrent); + CodeMethodInvokeExpression addToList = new(reference, "Add", createListItem); + loopStatement.Statements.Add(addToList); + } + } + // Initialize the backing field with the built list on first access of the property + CodeAssignStatement assignStatement = new(fieldReference, reference); + + CodePrimitiveExpression nullExpression = new(null); + CodeBinaryOperatorExpression fieldNullCheck = new(fieldReference, CodeBinaryOperatorType.IdentityEquality, nullExpression); + CodeBinaryOperatorExpression wrappedPropertyNullCheck = new(wrappedObjectProperty, CodeBinaryOperatorType.IdentityInequality, nullExpression); + CodeBinaryOperatorExpression condition = new(fieldNullCheck, CodeBinaryOperatorType.BooleanAnd, wrappedPropertyNullCheck); + CodeConditionStatement ifBlock = new(condition, declaration, initialize, enumeratorDeclaration, initializeEnumerator, loopStatement, assignStatement); + codeProperty.GetStatements.Add(ifBlock); + codeProperty.GetStatements.Add(new CodeMethodReturnStatement(fieldReference)); + } + + if (property.SetMethod != null && property.SetMethod.IsPublic) + { + // Call the "set" on the OM object to ensure that constraints are enforced. + codeProperty.HasSet = true; + CodePropertySetValueReferenceExpression valueReference = new(); + CodeBinaryOperatorExpression nullCheck = new(valueReference, CodeBinaryOperatorType.IdentityEquality, new CodePrimitiveExpression(null)); + CodeAssignStatement nullAssignment = new(wrappedObjectProperty, new CodePrimitiveExpression(null)); + CodeAssignStatement nonNullAssignment = new(wrappedObjectProperty, new CodeObjectCreateExpression(string.Format("List<{0}>", argType.FullName))); + CodeConditionStatement ifBlock = new(nullCheck, new CodeStatement[] { nullAssignment }, new CodeStatement[] { nonNullAssignment }); + codeProperty.SetStatements.Add(ifBlock); + codeProperty.SetStatements.Add(new CodeAssignStatement(fieldReference, valueReference)); + } + + } + + private static void GenerateMappedProperty(PropertyInfo property, string propertyFullName, CodeFieldReferenceExpression fieldReference, CodePropertyReferenceExpression wrappedObjectProperty, CodeMemberProperty codeProperty) + { + if (property.GetMethod != null && property.GetMethod.IsPublic) + { + codeProperty.HasGet = true; + CodeObjectCreateExpression createFieldObject = new(OMtoPSClassMappings[propertyFullName], wrappedObjectProperty); + CodeAssignStatement assignStatement = new(fieldReference, createFieldObject); + CodePrimitiveExpression nullExpression = new(null); + CodeBinaryOperatorExpression fieldNullCheck = new(fieldReference, CodeBinaryOperatorType.IdentityEquality, nullExpression); + CodeBinaryOperatorExpression wrappedPropertyNullCheck = new(wrappedObjectProperty, CodeBinaryOperatorType.IdentityInequality, nullExpression); + CodeBinaryOperatorExpression condition = new(fieldNullCheck, CodeBinaryOperatorType.BooleanAnd, wrappedPropertyNullCheck); + CodeConditionStatement ifBlock = new(condition, assignStatement); + codeProperty.GetStatements.Add(ifBlock); + codeProperty.GetStatements.Add(new CodeMethodReturnStatement(fieldReference)); + } + if (property.SetMethod != null && property.SetMethod.IsPublic) + { + codeProperty.HasSet = true; + CodePropertySetValueReferenceExpression valueReference = new(); + CodeBinaryOperatorExpression nullCheck = new(valueReference, CodeBinaryOperatorType.IdentityEquality, new CodePrimitiveExpression(null)); + CodeAssignStatement nullAssignment = new(wrappedObjectProperty, new CodePrimitiveExpression(null)); + CodePropertyReferenceExpression valueProperty = new(valueReference, OmObject); + CodeAssignStatement nonNullAssignment = new(wrappedObjectProperty, valueProperty); + CodeConditionStatement ifBlock = new(nullCheck, new CodeStatement[] { nullAssignment }, new CodeStatement[] { nonNullAssignment }); + codeProperty.SetStatements.Add(ifBlock); + codeProperty.SetStatements.Add(new CodeAssignStatement(fieldReference, valueReference)); + } + } + private static void GenerateCodeFile(string fileName, CodeCompileUnit compileUnit) { CodeDomProvider provider = CodeDomProvider.CreateProvider("CSharp"); @@ -464,13 +483,37 @@ private static void GenerateCodeFile(string fileName, CodeCompileUnit compileUni provider.GenerateCodeFromCompileUnit(compileUnit, sourceWriter, options); } + private static bool IsGenericNullable(Type t) + { + return t.IsGenericType && t.GetGenericTypeDefinition() == typeof(Nullable<>); + } + + private static string GetFullName(Type t) + { + if (t.IsGenericType && t.GetGenericTypeDefinition() == typeof(Nullable<>)) + { + return t.GetGenericArguments()[0].FullName; + } + + return t.FullName; + } + private static string GetPropertyType(Type t) { - if (t.IsEnum || t == typeof(String) || t.IsPrimitive || t == typeof(DateTime) || t == typeof(TimeSpan) || t == typeof(object)) + if (t.IsEnum) + { + if (OMtoPSClassMappings.ContainsKey(t.FullName)) + { + return OMtoPSClassMappings[t.FullName]; + } + + return t.FullName; + } + else if (t == typeof(string) || t.IsPrimitive || t == typeof(DateTime) || t == typeof(TimeSpan) || t == typeof(object)) { return t.FullName; } - else if (t.IsGenericType && t.GetGenericTypeDefinition() == typeof(Nullable<>)) + else if (IsGenericNullable(t)) { Type argType = t.GetGenericArguments()[0]; return string.Format("{0}?", GetPropertyType(argType)); From a64f159e367190a2d6f01a7e1c601a21fa887480 Mon Sep 17 00:00:00 2001 From: Mike Pateras Date: Mon, 21 Mar 2022 17:29:20 -0400 Subject: [PATCH 15/18] Regenerated models --- .../Batch/Models.Generated/PSAddTaskResult.cs | 2 +- .../Models.Generated/PSAffinityInformation.cs | 2 +- .../PSApplicationPackageReference.cs | 2 +- .../Models.Generated/PSApplicationSummary.cs | 2 +- .../PSAuthenticationTokenSettings.cs | 2 +- .../PSAutoPoolSpecification.cs | 2 +- .../Batch/Models.Generated/PSAutoScaleRun.cs | 2 +- .../Models.Generated/PSAutoScaleRunError.cs | 2 +- .../PSAutoUserSpecification.cs | 2 +- .../PSAzureBlobFileSystemConfiguration.cs | 2 +- .../PSAzureFileShareConfiguration.cs | 2 +- .../Batch/Models.Generated/PSBatchError.cs | 2 +- .../Models.Generated/PSBatchErrorDetail.cs | 2 +- .../Models.Generated/PSBatchPoolIdentity.cs | 2 +- .../Batch/Models.Generated/PSCertificate.cs | 2 +- .../PSCertificateReference.cs | 2 +- .../PSCifsMountConfiguration.cs | 2 +- .../Batch/Models.Generated/PSCloudJob.cs | 2 +- .../Models.Generated/PSCloudJobSchedule.cs | 2 +- .../Batch/Models.Generated/PSCloudPool.cs | 2 +- .../PSCloudServiceConfiguration.cs | 2 +- .../Batch/Models.Generated/PSCloudTask.cs | 2 +- .../Batch/Models.Generated/PSComputeNode.cs | 2 +- .../PSComputeNodeEndpointConfiguration.cs | 2 +- .../Models.Generated/PSComputeNodeError.cs | 2 +- .../PSComputeNodeIdentityReference.cs | 2 +- .../PSComputeNodeInformation.cs | 2 +- .../Models.Generated/PSComputeNodeUser.cs | 2 +- .../PSContainerConfiguration.cs | 2 +- .../Models.Generated/PSContainerRegistry.cs | 2 +- .../Batch/Models.Generated/PSDataDisk.cs | 2 +- .../PSDeleteCertificateError.cs | 2 +- .../Models.Generated/PSDiffDiskSettings.cs | 2 +- .../PSDiskEncryptionConfiguration.cs | 2 +- .../Models.Generated/PSEnvironmentSetting.cs | 2 +- .../Batch/Models.Generated/PSErrorMessage.cs | 2 +- .../Models.Generated/PSExitCodeMapping.cs | 2 +- .../PSExitCodeRangeMapping.cs | 2 +- .../Models.Generated/PSExitConditions.cs | 2 +- .../Batch/Models.Generated/PSExitOptions.cs | 2 +- .../Models.Generated/PSFileProperties.cs | 2 +- .../Batch/Models.Generated/PSHttpHeader.cs | 2 +- .../Models.Generated/PSImageInformation.cs | 2 +- .../Models.Generated/PSImageReference.cs | 2 +- .../Models.Generated/PSInboundEndpoint.cs | 2 +- .../Models.Generated/PSInboundNatPool.cs | 2 +- .../Models.Generated/PSInstanceViewStatus.cs | 13 ++++-- .../Models.Generated/PSJobConstraints.cs | 2 +- .../PSJobExecutionInformation.cs | 2 +- .../Models.Generated/PSJobManagerTask.cs | 2 +- .../PSJobNetworkConfiguration.cs | 2 +- ...ationAndReleaseTaskExecutionInformation.cs | 2 +- .../Models.Generated/PSJobPreparationTask.cs | 2 +- ...SJobPreparationTaskExecutionInformation.cs | 2 +- .../Models.Generated/PSJobReleaseTask.cs | 2 +- .../PSJobReleaseTaskExecutionInformation.cs | 2 +- .../PSJobScheduleExecutionInformation.cs | 2 +- .../PSJobScheduleStatistics.cs | 2 +- .../Models.Generated/PSJobSchedulingError.cs | 2 +- .../Models.Generated/PSJobSpecification.cs | 2 +- .../Batch/Models.Generated/PSJobStatistics.cs | 2 +- .../PSLinuxUserConfiguration.cs | 2 +- .../Batch/Models.Generated/PSMetadataItem.cs | 2 +- .../Models.Generated/PSMountConfiguration.cs | 2 +- .../PSMultiInstanceSettings.cs | 2 +- .../Batch/Models.Generated/PSNameValuePair.cs | 2 +- .../PSNetworkConfiguration.cs | 2 +- .../PSNetworkSecurityGroupRule.cs | 2 +- .../PSNfsMountConfiguration.cs | 2 +- .../PSNodeAgentInformation.cs | 2 +- .../Batch/Models.Generated/PSNodeCounts.cs | 2 +- .../PSNodePlacementConfiguration.cs | 2 +- .../Models.Generated/PSNodeVMExtension.cs | 2 +- src/Batch/Batch/Models.Generated/PSOSDisk.cs | 2 +- .../Batch/Models.Generated/PSOutputFile.cs | 2 +- .../PSOutputFileBlobContainerDestination.cs | 2 +- .../PSOutputFileDestination.cs | 2 +- .../PSOutputFileUploadOptions.cs | 2 +- .../PSPoolEndpointConfiguration.cs | 2 +- .../Models.Generated/PSPoolInformation.cs | 2 +- .../Models.Generated/PSPoolNodeCounts.cs | 2 +- .../Models.Generated/PSPoolSpecification.cs | 2 +- .../Models.Generated/PSPoolStatistics.cs | 2 +- .../Models.Generated/PSPoolUsageMetrics.cs | 2 +- .../PSPublicIPAddressConfiguration.cs | 2 +- .../Batch/Models.Generated/PSRecentJob.cs | 2 +- .../Models.Generated/PSRemoteLoginSettings.cs | 2 +- .../Batch/Models.Generated/PSResizeError.cs | 2 +- .../Batch/Models.Generated/PSResourceFile.cs | 2 +- .../Models.Generated/PSResourceStatistics.cs | 2 +- .../Batch/Models.Generated/PSSchedule.cs | 2 +- ...SStartComputeNodeServiceLogUploadResult.cs | 2 +- .../Batch/Models.Generated/PSStartTask.cs | 2 +- .../PSStartTaskInformation.cs | 2 +- .../Models.Generated/PSStatusLevelTypes.cs | 46 +++++++++++++++++++ .../Models.Generated/PSSubtaskInformation.cs | 2 +- .../Models.Generated/PSTaskConstraints.cs | 2 +- .../PSTaskContainerExecutionInformation.cs | 2 +- .../PSTaskContainerSettings.cs | 2 +- .../Batch/Models.Generated/PSTaskCounts.cs | 2 +- .../Models.Generated/PSTaskCountsResult.cs | 2 +- .../Models.Generated/PSTaskDependencies.cs | 2 +- .../PSTaskExecutionInformation.cs | 2 +- .../PSTaskFailureInformation.cs | 2 +- .../Batch/Models.Generated/PSTaskIdRange.cs | 2 +- .../Models.Generated/PSTaskInformation.cs | 2 +- .../PSTaskSchedulingPolicy.cs | 2 +- .../Models.Generated/PSTaskSlotCounts.cs | 2 +- .../Models.Generated/PSTaskStatistics.cs | 2 +- .../Models.Generated/PSUsageStatistics.cs | 2 +- .../Batch/Models.Generated/PSUserAccount.cs | 2 +- .../PSUserAssignedIdentity.cs | 2 +- .../Batch/Models.Generated/PSUserIdentity.cs | 2 +- .../Batch/Models.Generated/PSVMExtension.cs | 2 +- .../PSVMExtensionInstanceView.cs | 2 +- .../PSVirtualMachineConfiguration.cs | 2 +- .../Models.Generated/PSVirtualMachineInfo.cs | 2 +- .../PSWindowsConfiguration.cs | 2 +- .../PSWindowsUserConfiguration.cs | 2 +- 119 files changed, 173 insertions(+), 120 deletions(-) create mode 100644 src/Batch/Batch/Models.Generated/PSStatusLevelTypes.cs diff --git a/src/Batch/Batch/Models.Generated/PSAddTaskResult.cs b/src/Batch/Batch/Models.Generated/PSAddTaskResult.cs index b69a169d79c4..b50de49c4910 100644 --- a/src/Batch/Batch/Models.Generated/PSAddTaskResult.cs +++ b/src/Batch/Batch/Models.Generated/PSAddTaskResult.cs @@ -14,7 +14,7 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. -// Runtime Version:5.0.13 +// Runtime Version:5.0.15 // // 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/PSAffinityInformation.cs b/src/Batch/Batch/Models.Generated/PSAffinityInformation.cs index a7ba710a8485..17a9ae33c6f1 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:5.0.13 +// Runtime Version:5.0.15 // // 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 953e945fe6a8..2c84044cdcd7 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:5.0.13 +// Runtime Version:5.0.15 // // 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 index f1b38ec90e00..09274186c0b7 100644 --- a/src/Batch/Batch/Models.Generated/PSApplicationSummary.cs +++ b/src/Batch/Batch/Models.Generated/PSApplicationSummary.cs @@ -14,7 +14,7 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. -// Runtime Version:5.0.13 +// Runtime Version:5.0.15 // // 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/PSAuthenticationTokenSettings.cs b/src/Batch/Batch/Models.Generated/PSAuthenticationTokenSettings.cs index 7bf5ec32a008..8a317b0024bf 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:5.0.13 +// Runtime Version:5.0.15 // // 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 e2efd5ec4547..3bce93f518e1 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:5.0.13 +// Runtime Version:5.0.15 // // 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 9d37299c46cc..b49d33f71236 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:5.0.13 +// Runtime Version:5.0.15 // // 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 b90b3fc7c5fa..60984d5d8ffa 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:5.0.13 +// Runtime Version:5.0.15 // // 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 1a682c3feb4e..42f709d980a1 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:5.0.13 +// Runtime Version:5.0.15 // // 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 5b7afad7f9f8..85c7ddbc84f6 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:5.0.13 +// Runtime Version:5.0.15 // // 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/PSAzureFileShareConfiguration.cs b/src/Batch/Batch/Models.Generated/PSAzureFileShareConfiguration.cs index 09772901bca7..645f64945655 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:5.0.13 +// Runtime Version:5.0.15 // // 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 index 2a7a9821f3d7..f4b7c0bdd83c 100644 --- a/src/Batch/Batch/Models.Generated/PSBatchError.cs +++ b/src/Batch/Batch/Models.Generated/PSBatchError.cs @@ -14,7 +14,7 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. -// Runtime Version:5.0.13 +// Runtime Version:5.0.15 // // 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/PSBatchErrorDetail.cs b/src/Batch/Batch/Models.Generated/PSBatchErrorDetail.cs index 2ed5e8c68bd5..1e58b9093bfc 100644 --- a/src/Batch/Batch/Models.Generated/PSBatchErrorDetail.cs +++ b/src/Batch/Batch/Models.Generated/PSBatchErrorDetail.cs @@ -14,7 +14,7 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. -// Runtime Version:5.0.13 +// Runtime Version:5.0.15 // // 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/PSBatchPoolIdentity.cs b/src/Batch/Batch/Models.Generated/PSBatchPoolIdentity.cs index a5abbf59ef89..3b30705ccf55 100644 --- a/src/Batch/Batch/Models.Generated/PSBatchPoolIdentity.cs +++ b/src/Batch/Batch/Models.Generated/PSBatchPoolIdentity.cs @@ -14,7 +14,7 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. -// Runtime Version:5.0.13 +// Runtime Version:5.0.15 // // 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/PSCertificate.cs b/src/Batch/Batch/Models.Generated/PSCertificate.cs index 3beb3ccb2e12..21fe470b2f68 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:5.0.13 +// Runtime Version:5.0.15 // // 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 ce25fc6eeeb5..53fde776ffb9 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:5.0.13 +// Runtime Version:5.0.15 // // 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 f44b71524fe6..247e866e3836 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:5.0.13 +// Runtime Version:5.0.15 // // 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 8b76035ae272..30bae0609239 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:5.0.13 +// Runtime Version:5.0.15 // // 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/PSCloudJobSchedule.cs b/src/Batch/Batch/Models.Generated/PSCloudJobSchedule.cs index bfa7fff9157c..6e0b46984c04 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:5.0.13 +// Runtime Version:5.0.15 // // 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 66025bbb1a50..585c7e4fd218 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:5.0.13 +// Runtime Version:5.0.15 // // 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/PSCloudServiceConfiguration.cs b/src/Batch/Batch/Models.Generated/PSCloudServiceConfiguration.cs index 6651d4f4a4b1..c40606ef4dc9 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:5.0.13 +// Runtime Version:5.0.15 // // 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 d3615c88a15d..f6443e882971 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:5.0.13 +// Runtime Version:5.0.15 // // 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/PSComputeNode.cs b/src/Batch/Batch/Models.Generated/PSComputeNode.cs index cbb7a6f71ec8..6f5c6b3584f1 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:5.0.13 +// Runtime Version:5.0.15 // // 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/PSComputeNodeEndpointConfiguration.cs b/src/Batch/Batch/Models.Generated/PSComputeNodeEndpointConfiguration.cs index f0fefb658782..35175d1df021 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:5.0.13 +// Runtime Version:5.0.15 // // 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 9b0cdd424c89..7f6bda99cee6 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:5.0.13 +// Runtime Version:5.0.15 // // 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 index f8f6fb59cde4..1ac2c69b14eb 100644 --- a/src/Batch/Batch/Models.Generated/PSComputeNodeIdentityReference.cs +++ b/src/Batch/Batch/Models.Generated/PSComputeNodeIdentityReference.cs @@ -14,7 +14,7 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. -// Runtime Version:5.0.13 +// Runtime Version:5.0.15 // // 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/PSComputeNodeInformation.cs b/src/Batch/Batch/Models.Generated/PSComputeNodeInformation.cs index 66df5d40f430..b087a7a10547 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:5.0.13 +// Runtime Version:5.0.15 // // 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 6250425812b5..40599fae0062 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:5.0.13 +// Runtime Version:5.0.15 // // 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 1ae14640f887..a4621bcb0b4c 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:5.0.13 +// Runtime Version:5.0.15 // // 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 97a1bf376c45..154c1ee982bd 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:5.0.13 +// Runtime Version:5.0.15 // // 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/PSDataDisk.cs b/src/Batch/Batch/Models.Generated/PSDataDisk.cs index 2e1da38c08dd..1fbe4ce41e09 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:5.0.13 +// Runtime Version:5.0.15 // // 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 c4d7118f6013..33e87e0604d4 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:5.0.13 +// Runtime Version:5.0.15 // // 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 index bb1d9c5188c1..dbdc91fabb89 100644 --- a/src/Batch/Batch/Models.Generated/PSDiffDiskSettings.cs +++ b/src/Batch/Batch/Models.Generated/PSDiffDiskSettings.cs @@ -14,7 +14,7 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. -// Runtime Version:5.0.13 +// Runtime Version:5.0.15 // // 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/PSDiskEncryptionConfiguration.cs b/src/Batch/Batch/Models.Generated/PSDiskEncryptionConfiguration.cs index 86eeb2edcf00..940b7c3a98f5 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:5.0.13 +// Runtime Version:5.0.15 // // 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 6fbe5da8a4bb..eaa489895d1a 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:5.0.13 +// Runtime Version:5.0.15 // // 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 index 85c6c0f0ddfa..c41724c1215a 100644 --- a/src/Batch/Batch/Models.Generated/PSErrorMessage.cs +++ b/src/Batch/Batch/Models.Generated/PSErrorMessage.cs @@ -14,7 +14,7 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. -// Runtime Version:5.0.13 +// Runtime Version:5.0.15 // // 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/PSExitCodeMapping.cs b/src/Batch/Batch/Models.Generated/PSExitCodeMapping.cs index dac8f7504562..515588890d25 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:5.0.13 +// Runtime Version:5.0.15 // // 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 e307c920a3c0..4b72af04b2d3 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:5.0.13 +// Runtime Version:5.0.15 // // 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 71e227b355d5..9fb776defa0d 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:5.0.13 +// Runtime Version:5.0.15 // // 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 f5d9e68c0808..f70b2c02f9ef 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:5.0.13 +// Runtime Version:5.0.15 // // 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 958362e6cd25..fc500a8fc538 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:5.0.13 +// Runtime Version:5.0.15 // // 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/PSHttpHeader.cs b/src/Batch/Batch/Models.Generated/PSHttpHeader.cs index 038d943c167f..18e72ab5db1d 100644 --- a/src/Batch/Batch/Models.Generated/PSHttpHeader.cs +++ b/src/Batch/Batch/Models.Generated/PSHttpHeader.cs @@ -14,7 +14,7 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. -// Runtime Version:5.0.13 +// Runtime Version:5.0.15 // // 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 1f5928425e0a..5b655aca9c58 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:5.0.13 +// Runtime Version:5.0.15 // // 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 f7cff1352d51..56e2d1109f80 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:5.0.13 +// Runtime Version:5.0.15 // // 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/PSInboundEndpoint.cs b/src/Batch/Batch/Models.Generated/PSInboundEndpoint.cs index a25af4770b10..6b55177e3609 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:5.0.13 +// Runtime Version:5.0.15 // // 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 624198b3f223..32b44926591a 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:5.0.13 +// Runtime Version:5.0.15 // // 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 index 781b2d8b5d75..733924b09fac 100644 --- a/src/Batch/Batch/Models.Generated/PSInstanceViewStatus.cs +++ b/src/Batch/Batch/Models.Generated/PSInstanceViewStatus.cs @@ -14,7 +14,7 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. -// Runtime Version:5.0.13 +// Runtime Version:5.0.15 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. @@ -34,6 +34,8 @@ public partial class PSInstanceViewStatus internal Microsoft.Azure.Batch.InstanceViewStatus omObject; + private PSStatusLevelTypes? level; + public PSInstanceViewStatus() { this.omObject = new Microsoft.Azure.Batch.InstanceViewStatus(); @@ -64,11 +66,16 @@ public string DisplayStatus } } - public Microsoft.Azure.Batch.Common.StatusLevelTypes? Level + public PSStatusLevelTypes? Level { get { - return this.omObject.Level; + if (((this.level == null) + && (this.omObject.Level != null))) + { + this.level = new PSStatusLevelTypes(this.omObject.Level); + } + return this.level; } } diff --git a/src/Batch/Batch/Models.Generated/PSJobConstraints.cs b/src/Batch/Batch/Models.Generated/PSJobConstraints.cs index 8900eaec57e9..decfd27c22c5 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:5.0.13 +// Runtime Version:5.0.15 // // 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 c5147bd8646a..cba619032f6f 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:5.0.13 +// Runtime Version:5.0.15 // // 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 c372a35772d0..b28e886dc2a3 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:5.0.13 +// Runtime Version:5.0.15 // // 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/PSJobNetworkConfiguration.cs b/src/Batch/Batch/Models.Generated/PSJobNetworkConfiguration.cs index 08ef9492da1f..105c592cf5b6 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:5.0.13 +// Runtime Version:5.0.15 // // 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 9b9b0217c434..21a844c768d5 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:5.0.13 +// Runtime Version:5.0.15 // // 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 60fd6ab8101f..0aa709474e08 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:5.0.13 +// Runtime Version:5.0.15 // // 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 0755b7b45417..cdaab759895a 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:5.0.13 +// Runtime Version:5.0.15 // // 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 ec97b5a32baf..94e01174da83 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:5.0.13 +// Runtime Version:5.0.15 // // 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 1fd7495ee221..a28bbdeaa433 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:5.0.13 +// Runtime Version:5.0.15 // // 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 e19a7023c1f2..174979da6cfb 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:5.0.13 +// Runtime Version:5.0.15 // // 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 ca2cc85f92fc..6f655b8222c4 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:5.0.13 +// Runtime Version:5.0.15 // // 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 9f194c42aea0..51025f89b107 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:5.0.13 +// Runtime Version:5.0.15 // // 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 c1884a4e3b4d..931325b2146b 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:5.0.13 +// Runtime Version:5.0.15 // // 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/PSJobStatistics.cs b/src/Batch/Batch/Models.Generated/PSJobStatistics.cs index 71dbf9c874f3..120d9a24c2f0 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:5.0.13 +// Runtime Version:5.0.15 // // 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 7c125026c86b..ff898e6dfc8b 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:5.0.13 +// Runtime Version:5.0.15 // // 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 2f9b6eb2fd55..5008da7bb28b 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:5.0.13 +// Runtime Version:5.0.15 // // 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 27654518c92a..3b0a2406bc9f 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:5.0.13 +// Runtime Version:5.0.15 // // 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 f145c0692c92..73c6637afe0a 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:5.0.13 +// Runtime Version:5.0.15 // // 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 27ec3a620431..301b85793ccb 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:5.0.13 +// Runtime Version:5.0.15 // // 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 929c99229e1b..5c0d5552f75f 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:5.0.13 +// Runtime Version:5.0.15 // // 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 c33624998e0e..dc67f92e6a21 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:5.0.13 +// Runtime Version:5.0.15 // // 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 c8c6a651c8e9..d31a742c75b7 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:5.0.13 +// Runtime Version:5.0.15 // // 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 332519378b64..cb956a869f21 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:5.0.13 +// Runtime Version:5.0.15 // // 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 4463270f8b44..5a203059bec3 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:5.0.13 +// Runtime Version:5.0.15 // // 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 index 5ccca2748672..d79cfb285feb 100644 --- a/src/Batch/Batch/Models.Generated/PSNodePlacementConfiguration.cs +++ b/src/Batch/Batch/Models.Generated/PSNodePlacementConfiguration.cs @@ -14,7 +14,7 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. -// Runtime Version:5.0.13 +// Runtime Version:5.0.15 // // 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/PSNodeVMExtension.cs b/src/Batch/Batch/Models.Generated/PSNodeVMExtension.cs index 3e366c9a19e9..b26d2ff0adb8 100644 --- a/src/Batch/Batch/Models.Generated/PSNodeVMExtension.cs +++ b/src/Batch/Batch/Models.Generated/PSNodeVMExtension.cs @@ -14,7 +14,7 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. -// Runtime Version:5.0.13 +// Runtime Version:5.0.15 // // 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/PSOSDisk.cs b/src/Batch/Batch/Models.Generated/PSOSDisk.cs index f40155405f25..ebbd3400a13b 100644 --- a/src/Batch/Batch/Models.Generated/PSOSDisk.cs +++ b/src/Batch/Batch/Models.Generated/PSOSDisk.cs @@ -14,7 +14,7 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. -// Runtime Version:5.0.13 +// Runtime Version:5.0.15 // // 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/PSOutputFile.cs b/src/Batch/Batch/Models.Generated/PSOutputFile.cs index 51d27a3ae40e..c64faf273f2b 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:5.0.13 +// Runtime Version:5.0.15 // // 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 31c4e1748b04..b316adad8907 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:5.0.13 +// Runtime Version:5.0.15 // // 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/PSOutputFileDestination.cs b/src/Batch/Batch/Models.Generated/PSOutputFileDestination.cs index f3383204a688..105ef212206f 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:5.0.13 +// Runtime Version:5.0.15 // // 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 777d2713d156..b34bee21f0ef 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:5.0.13 +// Runtime Version:5.0.15 // // 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 9fccfef9aae9..fa9edebf6d9d 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:5.0.13 +// Runtime Version:5.0.15 // // 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 2760c7ec59f8..7a6ff588b394 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:5.0.13 +// Runtime Version:5.0.15 // // 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 e58261836ce7..c03b8e480324 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:5.0.13 +// Runtime Version:5.0.15 // // 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 fbcbd4effe75..15642538455e 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:5.0.13 +// Runtime Version:5.0.15 // // 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/PSPoolStatistics.cs b/src/Batch/Batch/Models.Generated/PSPoolStatistics.cs index 00b601a7d483..57664f17adaa 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:5.0.13 +// Runtime Version:5.0.15 // // 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 d22465af2013..e8763758a448 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:5.0.13 +// Runtime Version:5.0.15 // // 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 e15f54f4552a..0dde79ce01d1 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:5.0.13 +// Runtime Version:5.0.15 // // 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 2454baf6ecaa..6a037fa6248a 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:5.0.13 +// Runtime Version:5.0.15 // // 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 296ec3902c32..e8d579f5256a 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:5.0.13 +// Runtime Version:5.0.15 // // 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 d856638871a2..53f47ba98e51 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:5.0.13 +// Runtime Version:5.0.15 // // 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 b84416a100f0..282f3782268f 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:5.0.13 +// Runtime Version:5.0.15 // // 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/PSResourceStatistics.cs b/src/Batch/Batch/Models.Generated/PSResourceStatistics.cs index 7be69f42cfc4..8d35424f15ee 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:5.0.13 +// Runtime Version:5.0.15 // // 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 cd2692ea1669..703022fa3f94 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:5.0.13 +// Runtime Version:5.0.15 // // 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 dd83c29d8458..3fb2f5d7b251 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:5.0.13 +// Runtime Version:5.0.15 // // 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 cc1b1ce34f03..03698639a34c 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:5.0.13 +// Runtime Version:5.0.15 // // 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 893e3276631b..e52fc24d632d 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:5.0.13 +// Runtime Version:5.0.15 // // 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/PSStatusLevelTypes.cs b/src/Batch/Batch/Models.Generated/PSStatusLevelTypes.cs new file mode 100644 index 000000000000..08043342b02c --- /dev/null +++ b/src/Batch/Batch/Models.Generated/PSStatusLevelTypes.cs @@ -0,0 +1,46 @@ +// ----------------------------------------------------------------------------- +// +// 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.15 +// +// 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 PSStatusLevelTypes + { + + internal Microsoft.Azure.Batch.Common.StatusLevelTypes omObject; + + internal PSStatusLevelTypes(Microsoft.Azure.Batch.Common.StatusLevelTypes omObject) + { + if ((omObject == null)) + { + throw new System.ArgumentNullException("omObject"); + } + this.omObject = omObject; + } + } +} diff --git a/src/Batch/Batch/Models.Generated/PSSubtaskInformation.cs b/src/Batch/Batch/Models.Generated/PSSubtaskInformation.cs index 591ec8d8bc85..8fb58647ae40 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:5.0.13 +// Runtime Version:5.0.15 // // 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 f360e1e7f7cd..884ed833aa13 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:5.0.13 +// Runtime Version:5.0.15 // // 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 89d182610e32..3a746a01dd2d 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:5.0.13 +// Runtime Version:5.0.15 // // 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 f597b6bbd2bb..68517f7b473b 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:5.0.13 +// Runtime Version:5.0.15 // // 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 703ede4e4eb3..6ea8b9f8b25f 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:5.0.13 +// Runtime Version:5.0.15 // // 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 index b1d363b5008d..ae06412357bb 100644 --- a/src/Batch/Batch/Models.Generated/PSTaskCountsResult.cs +++ b/src/Batch/Batch/Models.Generated/PSTaskCountsResult.cs @@ -14,7 +14,7 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. -// Runtime Version:5.0.13 +// Runtime Version:5.0.15 // // 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/PSTaskDependencies.cs b/src/Batch/Batch/Models.Generated/PSTaskDependencies.cs index 23ed466755d8..7da12220d044 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:5.0.13 +// Runtime Version:5.0.15 // // 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 354b3cd45484..83ec65148051 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:5.0.13 +// Runtime Version:5.0.15 // // 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 dc333b949d62..7ffae6b4c5b2 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:5.0.13 +// Runtime Version:5.0.15 // // 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 cf1f22eeaf78..547c1fe87a8c 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:5.0.13 +// Runtime Version:5.0.15 // // 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 eb5463fb8021..7391e51cfcd7 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:5.0.13 +// Runtime Version:5.0.15 // // 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 bb8051a85cc0..b0b609b8b7b3 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:5.0.13 +// Runtime Version:5.0.15 // // 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 index c1ff77436b2c..19a39f2359d3 100644 --- a/src/Batch/Batch/Models.Generated/PSTaskSlotCounts.cs +++ b/src/Batch/Batch/Models.Generated/PSTaskSlotCounts.cs @@ -14,7 +14,7 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. -// Runtime Version:5.0.13 +// Runtime Version:5.0.15 // // 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/PSTaskStatistics.cs b/src/Batch/Batch/Models.Generated/PSTaskStatistics.cs index 2c771dd39267..ed841cbe5bc5 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:5.0.13 +// Runtime Version:5.0.15 // // 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 ca02d858df10..1f5d9f296fa3 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:5.0.13 +// Runtime Version:5.0.15 // // 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 607004189199..dc08454563c4 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:5.0.13 +// Runtime Version:5.0.15 // // 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 index 943c4b2da9eb..67c800b3197b 100644 --- a/src/Batch/Batch/Models.Generated/PSUserAssignedIdentity.cs +++ b/src/Batch/Batch/Models.Generated/PSUserAssignedIdentity.cs @@ -14,7 +14,7 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. -// Runtime Version:5.0.13 +// Runtime Version:5.0.15 // // 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/PSUserIdentity.cs b/src/Batch/Batch/Models.Generated/PSUserIdentity.cs index 9d311b7aea8c..250be195bae6 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:5.0.13 +// Runtime Version:5.0.15 // // 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 index 30d636bef03c..e4f5ea62f4b4 100644 --- a/src/Batch/Batch/Models.Generated/PSVMExtension.cs +++ b/src/Batch/Batch/Models.Generated/PSVMExtension.cs @@ -14,7 +14,7 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. -// Runtime Version:5.0.13 +// Runtime Version:5.0.15 // // 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/PSVMExtensionInstanceView.cs b/src/Batch/Batch/Models.Generated/PSVMExtensionInstanceView.cs index ef260355c6a7..322376f46eca 100644 --- a/src/Batch/Batch/Models.Generated/PSVMExtensionInstanceView.cs +++ b/src/Batch/Batch/Models.Generated/PSVMExtensionInstanceView.cs @@ -14,7 +14,7 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. -// Runtime Version:5.0.13 +// Runtime Version:5.0.15 // // 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/PSVirtualMachineConfiguration.cs b/src/Batch/Batch/Models.Generated/PSVirtualMachineConfiguration.cs index d7383850fce1..2814d07a8573 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:5.0.13 +// Runtime Version:5.0.15 // // 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/PSVirtualMachineInfo.cs b/src/Batch/Batch/Models.Generated/PSVirtualMachineInfo.cs index 56880895f7d6..dffa9f9a46a2 100644 --- a/src/Batch/Batch/Models.Generated/PSVirtualMachineInfo.cs +++ b/src/Batch/Batch/Models.Generated/PSVirtualMachineInfo.cs @@ -14,7 +14,7 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. -// Runtime Version:5.0.13 +// Runtime Version:5.0.15 // // 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/PSWindowsConfiguration.cs b/src/Batch/Batch/Models.Generated/PSWindowsConfiguration.cs index ef590e676326..a9f12c9627ab 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:5.0.13 +// Runtime Version:5.0.15 // // 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 50d343afe526..19d9bde1b320 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:5.0.13 +// Runtime Version:5.0.15 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. From b4caaa99c3ace094ebd8f51b47658ae4dd909dec Mon Sep 17 00:00:00 2001 From: Mike Pateras Date: Mon, 21 Mar 2022 17:28:44 -0400 Subject: [PATCH 16/18] Cleanup and add ability to wrap Microsoft.Azure.Batch.Common enums. Fixed nullable reference types Fixed types --- tools/BatchModelGenerator/Program.cs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/tools/BatchModelGenerator/Program.cs b/tools/BatchModelGenerator/Program.cs index af394ca7ca79..679d26e27c7b 100644 --- a/tools/BatchModelGenerator/Program.cs +++ b/tools/BatchModelGenerator/Program.cs @@ -502,11 +502,6 @@ private static string GetPropertyType(Type t) { if (t.IsEnum) { - if (OMtoPSClassMappings.ContainsKey(t.FullName)) - { - return OMtoPSClassMappings[t.FullName]; - } - return t.FullName; } else if (t == typeof(string) || t.IsPrimitive || t == typeof(DateTime) || t == typeof(TimeSpan) || t == typeof(object)) @@ -516,6 +511,11 @@ private static string GetPropertyType(Type t) else if (IsGenericNullable(t)) { Type argType = t.GetGenericArguments()[0]; + if (argType.IsEnum && OMtoPSClassMappings.ContainsKey(argType.FullName)) + { + return OMtoPSClassMappings[argType.FullName]; + } + return string.Format("{0}?", GetPropertyType(argType)); } else if (t.IsGenericType && t.GetGenericTypeDefinition() == typeof(IList<>)) From d18179a45a4159551e0dce78c0963eb4bd0364d3 Mon Sep 17 00:00:00 2001 From: Mike Pateras Date: Mon, 21 Mar 2022 17:29:20 -0400 Subject: [PATCH 17/18] Regenerated models Generated models Generated models --- src/Batch/Batch/Models.Generated/PSInstanceViewStatus.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Batch/Batch/Models.Generated/PSInstanceViewStatus.cs b/src/Batch/Batch/Models.Generated/PSInstanceViewStatus.cs index 733924b09fac..aa42c4fbe80b 100644 --- a/src/Batch/Batch/Models.Generated/PSInstanceViewStatus.cs +++ b/src/Batch/Batch/Models.Generated/PSInstanceViewStatus.cs @@ -34,7 +34,7 @@ public partial class PSInstanceViewStatus internal Microsoft.Azure.Batch.InstanceViewStatus omObject; - private PSStatusLevelTypes? level; + private PSStatusLevelTypes level; public PSInstanceViewStatus() { @@ -66,7 +66,7 @@ public string DisplayStatus } } - public PSStatusLevelTypes? Level + public PSStatusLevelTypes Level { get { From e6292a901f697954b8c19b7e719035a70c5b37d5 Mon Sep 17 00:00:00 2001 From: Mike Pateras Date: Thu, 31 Mar 2022 14:27:16 -0400 Subject: [PATCH 18/18] Fixed enum types --- src/Batch/Batch/Models.Generated/PSStatusLevelTypes.cs | 4 ++-- tools/BatchModelGenerator/Program.cs | 10 ++++------ 2 files changed, 6 insertions(+), 8 deletions(-) diff --git a/src/Batch/Batch/Models.Generated/PSStatusLevelTypes.cs b/src/Batch/Batch/Models.Generated/PSStatusLevelTypes.cs index 08043342b02c..c64af9dcc22e 100644 --- a/src/Batch/Batch/Models.Generated/PSStatusLevelTypes.cs +++ b/src/Batch/Batch/Models.Generated/PSStatusLevelTypes.cs @@ -32,9 +32,9 @@ namespace Microsoft.Azure.Commands.Batch.Models public partial class PSStatusLevelTypes { - internal Microsoft.Azure.Batch.Common.StatusLevelTypes omObject; + internal Microsoft.Azure.Batch.Common.StatusLevelTypes? omObject; - internal PSStatusLevelTypes(Microsoft.Azure.Batch.Common.StatusLevelTypes omObject) + internal PSStatusLevelTypes(Microsoft.Azure.Batch.Common.StatusLevelTypes? omObject) { if ((omObject == null)) { diff --git a/tools/BatchModelGenerator/Program.cs b/tools/BatchModelGenerator/Program.cs index 679d26e27c7b..262d85c55abb 100644 --- a/tools/BatchModelGenerator/Program.cs +++ b/tools/BatchModelGenerator/Program.cs @@ -37,7 +37,8 @@ public class Program private static readonly Dictionary customMappings = new() { - { "Microsoft.Azure.Batch.UploadBatchServiceLogsResult", "PSStartComputeNodeServiceLogUploadResult" }, + { "Microsoft.Azure.Batch.UploadBatchServiceLogsResult", "PSStartComputeNodeServiceLogUploadResult" }, + { "Microsoft.Azure.Batch.Common.StatusLevelTypes", "PSStatusLevelTypes" } }; private static readonly Dictionary OMtoPSClassMappings = new(); @@ -98,9 +99,6 @@ private static void CreateMappings(Assembly omAssembly) List<(string FullName, string Name)> typeNames = allTypes .Where(t => t.GetInterface("IPropertyMetadata") != null && t.Namespace == "Microsoft.Azure.Batch" && t.IsPublic).Select(t => (t.FullName, t.Name)).ToList(); - // We may want to wrap all enums in this namespace in the future, but limiting it to the scope of this change for now. - typeNames.Add(("Microsoft.Azure.Batch.Common.StatusLevelTypes", "StatusLevelTypes")); - foreach ((string fullName, string className) in typeNames) { if (OMtoPSClassMappings.ContainsKey(fullName) == false) @@ -137,7 +135,7 @@ private static void GenerateModel(string fileName, Type omType, string modelName CodeMemberField wrappedField = new(); wrappedField.Attributes = MemberAttributes.Assembly; wrappedField.Name = OmObject; - wrappedField.Type = new CodeTypeReference(omType); + wrappedField.Type = new CodeTypeReference(omType.IsEnum ? $"{omType}?" : omType.FullName); codeType.Members.Add(wrappedField); GenerateConstructors(omType, codeType); @@ -212,7 +210,7 @@ private static void GenerateConstructors(Type t, CodeTypeDeclaration codeType) // Default internal constructor that accepts the OM object to wrap CodeConstructor defaultConstructor = new(); defaultConstructor.Attributes = MemberAttributes.Assembly; - CodeParameterDeclarationExpression omObjectParameter = new(t, OmObject); + CodeParameterDeclarationExpression omObjectParameter = new(t.IsEnum ? $"{t.FullName}?" : t.FullName, OmObject); defaultConstructor.Parameters.Add(omObjectParameter); CodeArgumentReferenceExpression omObjectArgumentReference = new(OmObject); CodeObjectCreateExpression createException = new(typeof(ArgumentNullException), new CodePrimitiveExpression(OmObject));