diff --git a/eng/Packages.Data.props b/eng/Packages.Data.props index 886ba298de189..1c9e877fe55d2 100644 --- a/eng/Packages.Data.props +++ b/eng/Packages.Data.props @@ -12,11 +12,11 @@ --> - + - + diff --git a/sdk/batch/Microsoft.Azure.Batch.Conventions.Files/src/Microsoft.Azure.Batch.Conventions.Files.csproj b/sdk/batch/Microsoft.Azure.Batch.Conventions.Files/src/Microsoft.Azure.Batch.Conventions.Files.csproj index c4c4b628e63ab..eea53d7af6f0c 100644 --- a/sdk/batch/Microsoft.Azure.Batch.Conventions.Files/src/Microsoft.Azure.Batch.Conventions.Files.csproj +++ b/sdk/batch/Microsoft.Azure.Batch.Conventions.Files/src/Microsoft.Azure.Batch.Conventions.Files.csproj @@ -12,7 +12,6 @@ Improve usability of GetOutputStoragePath. - True true $(RequiredTargetFrameworks) true diff --git a/sdk/batch/Microsoft.Azure.Batch.FileStaging/src/Microsoft.Azure.Batch.FileStaging.csproj b/sdk/batch/Microsoft.Azure.Batch.FileStaging/src/Microsoft.Azure.Batch.FileStaging.csproj index 6067c607a5755..7b5ed3b43d9b4 100644 --- a/sdk/batch/Microsoft.Azure.Batch.FileStaging/src/Microsoft.Azure.Batch.FileStaging.csproj +++ b/sdk/batch/Microsoft.Azure.Batch.FileStaging/src/Microsoft.Azure.Batch.FileStaging.csproj @@ -18,7 +18,6 @@ $(RequiredTargetFrameworks) - True diff --git a/sdk/batch/Microsoft.Azure.Batch/src/Microsoft.Azure.Batch.csproj b/sdk/batch/Microsoft.Azure.Batch/src/Microsoft.Azure.Batch.csproj index 27ae4892b381e..745c992f01e27 100644 --- a/sdk/batch/Microsoft.Azure.Batch/src/Microsoft.Azure.Batch.csproj +++ b/sdk/batch/Microsoft.Azure.Batch/src/Microsoft.Azure.Batch.csproj @@ -15,7 +15,6 @@ $(RequiredTargetFrameworks) - True For detailed release notes, see: https://aka.ms/batch-net-dataplane-changelog diff --git a/sdk/batch/Microsoft.Azure.Management.Batch/CHANGELOG.md b/sdk/batch/Microsoft.Azure.Management.Batch/CHANGELOG.md index 799453c1af1d5..1c7777751c1ba 100644 --- a/sdk/batch/Microsoft.Azure.Management.Batch/CHANGELOG.md +++ b/sdk/batch/Microsoft.Azure.Management.Batch/CHANGELOG.md @@ -1,5 +1,11 @@ # Release History +## 14.1.0 (2021-09-01) + +### Bug Fixes + +- Fixes a breaking type ambiguity in BatchAccountIdentity's constructor, introduced in #14.0.0. + ## 14.0.0 (2021-08-01) ### REST API version diff --git a/sdk/batch/Microsoft.Azure.Management.Batch/src/Microsoft.Azure.Management.Batch.csproj b/sdk/batch/Microsoft.Azure.Management.Batch/src/Microsoft.Azure.Management.Batch.csproj index abf8c85622164..2a6d8fb00dc2a 100644 --- a/sdk/batch/Microsoft.Azure.Management.Batch/src/Microsoft.Azure.Management.Batch.csproj +++ b/sdk/batch/Microsoft.Azure.Management.Batch/src/Microsoft.Azure.Management.Batch.csproj @@ -8,7 +8,7 @@ Provides management capabilities for Azure Batch service accounts. Microsoft Azure Batch Management Library Microsoft.Azure.Management.Batch - 14.0.0 + 14.1.0 Microsoft Azure batch management;batch; For detailed release notes, see: https://aka.ms/batch-net-management-changelog diff --git a/sdk/batch/Microsoft.Azure.Management.Batch/src/Models/BatchAccountIdentity.cs b/sdk/batch/Microsoft.Azure.Management.Batch/src/Models/BatchAccountIdentity.cs index 716377d0fcd73..d79512d432638 100644 --- a/sdk/batch/Microsoft.Azure.Management.Batch/src/Models/BatchAccountIdentity.cs +++ b/sdk/batch/Microsoft.Azure.Management.Batch/src/Models/BatchAccountIdentity.cs @@ -8,9 +8,16 @@ namespace Microsoft.Azure.Management.Batch.Models { public partial class BatchAccountIdentity { - public BatchAccountIdentity(ResourceIdentityType type, string principalId = default(string), string tenantId = default(string), IDictionary userAssignedIdentities = default(IDictionary)) - : this(type, principalId, tenantId, userAssignedIdentities as IDictionary) + public BatchAccountIdentity(ResourceIdentityType type, IDictionary userAssignedIdentities) + : this(type, default(string), default(string), userAssignedIdentities) { } + + [Obsolete("Please use BatchAccountIdentity(ResourceIdentityType type, IDictionary userAssignedIdentities) instead.")] + public BatchAccountIdentity(ResourceIdentityType type, IDictionary userAssignedIdentities) + : this(type, default(string), default(string), userAssignedIdentities.ToDictionary(k => k.Key, v => (UserAssignedIdentities)v.Value)) + { + // This constructor exists for legacy support. Do not add anything here. + } } } diff --git a/sdk/batch/Microsoft.Azure.Management.Batch/src/Models/BatchAccountIdentityUserAssignedIdentitiesValue.cs b/sdk/batch/Microsoft.Azure.Management.Batch/src/Models/BatchAccountIdentityUserAssignedIdentitiesValue.cs index 447b6d9fb2250..43a3a26bd8be9 100644 --- a/sdk/batch/Microsoft.Azure.Management.Batch/src/Models/BatchAccountIdentityUserAssignedIdentitiesValue.cs +++ b/sdk/batch/Microsoft.Azure.Management.Batch/src/Models/BatchAccountIdentityUserAssignedIdentitiesValue.cs @@ -6,7 +6,12 @@ namespace Microsoft.Azure.Management.Batch.Models { + [Obsolete("Please use UserAssignedIdentities instead.")] public class BatchAccountIdentityUserAssignedIdentitiesValue : UserAssignedIdentities { + public BatchAccountIdentityUserAssignedIdentitiesValue(string principalId = default(string), string clientId = default(string)) + : base(principalId, clientId) + { + } } } diff --git a/sdk/batch/Microsoft.Azure.Management.Batch/tests/InMemoryTests/AccountTests.InMemory.cs b/sdk/batch/Microsoft.Azure.Management.Batch/tests/InMemoryTests/AccountTests.InMemory.cs index 6cac7ecd6b85a..e9a3c548ebd24 100644 --- a/sdk/batch/Microsoft.Azure.Management.Batch/tests/InMemoryTests/AccountTests.InMemory.cs +++ b/sdk/batch/Microsoft.Azure.Management.Batch/tests/InMemoryTests/AccountTests.InMemory.cs @@ -907,14 +907,16 @@ public void ListOutboundNetworkDependenciesEndpointsValidateResponse() [Fact] public void UserAssignedIdentitiesShouldSubstituteForBatchAccountIdentityUserAssignedIdentitiesValue() { - string principalId = "TestPrincipal"; - string tenantId = "TestTenant"; - BatchAccountIdentityUserAssignedIdentitiesValue testIdentity = new BatchAccountIdentityUserAssignedIdentitiesValue(); - BatchAccountIdentity identity = new BatchAccountIdentity(ResourceIdentityType.UserAssigned, principalId, tenantId, new Dictionary { { "", testIdentity } }); - + string testPrincipalId = "testPrincipalId"; + string testClientId = "testClientId"; + string testAccount = "testAccount"; +#pragma warning disable CS0618 // Type or member is obsolete + BatchAccountIdentityUserAssignedIdentitiesValue testIdentity = new BatchAccountIdentityUserAssignedIdentitiesValue(testPrincipalId, testClientId); + BatchAccountIdentity identity = new BatchAccountIdentity(ResourceIdentityType.UserAssigned, new Dictionary { { testAccount, testIdentity } }); +#pragma warning restore CS0618 // Type or member is obsolete Assert.True(testIdentity is UserAssignedIdentities); - Assert.Equal(principalId, identity.PrincipalId); - Assert.Equal(tenantId, identity.TenantId); + Assert.Equal(testPrincipalId, identity.UserAssignedIdentities[testAccount].PrincipalId); + Assert.Equal(testClientId, identity.UserAssignedIdentities[testAccount].ClientId); } } } diff --git a/sdk/batch/Microsoft.Azure.Management.Batch/tests/ScenarioTests/BatchScenarioTestBase.cs b/sdk/batch/Microsoft.Azure.Management.Batch/tests/ScenarioTests/BatchScenarioTestBase.cs index efd29f963ec60..eeb3bdfc1ccec 100644 --- a/sdk/batch/Microsoft.Azure.Management.Batch/tests/ScenarioTests/BatchScenarioTestBase.cs +++ b/sdk/batch/Microsoft.Azure.Management.Batch/tests/ScenarioTests/BatchScenarioTestBase.cs @@ -40,7 +40,7 @@ private static string FindLocation(MockContext context) var resourceManagementClient = context.GetServiceClient(); Provider provider = resourceManagementClient.Providers.Get("Microsoft.Batch"); IList locations = provider.ResourceTypes.First(resType => resType.ResourceType == "batchAccounts").Locations; - return locations.First(location => location == "East US"); + return locations.First(location => location == "West US"); } // Can be used to find a region to test against, but probably shouldn't record tests that use this as it will leave your subscription account details in the diff --git a/sdk/batch/Microsoft.Azure.Management.Batch/tests/ScenarioTests/LocationTests.ScenarioTests.cs b/sdk/batch/Microsoft.Azure.Management.Batch/tests/ScenarioTests/LocationTests.ScenarioTests.cs index 0eeb38c081132..d998c94cfa7b8 100644 --- a/sdk/batch/Microsoft.Azure.Management.Batch/tests/ScenarioTests/LocationTests.ScenarioTests.cs +++ b/sdk/batch/Microsoft.Azure.Management.Batch/tests/ScenarioTests/LocationTests.ScenarioTests.cs @@ -67,7 +67,7 @@ public async Task ListSupportedCloudServiceSkusFilterFamilyNameAsync() { using (MockContext context = StartMockContextAndInitializeClients(GetType())) { - string filterValue = "basic"; + string filterValue = "standardD"; string filterExpression = $"startswith(familyName,'{filterValue}')"; // Select family names beginning with 'basic'. IPage result; diff --git a/sdk/batch/Microsoft.Azure.Management.Batch/tests/SessionRecords/AccountTests/BatchAccountCanCreateWithBYOSEnabled.json b/sdk/batch/Microsoft.Azure.Management.Batch/tests/SessionRecords/AccountTests/BatchAccountCanCreateWithBYOSEnabled.json index fd276f7da06cc..ab0af868a3be1 100644 --- a/sdk/batch/Microsoft.Azure.Management.Batch/tests/SessionRecords/AccountTests/BatchAccountCanCreateWithBYOSEnabled.json +++ b/sdk/batch/Microsoft.Azure.Management.Batch/tests/SessionRecords/AccountTests/BatchAccountCanCreateWithBYOSEnabled.json @@ -7,13 +7,13 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2de7e8ba-9b1a-4e75-bfed-49d64ad1902a" + "8dfe1b1e-059c-435c-ac8f-d374658a958a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.6.30411.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19043.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" @@ -30,13 +30,13 @@ "11999" ], "x-ms-request-id": [ - "18a8ab07-4734-4049-a3c3-1238ab538daa" + "369d682a-8fb7-401a-b42d-0fa8f8b6722e" ], "x-ms-correlation-request-id": [ - "18a8ab07-4734-4049-a3c3-1238ab538daa" + "369d682a-8fb7-401a-b42d-0fa8f8b6722e" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20210728T131521Z:18a8ab07-4734-4049-a3c3-1238ab538daa" + "NORTHCENTRALUS:20210831T221003Z:369d682a-8fb7-401a-b42d-0fa8f8b6722e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -45,7 +45,7 @@ "nosniff" ], "Date": [ - "Wed, 28 Jul 2021 13:15:21 GMT" + "Tue, 31 Aug 2021 22:10:02 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -54,26 +54,26 @@ "-1" ], "Content-Length": [ - "7221" + "8454" ] }, - "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 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 \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\",\r\n \"2015-07-01\",\r\n \"2014-05-01-privatepreview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\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 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 \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"batchAccounts/certificates\",\r\n \"locations\": [\r\n \"West Europe\",\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Europe\",\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [\r\n \"West Europe\",\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"West Europe\",\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/accountOperationResults\",\r\n \"locations\": [\r\n \"West Europe\",\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\",\r\n \"2015-07-01\",\r\n \"2014-05-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "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 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 \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\",\r\n \"2015-07-01\",\r\n \"2014-05-01-privatepreview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\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 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 \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"batchAccounts/certificates\",\r\n \"locations\": [\r\n \"West Europe\",\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Europe\",\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [\r\n \"West Europe\",\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"West Europe\",\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/accountOperationResults\",\r\n \"locations\": [\r\n \"West Europe\",\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\",\r\n \"2015-07-01\",\r\n \"2014-05-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/virtualMachineSkus\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US 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 \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/cloudServiceSkus\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US 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 \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourcegroups/azsmnet275?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQyNzU/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourcegroups/azsmnet2682?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQyNjgyP2FwaS12ZXJzaW9uPTIwMTctMDUtMTA=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"East US\"\r\n}", + "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "27fba40f-63db-4f5d-b0b0-b6aac6e1609e" + "008b79f8-52f0-43f4-b35e-6a2269dbca2a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.6.30411.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19043.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" @@ -96,13 +96,13 @@ "1199" ], "x-ms-request-id": [ - "21de23bd-267a-40d4-a990-26660acc07a6" + "7418f07e-a385-4eea-a5ba-eda24cbac01a" ], "x-ms-correlation-request-id": [ - "21de23bd-267a-40d4-a990-26660acc07a6" + "7418f07e-a385-4eea-a5ba-eda24cbac01a" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20210728T131522Z:21de23bd-267a-40d4-a990-26660acc07a6" + "NORTHCENTRALUS:20210831T221004Z:7418f07e-a385-4eea-a5ba-eda24cbac01a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -111,10 +111,10 @@ "nosniff" ], "Date": [ - "Wed, 28 Jul 2021 13:15:21 GMT" + "Tue, 31 Aug 2021 22:10:04 GMT" ], "Content-Length": [ - "173" + "175" ], "Content-Type": [ "application/json; charset=utf-8" @@ -123,7 +123,7 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet275\",\r\n \"name\": \"azsmnet275\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet2682\",\r\n \"name\": \"azsmnet2682\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { @@ -133,13 +133,13 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f3d424f5-740f-4681-82ae-16093e6e7048" + "ccbe8aa4-4f4a-475d-9600-4f7c65363b10" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.6.30411.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19043.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" @@ -156,13 +156,13 @@ "1199" ], "x-ms-request-id": [ - "591f1d76-357b-4ae7-a655-a708fe45a276" + "faa47ec5-934d-45e5-8a3e-cf1a5bbab88a" ], "x-ms-correlation-request-id": [ - "591f1d76-357b-4ae7-a655-a708fe45a276" + "faa47ec5-934d-45e5-8a3e-cf1a5bbab88a" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20210728T131523Z:591f1d76-357b-4ae7-a655-a708fe45a276" + "NORTHCENTRALUS:20210831T221005Z:faa47ec5-934d-45e5-8a3e-cf1a5bbab88a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -171,10 +171,10 @@ "nosniff" ], "Date": [ - "Wed, 28 Jul 2021 13:15:22 GMT" + "Tue, 31 Aug 2021 22:10:04 GMT" ], "Content-Length": [ - "10616" + "10952" ], "Content-Type": [ "application/json; charset=utf-8" @@ -183,23 +183,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.KeyVault\",\r\n \"namespace\": \"Microsoft.KeyVault\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"cfa8b339-82a2-471a-a3c9-0fc0be7a4093\",\r\n \"roleDefinitionId\": \"1cf9858a-28a2-4228-abba-94e606305b95\"\r\n },\r\n {\r\n \"applicationId\": \"589d5083-6f11-4d30-a62a-a4b316a14abf\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South 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 \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-04-01-preview\",\r\n \"2020-04-01-preview\",\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\",\r\n \"2015-06-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2019-03-01-hybrid\",\r\n \"apiVersion\": \"2016-10-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-10-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-10-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"vaults/secrets\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South 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 \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-04-01-preview\",\r\n \"2020-04-01-preview\",\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\",\r\n \"2015-06-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2019-03-01-hybrid\",\r\n \"apiVersion\": \"2016-10-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-10-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/accessPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South 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 \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-04-01-preview\",\r\n \"2020-04-01-preview\",\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\",\r\n \"2015-06-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2019-03-01-hybrid\",\r\n \"apiVersion\": \"2016-10-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-10-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-04-01-preview\",\r\n \"2020-04-01-preview\",\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\",\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2019-03-01-hybrid\",\r\n \"apiVersion\": \"2016-10-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-10-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-04-01-preview\",\r\n \"2020-04-01-preview\",\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\",\r\n \"2015-06-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deletedVaults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South 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 \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-04-01-preview\",\r\n \"2020-04-01-preview\",\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-04-01-preview\",\r\n \"2020-04-01-preview\",\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deletedVaults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South 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 \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-04-01-preview\",\r\n \"2020-04-01-preview\",\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-04-01-preview\",\r\n \"2020-04-01-preview\",\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South 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 \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-04-01-preview\",\r\n \"2020-04-01-preview\",\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/eventGridFilters\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South 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 \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-04-01-preview\",\r\n \"2020-04-01-preview\",\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"managedHSMs\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"Switzerland North\",\r\n \"South Africa North\",\r\n \"UK South\",\r\n \"SouthEast Asia\",\r\n \"East Asia\",\r\n \"Korea Central\",\r\n \"Australia Central\",\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-04-01-preview\",\r\n \"2020-04-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"deletedManagedHSMs\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"Switzerland North\",\r\n \"South Africa North\",\r\n \"UK South\",\r\n \"SouthEast Asia\",\r\n \"East Asia\",\r\n \"Korea Central\",\r\n \"Australia Central\",\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deletedManagedHSMs\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"Switzerland North\",\r\n \"South Africa North\",\r\n \"UK South\",\r\n \"SouthEast Asia\",\r\n \"East Asia\",\r\n \"Korea Central\",\r\n \"Australia Central\",\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/keys\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South 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 \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-04-01-preview\",\r\n \"2020-04-01-preview\",\r\n \"2019-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/keys/versions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South 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 \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-04-01-preview\",\r\n \"2020-04-01-preview\",\r\n \"2019-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.KeyVault\",\r\n \"namespace\": \"Microsoft.KeyVault\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"cfa8b339-82a2-471a-a3c9-0fc0be7a4093\",\r\n \"roleDefinitionId\": \"1cf9858a-28a2-4228-abba-94e606305b95\"\r\n },\r\n {\r\n \"applicationId\": \"589d5083-6f11-4d30-a62a-a4b316a14abf\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South 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 \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01-preview\",\r\n \"2021-04-01-preview\",\r\n \"2020-04-01-preview\",\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\",\r\n \"2015-06-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2019-03-01-hybrid\",\r\n \"apiVersion\": \"2016-10-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-10-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-10-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"vaults/secrets\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South 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 \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01-preview\",\r\n \"2021-04-01-preview\",\r\n \"2020-04-01-preview\",\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\",\r\n \"2015-06-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2019-03-01-hybrid\",\r\n \"apiVersion\": \"2016-10-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-10-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/accessPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South 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 \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01-preview\",\r\n \"2021-04-01-preview\",\r\n \"2020-04-01-preview\",\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\",\r\n \"2015-06-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2019-03-01-hybrid\",\r\n \"apiVersion\": \"2016-10-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-10-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-06-01-preview\",\r\n \"2021-04-01-preview\",\r\n \"2020-04-01-preview\",\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\",\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2019-03-01-hybrid\",\r\n \"apiVersion\": \"2016-10-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-10-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-06-01-preview\",\r\n \"2021-04-01-preview\",\r\n \"2020-04-01-preview\",\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\",\r\n \"2015-06-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deletedVaults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South 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 \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01-preview\",\r\n \"2021-04-01-preview\",\r\n \"2020-04-01-preview\",\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-06-01-preview\",\r\n \"2021-04-01-preview\",\r\n \"2020-04-01-preview\",\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deletedVaults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South 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 \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01-preview\",\r\n \"2021-04-01-preview\",\r\n \"2020-04-01-preview\",\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01-preview\",\r\n \"2021-04-01-preview\",\r\n \"2020-04-01-preview\",\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South 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 \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01-preview\",\r\n \"2021-04-01-preview\",\r\n \"2020-04-01-preview\",\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/eventGridFilters\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South 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 \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01-preview\",\r\n \"2021-04-01-preview\",\r\n \"2020-04-01-preview\",\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"managedHSMs\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"Switzerland North\",\r\n \"South Africa North\",\r\n \"UK South\",\r\n \"SouthEast Asia\",\r\n \"East Asia\",\r\n \"Korea Central\",\r\n \"Australia Central\",\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01-preview\",\r\n \"2021-04-01-preview\",\r\n \"2020-04-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"deletedManagedHSMs\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"Switzerland North\",\r\n \"South Africa North\",\r\n \"UK South\",\r\n \"SouthEast Asia\",\r\n \"East Asia\",\r\n \"Korea Central\",\r\n \"Australia Central\",\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01-preview\",\r\n \"2021-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deletedManagedHSMs\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"Switzerland North\",\r\n \"South Africa North\",\r\n \"UK South\",\r\n \"SouthEast Asia\",\r\n \"East Asia\",\r\n \"Korea Central\",\r\n \"Australia Central\",\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01-preview\",\r\n \"2021-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/keys\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South 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 \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01-preview\",\r\n \"2021-04-01-preview\",\r\n \"2020-04-01-preview\",\r\n \"2019-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/keys/versions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South 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 \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01-preview\",\r\n \"2021-04-01-preview\",\r\n \"2020-04-01-preview\",\r\n \"2019-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourcegroups/azsmnet275/providers/Microsoft.KeyVault//vaults/azsmnet2822?api-version=2016-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQyNzUvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC8vdmF1bHRzL2F6c21uZXQyODIyP2FwaS12ZXJzaW9uPTIwMTYtMTAtMDE=", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourcegroups/azsmnet2682/providers/Microsoft.KeyVault//vaults/azsmnet5313?api-version=2016-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQyNjgyL3Byb3ZpZGVycy9NaWNyb3NvZnQuS2V5VmF1bHQvL3ZhdWx0cy9henNtbmV0NTMxMz9hcGktdmVyc2lvbj0yMDE2LTEwLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"standard\"\r\n },\r\n \"accessPolicies\": [\r\n {\r\n \"objectId\": \"f520d84c-3fd3-4cc8-88d4-2ed25b00d27a\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"permissions\": {\r\n \"secrets\": [\r\n \"All\"\r\n ],\r\n \"keys\": [\r\n \"All\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": true,\r\n \"enabledForTemplateDeployment\": true,\r\n \"enabledForDiskEncryption\": true\r\n },\r\n \"location\": \"East US\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"standard\"\r\n },\r\n \"accessPolicies\": [\r\n {\r\n \"objectId\": \"f520d84c-3fd3-4cc8-88d4-2ed25b00d27a\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"permissions\": {\r\n \"secrets\": [\r\n \"All\"\r\n ],\r\n \"keys\": [\r\n \"All\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": true,\r\n \"enabledForTemplateDeployment\": true,\r\n \"enabledForDiskEncryption\": true\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "7769620e-8e6d-4472-bdc0-c8d071ec7fda" + "07fb8e16-6c89-47e6-b56b-d695f7eac785" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.6.30411.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19043.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" @@ -219,13 +219,13 @@ "no-cache" ], "x-ms-client-request-id": [ - "7769620e-8e6d-4472-bdc0-c8d071ec7fda" + "07fb8e16-6c89-47e6-b56b-d695f7eac785" ], "x-ms-keyvault-service-version": [ - "1.5.61.0" + "1.5.99.2" ], "x-ms-request-id": [ - "74d27a7c-5e34-4ee5-bd44-03ee8f956355" + "65360ddb-8c00-478a-be8f-4567570bcafb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -246,16 +246,16 @@ "1198" ], "x-ms-correlation-request-id": [ - "7b33fc1a-780f-410c-94c1-54eafd837e7d" + "ba9b5063-65ec-4f63-a651-8973d65b8fea" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20210728T131525Z:7b33fc1a-780f-410c-94c1-54eafd837e7d" + "NORTHCENTRALUS:20210831T221009Z:ba9b5063-65ec-4f63-a651-8973d65b8fea" ], "Date": [ - "Wed, 28 Jul 2021 13:15:25 GMT" + "Tue, 31 Aug 2021 22:10:08 GMT" ], "Content-Length": [ - "677" + "678" ], "Content-Type": [ "application/json; charset=utf-8" @@ -264,17 +264,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet275/providers/Microsoft.KeyVault/vaults/azsmnet2822\",\r\n \"name\": \"azsmnet2822\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"East US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"standard\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"f520d84c-3fd3-4cc8-88d4-2ed25b00d27a\",\r\n \"permissions\": {\r\n \"secrets\": [\r\n \"All\"\r\n ],\r\n \"keys\": [\r\n \"All\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": true,\r\n \"enabledForDiskEncryption\": true,\r\n \"enabledForTemplateDeployment\": true,\r\n \"vaultUri\": \"https://azsmnet2822.vault.azure.net\",\r\n \"provisioningState\": \"RegisteringDns\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet2682/providers/Microsoft.KeyVault/vaults/azsmnet5313\",\r\n \"name\": \"azsmnet5313\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"standard\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"f520d84c-3fd3-4cc8-88d4-2ed25b00d27a\",\r\n \"permissions\": {\r\n \"secrets\": [\r\n \"All\"\r\n ],\r\n \"keys\": [\r\n \"All\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": true,\r\n \"enabledForDiskEncryption\": true,\r\n \"enabledForTemplateDeployment\": true,\r\n \"vaultUri\": \"https://azsmnet5313.vault.azure.net\",\r\n \"provisioningState\": \"RegisteringDns\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourcegroups/azsmnet275/providers/Microsoft.KeyVault//vaults/azsmnet2822?api-version=2016-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQyNzUvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC8vdmF1bHRzL2F6c21uZXQyODIyP2FwaS12ZXJzaW9uPTIwMTYtMTAtMDE=", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourcegroups/azsmnet2682/providers/Microsoft.KeyVault//vaults/azsmnet5313?api-version=2016-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQyNjgyL3Byb3ZpZGVycy9NaWNyb3NvZnQuS2V5VmF1bHQvL3ZhdWx0cy9henNtbmV0NTMxMz9hcGktdmVyc2lvbj0yMDE2LTEwLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.6.30411.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19043.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" @@ -288,13 +288,13 @@ "no-cache" ], "x-ms-client-request-id": [ - "1728b0a4-413b-46bb-b5a4-756aa5ed6ce3" + "4e37a9bb-edb7-4039-82a6-7d6193658307" ], "x-ms-keyvault-service-version": [ - "1.5.61.0" + "1.5.99.2" ], "x-ms-request-id": [ - "d7e7dff1-7a4a-4756-9bed-1eff780b4b7e" + "da98154d-ee1a-4c2e-9e71-100ff7dfaede" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -315,16 +315,16 @@ "11999" ], "x-ms-correlation-request-id": [ - "043b5fdd-e983-4c80-ab95-cd6345289328" + "802c55a8-7bab-413e-b2f6-bf3351dbcbfc" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20210728T131556Z:043b5fdd-e983-4c80-ab95-cd6345289328" + "NORTHCENTRALUS:20210831T221039Z:802c55a8-7bab-413e-b2f6-bf3351dbcbfc" ], "Date": [ - "Wed, 28 Jul 2021 13:15:55 GMT" + "Tue, 31 Aug 2021 22:10:39 GMT" ], "Content-Length": [ - "673" + "674" ], "Content-Type": [ "application/json; charset=utf-8" @@ -333,32 +333,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet275/providers/Microsoft.KeyVault/vaults/azsmnet2822\",\r\n \"name\": \"azsmnet2822\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"East US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"standard\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"f520d84c-3fd3-4cc8-88d4-2ed25b00d27a\",\r\n \"permissions\": {\r\n \"secrets\": [\r\n \"All\"\r\n ],\r\n \"keys\": [\r\n \"All\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": true,\r\n \"enabledForDiskEncryption\": true,\r\n \"enabledForTemplateDeployment\": true,\r\n \"vaultUri\": \"https://azsmnet2822.vault.azure.net/\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet2682/providers/Microsoft.KeyVault/vaults/azsmnet5313\",\r\n \"name\": \"azsmnet5313\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"standard\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"f520d84c-3fd3-4cc8-88d4-2ed25b00d27a\",\r\n \"permissions\": {\r\n \"secrets\": [\r\n \"All\"\r\n ],\r\n \"keys\": [\r\n \"All\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": true,\r\n \"enabledForDiskEncryption\": true,\r\n \"enabledForTemplateDeployment\": true,\r\n \"vaultUri\": \"https://azsmnet5313.vault.azure.net/\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet275/providers/Microsoft.Batch/batchAccounts/azsmnet2845?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyNzUvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL2F6c21uZXQyODQ1P2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet2682/providers/Microsoft.Batch/batchAccounts/azsmnet3988?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyNjgyL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0Mzk4OD9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"East US\",\r\n \"properties\": {\r\n \"poolAllocationMode\": \"UserSubscription\",\r\n \"keyVaultReference\": {\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet275/providers/Microsoft.KeyVault/vaults/azsmnet2822\",\r\n \"url\": \"https://azsmnet2822.vault.azure.net/\"\r\n }\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"poolAllocationMode\": \"UserSubscription\",\r\n \"keyVaultReference\": {\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet2682/providers/Microsoft.KeyVault/vaults/azsmnet5313\",\r\n \"url\": \"https://azsmnet5313.vault.azure.net/\"\r\n }\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "2771659f-3297-4f1a-92f2-d298a20c9eea" + "5797ae93-65e8-4931-b291-96836dbb68ac" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.6.30411.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/15.0.0.0" + "Microsoft.Azure.Management.Batch.BatchManagementClient/14.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "331" + "332" ] }, "ResponseHeaders": { @@ -369,13 +369,13 @@ "no-cache" ], "Location": [ - "https://centraluseuap.management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet275/providers/Microsoft.Batch/batchAccounts/azsmnet2845/operationResults/5b751307-fdda-4ac3-abe4-2f8d33d4a224?api-version=2021-06-01" + "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet2682/providers/Microsoft.Batch/batchAccounts/azsmnet3988/operationResults/0028ea06-f428-4bbd-b3e0-6859352f146a?api-version=2021-06-01" ], "Retry-After": [ "15" ], "x-ms-request-id": [ - "5b751307-fdda-4ac3-abe4-2f8d33d4a224" + "0028ea06-f428-4bbd-b3e0-6859352f146a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -387,16 +387,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1199" ], "x-ms-correlation-request-id": [ - "a0b88c3b-f514-4de3-9d40-af8ffb79a265" + "76d1de95-17d2-49e8-8a52-49291fb6f492" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20210728T131558Z:a0b88c3b-f514-4de3-9d40-af8ffb79a265" + "NORTHCENTRALUS:20210831T221042Z:76d1de95-17d2-49e8-8a52-49291fb6f492" ], "Date": [ - "Wed, 28 Jul 2021 13:15:58 GMT" + "Tue, 31 Aug 2021 22:10:41 GMT" ], "Expires": [ "-1" @@ -409,16 +409,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet275/providers/Microsoft.Batch/batchAccounts/azsmnet2845/operationResults/5b751307-fdda-4ac3-abe4-2f8d33d4a224?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyNzUvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL2F6c21uZXQyODQ1L29wZXJhdGlvblJlc3VsdHMvNWI3NTEzMDctZmRkYS00YWMzLWFiZTQtMmY4ZDMzZDRhMjI0P2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet2682/providers/Microsoft.Batch/batchAccounts/azsmnet3988/operationResults/0028ea06-f428-4bbd-b3e0-6859352f146a?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyNjgyL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0Mzk4OC9vcGVyYXRpb25SZXN1bHRzLzAwMjhlYTA2LWY0MjgtNGJiZC1iM2UwLTY4NTkzNTJmMTQ2YT9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.6.30411.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/15.0.0.0" + "Microsoft.Azure.Management.Batch.BatchManagementClient/14.0.0.0" ] }, "ResponseHeaders": { @@ -429,13 +429,13 @@ "no-cache" ], "ETag": [ - "\"0x8D951C9DFFFA867\"" + "\"0x8D96CCC359C7474\"" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11999" ], "x-ms-request-id": [ - "eafe321d-4ddc-41ed-a50e-2175679e5786" + "6088228c-9dd9-46cb-92f6-25baef6fce19" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -447,16 +447,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-correlation-request-id": [ - "0c4d8d0f-b261-415f-97ea-c1107da7400d" + "ac981d01-8b70-49fb-8da1-d1495989395e" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20210728T131613Z:0c4d8d0f-b261-415f-97ea-c1107da7400d" + "NORTHCENTRALUS:20210831T221057Z:ac981d01-8b70-49fb-8da1-d1495989395e" ], "Date": [ - "Wed, 28 Jul 2021 13:16:13 GMT" + "Tue, 31 Aug 2021 22:10:57 GMT" ], "Content-Length": [ - "834" + "825" ], "Content-Type": [ "application/json; charset=utf-8" @@ -465,29 +465,29 @@ "-1" ], "Last-Modified": [ - "Wed, 28 Jul 2021 13:16:13 GMT" + "Tue, 31 Aug 2021 22:10:57 GMT" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet275/providers/Microsoft.Batch/batchAccounts/azsmnet2845\",\r\n \"name\": \"azsmnet2845\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"azsmnet2845.pilotprod2.eastus.batch.azure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"dedicatedCoreQuotaPerVMFamilyEnforced\": true,\r\n \"poolQuota\": 100,\r\n \"activeJobAndJobScheduleQuota\": 300,\r\n \"poolAllocationMode\": \"UserSubscription\",\r\n \"keyVaultReference\": {\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet275/providers/Microsoft.KeyVault/vaults/azsmnet2822\",\r\n \"url\": \"https://azsmnet2822.vault.azure.net/\"\r\n },\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"encryption\": {\r\n \"keySource\": \"Microsoft.Batch\"\r\n },\r\n \"allowedAuthenticationModes\": [\r\n \"AAD\",\r\n \"TaskAuthenticationToken\"\r\n ]\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet2682/providers/Microsoft.Batch/batchAccounts/azsmnet3988\",\r\n \"name\": \"azsmnet3988\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"azsmnet3988.westus.batch.azure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"dedicatedCoreQuotaPerVMFamilyEnforced\": true,\r\n \"poolQuota\": 100,\r\n \"activeJobAndJobScheduleQuota\": 300,\r\n \"poolAllocationMode\": \"UserSubscription\",\r\n \"keyVaultReference\": {\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet2682/providers/Microsoft.KeyVault/vaults/azsmnet5313\",\r\n \"url\": \"https://azsmnet5313.vault.azure.net/\"\r\n },\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"encryption\": {\r\n \"keySource\": \"Microsoft.Batch\"\r\n },\r\n \"allowedAuthenticationModes\": [\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/azsmnet275/providers/Microsoft.Batch/batchAccounts/azsmnet2845?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyNzUvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL2F6c21uZXQyODQ1P2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet2682/providers/Microsoft.Batch/batchAccounts/azsmnet3988?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyNjgyL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0Mzk4OD9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "dde6e7d9-2ca4-4a29-a1ca-1886e6fbe492" + "f0dd3b4e-b760-4951-8901-13ebcf155ac5" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.6.30411.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/15.0.0.0" + "Microsoft.Azure.Management.Batch.BatchManagementClient/14.0.0.0" ] }, "ResponseHeaders": { @@ -498,13 +498,13 @@ "no-cache" ], "ETag": [ - "\"0x8D951C9D9755942\"" + "\"0x8D96CCC2E9C219E\"" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11998" ], "x-ms-request-id": [ - "45fbce03-ec8b-4288-8327-17d7598dfd2f" + "e57b39d1-a816-4de1-bec4-0d29578fc388" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -516,16 +516,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-correlation-request-id": [ - "43830969-6409-4c77-80aa-73193a2ec8d7" + "fd4c59ba-ba24-4a0c-97d4-d66abbf96f4a" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20210728T131613Z:43830969-6409-4c77-80aa-73193a2ec8d7" + "NORTHCENTRALUS:20210831T221057Z:fd4c59ba-ba24-4a0c-97d4-d66abbf96f4a" ], "Date": [ - "Wed, 28 Jul 2021 13:16:13 GMT" + "Tue, 31 Aug 2021 22:10:57 GMT" ], "Content-Length": [ - "834" + "825" ], "Content-Type": [ "application/json; charset=utf-8" @@ -534,26 +534,26 @@ "-1" ], "Last-Modified": [ - "Wed, 28 Jul 2021 13:16:02 GMT" + "Tue, 31 Aug 2021 22:10:46 GMT" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet275/providers/Microsoft.Batch/batchAccounts/azsmnet2845\",\r\n \"name\": \"azsmnet2845\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"azsmnet2845.pilotprod2.eastus.batch.azure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"dedicatedCoreQuotaPerVMFamilyEnforced\": true,\r\n \"poolQuota\": 100,\r\n \"activeJobAndJobScheduleQuota\": 300,\r\n \"poolAllocationMode\": \"UserSubscription\",\r\n \"keyVaultReference\": {\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet275/providers/Microsoft.KeyVault/vaults/azsmnet2822\",\r\n \"url\": \"https://azsmnet2822.vault.azure.net/\"\r\n },\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"encryption\": {\r\n \"keySource\": \"Microsoft.Batch\"\r\n },\r\n \"allowedAuthenticationModes\": [\r\n \"AAD\",\r\n \"TaskAuthenticationToken\"\r\n ]\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet2682/providers/Microsoft.Batch/batchAccounts/azsmnet3988\",\r\n \"name\": \"azsmnet3988\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"azsmnet3988.westus.batch.azure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"dedicatedCoreQuotaPerVMFamilyEnforced\": true,\r\n \"poolQuota\": 100,\r\n \"activeJobAndJobScheduleQuota\": 300,\r\n \"poolAllocationMode\": \"UserSubscription\",\r\n \"keyVaultReference\": {\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet2682/providers/Microsoft.KeyVault/vaults/azsmnet5313\",\r\n \"url\": \"https://azsmnet5313.vault.azure.net/\"\r\n },\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"encryption\": {\r\n \"keySource\": \"Microsoft.Batch\"\r\n },\r\n \"allowedAuthenticationModes\": [\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/azsmnet275?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQyNzU/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourcegroups/azsmnet2682?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQyNjgyP2FwaS12ZXJzaW9uPTIwMTctMDUtMTA=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "05362a10-e796-45d7-9c0d-806f08810921" + "ad75ec2b-8a10-4b82-9be1-b42e6dc6486e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.6.30411.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19043.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" @@ -567,7 +567,7 @@ "no-cache" ], "Location": [ - "https://centraluseuap.management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUMjc1LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2017-05-10" + "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUMjY4Mi1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2017-05-10" ], "Retry-After": [ "15" @@ -576,70 +576,13 @@ "14999" ], "x-ms-request-id": [ - "1e2f8cc3-4a19-4f9b-8ca2-ab5792f55d74" - ], - "x-ms-correlation-request-id": [ - "1e2f8cc3-4a19-4f9b-8ca2-ab5792f55d74" - ], - "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20210728T131614Z:1e2f8cc3-4a19-4f9b-8ca2-ab5792f55d74" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 28 Jul 2021 13:16:14 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUMjc1LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xOTlRrVlVNamMxTFVWQlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2laV0Z6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.30015.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://centraluseuap.management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUMjc1LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2017-05-10" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" - ], - "x-ms-request-id": [ - "ac09fb6e-7a28-4c96-ab10-fc69f854416c" + "9a5554cf-21c1-44a8-b9e3-adc05e64d36e" ], "x-ms-correlation-request-id": [ - "ac09fb6e-7a28-4c96-ab10-fc69f854416c" + "9a5554cf-21c1-44a8-b9e3-adc05e64d36e" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20210728T131629Z:ac09fb6e-7a28-4c96-ab10-fc69f854416c" + "NORTHCENTRALUS:20210831T221058Z:9a5554cf-21c1-44a8-b9e3-adc05e64d36e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -648,7 +591,7 @@ "nosniff" ], "Date": [ - "Wed, 28 Jul 2021 13:16:29 GMT" + "Tue, 31 Aug 2021 22:10:58 GMT" ], "Expires": [ "-1" @@ -661,13 +604,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUMjc1LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xOTlRrVlVNamMxTFVWQlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2laV0Z6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUMjY4Mi1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xOTlRrVlVNalk0TWkxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.6.30411.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19043.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" @@ -681,79 +624,22 @@ "no-cache" ], "Location": [ - "https://centraluseuap.management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUMjc1LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2017-05-10" + "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUMjY4Mi1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2017-05-10" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" - ], - "x-ms-request-id": [ - "1a233fbf-2511-4cff-bb11-5ee0e60b396e" - ], - "x-ms-correlation-request-id": [ - "1a233fbf-2511-4cff-bb11-5ee0e60b396e" - ], - "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20210728T131645Z:1a233fbf-2511-4cff-bb11-5ee0e60b396e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 28 Jul 2021 13:16:44 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUMjc1LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xOTlRrVlVNamMxTFVWQlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2laV0Z6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.30015.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://centraluseuap.management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUMjc1LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2017-05-10" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11998" ], "x-ms-request-id": [ - "c9d540ef-33b8-4c8a-953d-fd95f06c0b17" + "b1235086-dc4f-4b23-bcd5-add4d1e0d1fa" ], "x-ms-correlation-request-id": [ - "c9d540ef-33b8-4c8a-953d-fd95f06c0b17" + "b1235086-dc4f-4b23-bcd5-add4d1e0d1fa" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20210728T131700Z:c9d540ef-33b8-4c8a-953d-fd95f06c0b17" + "NORTHCENTRALUS:20210831T221114Z:b1235086-dc4f-4b23-bcd5-add4d1e0d1fa" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -762,7 +648,7 @@ "nosniff" ], "Date": [ - "Wed, 28 Jul 2021 13:17:00 GMT" + "Tue, 31 Aug 2021 22:11:14 GMT" ], "Expires": [ "-1" @@ -775,13 +661,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUMjc1LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xOTlRrVlVNamMxTFVWQlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2laV0Z6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUMjY4Mi1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xOTlRrVlVNalk0TWkxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.6.30411.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19043.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" @@ -795,22 +681,22 @@ "no-cache" ], "Location": [ - "https://centraluseuap.management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUMjc1LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2017-05-10" + "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUMjY4Mi1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2017-05-10" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11997" ], "x-ms-request-id": [ - "c668d548-f919-42d2-84dc-12e5804c2d74" + "76e97971-cb26-49a2-a80d-11930bdff0cb" ], "x-ms-correlation-request-id": [ - "c668d548-f919-42d2-84dc-12e5804c2d74" + "76e97971-cb26-49a2-a80d-11930bdff0cb" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20210728T131715Z:c668d548-f919-42d2-84dc-12e5804c2d74" + "NORTHCENTRALUS:20210831T221129Z:76e97971-cb26-49a2-a80d-11930bdff0cb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -819,7 +705,7 @@ "nosniff" ], "Date": [ - "Wed, 28 Jul 2021 13:17:15 GMT" + "Tue, 31 Aug 2021 22:11:28 GMT" ], "Expires": [ "-1" @@ -832,13 +718,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUMjc1LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xOTlRrVlVNamMxTFVWQlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2laV0Z6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUMjY4Mi1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xOTlRrVlVNalk0TWkxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.6.30411.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19043.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" @@ -852,22 +738,22 @@ "no-cache" ], "Location": [ - "https://centraluseuap.management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUMjc1LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2017-05-10" + "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUMjY4Mi1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2017-05-10" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11996" ], "x-ms-request-id": [ - "4da06518-26e2-46ea-a0cc-55794f8ab0e7" + "b7d33dd0-c198-42b3-968c-fe65b007f42b" ], "x-ms-correlation-request-id": [ - "4da06518-26e2-46ea-a0cc-55794f8ab0e7" + "b7d33dd0-c198-42b3-968c-fe65b007f42b" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20210728T131730Z:4da06518-26e2-46ea-a0cc-55794f8ab0e7" + "NORTHCENTRALUS:20210831T221144Z:b7d33dd0-c198-42b3-968c-fe65b007f42b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -876,7 +762,7 @@ "nosniff" ], "Date": [ - "Wed, 28 Jul 2021 13:17:30 GMT" + "Tue, 31 Aug 2021 22:11:43 GMT" ], "Expires": [ "-1" @@ -889,13 +775,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUMjc1LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xOTlRrVlVNamMxTFVWQlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2laV0Z6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUMjY4Mi1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xOTlRrVlVNalk0TWkxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.6.30411.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19043.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" @@ -909,22 +795,22 @@ "no-cache" ], "Location": [ - "https://centraluseuap.management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUMjc1LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2017-05-10" + "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUMjY4Mi1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2017-05-10" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11995" ], "x-ms-request-id": [ - "376f4b59-3708-4021-a70b-1f94f7a9f3c9" + "9fd20b93-75ba-470a-8540-794b6ed59d36" ], "x-ms-correlation-request-id": [ - "376f4b59-3708-4021-a70b-1f94f7a9f3c9" + "9fd20b93-75ba-470a-8540-794b6ed59d36" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20210728T131745Z:376f4b59-3708-4021-a70b-1f94f7a9f3c9" + "NORTHCENTRALUS:20210831T221159Z:9fd20b93-75ba-470a-8540-794b6ed59d36" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -933,7 +819,7 @@ "nosniff" ], "Date": [ - "Wed, 28 Jul 2021 13:17:45 GMT" + "Tue, 31 Aug 2021 22:11:58 GMT" ], "Expires": [ "-1" @@ -946,13 +832,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUMjc1LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xOTlRrVlVNamMxTFVWQlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2laV0Z6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUMjY4Mi1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xOTlRrVlVNalk0TWkxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.6.30411.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19043.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" @@ -966,16 +852,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11994" ], "x-ms-request-id": [ - "f5ad12b8-b990-4a17-ace4-a051d17a2947" + "c5e6afa5-4d5b-41b3-a159-d7e74dcd32dd" ], "x-ms-correlation-request-id": [ - "f5ad12b8-b990-4a17-ace4-a051d17a2947" + "c5e6afa5-4d5b-41b3-a159-d7e74dcd32dd" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20210728T131800Z:f5ad12b8-b990-4a17-ace4-a051d17a2947" + "NORTHCENTRALUS:20210831T221214Z:c5e6afa5-4d5b-41b3-a159-d7e74dcd32dd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -984,7 +870,7 @@ "nosniff" ], "Date": [ - "Wed, 28 Jul 2021 13:18:00 GMT" + "Tue, 31 Aug 2021 22:12:14 GMT" ], "Expires": [ "-1" @@ -997,13 +883,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUMjc1LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xOTlRrVlVNamMxTFVWQlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2laV0Z6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUMjY4Mi1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xOTlRrVlVNalk0TWkxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.6.30411.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19043.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" @@ -1017,16 +903,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11993" ], "x-ms-request-id": [ - "ebcd6b8e-23e0-4439-80bd-4eaafddbc318" + "af43205b-daee-4a09-81e8-acb59201a5fc" ], "x-ms-correlation-request-id": [ - "ebcd6b8e-23e0-4439-80bd-4eaafddbc318" + "af43205b-daee-4a09-81e8-acb59201a5fc" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20210728T131800Z:ebcd6b8e-23e0-4439-80bd-4eaafddbc318" + "NORTHCENTRALUS:20210831T221214Z:af43205b-daee-4a09-81e8-acb59201a5fc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1035,7 +921,7 @@ "nosniff" ], "Date": [ - "Wed, 28 Jul 2021 13:18:00 GMT" + "Tue, 31 Aug 2021 22:12:14 GMT" ], "Expires": [ "-1" @@ -1050,9 +936,9 @@ ], "Names": { "BatchAccountCanCreateWithBYOSEnabled": [ - "azsmnet275", - "azsmnet2845", - "azsmnet2822" + "azsmnet2682", + "azsmnet3988", + "azsmnet5313" ] }, "Variables": { diff --git a/sdk/batch/Microsoft.Azure.Management.Batch/tests/SessionRecords/AccountTests/BatchAccountEndToEndAsync.json b/sdk/batch/Microsoft.Azure.Management.Batch/tests/SessionRecords/AccountTests/BatchAccountEndToEndAsync.json index 414afebb1bb7e..58cf00e12a40d 100644 --- a/sdk/batch/Microsoft.Azure.Management.Batch/tests/SessionRecords/AccountTests/BatchAccountEndToEndAsync.json +++ b/sdk/batch/Microsoft.Azure.Management.Batch/tests/SessionRecords/AccountTests/BatchAccountEndToEndAsync.json @@ -7,13 +7,13 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b190a92a-ad1c-414e-bde3-4b9d75b0c943" + "5e31a0e1-52d7-4543-b896-1753c09679c7" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.6.30411.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19043.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" @@ -30,13 +30,13 @@ "11999" ], "x-ms-request-id": [ - "d806a838-91dd-4bb1-b1ea-6915842e001d" + "5d84d8c4-c3fb-46b3-9838-021282e1b587" ], "x-ms-correlation-request-id": [ - "d806a838-91dd-4bb1-b1ea-6915842e001d" + "5d84d8c4-c3fb-46b3-9838-021282e1b587" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20210728T131801Z:d806a838-91dd-4bb1-b1ea-6915842e001d" + "NORTHCENTRALUS:20210831T221215Z:5d84d8c4-c3fb-46b3-9838-021282e1b587" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -45,7 +45,7 @@ "nosniff" ], "Date": [ - "Wed, 28 Jul 2021 13:18:01 GMT" + "Tue, 31 Aug 2021 22:12:15 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -54,26 +54,26 @@ "-1" ], "Content-Length": [ - "7221" + "8454" ] }, - "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 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 \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\",\r\n \"2015-07-01\",\r\n \"2014-05-01-privatepreview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\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 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 \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"batchAccounts/certificates\",\r\n \"locations\": [\r\n \"West Europe\",\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Europe\",\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [\r\n \"West Europe\",\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"West Europe\",\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/accountOperationResults\",\r\n \"locations\": [\r\n \"West Europe\",\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\",\r\n \"2015-07-01\",\r\n \"2014-05-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "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 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 \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\",\r\n \"2015-07-01\",\r\n \"2014-05-01-privatepreview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\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 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 \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"batchAccounts/certificates\",\r\n \"locations\": [\r\n \"West Europe\",\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Europe\",\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [\r\n \"West Europe\",\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"West Europe\",\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/accountOperationResults\",\r\n \"locations\": [\r\n \"West Europe\",\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\",\r\n \"2015-07-01\",\r\n \"2014-05-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/virtualMachineSkus\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US 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 \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/cloudServiceSkus\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US 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 \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourcegroups/azsmnet9461?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQ5NDYxP2FwaS12ZXJzaW9uPTIwMTctMDUtMTA=", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourcegroups/azsmnet1025?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQxMDI1P2FwaS12ZXJzaW9uPTIwMTctMDUtMTA=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"East US\"\r\n}", + "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "87e1e9b9-8c92-4386-b7bd-d986ff115699" + "62aff690-80ea-4eb2-bb4c-105f02eff6ad" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.6.30411.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19043.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" @@ -96,13 +96,13 @@ "1199" ], "x-ms-request-id": [ - "5eb9851c-b6b0-485a-b0d9-292e2cae3bf6" + "d056aefb-cbce-41a7-9034-bc608489f244" ], "x-ms-correlation-request-id": [ - "5eb9851c-b6b0-485a-b0d9-292e2cae3bf6" + "d056aefb-cbce-41a7-9034-bc608489f244" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20210728T131802Z:5eb9851c-b6b0-485a-b0d9-292e2cae3bf6" + "NORTHCENTRALUS:20210831T221222Z:d056aefb-cbce-41a7-9034-bc608489f244" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -111,7 +111,7 @@ "nosniff" ], "Date": [ - "Wed, 28 Jul 2021 13:18:01 GMT" + "Tue, 31 Aug 2021 22:12:21 GMT" ], "Content-Length": [ "175" @@ -123,32 +123,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet9461\",\r\n \"name\": \"azsmnet9461\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet1025\",\r\n \"name\": \"azsmnet1025\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/East%20US/checkNameAvailability?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL0Vhc3QlMjBVUy9jaGVja05hbWVBdmFpbGFiaWxpdHk/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/West%20US/checkNameAvailability?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL1dlc3QlMjBVUy9jaGVja05hbWVBdmFpbGFiaWxpdHk/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", "RequestMethod": "POST", - "RequestBody": "{\r\n \"name\": \"azsmnet385\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", + "RequestBody": "{\r\n \"name\": \"azsmnet9339\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "5cf8d1f1-342c-4b22-b472-77f8d84e51bd" + "60f6907f-7e97-41c7-81e4-ec8762b0d4ee" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.6.30411.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/15.0.0.0" + "Microsoft.Azure.Management.Batch.BatchManagementClient/14.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "72" + "73" ] }, "ResponseHeaders": { @@ -162,7 +162,7 @@ "1199" ], "x-ms-request-id": [ - "f1fd6689-3bba-4b81-a343-317f036e4e05" + "7c435198-e007-44ad-b6f3-c3f3aa139aab" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -174,13 +174,13 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-correlation-request-id": [ - "ff60e84d-fa11-4377-a0f2-2e09731ea4f8" + "71a2bce8-c43d-4aae-9da5-90f55018febd" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20210728T131803Z:ff60e84d-fa11-4377-a0f2-2e09731ea4f8" + "NORTHCENTRALUS:20210831T221223Z:71a2bce8-c43d-4aae-9da5-90f55018febd" ], "Date": [ - "Wed, 28 Jul 2021 13:18:02 GMT" + "Tue, 31 Aug 2021 22:12:22 GMT" ], "Content-Length": [ "22" @@ -196,28 +196,28 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/East%20US/checkNameAvailability?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL0Vhc3QlMjBVUy9jaGVja05hbWVBdmFpbGFiaWxpdHk/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/West%20US/checkNameAvailability?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL1dlc3QlMjBVUy9jaGVja05hbWVBdmFpbGFiaWxpdHk/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", "RequestMethod": "POST", - "RequestBody": "{\r\n \"name\": \"azsmnet385\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", + "RequestBody": "{\r\n \"name\": \"azsmnet9339\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "e9166e0b-ee9a-451d-ac66-2739157617a6" + "2d03a586-5427-4524-9195-3465ee462cc5" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.6.30411.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/15.0.0.0" + "Microsoft.Azure.Management.Batch.BatchManagementClient/14.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "72" + "73" ] }, "ResponseHeaders": { @@ -231,7 +231,7 @@ "1198" ], "x-ms-request-id": [ - "54b335cd-ad18-4b00-93c4-41cadd9ec283" + "596e0b80-2023-4791-b560-daee061fef4e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -243,16 +243,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-correlation-request-id": [ - "914386d3-9612-49c8-b697-70186c823f69" + "ffa661bd-a5dd-4fc1-8bfa-975530a37406" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20210728T131820Z:914386d3-9612-49c8-b697-70186c823f69" + "NORTHCENTRALUS:20210831T221241Z:ffa661bd-a5dd-4fc1-8bfa-975530a37406" ], "Date": [ - "Wed, 28 Jul 2021 13:18:20 GMT" + "Tue, 31 Aug 2021 22:12:41 GMT" ], "Content-Length": [ - "109" + "110" ], "Content-Type": [ "application/json; charset=utf-8" @@ -261,26 +261,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"nameAvailable\": false,\r\n \"reason\": \"AlreadyExists\",\r\n \"message\": \"An account named 'azsmnet385' is already in use.\"\r\n}", + "ResponseBody": "{\r\n \"nameAvailable\": false,\r\n \"reason\": \"AlreadyExists\",\r\n \"message\": \"An account named 'azsmnet9339' is already in use.\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet9461/providers/Microsoft.Batch/batchAccounts/azsmnet385?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5NDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0Mzg1P2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet1025/providers/Microsoft.Batch/batchAccounts/azsmnet9339?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQxMDI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0OTMzOT9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"East US\",\r\n \"properties\": {\r\n \"allowedAuthenticationModes\": [\r\n \"SharedKey\"\r\n ]\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"allowedAuthenticationModes\": [\r\n \"SharedKey\"\r\n ]\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "a4cdc6fc-af13-470f-90db-4b174d7ccb93" + "16297697-97d9-4107-b8ee-7ce0b18f6e7e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.6.30411.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/15.0.0.0" + "Microsoft.Azure.Management.Batch.BatchManagementClient/14.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -297,13 +297,13 @@ "no-cache" ], "Location": [ - "https://centraluseuap.management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet9461/providers/Microsoft.Batch/batchAccounts/azsmnet385/operationResults/e43570b1-a3ec-40db-994d-7cc94c78ad8a?api-version=2021-06-01" + "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet1025/providers/Microsoft.Batch/batchAccounts/azsmnet9339/operationResults/1258c5b1-5d79-49c1-8ffc-d8ad845cbdc1?api-version=2021-06-01" ], "Retry-After": [ "15" ], "x-ms-request-id": [ - "e43570b1-a3ec-40db-994d-7cc94c78ad8a" + "1258c5b1-5d79-49c1-8ffc-d8ad845cbdc1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -318,13 +318,13 @@ "1199" ], "x-ms-correlation-request-id": [ - "d79f0917-77cc-415a-a55c-1fb718dac547" + "0cdcbdef-e817-46c0-9082-f146f4859341" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20210728T131805Z:d79f0917-77cc-415a-a55c-1fb718dac547" + "NORTHCENTRALUS:20210831T221225Z:0cdcbdef-e817-46c0-9082-f146f4859341" ], "Date": [ - "Wed, 28 Jul 2021 13:18:04 GMT" + "Tue, 31 Aug 2021 22:12:24 GMT" ], "Expires": [ "-1" @@ -337,16 +337,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet9461/providers/Microsoft.Batch/batchAccounts/azsmnet385/operationResults/e43570b1-a3ec-40db-994d-7cc94c78ad8a?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5NDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0Mzg1L29wZXJhdGlvblJlc3VsdHMvZTQzNTcwYjEtYTNlYy00MGRiLTk5NGQtN2NjOTRjNzhhZDhhP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet1025/providers/Microsoft.Batch/batchAccounts/azsmnet9339/operationResults/1258c5b1-5d79-49c1-8ffc-d8ad845cbdc1?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQxMDI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0OTMzOS9vcGVyYXRpb25SZXN1bHRzLzEyNThjNWIxLTVkNzktNDljMS04ZmZjLWQ4YWQ4NDVjYmRjMT9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.6.30411.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/15.0.0.0" + "Microsoft.Azure.Management.Batch.BatchManagementClient/14.0.0.0" ] }, "ResponseHeaders": { @@ -357,13 +357,13 @@ "no-cache" ], "ETag": [ - "\"0x8D951CA2B7263A8\"" + "\"0x8D96CCC7305BFBF\"" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11998" ], "x-ms-request-id": [ - "4b007a80-6ed6-433e-adca-d2739d6a1648" + "acb54d32-d9f4-4ce5-adb2-7f4642aff142" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -375,16 +375,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-correlation-request-id": [ - "a1be9b45-71c7-4296-a93e-716a117f6a53" + "86c3e4fb-82fb-4539-bce4-43639b3cc01e" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20210728T131820Z:a1be9b45-71c7-4296-a93e-716a117f6a53" + "NORTHCENTRALUS:20210831T221240Z:86c3e4fb-82fb-4539-bce4-43639b3cc01e" ], "Date": [ - "Wed, 28 Jul 2021 13:18:20 GMT" + "Tue, 31 Aug 2021 22:12:39 GMT" ], "Content-Length": [ - "2921" + "2959" ], "Content-Type": [ "application/json; charset=utf-8" @@ -393,29 +393,29 @@ "-1" ], "Last-Modified": [ - "Wed, 28 Jul 2021 13:18:20 GMT" + "Tue, 31 Aug 2021 22:12:40 GMT" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet9461/providers/Microsoft.Batch/batchAccounts/azsmnet385\",\r\n \"name\": \"azsmnet385\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"azsmnet385.pilotprod2.eastus.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 \"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 ]\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet1025/providers/Microsoft.Batch/batchAccounts/azsmnet9339\",\r\n \"name\": \"azsmnet9339\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"azsmnet9339.westus.batch.azure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"dedicatedCoreQuota\": 500,\r\n \"dedicatedCoreQuotaPerVMFamily\": [\r\n {\r\n \"name\": \"standardAv2Family\",\r\n \"coreQuota\": 500\r\n },\r\n {\r\n \"name\": \"standardDv2Family\",\r\n \"coreQuota\": 250\r\n },\r\n {\r\n \"name\": \"standardDv3Family\",\r\n \"coreQuota\": 500\r\n },\r\n {\r\n \"name\": \"standardEv3Family\",\r\n \"coreQuota\": 500\r\n },\r\n {\r\n \"name\": \"standardDSv2Family\",\r\n \"coreQuota\": 250\r\n },\r\n {\r\n \"name\": \"standardDSv3Family\",\r\n \"coreQuota\": 500\r\n },\r\n {\r\n \"name\": \"standardESv3Family\",\r\n \"coreQuota\": 500\r\n },\r\n {\r\n \"name\": \"standardFSv2Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardNCFamily\",\r\n \"coreQuota\": 24\r\n },\r\n {\r\n \"name\": \"standardNVFamily\",\r\n \"coreQuota\": 24\r\n },\r\n {\r\n \"name\": \"standardDDv4Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardDDSv4Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardEDv4Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardEDSv4Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardA0_A7Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardA8_A11Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardDFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardGFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"basicAFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardFFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNVPromoFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNCPromoFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHPromoFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardMSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardDSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardFSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardGSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardLSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardLSv2Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNCSv2Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNDSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNCSv3Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHBSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHCSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNVSv3Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHBrsv2Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardDAv4Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardDASv4Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardEAv4Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardEASv4Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardMSv2Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardEIv3Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNVSv4Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"Standard NCASv3_T4 Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardXEIDSv4Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"Standard NDASv4_A100 Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardDCSv2Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHBv3Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNPSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardFXMDVSFamily\",\r\n \"coreQuota\": 0\r\n }\r\n ],\r\n \"dedicatedCoreQuotaPerVMFamilyEnforced\": true,\r\n \"lowPriorityCoreQuota\": 500,\r\n \"poolQuota\": 100,\r\n \"activeJobAndJobScheduleQuota\": 300,\r\n \"poolAllocationMode\": \"BatchService\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"encryption\": {\r\n \"keySource\": \"Microsoft.Batch\"\r\n },\r\n \"allowedAuthenticationModes\": [\r\n \"SharedKey\"\r\n ]\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet9461/providers/Microsoft.Batch/batchAccounts/azsmnet385?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5NDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0Mzg1P2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet1025/providers/Microsoft.Batch/batchAccounts/azsmnet9339?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQxMDI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0OTMzOT9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f37ebfe3-8dfd-427c-bf8a-94b71e677080" + "743f0b89-1885-4fa0-948a-ff7272ffbf8d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.6.30411.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/15.0.0.0" + "Microsoft.Azure.Management.Batch.BatchManagementClient/14.0.0.0" ] }, "ResponseHeaders": { @@ -426,13 +426,13 @@ "no-cache" ], "ETag": [ - "\"0x8D951CA247F855B\"" + "\"0x8D96CCC6C037CC7\"" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11997" ], "x-ms-request-id": [ - "13a49583-2ba7-4bc5-86e6-4a51a0cf6bbd" + "2f0e1357-757f-4803-bd4c-5536bab0697d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -444,16 +444,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-correlation-request-id": [ - "630de931-1756-44c3-ad5d-9049be85c535" + "279c54ab-84d3-47fc-afa7-be2b85284af7" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20210728T131820Z:630de931-1756-44c3-ad5d-9049be85c535" + "NORTHCENTRALUS:20210831T221241Z:279c54ab-84d3-47fc-afa7-be2b85284af7" ], "Date": [ - "Wed, 28 Jul 2021 13:18:20 GMT" + "Tue, 31 Aug 2021 22:12:41 GMT" ], "Content-Length": [ - "2921" + "2959" ], "Content-Type": [ "application/json; charset=utf-8" @@ -462,29 +462,29 @@ "-1" ], "Last-Modified": [ - "Wed, 28 Jul 2021 13:18:08 GMT" + "Tue, 31 Aug 2021 22:12:29 GMT" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet9461/providers/Microsoft.Batch/batchAccounts/azsmnet385\",\r\n \"name\": \"azsmnet385\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"azsmnet385.pilotprod2.eastus.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 \"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 ]\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet1025/providers/Microsoft.Batch/batchAccounts/azsmnet9339\",\r\n \"name\": \"azsmnet9339\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"azsmnet9339.westus.batch.azure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"dedicatedCoreQuota\": 500,\r\n \"dedicatedCoreQuotaPerVMFamily\": [\r\n {\r\n \"name\": \"standardAv2Family\",\r\n \"coreQuota\": 500\r\n },\r\n {\r\n \"name\": \"standardDv2Family\",\r\n \"coreQuota\": 250\r\n },\r\n {\r\n \"name\": \"standardDv3Family\",\r\n \"coreQuota\": 500\r\n },\r\n {\r\n \"name\": \"standardEv3Family\",\r\n \"coreQuota\": 500\r\n },\r\n {\r\n \"name\": \"standardDSv2Family\",\r\n \"coreQuota\": 250\r\n },\r\n {\r\n \"name\": \"standardDSv3Family\",\r\n \"coreQuota\": 500\r\n },\r\n {\r\n \"name\": \"standardESv3Family\",\r\n \"coreQuota\": 500\r\n },\r\n {\r\n \"name\": \"standardFSv2Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardNCFamily\",\r\n \"coreQuota\": 24\r\n },\r\n {\r\n \"name\": \"standardNVFamily\",\r\n \"coreQuota\": 24\r\n },\r\n {\r\n \"name\": \"standardDDv4Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardDDSv4Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardEDv4Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardEDSv4Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardA0_A7Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardA8_A11Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardDFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardGFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"basicAFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardFFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNVPromoFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNCPromoFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHPromoFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardMSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardDSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardFSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardGSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardLSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardLSv2Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNCSv2Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNDSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNCSv3Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHBSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHCSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNVSv3Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHBrsv2Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardDAv4Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardDASv4Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardEAv4Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardEASv4Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardMSv2Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardEIv3Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNVSv4Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"Standard NCASv3_T4 Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardXEIDSv4Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"Standard NDASv4_A100 Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardDCSv2Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHBv3Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNPSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardFXMDVSFamily\",\r\n \"coreQuota\": 0\r\n }\r\n ],\r\n \"dedicatedCoreQuotaPerVMFamilyEnforced\": true,\r\n \"lowPriorityCoreQuota\": 500,\r\n \"poolQuota\": 100,\r\n \"activeJobAndJobScheduleQuota\": 300,\r\n \"poolAllocationMode\": \"BatchService\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"encryption\": {\r\n \"keySource\": \"Microsoft.Batch\"\r\n },\r\n \"allowedAuthenticationModes\": [\r\n \"SharedKey\"\r\n ]\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet9461/providers/Microsoft.Batch/batchAccounts/azsmnet385?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5NDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0Mzg1P2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet1025/providers/Microsoft.Batch/batchAccounts/azsmnet9339?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQxMDI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0OTMzOT9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "31fb1b70-6ffc-4a2b-bad7-1072ba00a8fc" + "9f6335f1-69c0-4007-b223-e9d4a5d0cb26" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.6.30411.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/15.0.0.0" + "Microsoft.Azure.Management.Batch.BatchManagementClient/14.0.0.0" ] }, "ResponseHeaders": { @@ -498,7 +498,7 @@ "11991" ], "x-ms-request-id": [ - "703f8548-bfac-49c9-ab21-05b4505e8635" + "18648f6d-3709-4327-9477-21e715ab1724" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -510,13 +510,13 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-correlation-request-id": [ - "8b9d0cc1-deeb-455d-bf6a-6507a9a9e846" + "22624d8f-e91f-4988-87e1-9f2c3eba3522" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20210728T131837Z:8b9d0cc1-deeb-455d-bf6a-6507a9a9e846" + "NORTHCENTRALUS:20210831T221257Z:22624d8f-e91f-4988-87e1-9f2c3eba3522" ], "Date": [ - "Wed, 28 Jul 2021 13:18:37 GMT" + "Tue, 31 Aug 2021 22:12:57 GMT" ], "Content-Length": [ "193" @@ -528,26 +528,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"AccountNotFound\",\r\n \"message\": \"The specified account does not exist.\\nRequestId:703f8548-bfac-49c9-ab21-05b4505e8635\\nTime:2021-07-28T13:18:37.1553388Z\",\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:18648f6d-3709-4327-9477-21e715ab1724\\nTime:2021-08-31T22:12:57.8053891Z\",\r\n \"target\": \"BatchAccount\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet9461/providers/Microsoft.Batch/batchAccounts/azsmnet385/listKeys?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5NDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0Mzg1L2xpc3RLZXlzP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet1025/providers/Microsoft.Batch/batchAccounts/azsmnet9339/listKeys?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQxMDI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0OTMzOS9saXN0S2V5cz9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "22bc62c4-77b1-469f-ae62-3545ec48a8cd" + "28e0db05-d756-4f13-9e39-851c0127e2a5" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.6.30411.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/15.0.0.0" + "Microsoft.Azure.Management.Batch.BatchManagementClient/14.0.0.0" ] }, "ResponseHeaders": { @@ -561,7 +561,7 @@ "1197" ], "x-ms-request-id": [ - "4589fa8c-7453-4431-905e-1de283065bd7" + "dcfcd437-18ca-45f3-b18b-4f632e74d973" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -573,16 +573,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-correlation-request-id": [ - "1a423e71-2947-4cb2-b547-f568c81a0318" + "ab62c228-0c4e-4a0c-a13c-1f1828026d23" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20210728T131820Z:1a423e71-2947-4cb2-b547-f568c81a0318" + "NORTHCENTRALUS:20210831T221241Z:ab62c228-0c4e-4a0c-a13c-1f1828026d23" ], "Date": [ - "Wed, 28 Jul 2021 13:18:20 GMT" + "Tue, 31 Aug 2021 22:12:41 GMT" ], "Content-Length": [ - "232" + "233" ], "Content-Type": [ "application/json; charset=utf-8" @@ -591,26 +591,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"accountName\": \"azsmnet385\",\r\n \"primary\": \"uI4vPVKEZ0eyN9aVuf8PxzZ9eC7k+heYNnraZJDAG82XnQv0R/t9bvHX+oRwc7T+n+x5gTYLeMbF4oQoE+rj0w==\",\r\n \"secondary\": \"cdQoYzs4TMKlz5yuZFYIZ+uwyP62TPtRZyHKEXx0yQ626GtesnJ1PQNOmiCgYN8cw8cLt06nv6WjVd1oYlj0QQ==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"azsmnet9339\",\r\n \"primary\": \"jqh4vL5+BgPFcDzO5mKFxQ8yRf7y7saXtoLsBjIa8paF0kO8l3vfZyTS44x5j5q1MWsLUdFNlXYIagwWnl3L5Q==\",\r\n \"secondary\": \"C54UafcU85pTzQ1UQj+rLT0t2X0v15fQmrwL0X7Jhf9wbWasUN0PKHKyypMvWOUXVsCUAOyIaKGQ/WsHwkLwGQ==\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet9461/providers/Microsoft.Batch/batchAccounts/azsmnet385/regenerateKeys?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5NDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0Mzg1L3JlZ2VuZXJhdGVLZXlzP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet1025/providers/Microsoft.Batch/batchAccounts/azsmnet9339/regenerateKeys?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQxMDI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0OTMzOS9yZWdlbmVyYXRlS2V5cz9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", "RequestMethod": "POST", "RequestBody": "{\r\n \"keyName\": \"Primary\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "16ef3ef4-e4c3-45a0-9918-6d496acc5330" + "a7aa754a-8bcb-405c-9e3b-98a71e87614d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.6.30411.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/15.0.0.0" + "Microsoft.Azure.Management.Batch.BatchManagementClient/14.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -630,7 +630,7 @@ "1196" ], "x-ms-request-id": [ - "2208f729-0f6e-4652-a4f9-a2b6a067be64" + "33c9500a-3698-4f9c-9328-22e5e852955e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -642,16 +642,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-correlation-request-id": [ - "68bc2204-2e10-42cc-90bf-3cab3a213b64" + "f48b1f74-b987-4679-b230-0a53479c82ae" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20210728T131821Z:68bc2204-2e10-42cc-90bf-3cab3a213b64" + "NORTHCENTRALUS:20210831T221241Z:f48b1f74-b987-4679-b230-0a53479c82ae" ], "Date": [ - "Wed, 28 Jul 2021 13:18:20 GMT" + "Tue, 31 Aug 2021 22:12:41 GMT" ], "Content-Length": [ - "232" + "233" ], "Content-Type": [ "application/json; charset=utf-8" @@ -660,26 +660,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"accountName\": \"azsmnet385\",\r\n \"primary\": \"EZyw9eYl8VHYiLP6lJUJIzCowxX2w694ce3QRPVQVB3I+5ttUxIyTvH5rMsnMWD8zpgG0CUxkG5HsNoELmlF5A==\",\r\n \"secondary\": \"cdQoYzs4TMKlz5yuZFYIZ+uwyP62TPtRZyHKEXx0yQ626GtesnJ1PQNOmiCgYN8cw8cLt06nv6WjVd1oYlj0QQ==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"azsmnet9339\",\r\n \"primary\": \"c6WNNygvcJwBRmZzCsat5k/bVSWup3Q21t+lGrwZALutM7D1h9uOlP9h1La20oJo599fg6wP1sBu2ljkVRqzZg==\",\r\n \"secondary\": \"C54UafcU85pTzQ1UQj+rLT0t2X0v15fQmrwL0X7Jhf9wbWasUN0PKHKyypMvWOUXVsCUAOyIaKGQ/WsHwkLwGQ==\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet9461/providers/Microsoft.Batch/batchAccounts?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5NDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cz9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet1025/providers/Microsoft.Batch/batchAccounts?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQxMDI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cz9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2dc9d4fc-a441-4022-b3f7-9788d0c01403" + "a16006d7-c45e-46ae-842e-d97980fb24e5" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.6.30411.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/15.0.0.0" + "Microsoft.Azure.Management.Batch.BatchManagementClient/14.0.0.0" ] }, "ResponseHeaders": { @@ -693,7 +693,7 @@ "11996" ], "x-ms-request-id": [ - "6e002b70-8f29-4d0d-b243-6ea999bc7065" + "8e9796be-f4bd-4ba0-9f5d-bfb6b719fe3f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -705,16 +705,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-correlation-request-id": [ - "2e7e80ab-4006-400e-b089-9dfe2247cd25" + "d1115ff2-3ec0-4e32-90af-f8159505f4bb" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20210728T131821Z:2e7e80ab-4006-400e-b089-9dfe2247cd25" + "NORTHCENTRALUS:20210831T221241Z:d1115ff2-3ec0-4e32-90af-f8159505f4bb" ], "Date": [ - "Wed, 28 Jul 2021 13:18:20 GMT" + "Tue, 31 Aug 2021 22:12:41 GMT" ], "Content-Length": [ - "2933" + "2971" ], "Content-Type": [ "application/json; charset=utf-8" @@ -723,26 +723,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet9461/providers/Microsoft.Batch/batchAccounts/azsmnet385\",\r\n \"name\": \"azsmnet385\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"azsmnet385.pilotprod2.eastus.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 \"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 ]\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet1025/providers/Microsoft.Batch/batchAccounts/azsmnet9339\",\r\n \"name\": \"azsmnet9339\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"azsmnet9339.westus.batch.azure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"dedicatedCoreQuota\": 500,\r\n \"dedicatedCoreQuotaPerVMFamily\": [\r\n {\r\n \"name\": \"standardAv2Family\",\r\n \"coreQuota\": 500\r\n },\r\n {\r\n \"name\": \"standardDv2Family\",\r\n \"coreQuota\": 250\r\n },\r\n {\r\n \"name\": \"standardDv3Family\",\r\n \"coreQuota\": 500\r\n },\r\n {\r\n \"name\": \"standardEv3Family\",\r\n \"coreQuota\": 500\r\n },\r\n {\r\n \"name\": \"standardDSv2Family\",\r\n \"coreQuota\": 250\r\n },\r\n {\r\n \"name\": \"standardDSv3Family\",\r\n \"coreQuota\": 500\r\n },\r\n {\r\n \"name\": \"standardESv3Family\",\r\n \"coreQuota\": 500\r\n },\r\n {\r\n \"name\": \"standardFSv2Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardNCFamily\",\r\n \"coreQuota\": 24\r\n },\r\n {\r\n \"name\": \"standardNVFamily\",\r\n \"coreQuota\": 24\r\n },\r\n {\r\n \"name\": \"standardDDv4Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardDDSv4Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardEDv4Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardEDSv4Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardA0_A7Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardA8_A11Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardDFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardGFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"basicAFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardFFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNVPromoFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNCPromoFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHPromoFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardMSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardDSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardFSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardGSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardLSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardLSv2Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNCSv2Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNDSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNCSv3Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHBSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHCSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNVSv3Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHBrsv2Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardDAv4Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardDASv4Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardEAv4Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardEASv4Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardMSv2Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardEIv3Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNVSv4Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"Standard NCASv3_T4 Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardXEIDSv4Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"Standard NDASv4_A100 Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardDCSv2Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHBv3Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNPSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardFXMDVSFamily\",\r\n \"coreQuota\": 0\r\n }\r\n ],\r\n \"dedicatedCoreQuotaPerVMFamilyEnforced\": true,\r\n \"lowPriorityCoreQuota\": 500,\r\n \"poolQuota\": 100,\r\n \"activeJobAndJobScheduleQuota\": 300,\r\n \"poolAllocationMode\": \"BatchService\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"encryption\": {\r\n \"keySource\": \"Microsoft.Batch\"\r\n },\r\n \"allowedAuthenticationModes\": [\r\n \"SharedKey\"\r\n ]\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet9461/providers/Microsoft.Batch/batchAccounts/azsmnet385/outboundNetworkDependenciesEndpoints?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5NDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0Mzg1L291dGJvdW5kTmV0d29ya0RlcGVuZGVuY2llc0VuZHBvaW50cz9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet1025/providers/Microsoft.Batch/batchAccounts/azsmnet9339/outboundNetworkDependenciesEndpoints?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQxMDI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0OTMzOS9vdXRib3VuZE5ldHdvcmtEZXBlbmRlbmNpZXNFbmRwb2ludHM/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7a7eeca1-34b7-4569-99ce-4036b85d1086" + "3edaa9cf-7291-47fe-8605-39d74134c973" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.6.30411.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/15.0.0.0" + "Microsoft.Azure.Management.Batch.BatchManagementClient/14.0.0.0" ] }, "ResponseHeaders": { @@ -756,7 +756,7 @@ "11995" ], "x-ms-request-id": [ - "60ed54dc-c662-4c36-9a47-a9cfc8782596" + "f6655a81-fd69-4fa3-96a2-830b685cefd0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -768,16 +768,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-correlation-request-id": [ - "95f36fc2-a822-481b-ba13-868fdbc1d3e1" + "f29fc80a-a861-4160-8c23-072b89cb05e7" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20210728T131821Z:95f36fc2-a822-481b-ba13-868fdbc1d3e1" + "NORTHCENTRALUS:20210831T221241Z:f29fc80a-a861-4160-8c23-072b89cb05e7" ], "Date": [ - "Wed, 28 Jul 2021 13:18:20 GMT" + "Tue, 31 Aug 2021 22:12:41 GMT" ], "Content-Length": [ - "1737" + "1723" ], "Content-Type": [ "application/json; charset=utf-8" @@ -786,26 +786,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"category\": \"Azure Batch\",\r\n \"endpoints\": [\r\n {\r\n \"domainName\": \"azsmnet385.pilotprod2.eastus.batch.azure.com\",\r\n \"description\": \"Applicable to job manager tasks, tasks that use job scoped authentication, or any task that makes calls to Batch.\",\r\n \"endpointDetails\": [\r\n {\r\n \"port\": 443\r\n }\r\n ]\r\n },\r\n {\r\n \"domainName\": \"pilotprod2.service.batch.azure.com\",\r\n \"description\": \"Applicable to all Azure Batch pools.\",\r\n \"endpointDetails\": [\r\n {\r\n \"port\": 443\r\n }\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"category\": \"Azure Storage\",\r\n \"endpoints\": [\r\n {\r\n \"domainName\": \"*.blob.core.windows.net\",\r\n \"description\": \"Applicable to all Azure Batch pools.\",\r\n \"endpointDetails\": [\r\n {\r\n \"port\": 443\r\n }\r\n ]\r\n },\r\n {\r\n \"domainName\": \"*.table.core.windows.net\",\r\n \"description\": \"Applicable to all Azure Batch pools.\",\r\n \"endpointDetails\": [\r\n {\r\n \"port\": 443\r\n }\r\n ]\r\n },\r\n {\r\n \"domainName\": \"*.queue.core.windows.net\",\r\n \"description\": \"Applicable to all Azure Batch pools.\",\r\n \"endpointDetails\": [\r\n {\r\n \"port\": 443\r\n }\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"category\": \"Microsoft Package Repository\",\r\n \"endpoints\": [\r\n {\r\n \"domainName\": \"packages.microsoft.com\",\r\n \"description\": \"Only applicable to pools containing a Mount Configuration. Learn about Mount Configurations in Batch at https://docs.microsoft.com/en-us/azure/batch/virtual-file-mount.\",\r\n \"endpointDetails\": [\r\n {\r\n \"port\": 443\r\n }\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"category\": \"Azure Key Vault\",\r\n \"endpoints\": [\r\n {\r\n \"domainName\": \"*.vault.azure.net\",\r\n \"description\": \"Only applicable to pools that have a Disk Encryption Configuration containing Temporary Disk as an encryption target and which use a VM size that does not support encryption at host. Learn more about disk encryption in Batch at https://docs.microsoft.com/en-us/azure/batch/disk-encryption. Learn more about encryption at host and supported VM sizes at https://docs.microsoft.com/en-us/azure/virtual-machines/disks-enable-host-based-encryption-portal.\",\r\n \"endpointDetails\": [\r\n {\r\n \"port\": 443\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"category\": \"Azure Batch\",\r\n \"endpoints\": [\r\n {\r\n \"domainName\": \"azsmnet9339.westus.batch.azure.com\",\r\n \"description\": \"Applicable to job manager tasks, tasks that use job scoped authentication, or any task that makes calls to Batch.\",\r\n \"endpointDetails\": [\r\n {\r\n \"port\": 443\r\n }\r\n ]\r\n },\r\n {\r\n \"domainName\": \"westus.service.batch.azure.com\",\r\n \"description\": \"Applicable to all Azure Batch pools.\",\r\n \"endpointDetails\": [\r\n {\r\n \"port\": 443\r\n }\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"category\": \"Azure Storage\",\r\n \"endpoints\": [\r\n {\r\n \"domainName\": \"*.blob.core.windows.net\",\r\n \"description\": \"Applicable to all Azure Batch pools.\",\r\n \"endpointDetails\": [\r\n {\r\n \"port\": 443\r\n }\r\n ]\r\n },\r\n {\r\n \"domainName\": \"*.table.core.windows.net\",\r\n \"description\": \"Applicable to all Azure Batch pools.\",\r\n \"endpointDetails\": [\r\n {\r\n \"port\": 443\r\n }\r\n ]\r\n },\r\n {\r\n \"domainName\": \"*.queue.core.windows.net\",\r\n \"description\": \"Applicable to all Azure Batch pools.\",\r\n \"endpointDetails\": [\r\n {\r\n \"port\": 443\r\n }\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"category\": \"Microsoft Package Repository\",\r\n \"endpoints\": [\r\n {\r\n \"domainName\": \"packages.microsoft.com\",\r\n \"description\": \"Only applicable to pools containing a Mount Configuration. Learn about Mount Configurations in Batch at https://docs.microsoft.com/en-us/azure/batch/virtual-file-mount.\",\r\n \"endpointDetails\": [\r\n {\r\n \"port\": 443\r\n }\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"category\": \"Azure Key Vault\",\r\n \"endpoints\": [\r\n {\r\n \"domainName\": \"*.vault.azure.net\",\r\n \"description\": \"Only applicable to pools that have a Disk Encryption Configuration containing Temporary Disk as an encryption target and which use a VM size that does not support encryption at host. Learn more about disk encryption in Batch at https://docs.microsoft.com/en-us/azure/batch/disk-encryption. Learn more about encryption at host and supported VM sizes at https://docs.microsoft.com/en-us/azure/virtual-machines/disks-enable-host-based-encryption-portal.\",\r\n \"endpointDetails\": [\r\n {\r\n \"port\": 443\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet9461/providers/Microsoft.Batch/batchAccounts/azsmnet385/outboundNetworkDependenciesEndpoints?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5NDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0Mzg1L291dGJvdW5kTmV0d29ya0RlcGVuZGVuY2llc0VuZHBvaW50cz9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet1025/providers/Microsoft.Batch/batchAccounts/azsmnet9339/outboundNetworkDependenciesEndpoints?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQxMDI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0OTMzOS9vdXRib3VuZE5ldHdvcmtEZXBlbmRlbmNpZXNFbmRwb2ludHM/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3ebcd5c8-0aef-43e3-a642-4bbe8ee14ac2" + "9b4befcd-4ad6-4d92-8a27-e209d6ce941f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.6.30411.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/15.0.0.0" + "Microsoft.Azure.Management.Batch.BatchManagementClient/14.0.0.0" ] }, "ResponseHeaders": { @@ -819,7 +819,7 @@ "11994" ], "x-ms-request-id": [ - "366842b9-7290-4f87-a0be-44a4b3445ab0" + "3454cbd2-9d56-4573-aaca-8931130111de" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -831,16 +831,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-correlation-request-id": [ - "76c5a9e1-48e9-44cc-aac7-be3cb631b659" + "8d8e8e25-a66d-4dc2-b771-93bdd4a4f631" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20210728T131821Z:76c5a9e1-48e9-44cc-aac7-be3cb631b659" + "NORTHCENTRALUS:20210831T221242Z:8d8e8e25-a66d-4dc2-b771-93bdd4a4f631" ], "Date": [ - "Wed, 28 Jul 2021 13:18:21 GMT" + "Tue, 31 Aug 2021 22:12:42 GMT" ], "Content-Length": [ - "1737" + "1723" ], "Content-Type": [ "application/json; charset=utf-8" @@ -849,26 +849,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"category\": \"Azure Batch\",\r\n \"endpoints\": [\r\n {\r\n \"domainName\": \"azsmnet385.pilotprod2.eastus.batch.azure.com\",\r\n \"description\": \"Applicable to job manager tasks, tasks that use job scoped authentication, or any task that makes calls to Batch.\",\r\n \"endpointDetails\": [\r\n {\r\n \"port\": 443\r\n }\r\n ]\r\n },\r\n {\r\n \"domainName\": \"pilotprod2.service.batch.azure.com\",\r\n \"description\": \"Applicable to all Azure Batch pools.\",\r\n \"endpointDetails\": [\r\n {\r\n \"port\": 443\r\n }\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"category\": \"Azure Storage\",\r\n \"endpoints\": [\r\n {\r\n \"domainName\": \"*.blob.core.windows.net\",\r\n \"description\": \"Applicable to all Azure Batch pools.\",\r\n \"endpointDetails\": [\r\n {\r\n \"port\": 443\r\n }\r\n ]\r\n },\r\n {\r\n \"domainName\": \"*.table.core.windows.net\",\r\n \"description\": \"Applicable to all Azure Batch pools.\",\r\n \"endpointDetails\": [\r\n {\r\n \"port\": 443\r\n }\r\n ]\r\n },\r\n {\r\n \"domainName\": \"*.queue.core.windows.net\",\r\n \"description\": \"Applicable to all Azure Batch pools.\",\r\n \"endpointDetails\": [\r\n {\r\n \"port\": 443\r\n }\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"category\": \"Microsoft Package Repository\",\r\n \"endpoints\": [\r\n {\r\n \"domainName\": \"packages.microsoft.com\",\r\n \"description\": \"Only applicable to pools containing a Mount Configuration. Learn about Mount Configurations in Batch at https://docs.microsoft.com/en-us/azure/batch/virtual-file-mount.\",\r\n \"endpointDetails\": [\r\n {\r\n \"port\": 443\r\n }\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"category\": \"Azure Key Vault\",\r\n \"endpoints\": [\r\n {\r\n \"domainName\": \"*.vault.azure.net\",\r\n \"description\": \"Only applicable to pools that have a Disk Encryption Configuration containing Temporary Disk as an encryption target and which use a VM size that does not support encryption at host. Learn more about disk encryption in Batch at https://docs.microsoft.com/en-us/azure/batch/disk-encryption. Learn more about encryption at host and supported VM sizes at https://docs.microsoft.com/en-us/azure/virtual-machines/disks-enable-host-based-encryption-portal.\",\r\n \"endpointDetails\": [\r\n {\r\n \"port\": 443\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"category\": \"Azure Batch\",\r\n \"endpoints\": [\r\n {\r\n \"domainName\": \"azsmnet9339.westus.batch.azure.com\",\r\n \"description\": \"Applicable to job manager tasks, tasks that use job scoped authentication, or any task that makes calls to Batch.\",\r\n \"endpointDetails\": [\r\n {\r\n \"port\": 443\r\n }\r\n ]\r\n },\r\n {\r\n \"domainName\": \"westus.service.batch.azure.com\",\r\n \"description\": \"Applicable to all Azure Batch pools.\",\r\n \"endpointDetails\": [\r\n {\r\n \"port\": 443\r\n }\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"category\": \"Azure Storage\",\r\n \"endpoints\": [\r\n {\r\n \"domainName\": \"*.blob.core.windows.net\",\r\n \"description\": \"Applicable to all Azure Batch pools.\",\r\n \"endpointDetails\": [\r\n {\r\n \"port\": 443\r\n }\r\n ]\r\n },\r\n {\r\n \"domainName\": \"*.table.core.windows.net\",\r\n \"description\": \"Applicable to all Azure Batch pools.\",\r\n \"endpointDetails\": [\r\n {\r\n \"port\": 443\r\n }\r\n ]\r\n },\r\n {\r\n \"domainName\": \"*.queue.core.windows.net\",\r\n \"description\": \"Applicable to all Azure Batch pools.\",\r\n \"endpointDetails\": [\r\n {\r\n \"port\": 443\r\n }\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"category\": \"Microsoft Package Repository\",\r\n \"endpoints\": [\r\n {\r\n \"domainName\": \"packages.microsoft.com\",\r\n \"description\": \"Only applicable to pools containing a Mount Configuration. Learn about Mount Configurations in Batch at https://docs.microsoft.com/en-us/azure/batch/virtual-file-mount.\",\r\n \"endpointDetails\": [\r\n {\r\n \"port\": 443\r\n }\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"category\": \"Azure Key Vault\",\r\n \"endpoints\": [\r\n {\r\n \"domainName\": \"*.vault.azure.net\",\r\n \"description\": \"Only applicable to pools that have a Disk Encryption Configuration containing Temporary Disk as an encryption target and which use a VM size that does not support encryption at host. Learn more about disk encryption in Batch at https://docs.microsoft.com/en-us/azure/batch/disk-encryption. Learn more about encryption at host and supported VM sizes at https://docs.microsoft.com/en-us/azure/virtual-machines/disks-enable-host-based-encryption-portal.\",\r\n \"endpointDetails\": [\r\n {\r\n \"port\": 443\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet9461/providers/Microsoft.Batch/batchAccounts/azsmnet385?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5NDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0Mzg1P2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet1025/providers/Microsoft.Batch/batchAccounts/azsmnet9339?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQxMDI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0OTMzOT9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ad384fb2-b540-453b-ace4-c2f1e2bdf8e5" + "1795aa90-c25c-4048-8f1d-7652a8557798" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.6.30411.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/15.0.0.0" + "Microsoft.Azure.Management.Batch.BatchManagementClient/14.0.0.0" ] }, "ResponseHeaders": { @@ -879,13 +879,13 @@ "no-cache" ], "Location": [ - "https://centraluseuap.management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet385-423ca052-cba1-4eb1-a4c8-f035763edbc8?api-version=2021-06-01" + "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/westus/accountOperationResults/azsmnet9339-71cfa505-a41e-4aaf-bd56-b59d2dc31e11?api-version=2021-06-01" ], "Retry-After": [ "15" ], "x-ms-request-id": [ - "423ca052-cba1-4eb1-a4c8-f035763edbc8" + "71cfa505-a41e-4aaf-bd56-b59d2dc31e11" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -900,13 +900,13 @@ "14999" ], "x-ms-correlation-request-id": [ - "630badae-7a9d-4c61-bf70-1c6ac2556b5a" + "4336c6a1-eb74-4896-82cd-74db049a045d" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20210728T131821Z:630badae-7a9d-4c61-bf70-1c6ac2556b5a" + "NORTHCENTRALUS:20210831T221242Z:4336c6a1-eb74-4896-82cd-74db049a045d" ], "Date": [ - "Wed, 28 Jul 2021 13:18:21 GMT" + "Tue, 31 Aug 2021 22:12:42 GMT" ], "Expires": [ "-1" @@ -919,16 +919,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet385-423ca052-cba1-4eb1-a4c8-f035763edbc8?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0Mzg1LTQyM2NhMDUyLWNiYTEtNGViMS1hNGM4LWYwMzU3NjNlZGJjOD9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/westus/accountOperationResults/azsmnet9339-71cfa505-a41e-4aaf-bd56-b59d2dc31e11?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL3dlc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0OTMzOS03MWNmYTUwNS1hNDFlLTRhYWYtYmQ1Ni1iNTlkMmRjMzFlMTE/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.6.30411.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/15.0.0.0" + "Microsoft.Azure.Management.Batch.BatchManagementClient/14.0.0.0" ] }, "ResponseHeaders": { @@ -939,7 +939,7 @@ "no-cache" ], "x-ms-request-id": [ - "7a82da0a-db65-4789-90a2-803f52deaa0d" + "768b438d-671e-4075-9a0a-df75e038e7a0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -954,13 +954,13 @@ "11993" ], "x-ms-correlation-request-id": [ - "c297a595-207a-4764-8279-c137974fb8a2" + "dc20b2da-0a17-483f-95e6-deb6be8cac2c" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20210728T131836Z:c297a595-207a-4764-8279-c137974fb8a2" + "NORTHCENTRALUS:20210831T221257Z:dc20b2da-0a17-483f-95e6-deb6be8cac2c" ], "Date": [ - "Wed, 28 Jul 2021 13:18:36 GMT" + "Tue, 31 Aug 2021 22:12:57 GMT" ], "Expires": [ "-1" @@ -973,16 +973,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet385-423ca052-cba1-4eb1-a4c8-f035763edbc8?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0Mzg1LTQyM2NhMDUyLWNiYTEtNGViMS1hNGM4LWYwMzU3NjNlZGJjOD9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/westus/accountOperationResults/azsmnet9339-71cfa505-a41e-4aaf-bd56-b59d2dc31e11?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL3dlc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0OTMzOS03MWNmYTUwNS1hNDFlLTRhYWYtYmQ1Ni1iNTlkMmRjMzFlMTE/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.6.30411.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/15.0.0.0" + "Microsoft.Azure.Management.Batch.BatchManagementClient/14.0.0.0" ] }, "ResponseHeaders": { @@ -993,7 +993,7 @@ "no-cache" ], "x-ms-request-id": [ - "deeb6348-6e72-4ef3-b8f1-85effa10d6e3" + "59f47814-128e-413f-8ef2-77dcb28abd64" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1008,13 +1008,13 @@ "11992" ], "x-ms-correlation-request-id": [ - "1d8af312-6d12-44ed-99a0-83ff9b413f67" + "1e1c5871-792a-4e0a-b45a-3f630e4b5e36" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20210728T131837Z:1d8af312-6d12-44ed-99a0-83ff9b413f67" + "NORTHCENTRALUS:20210831T221257Z:1e1c5871-792a-4e0a-b45a-3f630e4b5e36" ], "Date": [ - "Wed, 28 Jul 2021 13:18:36 GMT" + "Tue, 31 Aug 2021 22:12:57 GMT" ], "Expires": [ "-1" @@ -1027,19 +1027,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourcegroups/azsmnet9461?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQ5NDYxP2FwaS12ZXJzaW9uPTIwMTctMDUtMTA=", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourcegroups/azsmnet1025?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQxMDI1P2FwaS12ZXJzaW9uPTIwMTctMDUtMTA=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1cf123e3-4155-4052-b676-fd9f23060dd9" + "b5ae6a3d-6a80-4eea-8381-1ea7998c01b2" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.6.30411.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19043.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" @@ -1053,7 +1053,7 @@ "no-cache" ], "Location": [ - "https://centraluseuap.management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUOTQ2MS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2017-05-10" + "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUMTAyNS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2017-05-10" ], "Retry-After": [ "15" @@ -1062,13 +1062,13 @@ "14999" ], "x-ms-request-id": [ - "36ba7acc-31d2-40da-8f4d-4c48e1817faf" + "ec8d4b0a-308d-4122-af81-82fd6bfcfcd4" ], "x-ms-correlation-request-id": [ - "36ba7acc-31d2-40da-8f4d-4c48e1817faf" + "ec8d4b0a-308d-4122-af81-82fd6bfcfcd4" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20210728T131837Z:36ba7acc-31d2-40da-8f4d-4c48e1817faf" + "NORTHCENTRALUS:20210831T221258Z:ec8d4b0a-308d-4122-af81-82fd6bfcfcd4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1077,7 +1077,7 @@ "nosniff" ], "Date": [ - "Wed, 28 Jul 2021 13:18:37 GMT" + "Tue, 31 Aug 2021 22:12:58 GMT" ], "Expires": [ "-1" @@ -1090,13 +1090,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUOTQ2MS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xOTlRrVlVPVFEyTVMxRlFWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUMTAyNS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xOTlRrVlVNVEF5TlMxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.6.30411.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19043.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" @@ -1110,22 +1110,22 @@ "no-cache" ], "Location": [ - "https://centraluseuap.management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUOTQ2MS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2017-05-10" + "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUMTAyNS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2017-05-10" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11998" ], "x-ms-request-id": [ - "b52e43c0-0114-40e8-a292-f0094c0a5f39" + "00481fca-4e0c-48ce-8ae6-b6f616dadc13" ], "x-ms-correlation-request-id": [ - "b52e43c0-0114-40e8-a292-f0094c0a5f39" + "00481fca-4e0c-48ce-8ae6-b6f616dadc13" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20210728T131853Z:b52e43c0-0114-40e8-a292-f0094c0a5f39" + "NORTHCENTRALUS:20210831T221313Z:00481fca-4e0c-48ce-8ae6-b6f616dadc13" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1134,7 +1134,7 @@ "nosniff" ], "Date": [ - "Wed, 28 Jul 2021 13:18:52 GMT" + "Tue, 31 Aug 2021 22:13:13 GMT" ], "Expires": [ "-1" @@ -1147,13 +1147,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUOTQ2MS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xOTlRrVlVPVFEyTVMxRlFWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUMTAyNS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xOTlRrVlVNVEF5TlMxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.6.30411.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19043.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" @@ -1167,22 +1167,22 @@ "no-cache" ], "Location": [ - "https://centraluseuap.management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUOTQ2MS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2017-05-10" + "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUMTAyNS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2017-05-10" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11997" ], "x-ms-request-id": [ - "3a4aa937-4cfe-4afe-8446-c92b0a9600c1" + "6fed77e7-8550-45ee-9f46-52d71d334b05" ], "x-ms-correlation-request-id": [ - "3a4aa937-4cfe-4afe-8446-c92b0a9600c1" + "6fed77e7-8550-45ee-9f46-52d71d334b05" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20210728T131908Z:3a4aa937-4cfe-4afe-8446-c92b0a9600c1" + "NORTHCENTRALUS:20210831T221329Z:6fed77e7-8550-45ee-9f46-52d71d334b05" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1191,7 +1191,7 @@ "nosniff" ], "Date": [ - "Wed, 28 Jul 2021 13:19:07 GMT" + "Tue, 31 Aug 2021 22:13:28 GMT" ], "Expires": [ "-1" @@ -1204,13 +1204,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUOTQ2MS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xOTlRrVlVPVFEyTVMxRlFWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUMTAyNS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xOTlRrVlVNVEF5TlMxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.6.30411.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19043.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" @@ -1223,17 +1223,80 @@ "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUMTAyNS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2017-05-10" + ], + "Retry-After": [ + "15" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11996" + ], + "x-ms-request-id": [ + "0bbba7b7-71e6-49f2-9153-bb70a6712093" + ], + "x-ms-correlation-request-id": [ + "0bbba7b7-71e6-49f2-9153-bb70a6712093" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20210831T221344Z:0bbba7b7-71e6-49f2-9153-bb70a6712093" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 31 Aug 2021 22:13:44 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUMTAyNS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xOTlRrVlVNVEF5TlMxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUMTAyNS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2017-05-10" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" ], "x-ms-request-id": [ - "518e3ecc-e437-47af-8e82-b1c0f3a90dc1" + "999e19b5-2843-4f57-8d18-b00ea7401534" ], "x-ms-correlation-request-id": [ - "518e3ecc-e437-47af-8e82-b1c0f3a90dc1" + "999e19b5-2843-4f57-8d18-b00ea7401534" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20210728T131923Z:518e3ecc-e437-47af-8e82-b1c0f3a90dc1" + "NORTHCENTRALUS:20210831T221359Z:999e19b5-2843-4f57-8d18-b00ea7401534" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1242,7 +1305,58 @@ "nosniff" ], "Date": [ - "Wed, 28 Jul 2021 13:19:23 GMT" + "Tue, 31 Aug 2021 22:13:58 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUMTAyNS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xOTlRrVlVNVEF5TlMxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-request-id": [ + "7fbef196-4b93-43e3-a1b3-95bf31ea9c4e" + ], + "x-ms-correlation-request-id": [ + "7fbef196-4b93-43e3-a1b3-95bf31ea9c4e" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20210831T221414Z:7fbef196-4b93-43e3-a1b3-95bf31ea9c4e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 31 Aug 2021 22:14:13 GMT" ], "Expires": [ "-1" @@ -1255,13 +1369,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUOTQ2MS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xOTlRrVlVPVFEyTVMxRlFWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUMTAyNS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xOTlRrVlVNVEF5TlMxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.6.30411.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19043.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" @@ -1275,16 +1389,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11993" ], "x-ms-request-id": [ - "d62a2280-a5f1-4c29-8e97-18181c541fe6" + "980c43a3-95a7-413d-87c1-53537fdc0f52" ], "x-ms-correlation-request-id": [ - "d62a2280-a5f1-4c29-8e97-18181c541fe6" + "980c43a3-95a7-413d-87c1-53537fdc0f52" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20210728T131923Z:d62a2280-a5f1-4c29-8e97-18181c541fe6" + "NORTHCENTRALUS:20210831T221414Z:980c43a3-95a7-413d-87c1-53537fdc0f52" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1293,7 +1407,7 @@ "nosniff" ], "Date": [ - "Wed, 28 Jul 2021 13:19:23 GMT" + "Tue, 31 Aug 2021 22:14:13 GMT" ], "Expires": [ "-1" @@ -1308,8 +1422,8 @@ ], "Names": { "BatchAccountEndToEndAsync": [ - "azsmnet9461", - "azsmnet385" + "azsmnet1025", + "azsmnet9339" ] }, "Variables": { diff --git a/sdk/batch/Microsoft.Azure.Management.Batch/tests/SessionRecords/CertificateTests/BatchCertificateEndToEndAsync.json b/sdk/batch/Microsoft.Azure.Management.Batch/tests/SessionRecords/CertificateTests/BatchCertificateEndToEndAsync.json index 24b660aaeabf4..21d0d39ba5386 100644 --- a/sdk/batch/Microsoft.Azure.Management.Batch/tests/SessionRecords/CertificateTests/BatchCertificateEndToEndAsync.json +++ b/sdk/batch/Microsoft.Azure.Management.Batch/tests/SessionRecords/CertificateTests/BatchCertificateEndToEndAsync.json @@ -7,13 +7,13 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "16169436-dadf-4da0-8adc-8a8332a9cac0" + "35292a20-1fa3-431d-8b37-3da9a30fe22e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.6.30411.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19043.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" @@ -27,16 +27,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" + "11999" ], "x-ms-request-id": [ - "5be0dd64-5576-41fb-880b-f19c4714d98a" + "2a67866e-56d5-4772-82e8-23d4fc3272c2" ], "x-ms-correlation-request-id": [ - "5be0dd64-5576-41fb-880b-f19c4714d98a" + "2a67866e-56d5-4772-82e8-23d4fc3272c2" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20210728T132811Z:5be0dd64-5576-41fb-880b-f19c4714d98a" + "NORTHCENTRALUS:20210831T220000Z:2a67866e-56d5-4772-82e8-23d4fc3272c2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -45,7 +45,7 @@ "nosniff" ], "Date": [ - "Wed, 28 Jul 2021 13:28:11 GMT" + "Tue, 31 Aug 2021 21:59:59 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -54,26 +54,26 @@ "-1" ], "Content-Length": [ - "7221" + "8454" ] }, - "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 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 \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\",\r\n \"2015-07-01\",\r\n \"2014-05-01-privatepreview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\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 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 \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"batchAccounts/certificates\",\r\n \"locations\": [\r\n \"West Europe\",\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Europe\",\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [\r\n \"West Europe\",\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"West Europe\",\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/accountOperationResults\",\r\n \"locations\": [\r\n \"West Europe\",\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\",\r\n \"2015-07-01\",\r\n \"2014-05-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "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 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 \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\",\r\n \"2015-07-01\",\r\n \"2014-05-01-privatepreview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\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 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 \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"batchAccounts/certificates\",\r\n \"locations\": [\r\n \"West Europe\",\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Europe\",\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [\r\n \"West Europe\",\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"West Europe\",\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/accountOperationResults\",\r\n \"locations\": [\r\n \"West Europe\",\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\",\r\n \"2015-07-01\",\r\n \"2014-05-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/virtualMachineSkus\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US 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 \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/cloudServiceSkus\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US 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 \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourcegroups/azsmnet4816?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQ0ODE2P2FwaS12ZXJzaW9uPTIwMTctMDUtMTA=", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourcegroups/azsmnet7833?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQ3ODMzP2FwaS12ZXJzaW9uPTIwMTctMDUtMTA=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"East US\"\r\n}", + "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "d6f6a305-5ee7-4e1b-80db-7e05ea8767b1" + "d337276f-4a33-46a7-9eb0-d5c98abc0b60" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.6.30411.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19043.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" @@ -93,16 +93,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1199" ], "x-ms-request-id": [ - "287fc3e6-62c4-4e76-a999-6375291f6f85" + "c488c7d6-7b87-4361-bb2c-1211bd776627" ], "x-ms-correlation-request-id": [ - "287fc3e6-62c4-4e76-a999-6375291f6f85" + "c488c7d6-7b87-4361-bb2c-1211bd776627" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20210728T132812Z:287fc3e6-62c4-4e76-a999-6375291f6f85" + "NORTHCENTRALUS:20210831T220001Z:c488c7d6-7b87-4361-bb2c-1211bd776627" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -111,7 +111,7 @@ "nosniff" ], "Date": [ - "Wed, 28 Jul 2021 13:28:12 GMT" + "Tue, 31 Aug 2021 22:00:01 GMT" ], "Content-Length": [ "175" @@ -123,26 +123,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet4816\",\r\n \"name\": \"azsmnet4816\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet7833\",\r\n \"name\": \"azsmnet7833\",\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/azsmnet4816/providers/Microsoft.Batch/batchAccounts/azsmnet2256?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0ODE2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0MjI1Nj9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet7833/providers/Microsoft.Batch/batchAccounts/azsmnet7577?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ3ODMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0NzU3Nz9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"East US\"\r\n}", + "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "fe3a5eec-c909-447f-9e69-1e00183a047e" + "aa3b2b3c-2dc9-4846-86b6-1bd836e5fc29" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.6.30411.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/15.0.0.0" + "Microsoft.Azure.Management.Batch.BatchManagementClient/14.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -159,13 +159,13 @@ "no-cache" ], "Location": [ - "https://centraluseuap.management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet4816/providers/Microsoft.Batch/batchAccounts/azsmnet2256/operationResults/56a17c90-878d-4ed4-9485-9607aa636f37?api-version=2021-06-01" + "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet7833/providers/Microsoft.Batch/batchAccounts/azsmnet7577/operationResults/814fd66f-90d3-4d97-8fad-e3fc7ac81301?api-version=2021-06-01" ], "Retry-After": [ "15" ], "x-ms-request-id": [ - "56a17c90-878d-4ed4-9485-9607aa636f37" + "814fd66f-90d3-4d97-8fad-e3fc7ac81301" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -177,16 +177,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1199" ], "x-ms-correlation-request-id": [ - "00f603de-37af-4027-9653-c2287c3cb4c3" + "5a8f758e-0d4a-4e18-b0bf-204b55848f40" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20210728T132813Z:00f603de-37af-4027-9653-c2287c3cb4c3" + "NORTHCENTRALUS:20210831T220004Z:5a8f758e-0d4a-4e18-b0bf-204b55848f40" ], "Date": [ - "Wed, 28 Jul 2021 13:28:13 GMT" + "Tue, 31 Aug 2021 22:00:03 GMT" ], "Expires": [ "-1" @@ -199,16 +199,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet4816/providers/Microsoft.Batch/batchAccounts/azsmnet2256/operationResults/56a17c90-878d-4ed4-9485-9607aa636f37?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0ODE2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0MjI1Ni9vcGVyYXRpb25SZXN1bHRzLzU2YTE3YzkwLTg3OGQtNGVkNC05NDg1LTk2MDdhYTYzNmYzNz9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet7833/providers/Microsoft.Batch/batchAccounts/azsmnet7577/operationResults/814fd66f-90d3-4d97-8fad-e3fc7ac81301?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ3ODMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0NzU3Ny9vcGVyYXRpb25SZXN1bHRzLzgxNGZkNjZmLTkwZDMtNGQ5Ny04ZmFkLWUzZmM3YWM4MTMwMT9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.6.30411.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/15.0.0.0" + "Microsoft.Azure.Management.Batch.BatchManagementClient/14.0.0.0" ] }, "ResponseHeaders": { @@ -219,13 +219,13 @@ "no-cache" ], "ETag": [ - "\"0x8D951CB964325F1\"" + "\"0x8D96CCAB9404EC7\"" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11983" + "11999" ], "x-ms-request-id": [ - "8e924b4c-9d36-4ce6-98ab-008ff68fb968" + "96ab0b6a-d4f7-46fc-a78f-8ff11480c688" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -237,16 +237,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-correlation-request-id": [ - "79c943e5-d260-4bbb-9130-9da73c1ef891" + "8ea3081f-081c-4c6a-ab9d-8eacad8becba" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20210728T132829Z:79c943e5-d260-4bbb-9130-9da73c1ef891" + "NORTHCENTRALUS:20210831T220019Z:8ea3081f-081c-4c6a-ab9d-8eacad8becba" ], "Date": [ - "Wed, 28 Jul 2021 13:28:28 GMT" + "Tue, 31 Aug 2021 22:00:19 GMT" ], "Content-Length": [ - "2956" + "2991" ], "Content-Type": [ "application/json; charset=utf-8" @@ -255,29 +255,29 @@ "-1" ], "Last-Modified": [ - "Wed, 28 Jul 2021 13:28:29 GMT" + "Tue, 31 Aug 2021 22:00:19 GMT" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet4816/providers/Microsoft.Batch/batchAccounts/azsmnet2256\",\r\n \"name\": \"azsmnet2256\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"azsmnet2256.pilotprod2.eastus.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 \"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 \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet7833/providers/Microsoft.Batch/batchAccounts/azsmnet7577\",\r\n \"name\": \"azsmnet7577\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"azsmnet7577.westus.batch.azure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"dedicatedCoreQuota\": 500,\r\n \"dedicatedCoreQuotaPerVMFamily\": [\r\n {\r\n \"name\": \"standardAv2Family\",\r\n \"coreQuota\": 500\r\n },\r\n {\r\n \"name\": \"standardDv2Family\",\r\n \"coreQuota\": 250\r\n },\r\n {\r\n \"name\": \"standardDv3Family\",\r\n \"coreQuota\": 500\r\n },\r\n {\r\n \"name\": \"standardEv3Family\",\r\n \"coreQuota\": 500\r\n },\r\n {\r\n \"name\": \"standardDSv2Family\",\r\n \"coreQuota\": 250\r\n },\r\n {\r\n \"name\": \"standardDSv3Family\",\r\n \"coreQuota\": 500\r\n },\r\n {\r\n \"name\": \"standardESv3Family\",\r\n \"coreQuota\": 500\r\n },\r\n {\r\n \"name\": \"standardFSv2Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardNCFamily\",\r\n \"coreQuota\": 24\r\n },\r\n {\r\n \"name\": \"standardNVFamily\",\r\n \"coreQuota\": 24\r\n },\r\n {\r\n \"name\": \"standardDDv4Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardDDSv4Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardEDv4Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardEDSv4Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardA0_A7Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardA8_A11Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardDFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardGFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"basicAFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardFFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNVPromoFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNCPromoFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHPromoFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardMSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardDSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardFSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardGSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardLSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardLSv2Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNCSv2Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNDSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNCSv3Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHBSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHCSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNVSv3Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHBrsv2Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardDAv4Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardDASv4Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardEAv4Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardEASv4Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardMSv2Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardEIv3Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNVSv4Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"Standard NCASv3_T4 Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardXEIDSv4Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"Standard NDASv4_A100 Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardDCSv2Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHBv3Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNPSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardFXMDVSFamily\",\r\n \"coreQuota\": 0\r\n }\r\n ],\r\n \"dedicatedCoreQuotaPerVMFamilyEnforced\": true,\r\n \"lowPriorityCoreQuota\": 500,\r\n \"poolQuota\": 100,\r\n \"activeJobAndJobScheduleQuota\": 300,\r\n \"poolAllocationMode\": \"BatchService\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"encryption\": {\r\n \"keySource\": \"Microsoft.Batch\"\r\n },\r\n \"allowedAuthenticationModes\": [\r\n \"SharedKey\",\r\n \"AAD\",\r\n \"TaskAuthenticationToken\"\r\n ]\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet4816/providers/Microsoft.Batch/batchAccounts/azsmnet2256/certificates/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0ODE2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0MjI1Ni9jZXJ0aWZpY2F0ZXMvc2hhMS1jZmYyYWI2M2M4Yzk1NWFhZjcxOTg5ZWZhNjQxYjkwNjU1OGQ5ZmI3P2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet7833/providers/Microsoft.Batch/batchAccounts/azsmnet7577/certificates/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ3ODMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0NzU3Ny9jZXJ0aWZpY2F0ZXMvc2hhMS1jZmYyYWI2M2M4Yzk1NWFhZjcxOTg5ZWZhNjQxYjkwNjU1OGQ5ZmI3P2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"thumbprintAlgorithm\": \"sha1\",\r\n \"thumbprint\": \"cff2ab63c8c955aaf71989efa641b906558d9fb7\",\r\n \"format\": \"Pfx\",\r\n \"data\": \"MIIGMQIBAzCCBe0GCSqGSIb3DQEHAaCCBd4EggXaMIIF1jCCA8AGCSqGSIb3DQEHAaCCA7EEggOtMIIDqTCCA6UGCyqGSIb3DQEMCgECoIICtjCCArIwHAYKKoZIhvcNAQwBAzAOBAhyd3xCtln3iQICB9AEggKQhe5P10V9iV1BsDlwWT561Yu2hVq3JT8ae/ebx1ZR/gMApVereDKkS9Zg4vFyssusHebbK5pDpU8vfAqle0TM4m7wGsRj453ZorSPUfMpHvQnAOn+2pEpWdMThU7xvZ6DVpwhDOQk9166z+KnKdHGuJKh4haMT7Rw/6xZ1rsBt2423cwTrQVMQyACrEkianpuujubKltN99qRoFAxhQcnYE2KlYKw7lRcExq6mDSYAyk5xJZ1ZFdLj6MAryZroQit/0g5eyhoNEKwWbi8px5j71pRTf7yjN+deMGQKwbGl+3OgaL1UZ5fCjypbVL60kpIBxLZwIJ7p3jJ+q9pbq9zSdzshPYor5lxyUfXqaso/0/91ayNoBzg4hQGh618PhFI6RMGjwkzhB9xk74iweJ9HQyIHf8yx2RCSI22JuCMitPMWSGvOszhbNx3AEDLuiiAOHg391mprEtKZguOIr9LrJwem/YmcHbwyz5YAbZmiseKPkllfC7dafFfCFEkj6R2oegIsZo0pEKYisAXBqT0g+6/jGwuhlZcBo0f7UIZm88iA3MrJCjlXEgV5OcQdoWj+hq0lKEdnhtCKr03AIfukN6+4vjjarZeW1bs0swq0l3XFf5RHa11otshMS4mpewshB9iO9MuKWpRxuxeng4PlKZ/zuBqmPeUrjJ9454oK35Pq+dghfemt7AUpBH/KycDNIZgfdEWUZrRKBGnc519C+RTqxyt5hWL18nJk4LvSd3QKlJ1iyJxClhhb/NWEzPqNdyA5cxen+2T9bd/EqJ2KzRv5/BPVwTQkHH9W/TZElFyvFfOFIW2+03RKbVGw72Mr/0xKZ+awAnEfoU+SL/2Gj2m6PHkqFX2sOCi/tN9EA4xgdswEwYJKoZIhvcNAQkVMQYEBAEAAAAwXQYJKwYBBAGCNxEBMVAeTgBNAGkAYwByAG8AcwBvAGYAdAAgAFMAdAByAG8AbgBnACAAQwByAHkAcAB0AG8AZwByAGEAcABoAGkAYwAgAFAAcgBvAHYAaQBkAGUAcjBlBgkqhkiG9w0BCRQxWB5WAFAAdgBrAFQAbQBwADoANABjAGUANgAwADQAZABhAC0AMAA2ADgAMQAtADQANAAxADUALQBhADIAYwBhAC0ANQA3ADcAMwAwADgAZQA2AGQAOQBhAGMwggIOBgkqhkiG9w0BBwGgggH/BIIB+zCCAfcwggHzBgsqhkiG9w0BDAoBA6CCAcswggHHBgoqhkiG9w0BCRYBoIIBtwSCAbMwggGvMIIBXaADAgECAhAdka3aTQsIsUphgIXGUmeRMAkGBSsOAwIdBQAwFjEUMBIGA1UEAxMLUm9vdCBBZ2VuY3kwHhcNMTYwMTAxMDcwMDAwWhcNMTgwMTAxMDcwMDAwWjASMRAwDgYDVQQDEwdub2Rlc2RrMIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQC5fhcxbJHxxBEIDzVOMc56s04U6k4GPY7yMR1m+rBGVRiAyV4RjY6U936dqXHCVD36ps2Q0Z+OeEgyCInkIyVeB1EwXcToOcyeS2YcUb0vRWZDouC3tuFdHwiK1Ed5iW/LksmXDotyV7kpqzaPhOFiMtBuMEwNJcPge9k17hRgRQIDAQABo0swSTBHBgNVHQEEQDA+gBAS5AktBh0dTwCNYSHcFmRjoRgwFjEUMBIGA1UEAxMLUm9vdCBBZ2VuY3mCEAY3bACqAGSKEc+41KpcNfQwCQYFKw4DAh0FAANBAHl2M97QbpzdnwO5HoRBsiEExOcLTNg+GKCr7HUsbzfvrUivw+JLL7qjHAIc5phnK+F5bQ8HKe0L9YXBSKl+fvwxFTATBgkqhkiG9w0BCRUxBgQEAQAAADA7MB8wBwYFKw4DAhoEFGVtyGMqiBd32fGpzlGZQoRM6UQwBBTI0YHFFqTS4Go8CoLgswn29EiuUQICB9A=\",\r\n \"password\": \"nodesdk\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "2d822bf5-c5e2-488d-a1f2-cf1478c61e4c" + "06c5103f-3ca7-45b3-8d74-93857dd5cca6" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.6.30411.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/15.0.0.0" + "Microsoft.Azure.Management.Batch.BatchManagementClient/14.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -294,13 +294,13 @@ "no-cache" ], "ETag": [ - "W/\"0x8D951CB9668BDB8\"" + "W/\"0x8D96CCAB97154A6\"" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1198" ], "x-ms-request-id": [ - "f5138fff-8552-431e-ae8f-258a7beadb1e" + "3565a295-ba62-46db-b82a-8b0823d9194a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -312,13 +312,13 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-correlation-request-id": [ - "abddd057-859f-4cec-a8c6-23cf0b722928" + "6f113518-1b37-4252-8a94-aaf077e8b4b3" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20210728T132829Z:abddd057-859f-4cec-a8c6-23cf0b722928" + "NORTHCENTRALUS:20210831T220020Z:6f113518-1b37-4252-8a94-aaf077e8b4b3" ], "Date": [ - "Wed, 28 Jul 2021 13:28:29 GMT" + "Tue, 31 Aug 2021 22:00:20 GMT" ], "Content-Length": [ "1146" @@ -330,29 +330,29 @@ "-1" ], "Last-Modified": [ - "Wed, 28 Jul 2021 13:28:29 GMT" + "Tue, 31 Aug 2021 22:00:20 GMT" ] }, - "ResponseBody": "{\r\n \"name\": \"sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7\",\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet4816/providers/Microsoft.Batch/batchAccounts/azsmnet2256/certificates/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7\",\r\n \"type\": \"Microsoft.Batch/batchAccounts/certificates\",\r\n \"etag\": \"W/\\\"0x8D951CB9668BDB8\\\"\",\r\n \"properties\": {\r\n \"thumbprintAlgorithm\": \"sha1\",\r\n \"thumbprint\": \"cff2ab63c8c955aaf71989efa641b906558d9fb7\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"provisioningStateTransitionTime\": \"2021-07-28T13:28:29.3268045Z\",\r\n \"format\": \"Pfx\",\r\n \"publicData\": \"MIIBrzCCAV2gAwIBAgIQHZGt2k0LCLFKYYCFxlJnkTAJBgUrDgMCHQUAMBYxFDASBgNVBAMTC1Jvb3QgQWdlbmN5MB4XDTE2MDEwMTA3MDAwMFoXDTE4MDEwMTA3MDAwMFowEjEQMA4GA1UEAxMHbm9kZXNkazCBnzANBgkqhkiG9w0BAQEFAAOBjQAwgYkCgYEAuX4XMWyR8cQRCA81TjHOerNOFOpOBj2O8jEdZvqwRlUYgMleEY2OlPd+nalxwlQ9+qbNkNGfjnhIMgiJ5CMlXgdRMF3E6DnMnktmHFG9L0VmQ6Lgt7bhXR8IitRHeYlvy5LJlw6Lcle5Kas2j4ThYjLQbjBMDSXD4HvZNe4UYEUCAwEAAaNLMEkwRwYDVR0BBEAwPoAQEuQJLQYdHU8AjWEh3BZkY6EYMBYxFDASBgNVBAMTC1Jvb3QgQWdlbmN5ghAGN2wAqgBkihHPuNSqXDX0MAkGBSsOAwIdBQADQQB5djPe0G6c3Z8DuR6EQbIhBMTnC0zYPhigq+x1LG83761Ir8PiSy+6oxwCHOaYZyvheW0PByntC/WFwUipfn78\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7\",\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet7833/providers/Microsoft.Batch/batchAccounts/azsmnet7577/certificates/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7\",\r\n \"type\": \"Microsoft.Batch/batchAccounts/certificates\",\r\n \"etag\": \"W/\\\"0x8D96CCAB97154A6\\\"\",\r\n \"properties\": {\r\n \"thumbprintAlgorithm\": \"sha1\",\r\n \"thumbprint\": \"cff2ab63c8c955aaf71989efa641b906558d9fb7\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"provisioningStateTransitionTime\": \"2021-08-31T22:00:20.0002788Z\",\r\n \"format\": \"Pfx\",\r\n \"publicData\": \"MIIBrzCCAV2gAwIBAgIQHZGt2k0LCLFKYYCFxlJnkTAJBgUrDgMCHQUAMBYxFDASBgNVBAMTC1Jvb3QgQWdlbmN5MB4XDTE2MDEwMTA3MDAwMFoXDTE4MDEwMTA3MDAwMFowEjEQMA4GA1UEAxMHbm9kZXNkazCBnzANBgkqhkiG9w0BAQEFAAOBjQAwgYkCgYEAuX4XMWyR8cQRCA81TjHOerNOFOpOBj2O8jEdZvqwRlUYgMleEY2OlPd+nalxwlQ9+qbNkNGfjnhIMgiJ5CMlXgdRMF3E6DnMnktmHFG9L0VmQ6Lgt7bhXR8IitRHeYlvy5LJlw6Lcle5Kas2j4ThYjLQbjBMDSXD4HvZNe4UYEUCAwEAAaNLMEkwRwYDVR0BBEAwPoAQEuQJLQYdHU8AjWEh3BZkY6EYMBYxFDASBgNVBAMTC1Jvb3QgQWdlbmN5ghAGN2wAqgBkihHPuNSqXDX0MAkGBSsOAwIdBQADQQB5djPe0G6c3Z8DuR6EQbIhBMTnC0zYPhigq+x1LG83761Ir8PiSy+6oxwCHOaYZyvheW0PByntC/WFwUipfn78\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet4816/providers/Microsoft.Batch/batchAccounts/azsmnet2256/certificates?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0ODE2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0MjI1Ni9jZXJ0aWZpY2F0ZXM/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet7833/providers/Microsoft.Batch/batchAccounts/azsmnet7577/certificates?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ3ODMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0NzU3Ny9jZXJ0aWZpY2F0ZXM/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7134884e-e772-4e77-b5f9-978023868360" + "5f658504-fba4-4f03-a43a-547992510e78" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.6.30411.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/15.0.0.0" + "Microsoft.Azure.Management.Batch.BatchManagementClient/14.0.0.0" ] }, "ResponseHeaders": { @@ -363,10 +363,10 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11982" + "11998" ], "x-ms-request-id": [ - "48add223-57e8-4243-a295-00bf1ef28761" + "60ba04d2-b8ab-4231-86ba-9ae6cefb4f42" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -378,13 +378,13 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-correlation-request-id": [ - "06a00acc-1508-4dd6-8958-3439579ea626" + "8335bebd-2720-48fa-93f1-f3da6b86f8ed" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20210728T132829Z:06a00acc-1508-4dd6-8958-3439579ea626" + "NORTHCENTRALUS:20210831T220020Z:8335bebd-2720-48fa-93f1-f3da6b86f8ed" ], "Date": [ - "Wed, 28 Jul 2021 13:28:29 GMT" + "Tue, 31 Aug 2021 22:00:20 GMT" ], "Content-Length": [ "1158" @@ -396,26 +396,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7\",\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet4816/providers/Microsoft.Batch/batchAccounts/azsmnet2256/certificates/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7\",\r\n \"type\": \"Microsoft.Batch/batchAccounts/certificates\",\r\n \"etag\": \"W/\\\"0x8D951CB9668BDB8\\\"\",\r\n \"properties\": {\r\n \"thumbprintAlgorithm\": \"sha1\",\r\n \"thumbprint\": \"cff2ab63c8c955aaf71989efa641b906558d9fb7\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"provisioningStateTransitionTime\": \"2021-07-28T13:28:29.3268045Z\",\r\n \"format\": \"Pfx\",\r\n \"publicData\": \"MIIBrzCCAV2gAwIBAgIQHZGt2k0LCLFKYYCFxlJnkTAJBgUrDgMCHQUAMBYxFDASBgNVBAMTC1Jvb3QgQWdlbmN5MB4XDTE2MDEwMTA3MDAwMFoXDTE4MDEwMTA3MDAwMFowEjEQMA4GA1UEAxMHbm9kZXNkazCBnzANBgkqhkiG9w0BAQEFAAOBjQAwgYkCgYEAuX4XMWyR8cQRCA81TjHOerNOFOpOBj2O8jEdZvqwRlUYgMleEY2OlPd+nalxwlQ9+qbNkNGfjnhIMgiJ5CMlXgdRMF3E6DnMnktmHFG9L0VmQ6Lgt7bhXR8IitRHeYlvy5LJlw6Lcle5Kas2j4ThYjLQbjBMDSXD4HvZNe4UYEUCAwEAAaNLMEkwRwYDVR0BBEAwPoAQEuQJLQYdHU8AjWEh3BZkY6EYMBYxFDASBgNVBAMTC1Jvb3QgQWdlbmN5ghAGN2wAqgBkihHPuNSqXDX0MAkGBSsOAwIdBQADQQB5djPe0G6c3Z8DuR6EQbIhBMTnC0zYPhigq+x1LG83761Ir8PiSy+6oxwCHOaYZyvheW0PByntC/WFwUipfn78\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7\",\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet7833/providers/Microsoft.Batch/batchAccounts/azsmnet7577/certificates/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7\",\r\n \"type\": \"Microsoft.Batch/batchAccounts/certificates\",\r\n \"etag\": \"W/\\\"0x8D96CCAB97154A6\\\"\",\r\n \"properties\": {\r\n \"thumbprintAlgorithm\": \"sha1\",\r\n \"thumbprint\": \"cff2ab63c8c955aaf71989efa641b906558d9fb7\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"provisioningStateTransitionTime\": \"2021-08-31T22:00:20.0002788Z\",\r\n \"format\": \"Pfx\",\r\n \"publicData\": \"MIIBrzCCAV2gAwIBAgIQHZGt2k0LCLFKYYCFxlJnkTAJBgUrDgMCHQUAMBYxFDASBgNVBAMTC1Jvb3QgQWdlbmN5MB4XDTE2MDEwMTA3MDAwMFoXDTE4MDEwMTA3MDAwMFowEjEQMA4GA1UEAxMHbm9kZXNkazCBnzANBgkqhkiG9w0BAQEFAAOBjQAwgYkCgYEAuX4XMWyR8cQRCA81TjHOerNOFOpOBj2O8jEdZvqwRlUYgMleEY2OlPd+nalxwlQ9+qbNkNGfjnhIMgiJ5CMlXgdRMF3E6DnMnktmHFG9L0VmQ6Lgt7bhXR8IitRHeYlvy5LJlw6Lcle5Kas2j4ThYjLQbjBMDSXD4HvZNe4UYEUCAwEAAaNLMEkwRwYDVR0BBEAwPoAQEuQJLQYdHU8AjWEh3BZkY6EYMBYxFDASBgNVBAMTC1Jvb3QgQWdlbmN5ghAGN2wAqgBkihHPuNSqXDX0MAkGBSsOAwIdBQADQQB5djPe0G6c3Z8DuR6EQbIhBMTnC0zYPhigq+x1LG83761Ir8PiSy+6oxwCHOaYZyvheW0PByntC/WFwUipfn78\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet4816/providers/Microsoft.Batch/batchAccounts/azsmnet2256/certificates/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0ODE2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0MjI1Ni9jZXJ0aWZpY2F0ZXMvc2hhMS1jZmYyYWI2M2M4Yzk1NWFhZjcxOTg5ZWZhNjQxYjkwNjU1OGQ5ZmI3P2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet7833/providers/Microsoft.Batch/batchAccounts/azsmnet7577/certificates/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ3ODMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0NzU3Ny9jZXJ0aWZpY2F0ZXMvc2hhMS1jZmYyYWI2M2M4Yzk1NWFhZjcxOTg5ZWZhNjQxYjkwNjU1OGQ5ZmI3P2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5686303b-9b8e-499f-b648-00683a28431a" + "c240d1e8-db41-492e-ba4a-d3fd53c4e0b3" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.6.30411.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/15.0.0.0" + "Microsoft.Azure.Management.Batch.BatchManagementClient/14.0.0.0" ] }, "ResponseHeaders": { @@ -426,13 +426,13 @@ "no-cache" ], "ETag": [ - "W/\"0x8D951CB9668BDB8\"" + "W/\"0x8D96CCAB97154A6\"" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11981" + "11997" ], "x-ms-request-id": [ - "0238560e-b8bc-4d85-8e87-1066115c8cf9" + "98323393-4af1-4234-a8e6-472b0d6fb139" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -444,13 +444,13 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-correlation-request-id": [ - "f753fcc4-7858-49d5-93ed-0561dbdf7a60" + "de8a2eec-6b68-4821-bfff-e9922bbc8bd5" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20210728T132829Z:f753fcc4-7858-49d5-93ed-0561dbdf7a60" + "NORTHCENTRALUS:20210831T220020Z:de8a2eec-6b68-4821-bfff-e9922bbc8bd5" ], "Date": [ - "Wed, 28 Jul 2021 13:28:29 GMT" + "Tue, 31 Aug 2021 22:00:20 GMT" ], "Content-Length": [ "1146" @@ -462,29 +462,29 @@ "-1" ], "Last-Modified": [ - "Wed, 28 Jul 2021 13:28:29 GMT" + "Tue, 31 Aug 2021 22:00:20 GMT" ] }, - "ResponseBody": "{\r\n \"name\": \"sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7\",\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet4816/providers/Microsoft.Batch/batchAccounts/azsmnet2256/certificates/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7\",\r\n \"type\": \"Microsoft.Batch/batchAccounts/certificates\",\r\n \"etag\": \"W/\\\"0x8D951CB9668BDB8\\\"\",\r\n \"properties\": {\r\n \"thumbprintAlgorithm\": \"sha1\",\r\n \"thumbprint\": \"cff2ab63c8c955aaf71989efa641b906558d9fb7\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"provisioningStateTransitionTime\": \"2021-07-28T13:28:29.3268045Z\",\r\n \"format\": \"Pfx\",\r\n \"publicData\": \"MIIBrzCCAV2gAwIBAgIQHZGt2k0LCLFKYYCFxlJnkTAJBgUrDgMCHQUAMBYxFDASBgNVBAMTC1Jvb3QgQWdlbmN5MB4XDTE2MDEwMTA3MDAwMFoXDTE4MDEwMTA3MDAwMFowEjEQMA4GA1UEAxMHbm9kZXNkazCBnzANBgkqhkiG9w0BAQEFAAOBjQAwgYkCgYEAuX4XMWyR8cQRCA81TjHOerNOFOpOBj2O8jEdZvqwRlUYgMleEY2OlPd+nalxwlQ9+qbNkNGfjnhIMgiJ5CMlXgdRMF3E6DnMnktmHFG9L0VmQ6Lgt7bhXR8IitRHeYlvy5LJlw6Lcle5Kas2j4ThYjLQbjBMDSXD4HvZNe4UYEUCAwEAAaNLMEkwRwYDVR0BBEAwPoAQEuQJLQYdHU8AjWEh3BZkY6EYMBYxFDASBgNVBAMTC1Jvb3QgQWdlbmN5ghAGN2wAqgBkihHPuNSqXDX0MAkGBSsOAwIdBQADQQB5djPe0G6c3Z8DuR6EQbIhBMTnC0zYPhigq+x1LG83761Ir8PiSy+6oxwCHOaYZyvheW0PByntC/WFwUipfn78\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7\",\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet7833/providers/Microsoft.Batch/batchAccounts/azsmnet7577/certificates/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7\",\r\n \"type\": \"Microsoft.Batch/batchAccounts/certificates\",\r\n \"etag\": \"W/\\\"0x8D96CCAB97154A6\\\"\",\r\n \"properties\": {\r\n \"thumbprintAlgorithm\": \"sha1\",\r\n \"thumbprint\": \"cff2ab63c8c955aaf71989efa641b906558d9fb7\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"provisioningStateTransitionTime\": \"2021-08-31T22:00:20.0002788Z\",\r\n \"format\": \"Pfx\",\r\n \"publicData\": \"MIIBrzCCAV2gAwIBAgIQHZGt2k0LCLFKYYCFxlJnkTAJBgUrDgMCHQUAMBYxFDASBgNVBAMTC1Jvb3QgQWdlbmN5MB4XDTE2MDEwMTA3MDAwMFoXDTE4MDEwMTA3MDAwMFowEjEQMA4GA1UEAxMHbm9kZXNkazCBnzANBgkqhkiG9w0BAQEFAAOBjQAwgYkCgYEAuX4XMWyR8cQRCA81TjHOerNOFOpOBj2O8jEdZvqwRlUYgMleEY2OlPd+nalxwlQ9+qbNkNGfjnhIMgiJ5CMlXgdRMF3E6DnMnktmHFG9L0VmQ6Lgt7bhXR8IitRHeYlvy5LJlw6Lcle5Kas2j4ThYjLQbjBMDSXD4HvZNe4UYEUCAwEAAaNLMEkwRwYDVR0BBEAwPoAQEuQJLQYdHU8AjWEh3BZkY6EYMBYxFDASBgNVBAMTC1Jvb3QgQWdlbmN5ghAGN2wAqgBkihHPuNSqXDX0MAkGBSsOAwIdBQADQQB5djPe0G6c3Z8DuR6EQbIhBMTnC0zYPhigq+x1LG83761Ir8PiSy+6oxwCHOaYZyvheW0PByntC/WFwUipfn78\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet4816/providers/Microsoft.Batch/batchAccounts/azsmnet2256/certificates/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0ODE2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0MjI1Ni9jZXJ0aWZpY2F0ZXMvc2hhMS1jZmYyYWI2M2M4Yzk1NWFhZjcxOTg5ZWZhNjQxYjkwNjU1OGQ5ZmI3P2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet7833/providers/Microsoft.Batch/batchAccounts/azsmnet7577/certificates/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ3ODMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0NzU3Ny9jZXJ0aWZpY2F0ZXMvc2hhMS1jZmYyYWI2M2M4Yzk1NWFhZjcxOTg5ZWZhNjQxYjkwNjU1OGQ5ZmI3P2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "33fde381-27ae-4dbf-87d4-f6cc99f9222f" + "300d1d86-6842-4b5b-a9d9-c42a5c329c41" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.6.30411.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/15.0.0.0" + "Microsoft.Azure.Management.Batch.BatchManagementClient/14.0.0.0" ] }, "ResponseHeaders": { @@ -495,10 +495,10 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11974" + "11990" ], "x-ms-request-id": [ - "958798a2-8f34-4a4f-af27-a497c24b35e0" + "195ec8ad-eb02-4ddc-945e-27297784222c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -510,13 +510,13 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-correlation-request-id": [ - "0c7651ea-cd2c-40b9-abe9-05d7fdd86bda" + "09c2c7b5-a2c1-4815-9c48-2dd24c26b456" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20210728T132946Z:0c7651ea-cd2c-40b9-abe9-05d7fdd86bda" + "NORTHCENTRALUS:20210831T220137Z:09c2c7b5-a2c1-4815-9c48-2dd24c26b456" ], "Date": [ - "Wed, 28 Jul 2021 13:29:45 GMT" + "Tue, 31 Aug 2021 22:01:36 GMT" ], "Content-Length": [ "201" @@ -528,26 +528,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"CertificateNotFound\",\r\n \"message\": \"The specified certificate does not exist.\\nRequestId:958798a2-8f34-4a4f-af27-a497c24b35e0\\nTime:2021-07-28T13:29:46.2303815Z\",\r\n \"target\": \"BatchAccount\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"CertificateNotFound\",\r\n \"message\": \"The specified certificate does not exist.\\nRequestId:195ec8ad-eb02-4ddc-945e-27297784222c\\nTime:2021-08-31T22:01:37.0632474Z\",\r\n \"target\": \"BatchAccount\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet4816/providers/Microsoft.Batch/batchAccounts/azsmnet2256/certificates/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0ODE2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0MjI1Ni9jZXJ0aWZpY2F0ZXMvc2hhMS1jZmYyYWI2M2M4Yzk1NWFhZjcxOTg5ZWZhNjQxYjkwNjU1OGQ5ZmI3P2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet7833/providers/Microsoft.Batch/batchAccounts/azsmnet7577/certificates/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ3ODMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0NzU3Ny9jZXJ0aWZpY2F0ZXMvc2hhMS1jZmYyYWI2M2M4Yzk1NWFhZjcxOTg5ZWZhNjQxYjkwNjU1OGQ5ZmI3P2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", "RequestMethod": "PATCH", "RequestBody": "{\r\n \"properties\": {\r\n \"format\": \"Pfx\",\r\n \"data\": \"MIIGMQIBAzCCBe0GCSqGSIb3DQEHAaCCBd4EggXaMIIF1jCCA8AGCSqGSIb3DQEHAaCCA7EEggOtMIIDqTCCA6UGCyqGSIb3DQEMCgECoIICtjCCArIwHAYKKoZIhvcNAQwBAzAOBAhyd3xCtln3iQICB9AEggKQhe5P10V9iV1BsDlwWT561Yu2hVq3JT8ae/ebx1ZR/gMApVereDKkS9Zg4vFyssusHebbK5pDpU8vfAqle0TM4m7wGsRj453ZorSPUfMpHvQnAOn+2pEpWdMThU7xvZ6DVpwhDOQk9166z+KnKdHGuJKh4haMT7Rw/6xZ1rsBt2423cwTrQVMQyACrEkianpuujubKltN99qRoFAxhQcnYE2KlYKw7lRcExq6mDSYAyk5xJZ1ZFdLj6MAryZroQit/0g5eyhoNEKwWbi8px5j71pRTf7yjN+deMGQKwbGl+3OgaL1UZ5fCjypbVL60kpIBxLZwIJ7p3jJ+q9pbq9zSdzshPYor5lxyUfXqaso/0/91ayNoBzg4hQGh618PhFI6RMGjwkzhB9xk74iweJ9HQyIHf8yx2RCSI22JuCMitPMWSGvOszhbNx3AEDLuiiAOHg391mprEtKZguOIr9LrJwem/YmcHbwyz5YAbZmiseKPkllfC7dafFfCFEkj6R2oegIsZo0pEKYisAXBqT0g+6/jGwuhlZcBo0f7UIZm88iA3MrJCjlXEgV5OcQdoWj+hq0lKEdnhtCKr03AIfukN6+4vjjarZeW1bs0swq0l3XFf5RHa11otshMS4mpewshB9iO9MuKWpRxuxeng4PlKZ/zuBqmPeUrjJ9454oK35Pq+dghfemt7AUpBH/KycDNIZgfdEWUZrRKBGnc519C+RTqxyt5hWL18nJk4LvSd3QKlJ1iyJxClhhb/NWEzPqNdyA5cxen+2T9bd/EqJ2KzRv5/BPVwTQkHH9W/TZElFyvFfOFIW2+03RKbVGw72Mr/0xKZ+awAnEfoU+SL/2Gj2m6PHkqFX2sOCi/tN9EA4xgdswEwYJKoZIhvcNAQkVMQYEBAEAAAAwXQYJKwYBBAGCNxEBMVAeTgBNAGkAYwByAG8AcwBvAGYAdAAgAFMAdAByAG8AbgBnACAAQwByAHkAcAB0AG8AZwByAGEAcABoAGkAYwAgAFAAcgBvAHYAaQBkAGUAcjBlBgkqhkiG9w0BCRQxWB5WAFAAdgBrAFQAbQBwADoANABjAGUANgAwADQAZABhAC0AMAA2ADgAMQAtADQANAAxADUALQBhADIAYwBhAC0ANQA3ADcAMwAwADgAZQA2AGQAOQBhAGMwggIOBgkqhkiG9w0BBwGgggH/BIIB+zCCAfcwggHzBgsqhkiG9w0BDAoBA6CCAcswggHHBgoqhkiG9w0BCRYBoIIBtwSCAbMwggGvMIIBXaADAgECAhAdka3aTQsIsUphgIXGUmeRMAkGBSsOAwIdBQAwFjEUMBIGA1UEAxMLUm9vdCBBZ2VuY3kwHhcNMTYwMTAxMDcwMDAwWhcNMTgwMTAxMDcwMDAwWjASMRAwDgYDVQQDEwdub2Rlc2RrMIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQC5fhcxbJHxxBEIDzVOMc56s04U6k4GPY7yMR1m+rBGVRiAyV4RjY6U936dqXHCVD36ps2Q0Z+OeEgyCInkIyVeB1EwXcToOcyeS2YcUb0vRWZDouC3tuFdHwiK1Ed5iW/LksmXDotyV7kpqzaPhOFiMtBuMEwNJcPge9k17hRgRQIDAQABo0swSTBHBgNVHQEEQDA+gBAS5AktBh0dTwCNYSHcFmRjoRgwFjEUMBIGA1UEAxMLUm9vdCBBZ2VuY3mCEAY3bACqAGSKEc+41KpcNfQwCQYFKw4DAh0FAANBAHl2M97QbpzdnwO5HoRBsiEExOcLTNg+GKCr7HUsbzfvrUivw+JLL7qjHAIc5phnK+F5bQ8HKe0L9YXBSKl+fvwxFTATBgkqhkiG9w0BCRUxBgQEAQAAADA7MB8wBwYFKw4DAhoEFGVtyGMqiBd32fGpzlGZQoRM6UQwBBTI0YHFFqTS4Go8CoLgswn29EiuUQICB9A=\",\r\n \"password\": \"nodesdk\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "cea99121-17f7-4945-ab0f-3b9229cdafd0" + "a54a3f69-0558-4f8e-bf91-2c69accd5e04" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.6.30411.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/15.0.0.0" + "Microsoft.Azure.Management.Batch.BatchManagementClient/14.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -564,13 +564,13 @@ "no-cache" ], "ETag": [ - "W/\"0x8D951CB9668BDB8\"" + "W/\"0x8D96CCAB97154A6\"" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1197" ], "x-ms-request-id": [ - "87091246-97b2-4095-a055-c5bd51ee29ed" + "681a0ab8-e7be-4c53-99a3-a3ada1cb7197" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -582,13 +582,13 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-correlation-request-id": [ - "4025186c-54ad-420e-bdf2-9e191204afc1" + "92b78698-e0f2-43e8-92f4-3edbdf564588" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20210728T132830Z:4025186c-54ad-420e-bdf2-9e191204afc1" + "NORTHCENTRALUS:20210831T220020Z:92b78698-e0f2-43e8-92f4-3edbdf564588" ], "Date": [ - "Wed, 28 Jul 2021 13:28:29 GMT" + "Tue, 31 Aug 2021 22:00:20 GMT" ], "Content-Length": [ "1146" @@ -600,29 +600,29 @@ "-1" ], "Last-Modified": [ - "Wed, 28 Jul 2021 13:28:29 GMT" + "Tue, 31 Aug 2021 22:00:20 GMT" ] }, - "ResponseBody": "{\r\n \"name\": \"sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7\",\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet4816/providers/Microsoft.Batch/batchAccounts/azsmnet2256/certificates/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7\",\r\n \"type\": \"Microsoft.Batch/batchAccounts/certificates\",\r\n \"etag\": \"W/\\\"0x8D951CB9668BDB8\\\"\",\r\n \"properties\": {\r\n \"thumbprintAlgorithm\": \"sha1\",\r\n \"thumbprint\": \"cff2ab63c8c955aaf71989efa641b906558d9fb7\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"provisioningStateTransitionTime\": \"2021-07-28T13:28:29.3268045Z\",\r\n \"format\": \"Pfx\",\r\n \"publicData\": \"MIIBrzCCAV2gAwIBAgIQHZGt2k0LCLFKYYCFxlJnkTAJBgUrDgMCHQUAMBYxFDASBgNVBAMTC1Jvb3QgQWdlbmN5MB4XDTE2MDEwMTA3MDAwMFoXDTE4MDEwMTA3MDAwMFowEjEQMA4GA1UEAxMHbm9kZXNkazCBnzANBgkqhkiG9w0BAQEFAAOBjQAwgYkCgYEAuX4XMWyR8cQRCA81TjHOerNOFOpOBj2O8jEdZvqwRlUYgMleEY2OlPd+nalxwlQ9+qbNkNGfjnhIMgiJ5CMlXgdRMF3E6DnMnktmHFG9L0VmQ6Lgt7bhXR8IitRHeYlvy5LJlw6Lcle5Kas2j4ThYjLQbjBMDSXD4HvZNe4UYEUCAwEAAaNLMEkwRwYDVR0BBEAwPoAQEuQJLQYdHU8AjWEh3BZkY6EYMBYxFDASBgNVBAMTC1Jvb3QgQWdlbmN5ghAGN2wAqgBkihHPuNSqXDX0MAkGBSsOAwIdBQADQQB5djPe0G6c3Z8DuR6EQbIhBMTnC0zYPhigq+x1LG83761Ir8PiSy+6oxwCHOaYZyvheW0PByntC/WFwUipfn78\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7\",\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet7833/providers/Microsoft.Batch/batchAccounts/azsmnet7577/certificates/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7\",\r\n \"type\": \"Microsoft.Batch/batchAccounts/certificates\",\r\n \"etag\": \"W/\\\"0x8D96CCAB97154A6\\\"\",\r\n \"properties\": {\r\n \"thumbprintAlgorithm\": \"sha1\",\r\n \"thumbprint\": \"cff2ab63c8c955aaf71989efa641b906558d9fb7\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"provisioningStateTransitionTime\": \"2021-08-31T22:00:20.0002788Z\",\r\n \"format\": \"Pfx\",\r\n \"publicData\": \"MIIBrzCCAV2gAwIBAgIQHZGt2k0LCLFKYYCFxlJnkTAJBgUrDgMCHQUAMBYxFDASBgNVBAMTC1Jvb3QgQWdlbmN5MB4XDTE2MDEwMTA3MDAwMFoXDTE4MDEwMTA3MDAwMFowEjEQMA4GA1UEAxMHbm9kZXNkazCBnzANBgkqhkiG9w0BAQEFAAOBjQAwgYkCgYEAuX4XMWyR8cQRCA81TjHOerNOFOpOBj2O8jEdZvqwRlUYgMleEY2OlPd+nalxwlQ9+qbNkNGfjnhIMgiJ5CMlXgdRMF3E6DnMnktmHFG9L0VmQ6Lgt7bhXR8IitRHeYlvy5LJlw6Lcle5Kas2j4ThYjLQbjBMDSXD4HvZNe4UYEUCAwEAAaNLMEkwRwYDVR0BBEAwPoAQEuQJLQYdHU8AjWEh3BZkY6EYMBYxFDASBgNVBAMTC1Jvb3QgQWdlbmN5ghAGN2wAqgBkihHPuNSqXDX0MAkGBSsOAwIdBQADQQB5djPe0G6c3Z8DuR6EQbIhBMTnC0zYPhigq+x1LG83761Ir8PiSy+6oxwCHOaYZyvheW0PByntC/WFwUipfn78\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet4816/providers/Microsoft.Batch/batchAccounts/azsmnet2256/certificates/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7/cancelDelete?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0ODE2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0MjI1Ni9jZXJ0aWZpY2F0ZXMvc2hhMS1jZmYyYWI2M2M4Yzk1NWFhZjcxOTg5ZWZhNjQxYjkwNjU1OGQ5ZmI3L2NhbmNlbERlbGV0ZT9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet7833/providers/Microsoft.Batch/batchAccounts/azsmnet7577/certificates/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7/cancelDelete?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ3ODMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0NzU3Ny9jZXJ0aWZpY2F0ZXMvc2hhMS1jZmYyYWI2M2M4Yzk1NWFhZjcxOTg5ZWZhNjQxYjkwNjU1OGQ5ZmI3L2NhbmNlbERlbGV0ZT9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "096b41b2-4b5d-454e-b089-a09ca8365028" + "b17b017e-85b9-40f9-af2d-8983aac34068" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.6.30411.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/15.0.0.0" + "Microsoft.Azure.Management.Batch.BatchManagementClient/14.0.0.0" ] }, "ResponseHeaders": { @@ -633,13 +633,13 @@ "no-cache" ], "ETag": [ - "W/\"0x8D951CB9668BDB8\"" + "W/\"0x8D96CCAB97154A6\"" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1199" ], "x-ms-request-id": [ - "5f691c88-d8b7-4439-a806-2e5c3fadc902" + "d2c0d5c3-deda-494d-8be5-1df7eae52ff4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -651,13 +651,13 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-correlation-request-id": [ - "3100152d-a2e4-4d24-aa02-10ccc4ae78df" + "59dc582c-9bbb-4054-b70d-d72d4733ae8a" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20210728T132830Z:3100152d-a2e4-4d24-aa02-10ccc4ae78df" + "NORTHCENTRALUS:20210831T220020Z:59dc582c-9bbb-4054-b70d-d72d4733ae8a" ], "Date": [ - "Wed, 28 Jul 2021 13:28:29 GMT" + "Tue, 31 Aug 2021 22:00:20 GMT" ], "Content-Length": [ "1146" @@ -669,29 +669,29 @@ "-1" ], "Last-Modified": [ - "Wed, 28 Jul 2021 13:28:29 GMT" + "Tue, 31 Aug 2021 22:00:20 GMT" ] }, - "ResponseBody": "{\r\n \"name\": \"sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7\",\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet4816/providers/Microsoft.Batch/batchAccounts/azsmnet2256/certificates/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7\",\r\n \"type\": \"Microsoft.Batch/batchAccounts/certificates\",\r\n \"etag\": \"W/\\\"0x8D951CB9668BDB8\\\"\",\r\n \"properties\": {\r\n \"thumbprintAlgorithm\": \"sha1\",\r\n \"thumbprint\": \"cff2ab63c8c955aaf71989efa641b906558d9fb7\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"provisioningStateTransitionTime\": \"2021-07-28T13:28:29.3268045Z\",\r\n \"format\": \"Pfx\",\r\n \"publicData\": \"MIIBrzCCAV2gAwIBAgIQHZGt2k0LCLFKYYCFxlJnkTAJBgUrDgMCHQUAMBYxFDASBgNVBAMTC1Jvb3QgQWdlbmN5MB4XDTE2MDEwMTA3MDAwMFoXDTE4MDEwMTA3MDAwMFowEjEQMA4GA1UEAxMHbm9kZXNkazCBnzANBgkqhkiG9w0BAQEFAAOBjQAwgYkCgYEAuX4XMWyR8cQRCA81TjHOerNOFOpOBj2O8jEdZvqwRlUYgMleEY2OlPd+nalxwlQ9+qbNkNGfjnhIMgiJ5CMlXgdRMF3E6DnMnktmHFG9L0VmQ6Lgt7bhXR8IitRHeYlvy5LJlw6Lcle5Kas2j4ThYjLQbjBMDSXD4HvZNe4UYEUCAwEAAaNLMEkwRwYDVR0BBEAwPoAQEuQJLQYdHU8AjWEh3BZkY6EYMBYxFDASBgNVBAMTC1Jvb3QgQWdlbmN5ghAGN2wAqgBkihHPuNSqXDX0MAkGBSsOAwIdBQADQQB5djPe0G6c3Z8DuR6EQbIhBMTnC0zYPhigq+x1LG83761Ir8PiSy+6oxwCHOaYZyvheW0PByntC/WFwUipfn78\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7\",\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet7833/providers/Microsoft.Batch/batchAccounts/azsmnet7577/certificates/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7\",\r\n \"type\": \"Microsoft.Batch/batchAccounts/certificates\",\r\n \"etag\": \"W/\\\"0x8D96CCAB97154A6\\\"\",\r\n \"properties\": {\r\n \"thumbprintAlgorithm\": \"sha1\",\r\n \"thumbprint\": \"cff2ab63c8c955aaf71989efa641b906558d9fb7\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"provisioningStateTransitionTime\": \"2021-08-31T22:00:20.0002788Z\",\r\n \"format\": \"Pfx\",\r\n \"publicData\": \"MIIBrzCCAV2gAwIBAgIQHZGt2k0LCLFKYYCFxlJnkTAJBgUrDgMCHQUAMBYxFDASBgNVBAMTC1Jvb3QgQWdlbmN5MB4XDTE2MDEwMTA3MDAwMFoXDTE4MDEwMTA3MDAwMFowEjEQMA4GA1UEAxMHbm9kZXNkazCBnzANBgkqhkiG9w0BAQEFAAOBjQAwgYkCgYEAuX4XMWyR8cQRCA81TjHOerNOFOpOBj2O8jEdZvqwRlUYgMleEY2OlPd+nalxwlQ9+qbNkNGfjnhIMgiJ5CMlXgdRMF3E6DnMnktmHFG9L0VmQ6Lgt7bhXR8IitRHeYlvy5LJlw6Lcle5Kas2j4ThYjLQbjBMDSXD4HvZNe4UYEUCAwEAAaNLMEkwRwYDVR0BBEAwPoAQEuQJLQYdHU8AjWEh3BZkY6EYMBYxFDASBgNVBAMTC1Jvb3QgQWdlbmN5ghAGN2wAqgBkihHPuNSqXDX0MAkGBSsOAwIdBQADQQB5djPe0G6c3Z8DuR6EQbIhBMTnC0zYPhigq+x1LG83761Ir8PiSy+6oxwCHOaYZyvheW0PByntC/WFwUipfn78\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet4816/providers/Microsoft.Batch/batchAccounts/azsmnet2256/certificates/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0ODE2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0MjI1Ni9jZXJ0aWZpY2F0ZXMvc2hhMS1jZmYyYWI2M2M4Yzk1NWFhZjcxOTg5ZWZhNjQxYjkwNjU1OGQ5ZmI3P2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet7833/providers/Microsoft.Batch/batchAccounts/azsmnet7577/certificates/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ3ODMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0NzU3Ny9jZXJ0aWZpY2F0ZXMvc2hhMS1jZmYyYWI2M2M4Yzk1NWFhZjcxOTg5ZWZhNjQxYjkwNjU1OGQ5ZmI3P2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "65012c53-e86b-4f3a-8952-fc9b05dd9577" + "545ca445-dff9-40d6-9191-12104e58c3b1" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.6.30411.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/15.0.0.0" + "Microsoft.Azure.Management.Batch.BatchManagementClient/14.0.0.0" ] }, "ResponseHeaders": { @@ -702,13 +702,13 @@ "no-cache" ], "Location": [ - "https://centraluseuap.management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet4816/providers/Microsoft.Batch/batchAccounts/azsmnet2256/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8D951CB970A97B2?api-version=2021-06-01" + "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet7833/providers/Microsoft.Batch/batchAccounts/azsmnet7577/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8D96CCABA176675?api-version=2021-06-01" ], "Retry-After": [ "15" ], "x-ms-request-id": [ - "f0d95b26-54d5-4db8-a956-4a8e9e184cfb" + "78b5b4cb-3662-464b-88fa-99fa8522940e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -720,16 +720,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14996" + "14999" ], "x-ms-correlation-request-id": [ - "1304a867-154a-4058-abb0-3ee8609b824f" + "33df456f-0f37-4f1e-84ed-21cd0b1fe395" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20210728T132830Z:1304a867-154a-4058-abb0-3ee8609b824f" + "NORTHCENTRALUS:20210831T220021Z:33df456f-0f37-4f1e-84ed-21cd0b1fe395" ], "Date": [ - "Wed, 28 Jul 2021 13:28:30 GMT" + "Tue, 31 Aug 2021 22:00:21 GMT" ], "Expires": [ "-1" @@ -742,16 +742,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet4816/providers/Microsoft.Batch/batchAccounts/azsmnet2256/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8D951CB970A97B2?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0ODE2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0MjI1Ni9jZXJ0aWZpY2F0ZU9wZXJhdGlvblJlc3VsdHMvc2hhMS1jZmYyYWI2M2M4Yzk1NWFhZjcxOTg5ZWZhNjQxYjkwNjU1OGQ5ZmI3LThEOTUxQ0I5NzBBOTdCMj9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet7833/providers/Microsoft.Batch/batchAccounts/azsmnet7577/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8D96CCABA176675?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ3ODMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0NzU3Ny9jZXJ0aWZpY2F0ZU9wZXJhdGlvblJlc3VsdHMvc2hhMS1jZmYyYWI2M2M4Yzk1NWFhZjcxOTg5ZWZhNjQxYjkwNjU1OGQ5ZmI3LThEOTZDQ0FCQTE3NjY3NT9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.6.30411.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/15.0.0.0" + "Microsoft.Azure.Management.Batch.BatchManagementClient/14.0.0.0" ] }, "ResponseHeaders": { @@ -762,13 +762,13 @@ "no-cache" ], "Location": [ - "https://centraluseuap.management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet4816/providers/Microsoft.Batch/batchAccounts/azsmnet2256/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d951cb970a97b2?api-version=2021-06-01" + "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet7833/providers/Microsoft.Batch/batchAccounts/azsmnet7577/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d96ccaba176675?api-version=2021-06-01" ], "Retry-After": [ "15" ], "x-ms-request-id": [ - "2bdd5906-b6b6-4bf5-a322-1d13097ec254" + "7537becd-9d34-439e-a097-d2e90c50bd2c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -780,16 +780,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11980" + "11996" ], "x-ms-correlation-request-id": [ - "6e14f3e1-ac02-4d8a-9991-4f550e46794c" + "6d9260d5-4eee-4776-94df-1b1d75e09556" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20210728T132845Z:6e14f3e1-ac02-4d8a-9991-4f550e46794c" + "NORTHCENTRALUS:20210831T220036Z:6d9260d5-4eee-4776-94df-1b1d75e09556" ], "Date": [ - "Wed, 28 Jul 2021 13:28:44 GMT" + "Tue, 31 Aug 2021 22:00:36 GMT" ], "Expires": [ "-1" @@ -802,16 +802,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet4816/providers/Microsoft.Batch/batchAccounts/azsmnet2256/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d951cb970a97b2?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0ODE2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0MjI1Ni9jZXJ0aWZpY2F0ZU9wZXJhdGlvblJlc3VsdHMvc2hhMS1jZmYyYWI2M2M4Yzk1NWFhZjcxOTg5ZWZhNjQxYjkwNjU1OGQ5ZmI3LThkOTUxY2I5NzBhOTdiMj9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet7833/providers/Microsoft.Batch/batchAccounts/azsmnet7577/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d96ccaba176675?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ3ODMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0NzU3Ny9jZXJ0aWZpY2F0ZU9wZXJhdGlvblJlc3VsdHMvc2hhMS1jZmYyYWI2M2M4Yzk1NWFhZjcxOTg5ZWZhNjQxYjkwNjU1OGQ5ZmI3LThkOTZjY2FiYTE3NjY3NT9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.6.30411.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/15.0.0.0" + "Microsoft.Azure.Management.Batch.BatchManagementClient/14.0.0.0" ] }, "ResponseHeaders": { @@ -822,13 +822,13 @@ "no-cache" ], "Location": [ - "https://centraluseuap.management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet4816/providers/Microsoft.Batch/batchAccounts/azsmnet2256/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d951cb970a97b2?api-version=2021-06-01" + "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet7833/providers/Microsoft.Batch/batchAccounts/azsmnet7577/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d96ccaba176675?api-version=2021-06-01" ], "Retry-After": [ "15" ], "x-ms-request-id": [ - "7fd1defa-c904-4512-bf2c-b7744378f34e" + "5e54aa7d-97dd-44ec-a591-6a5dd304c540" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -840,16 +840,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11979" + "11995" ], "x-ms-correlation-request-id": [ - "a535bb76-5f72-425f-9d48-ab28318f1829" + "e935d796-273e-49e2-96a0-41625ea83f52" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20210728T132900Z:a535bb76-5f72-425f-9d48-ab28318f1829" + "NORTHCENTRALUS:20210831T220051Z:e935d796-273e-49e2-96a0-41625ea83f52" ], "Date": [ - "Wed, 28 Jul 2021 13:29:00 GMT" + "Tue, 31 Aug 2021 22:00:50 GMT" ], "Expires": [ "-1" @@ -862,16 +862,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet4816/providers/Microsoft.Batch/batchAccounts/azsmnet2256/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d951cb970a97b2?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0ODE2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0MjI1Ni9jZXJ0aWZpY2F0ZU9wZXJhdGlvblJlc3VsdHMvc2hhMS1jZmYyYWI2M2M4Yzk1NWFhZjcxOTg5ZWZhNjQxYjkwNjU1OGQ5ZmI3LThkOTUxY2I5NzBhOTdiMj9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet7833/providers/Microsoft.Batch/batchAccounts/azsmnet7577/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d96ccaba176675?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ3ODMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0NzU3Ny9jZXJ0aWZpY2F0ZU9wZXJhdGlvblJlc3VsdHMvc2hhMS1jZmYyYWI2M2M4Yzk1NWFhZjcxOTg5ZWZhNjQxYjkwNjU1OGQ5ZmI3LThkOTZjY2FiYTE3NjY3NT9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.6.30411.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/15.0.0.0" + "Microsoft.Azure.Management.Batch.BatchManagementClient/14.0.0.0" ] }, "ResponseHeaders": { @@ -882,13 +882,13 @@ "no-cache" ], "Location": [ - "https://centraluseuap.management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet4816/providers/Microsoft.Batch/batchAccounts/azsmnet2256/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d951cb970a97b2?api-version=2021-06-01" + "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet7833/providers/Microsoft.Batch/batchAccounts/azsmnet7577/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d96ccaba176675?api-version=2021-06-01" ], "Retry-After": [ "15" ], "x-ms-request-id": [ - "bd3ada2e-0072-4ab5-8a48-48fe3ebabf87" + "87256f19-f707-4844-922c-0316530aa4d5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -900,16 +900,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11978" + "11994" ], "x-ms-correlation-request-id": [ - "0c6685d5-dc52-4ac2-ad16-08c618043dbc" + "aaf87756-dbf4-4503-9c19-516fc4af2c23" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20210728T132915Z:0c6685d5-dc52-4ac2-ad16-08c618043dbc" + "NORTHCENTRALUS:20210831T220106Z:aaf87756-dbf4-4503-9c19-516fc4af2c23" ], "Date": [ - "Wed, 28 Jul 2021 13:29:15 GMT" + "Tue, 31 Aug 2021 22:01:05 GMT" ], "Expires": [ "-1" @@ -922,16 +922,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet4816/providers/Microsoft.Batch/batchAccounts/azsmnet2256/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d951cb970a97b2?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0ODE2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0MjI1Ni9jZXJ0aWZpY2F0ZU9wZXJhdGlvblJlc3VsdHMvc2hhMS1jZmYyYWI2M2M4Yzk1NWFhZjcxOTg5ZWZhNjQxYjkwNjU1OGQ5ZmI3LThkOTUxY2I5NzBhOTdiMj9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet7833/providers/Microsoft.Batch/batchAccounts/azsmnet7577/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d96ccaba176675?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ3ODMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0NzU3Ny9jZXJ0aWZpY2F0ZU9wZXJhdGlvblJlc3VsdHMvc2hhMS1jZmYyYWI2M2M4Yzk1NWFhZjcxOTg5ZWZhNjQxYjkwNjU1OGQ5ZmI3LThkOTZjY2FiYTE3NjY3NT9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.6.30411.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/15.0.0.0" + "Microsoft.Azure.Management.Batch.BatchManagementClient/14.0.0.0" ] }, "ResponseHeaders": { @@ -942,13 +942,13 @@ "no-cache" ], "Location": [ - "https://centraluseuap.management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet4816/providers/Microsoft.Batch/batchAccounts/azsmnet2256/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d951cb970a97b2?api-version=2021-06-01" + "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet7833/providers/Microsoft.Batch/batchAccounts/azsmnet7577/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d96ccaba176675?api-version=2021-06-01" ], "Retry-After": [ "15" ], "x-ms-request-id": [ - "b17e328a-64ea-434f-b9e1-36aea29f53f9" + "a9bbcbea-fdde-433f-acf9-87a61d961ec6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -960,16 +960,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11977" + "11993" ], "x-ms-correlation-request-id": [ - "abfb9637-c73b-49a4-a57b-a9e1edda8f02" + "424e86d3-33c4-4a8e-8c1b-2bd333ff61b6" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20210728T132930Z:abfb9637-c73b-49a4-a57b-a9e1edda8f02" + "NORTHCENTRALUS:20210831T220121Z:424e86d3-33c4-4a8e-8c1b-2bd333ff61b6" ], "Date": [ - "Wed, 28 Jul 2021 13:29:30 GMT" + "Tue, 31 Aug 2021 22:01:21 GMT" ], "Expires": [ "-1" @@ -982,16 +982,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet4816/providers/Microsoft.Batch/batchAccounts/azsmnet2256/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d951cb970a97b2?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0ODE2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0MjI1Ni9jZXJ0aWZpY2F0ZU9wZXJhdGlvblJlc3VsdHMvc2hhMS1jZmYyYWI2M2M4Yzk1NWFhZjcxOTg5ZWZhNjQxYjkwNjU1OGQ5ZmI3LThkOTUxY2I5NzBhOTdiMj9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet7833/providers/Microsoft.Batch/batchAccounts/azsmnet7577/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d96ccaba176675?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ3ODMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0NzU3Ny9jZXJ0aWZpY2F0ZU9wZXJhdGlvblJlc3VsdHMvc2hhMS1jZmYyYWI2M2M4Yzk1NWFhZjcxOTg5ZWZhNjQxYjkwNjU1OGQ5ZmI3LThkOTZjY2FiYTE3NjY3NT9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.6.30411.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/15.0.0.0" + "Microsoft.Azure.Management.Batch.BatchManagementClient/14.0.0.0" ] }, "ResponseHeaders": { @@ -1002,7 +1002,7 @@ "no-cache" ], "x-ms-request-id": [ - "4b9fd26b-0652-4105-82c8-e393fb9b51d7" + "938c03aa-8a42-452f-b6d7-ce33ab4764ec" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1014,16 +1014,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11976" + "11992" ], "x-ms-correlation-request-id": [ - "ee6cfcc5-4657-405f-85e6-21bb8df83f10" + "d2ff224f-297b-4aa9-84b4-148f529e6389" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20210728T132946Z:ee6cfcc5-4657-405f-85e6-21bb8df83f10" + "NORTHCENTRALUS:20210831T220136Z:d2ff224f-297b-4aa9-84b4-148f529e6389" ], "Date": [ - "Wed, 28 Jul 2021 13:29:45 GMT" + "Tue, 31 Aug 2021 22:01:36 GMT" ], "Expires": [ "-1" @@ -1036,16 +1036,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet4816/providers/Microsoft.Batch/batchAccounts/azsmnet2256/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d951cb970a97b2?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0ODE2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0MjI1Ni9jZXJ0aWZpY2F0ZU9wZXJhdGlvblJlc3VsdHMvc2hhMS1jZmYyYWI2M2M4Yzk1NWFhZjcxOTg5ZWZhNjQxYjkwNjU1OGQ5ZmI3LThkOTUxY2I5NzBhOTdiMj9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet7833/providers/Microsoft.Batch/batchAccounts/azsmnet7577/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d96ccaba176675?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ3ODMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0NzU3Ny9jZXJ0aWZpY2F0ZU9wZXJhdGlvblJlc3VsdHMvc2hhMS1jZmYyYWI2M2M4Yzk1NWFhZjcxOTg5ZWZhNjQxYjkwNjU1OGQ5ZmI3LThkOTZjY2FiYTE3NjY3NT9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.6.30411.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/15.0.0.0" + "Microsoft.Azure.Management.Batch.BatchManagementClient/14.0.0.0" ] }, "ResponseHeaders": { @@ -1056,7 +1056,7 @@ "no-cache" ], "x-ms-request-id": [ - "1802ccfd-8409-40a8-95eb-d1d1001f708d" + "4af517c0-a082-4a56-8a2c-59e4ab975a27" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1068,16 +1068,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11975" + "11991" ], "x-ms-correlation-request-id": [ - "3e5ceea5-3b28-4796-b874-341838c068ba" + "6787d4b0-04c6-4c44-9e87-26150f4f3e6b" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20210728T132946Z:3e5ceea5-3b28-4796-b874-341838c068ba" + "NORTHCENTRALUS:20210831T220136Z:6787d4b0-04c6-4c44-9e87-26150f4f3e6b" ], "Date": [ - "Wed, 28 Jul 2021 13:29:45 GMT" + "Tue, 31 Aug 2021 22:01:36 GMT" ], "Expires": [ "-1" @@ -1090,22 +1090,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet4816/providers/Microsoft.Batch/batchAccounts/azsmnet2256?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0ODE2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0MjI1Nj9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet7833/providers/Microsoft.Batch/batchAccounts/azsmnet7577?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ3ODMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0NzU3Nz9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f11f01fc-22f3-444a-969a-afbdf5de1a57" + "767474b8-239e-496c-b916-be6868cf69e6" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.6.30411.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/15.0.0.0" + "Microsoft.Azure.Management.Batch.BatchManagementClient/14.0.0.0" ] }, "ResponseHeaders": { @@ -1116,13 +1116,13 @@ "no-cache" ], "Location": [ - "https://centraluseuap.management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet2256-f156754e-eb96-4efe-9e7a-aff911d36002?api-version=2021-06-01" + "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/westus/accountOperationResults/azsmnet7577-69df26f1-8376-4041-abfd-0e8a934ab26b?api-version=2021-06-01" ], "Retry-After": [ "15" ], "x-ms-request-id": [ - "f156754e-eb96-4efe-9e7a-aff911d36002" + "69df26f1-8376-4041-abfd-0e8a934ab26b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1134,16 +1134,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14995" + "14998" ], "x-ms-correlation-request-id": [ - "62e815ea-0496-4071-8faa-4a2164a3d478" + "92f0a680-7cab-4b4e-b25f-ad74ac695cb9" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20210728T132946Z:62e815ea-0496-4071-8faa-4a2164a3d478" + "NORTHCENTRALUS:20210831T220137Z:92f0a680-7cab-4b4e-b25f-ad74ac695cb9" ], "Date": [ - "Wed, 28 Jul 2021 13:29:46 GMT" + "Tue, 31 Aug 2021 22:01:37 GMT" ], "Expires": [ "-1" @@ -1156,16 +1156,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet2256-f156754e-eb96-4efe-9e7a-aff911d36002?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0MjI1Ni1mMTU2NzU0ZS1lYjk2LTRlZmUtOWU3YS1hZmY5MTFkMzYwMDI/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/westus/accountOperationResults/azsmnet7577-69df26f1-8376-4041-abfd-0e8a934ab26b?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL3dlc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0NzU3Ny02OWRmMjZmMS04Mzc2LTQwNDEtYWJmZC0wZThhOTM0YWIyNmI/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.6.30411.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/15.0.0.0" + "Microsoft.Azure.Management.Batch.BatchManagementClient/14.0.0.0" ] }, "ResponseHeaders": { @@ -1176,13 +1176,13 @@ "no-cache" ], "Location": [ - "https://centraluseuap.management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet2256-f156754e-eb96-4efe-9e7a-aff911d36002?api-version=2021-06-01" + "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/westus/accountOperationResults/azsmnet7577-69df26f1-8376-4041-abfd-0e8a934ab26b?api-version=2021-06-01" ], "Retry-After": [ "15" ], "x-ms-request-id": [ - "92de92e2-f1d6-40a3-bdbb-eb079bf53c2f" + "d1d1d33e-9a2e-484d-9137-eaf7958c680f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1194,16 +1194,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11973" + "11989" ], "x-ms-correlation-request-id": [ - "f4ce2329-bead-44a7-b31c-5fb5ee3dbf7e" + "bbc7b53f-3f28-480b-bf4d-3ff90c4350f7" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20210728T133001Z:f4ce2329-bead-44a7-b31c-5fb5ee3dbf7e" + "NORTHCENTRALUS:20210831T220152Z:bbc7b53f-3f28-480b-bf4d-3ff90c4350f7" ], "Date": [ - "Wed, 28 Jul 2021 13:30:01 GMT" + "Tue, 31 Aug 2021 22:01:51 GMT" ], "Expires": [ "-1" @@ -1216,16 +1216,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet2256-f156754e-eb96-4efe-9e7a-aff911d36002?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0MjI1Ni1mMTU2NzU0ZS1lYjk2LTRlZmUtOWU3YS1hZmY5MTFkMzYwMDI/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/westus/accountOperationResults/azsmnet7577-69df26f1-8376-4041-abfd-0e8a934ab26b?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL3dlc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0NzU3Ny02OWRmMjZmMS04Mzc2LTQwNDEtYWJmZC0wZThhOTM0YWIyNmI/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.6.30411.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/15.0.0.0" + "Microsoft.Azure.Management.Batch.BatchManagementClient/14.0.0.0" ] }, "ResponseHeaders": { @@ -1236,13 +1236,13 @@ "no-cache" ], "Location": [ - "https://centraluseuap.management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet2256-f156754e-eb96-4efe-9e7a-aff911d36002?api-version=2021-06-01" + "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/westus/accountOperationResults/azsmnet7577-69df26f1-8376-4041-abfd-0e8a934ab26b?api-version=2021-06-01" ], "Retry-After": [ "15" ], "x-ms-request-id": [ - "4e461198-4b5f-4d3d-b086-1284159fe0cd" + "963fa4a3-5a61-46dc-9e9a-cf60dde92c60" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1254,16 +1254,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11972" + "11988" ], "x-ms-correlation-request-id": [ - "ad086f28-212e-424d-8801-544a55117d9f" + "bd5d1bc3-efd6-45be-997d-f581f4ae263b" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20210728T133016Z:ad086f28-212e-424d-8801-544a55117d9f" + "NORTHCENTRALUS:20210831T220207Z:bd5d1bc3-efd6-45be-997d-f581f4ae263b" ], "Date": [ - "Wed, 28 Jul 2021 13:30:16 GMT" + "Tue, 31 Aug 2021 22:02:07 GMT" ], "Expires": [ "-1" @@ -1276,16 +1276,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet2256-f156754e-eb96-4efe-9e7a-aff911d36002?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0MjI1Ni1mMTU2NzU0ZS1lYjk2LTRlZmUtOWU3YS1hZmY5MTFkMzYwMDI/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/westus/accountOperationResults/azsmnet7577-69df26f1-8376-4041-abfd-0e8a934ab26b?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL3dlc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0NzU3Ny02OWRmMjZmMS04Mzc2LTQwNDEtYWJmZC0wZThhOTM0YWIyNmI/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.6.30411.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/15.0.0.0" + "Microsoft.Azure.Management.Batch.BatchManagementClient/14.0.0.0" ] }, "ResponseHeaders": { @@ -1296,13 +1296,13 @@ "no-cache" ], "Location": [ - "https://centraluseuap.management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet2256-f156754e-eb96-4efe-9e7a-aff911d36002?api-version=2021-06-01" + "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/westus/accountOperationResults/azsmnet7577-69df26f1-8376-4041-abfd-0e8a934ab26b?api-version=2021-06-01" ], "Retry-After": [ "15" ], "x-ms-request-id": [ - "bd299855-7882-41e0-a4fd-34a1d8fd0ee9" + "c02bf4de-1473-4df4-92d6-eb7c8a0f95ad" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1314,16 +1314,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11971" + "11987" ], "x-ms-correlation-request-id": [ - "bc1d31fe-0678-49a2-b732-e442a2222635" + "91cfea1c-d02a-4c74-9f0d-15384057ba1e" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20210728T133032Z:bc1d31fe-0678-49a2-b732-e442a2222635" + "NORTHCENTRALUS:20210831T220222Z:91cfea1c-d02a-4c74-9f0d-15384057ba1e" ], "Date": [ - "Wed, 28 Jul 2021 13:30:31 GMT" + "Tue, 31 Aug 2021 22:02:22 GMT" ], "Expires": [ "-1" @@ -1336,16 +1336,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet2256-f156754e-eb96-4efe-9e7a-aff911d36002?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0MjI1Ni1mMTU2NzU0ZS1lYjk2LTRlZmUtOWU3YS1hZmY5MTFkMzYwMDI/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/westus/accountOperationResults/azsmnet7577-69df26f1-8376-4041-abfd-0e8a934ab26b?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL3dlc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0NzU3Ny02OWRmMjZmMS04Mzc2LTQwNDEtYWJmZC0wZThhOTM0YWIyNmI/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.6.30411.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/15.0.0.0" + "Microsoft.Azure.Management.Batch.BatchManagementClient/14.0.0.0" ] }, "ResponseHeaders": { @@ -1356,13 +1356,13 @@ "no-cache" ], "Location": [ - "https://centraluseuap.management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet2256-f156754e-eb96-4efe-9e7a-aff911d36002?api-version=2021-06-01" + "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/westus/accountOperationResults/azsmnet7577-69df26f1-8376-4041-abfd-0e8a934ab26b?api-version=2021-06-01" ], "Retry-After": [ "15" ], "x-ms-request-id": [ - "defa9376-3f09-4714-bb92-b6e3cd50a497" + "e504178c-7a60-43f7-9df1-48b85c4c5470" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1374,16 +1374,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11970" + "11986" ], "x-ms-correlation-request-id": [ - "92da2810-6fb1-41c8-9ff0-df13c4451e2a" + "661c6f97-8b67-4027-89e7-8aa4d75afc7d" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20210728T133047Z:92da2810-6fb1-41c8-9ff0-df13c4451e2a" + "NORTHCENTRALUS:20210831T220238Z:661c6f97-8b67-4027-89e7-8aa4d75afc7d" ], "Date": [ - "Wed, 28 Jul 2021 13:30:46 GMT" + "Tue, 31 Aug 2021 22:02:37 GMT" ], "Expires": [ "-1" @@ -1396,16 +1396,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet2256-f156754e-eb96-4efe-9e7a-aff911d36002?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0MjI1Ni1mMTU2NzU0ZS1lYjk2LTRlZmUtOWU3YS1hZmY5MTFkMzYwMDI/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/westus/accountOperationResults/azsmnet7577-69df26f1-8376-4041-abfd-0e8a934ab26b?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL3dlc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0NzU3Ny02OWRmMjZmMS04Mzc2LTQwNDEtYWJmZC0wZThhOTM0YWIyNmI/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.6.30411.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/15.0.0.0" + "Microsoft.Azure.Management.Batch.BatchManagementClient/14.0.0.0" ] }, "ResponseHeaders": { @@ -1416,13 +1416,13 @@ "no-cache" ], "Location": [ - "https://centraluseuap.management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet2256-f156754e-eb96-4efe-9e7a-aff911d36002?api-version=2021-06-01" + "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/westus/accountOperationResults/azsmnet7577-69df26f1-8376-4041-abfd-0e8a934ab26b?api-version=2021-06-01" ], "Retry-After": [ "15" ], "x-ms-request-id": [ - "bd0c93a3-436d-45a6-83f4-7e58b22a909a" + "3ab47277-5a9c-4be6-a890-6bef4914f9e9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1434,16 +1434,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11969" + "11985" ], "x-ms-correlation-request-id": [ - "acab868d-0596-41d9-9414-1262429e7ad9" + "72bda906-b1d4-4382-8029-008dfa7ff15c" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20210728T133102Z:acab868d-0596-41d9-9414-1262429e7ad9" + "NORTHCENTRALUS:20210831T220253Z:72bda906-b1d4-4382-8029-008dfa7ff15c" ], "Date": [ - "Wed, 28 Jul 2021 13:31:01 GMT" + "Tue, 31 Aug 2021 22:02:52 GMT" ], "Expires": [ "-1" @@ -1456,16 +1456,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet2256-f156754e-eb96-4efe-9e7a-aff911d36002?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0MjI1Ni1mMTU2NzU0ZS1lYjk2LTRlZmUtOWU3YS1hZmY5MTFkMzYwMDI/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/westus/accountOperationResults/azsmnet7577-69df26f1-8376-4041-abfd-0e8a934ab26b?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL3dlc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0NzU3Ny02OWRmMjZmMS04Mzc2LTQwNDEtYWJmZC0wZThhOTM0YWIyNmI/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.6.30411.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/15.0.0.0" + "Microsoft.Azure.Management.Batch.BatchManagementClient/14.0.0.0" ] }, "ResponseHeaders": { @@ -1476,13 +1476,13 @@ "no-cache" ], "Location": [ - "https://centraluseuap.management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet2256-f156754e-eb96-4efe-9e7a-aff911d36002?api-version=2021-06-01" + "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/westus/accountOperationResults/azsmnet7577-69df26f1-8376-4041-abfd-0e8a934ab26b?api-version=2021-06-01" ], "Retry-After": [ "15" ], "x-ms-request-id": [ - "4fb60bf5-60c3-4e55-9c34-cafd0e30adea" + "e540eebb-f273-4de7-a638-7f4a43d13bc1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1494,16 +1494,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11968" + "11984" ], "x-ms-correlation-request-id": [ - "f3e14629-a932-496a-9768-959f55f7f37b" + "0f1c79fa-c24a-4fa7-95cb-e1b6668b6e85" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20210728T133117Z:f3e14629-a932-496a-9768-959f55f7f37b" + "NORTHCENTRALUS:20210831T220308Z:0f1c79fa-c24a-4fa7-95cb-e1b6668b6e85" ], "Date": [ - "Wed, 28 Jul 2021 13:31:16 GMT" + "Tue, 31 Aug 2021 22:03:08 GMT" ], "Expires": [ "-1" @@ -1516,16 +1516,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet2256-f156754e-eb96-4efe-9e7a-aff911d36002?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0MjI1Ni1mMTU2NzU0ZS1lYjk2LTRlZmUtOWU3YS1hZmY5MTFkMzYwMDI/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/westus/accountOperationResults/azsmnet7577-69df26f1-8376-4041-abfd-0e8a934ab26b?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL3dlc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0NzU3Ny02OWRmMjZmMS04Mzc2LTQwNDEtYWJmZC0wZThhOTM0YWIyNmI/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.6.30411.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/15.0.0.0" + "Microsoft.Azure.Management.Batch.BatchManagementClient/14.0.0.0" ] }, "ResponseHeaders": { @@ -1536,13 +1536,13 @@ "no-cache" ], "Location": [ - "https://centraluseuap.management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet2256-f156754e-eb96-4efe-9e7a-aff911d36002?api-version=2021-06-01" + "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/westus/accountOperationResults/azsmnet7577-69df26f1-8376-4041-abfd-0e8a934ab26b?api-version=2021-06-01" ], "Retry-After": [ "15" ], "x-ms-request-id": [ - "efc9d440-7e74-4b32-8973-20482b5b6eba" + "adabb2e3-3190-4867-9e1d-5b1be0f46837" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1554,16 +1554,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11967" + "11983" ], "x-ms-correlation-request-id": [ - "1a9eb1cf-42ad-4c9b-a9fe-984b15a47d6c" + "d4583349-2f85-4bb2-9e9c-ac4c74d98eb1" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20210728T133132Z:1a9eb1cf-42ad-4c9b-a9fe-984b15a47d6c" + "NORTHCENTRALUS:20210831T220323Z:d4583349-2f85-4bb2-9e9c-ac4c74d98eb1" ], "Date": [ - "Wed, 28 Jul 2021 13:31:31 GMT" + "Tue, 31 Aug 2021 22:03:22 GMT" ], "Expires": [ "-1" @@ -1576,16 +1576,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet2256-f156754e-eb96-4efe-9e7a-aff911d36002?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0MjI1Ni1mMTU2NzU0ZS1lYjk2LTRlZmUtOWU3YS1hZmY5MTFkMzYwMDI/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/westus/accountOperationResults/azsmnet7577-69df26f1-8376-4041-abfd-0e8a934ab26b?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL3dlc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0NzU3Ny02OWRmMjZmMS04Mzc2LTQwNDEtYWJmZC0wZThhOTM0YWIyNmI/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.6.30411.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/15.0.0.0" + "Microsoft.Azure.Management.Batch.BatchManagementClient/14.0.0.0" ] }, "ResponseHeaders": { @@ -1596,13 +1596,13 @@ "no-cache" ], "Location": [ - "https://centraluseuap.management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet2256-f156754e-eb96-4efe-9e7a-aff911d36002?api-version=2021-06-01" + "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/westus/accountOperationResults/azsmnet7577-69df26f1-8376-4041-abfd-0e8a934ab26b?api-version=2021-06-01" ], "Retry-After": [ "15" ], "x-ms-request-id": [ - "f486f47b-99e2-4d79-95f3-4235672ed879" + "3585c181-5e16-44fe-bffb-dcc62625d925" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1614,16 +1614,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11966" + "11982" ], "x-ms-correlation-request-id": [ - "a9494745-9141-47a5-8947-3aa931c3a57e" + "0e2597e8-2530-4960-b3f2-7513f717cd04" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20210728T133147Z:a9494745-9141-47a5-8947-3aa931c3a57e" + "NORTHCENTRALUS:20210831T220338Z:0e2597e8-2530-4960-b3f2-7513f717cd04" ], "Date": [ - "Wed, 28 Jul 2021 13:31:46 GMT" + "Tue, 31 Aug 2021 22:03:37 GMT" ], "Expires": [ "-1" @@ -1636,16 +1636,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet2256-f156754e-eb96-4efe-9e7a-aff911d36002?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0MjI1Ni1mMTU2NzU0ZS1lYjk2LTRlZmUtOWU3YS1hZmY5MTFkMzYwMDI/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/westus/accountOperationResults/azsmnet7577-69df26f1-8376-4041-abfd-0e8a934ab26b?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL3dlc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0NzU3Ny02OWRmMjZmMS04Mzc2LTQwNDEtYWJmZC0wZThhOTM0YWIyNmI/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.6.30411.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/15.0.0.0" + "Microsoft.Azure.Management.Batch.BatchManagementClient/14.0.0.0" ] }, "ResponseHeaders": { @@ -1656,13 +1656,13 @@ "no-cache" ], "Location": [ - "https://centraluseuap.management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet2256-f156754e-eb96-4efe-9e7a-aff911d36002?api-version=2021-06-01" + "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/westus/accountOperationResults/azsmnet7577-69df26f1-8376-4041-abfd-0e8a934ab26b?api-version=2021-06-01" ], "Retry-After": [ "15" ], "x-ms-request-id": [ - "ae87cb29-84b9-4671-a94a-feb87b11b417" + "599dfe4d-e6e1-4506-bbd7-523f06129ecd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1674,16 +1674,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11965" + "11981" ], "x-ms-correlation-request-id": [ - "d726ffee-5038-4130-80f5-0522ec080560" + "239eb1e4-5ccf-4c05-b00e-d003f2009ef7" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20210728T133202Z:d726ffee-5038-4130-80f5-0522ec080560" + "NORTHCENTRALUS:20210831T220353Z:239eb1e4-5ccf-4c05-b00e-d003f2009ef7" ], "Date": [ - "Wed, 28 Jul 2021 13:32:02 GMT" + "Tue, 31 Aug 2021 22:03:52 GMT" ], "Expires": [ "-1" @@ -1696,16 +1696,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet2256-f156754e-eb96-4efe-9e7a-aff911d36002?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0MjI1Ni1mMTU2NzU0ZS1lYjk2LTRlZmUtOWU3YS1hZmY5MTFkMzYwMDI/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/westus/accountOperationResults/azsmnet7577-69df26f1-8376-4041-abfd-0e8a934ab26b?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL3dlc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0NzU3Ny02OWRmMjZmMS04Mzc2LTQwNDEtYWJmZC0wZThhOTM0YWIyNmI/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.6.30411.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/15.0.0.0" + "Microsoft.Azure.Management.Batch.BatchManagementClient/14.0.0.0" ] }, "ResponseHeaders": { @@ -1716,13 +1716,13 @@ "no-cache" ], "Location": [ - "https://centraluseuap.management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet2256-f156754e-eb96-4efe-9e7a-aff911d36002?api-version=2021-06-01" + "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/westus/accountOperationResults/azsmnet7577-69df26f1-8376-4041-abfd-0e8a934ab26b?api-version=2021-06-01" ], "Retry-After": [ "15" ], "x-ms-request-id": [ - "c413b20e-4049-45c5-9d52-0939561bde86" + "245f222a-997a-4cee-8309-bd276a4932b5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1734,16 +1734,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11964" + "11980" ], "x-ms-correlation-request-id": [ - "8499eafb-46e2-4e7c-88a6-4a145d6fb871" + "b51c9c86-1da3-44f9-8595-3fe1ea14199a" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20210728T133217Z:8499eafb-46e2-4e7c-88a6-4a145d6fb871" + "NORTHCENTRALUS:20210831T220408Z:b51c9c86-1da3-44f9-8595-3fe1ea14199a" ], "Date": [ - "Wed, 28 Jul 2021 13:32:17 GMT" + "Tue, 31 Aug 2021 22:04:08 GMT" ], "Expires": [ "-1" @@ -1756,16 +1756,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet2256-f156754e-eb96-4efe-9e7a-aff911d36002?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0MjI1Ni1mMTU2NzU0ZS1lYjk2LTRlZmUtOWU3YS1hZmY5MTFkMzYwMDI/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/westus/accountOperationResults/azsmnet7577-69df26f1-8376-4041-abfd-0e8a934ab26b?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL3dlc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0NzU3Ny02OWRmMjZmMS04Mzc2LTQwNDEtYWJmZC0wZThhOTM0YWIyNmI/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.6.30411.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/15.0.0.0" + "Microsoft.Azure.Management.Batch.BatchManagementClient/14.0.0.0" ] }, "ResponseHeaders": { @@ -1776,13 +1776,13 @@ "no-cache" ], "Location": [ - "https://centraluseuap.management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet2256-f156754e-eb96-4efe-9e7a-aff911d36002?api-version=2021-06-01" + "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/westus/accountOperationResults/azsmnet7577-69df26f1-8376-4041-abfd-0e8a934ab26b?api-version=2021-06-01" ], "Retry-After": [ "15" ], "x-ms-request-id": [ - "9d17588e-5d48-4c7a-acae-d213d182fc6a" + "61447d8d-cc85-4b1f-b304-a46ebcc5b464" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1794,16 +1794,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11963" + "11979" ], "x-ms-correlation-request-id": [ - "129d9aac-e53d-489e-873a-7979aabf0166" + "7796f007-7790-4da2-a788-769cebdf5d7a" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20210728T133232Z:129d9aac-e53d-489e-873a-7979aabf0166" + "NORTHCENTRALUS:20210831T220423Z:7796f007-7790-4da2-a788-769cebdf5d7a" ], "Date": [ - "Wed, 28 Jul 2021 13:32:32 GMT" + "Tue, 31 Aug 2021 22:04:23 GMT" ], "Expires": [ "-1" @@ -1816,16 +1816,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet2256-f156754e-eb96-4efe-9e7a-aff911d36002?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0MjI1Ni1mMTU2NzU0ZS1lYjk2LTRlZmUtOWU3YS1hZmY5MTFkMzYwMDI/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/westus/accountOperationResults/azsmnet7577-69df26f1-8376-4041-abfd-0e8a934ab26b?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL3dlc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0NzU3Ny02OWRmMjZmMS04Mzc2LTQwNDEtYWJmZC0wZThhOTM0YWIyNmI/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.6.30411.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/15.0.0.0" + "Microsoft.Azure.Management.Batch.BatchManagementClient/14.0.0.0" ] }, "ResponseHeaders": { @@ -1836,13 +1836,13 @@ "no-cache" ], "Location": [ - "https://centraluseuap.management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet2256-f156754e-eb96-4efe-9e7a-aff911d36002?api-version=2021-06-01" + "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/westus/accountOperationResults/azsmnet7577-69df26f1-8376-4041-abfd-0e8a934ab26b?api-version=2021-06-01" ], "Retry-After": [ "15" ], "x-ms-request-id": [ - "4fbfa616-dd12-4ec9-9db1-cb11879a9011" + "a6e6bafc-fd17-418d-b028-f317b7995cee" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1850,20 +1850,20 @@ "X-Content-Type-Options": [ "nosniff" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11962" - ], "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11978" + ], "x-ms-correlation-request-id": [ - "481c79a2-6ab5-4742-9eb8-d9616db379a9" + "652a496b-f345-4fcf-b09c-af6c607533b2" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20210728T133247Z:481c79a2-6ab5-4742-9eb8-d9616db379a9" + "NORTHCENTRALUS:20210831T220438Z:652a496b-f345-4fcf-b09c-af6c607533b2" ], "Date": [ - "Wed, 28 Jul 2021 13:32:47 GMT" + "Tue, 31 Aug 2021 22:04:37 GMT" ], "Expires": [ "-1" @@ -1876,16 +1876,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet2256-f156754e-eb96-4efe-9e7a-aff911d36002?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0MjI1Ni1mMTU2NzU0ZS1lYjk2LTRlZmUtOWU3YS1hZmY5MTFkMzYwMDI/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/westus/accountOperationResults/azsmnet7577-69df26f1-8376-4041-abfd-0e8a934ab26b?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL3dlc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0NzU3Ny02OWRmMjZmMS04Mzc2LTQwNDEtYWJmZC0wZThhOTM0YWIyNmI/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.6.30411.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/15.0.0.0" + "Microsoft.Azure.Management.Batch.BatchManagementClient/14.0.0.0" ] }, "ResponseHeaders": { @@ -1896,13 +1896,13 @@ "no-cache" ], "Location": [ - "https://centraluseuap.management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet2256-f156754e-eb96-4efe-9e7a-aff911d36002?api-version=2021-06-01" + "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/westus/accountOperationResults/azsmnet7577-69df26f1-8376-4041-abfd-0e8a934ab26b?api-version=2021-06-01" ], "Retry-After": [ "15" ], "x-ms-request-id": [ - "c9df3e98-70b2-4f7a-a11d-f9a15a4141a8" + "d1a46f0b-29a2-4bf2-a9d9-3ae289845ebd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1914,16 +1914,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11961" + "11977" ], "x-ms-correlation-request-id": [ - "6e68f7c0-200b-44be-8899-3a6d18326463" + "b3fd83ac-539e-45b7-a9c3-2541de137af5" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20210728T133303Z:6e68f7c0-200b-44be-8899-3a6d18326463" + "NORTHCENTRALUS:20210831T220453Z:b3fd83ac-539e-45b7-a9c3-2541de137af5" ], "Date": [ - "Wed, 28 Jul 2021 13:33:02 GMT" + "Tue, 31 Aug 2021 22:04:53 GMT" ], "Expires": [ "-1" @@ -1936,16 +1936,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet2256-f156754e-eb96-4efe-9e7a-aff911d36002?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0MjI1Ni1mMTU2NzU0ZS1lYjk2LTRlZmUtOWU3YS1hZmY5MTFkMzYwMDI/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/westus/accountOperationResults/azsmnet7577-69df26f1-8376-4041-abfd-0e8a934ab26b?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL3dlc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0NzU3Ny02OWRmMjZmMS04Mzc2LTQwNDEtYWJmZC0wZThhOTM0YWIyNmI/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.6.30411.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/15.0.0.0" + "Microsoft.Azure.Management.Batch.BatchManagementClient/14.0.0.0" ] }, "ResponseHeaders": { @@ -1956,13 +1956,13 @@ "no-cache" ], "Location": [ - "https://centraluseuap.management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet2256-f156754e-eb96-4efe-9e7a-aff911d36002?api-version=2021-06-01" + "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/westus/accountOperationResults/azsmnet7577-69df26f1-8376-4041-abfd-0e8a934ab26b?api-version=2021-06-01" ], "Retry-After": [ "15" ], "x-ms-request-id": [ - "8f0822b4-b0ad-448f-9488-a9030f6773da" + "37a8cb2d-ee43-4f90-9330-5d10b3db6036" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1974,16 +1974,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11960" + "11976" ], "x-ms-correlation-request-id": [ - "87cbd900-b3da-4ee1-8288-1ef778d32147" + "c7c7c33e-db20-4c25-9eb7-82bdc9bc5605" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20210728T133318Z:87cbd900-b3da-4ee1-8288-1ef778d32147" + "NORTHCENTRALUS:20210831T220509Z:c7c7c33e-db20-4c25-9eb7-82bdc9bc5605" ], "Date": [ - "Wed, 28 Jul 2021 13:33:17 GMT" + "Tue, 31 Aug 2021 22:05:08 GMT" ], "Expires": [ "-1" @@ -1996,16 +1996,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet2256-f156754e-eb96-4efe-9e7a-aff911d36002?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0MjI1Ni1mMTU2NzU0ZS1lYjk2LTRlZmUtOWU3YS1hZmY5MTFkMzYwMDI/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/westus/accountOperationResults/azsmnet7577-69df26f1-8376-4041-abfd-0e8a934ab26b?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL3dlc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0NzU3Ny02OWRmMjZmMS04Mzc2LTQwNDEtYWJmZC0wZThhOTM0YWIyNmI/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.6.30411.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/15.0.0.0" + "Microsoft.Azure.Management.Batch.BatchManagementClient/14.0.0.0" ] }, "ResponseHeaders": { @@ -2016,13 +2016,13 @@ "no-cache" ], "Location": [ - "https://centraluseuap.management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet2256-f156754e-eb96-4efe-9e7a-aff911d36002?api-version=2021-06-01" + "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/westus/accountOperationResults/azsmnet7577-69df26f1-8376-4041-abfd-0e8a934ab26b?api-version=2021-06-01" ], "Retry-After": [ "15" ], "x-ms-request-id": [ - "86ebc44a-d415-4f4c-b109-f3c16f09925f" + "6bf37b17-f6c8-4ab1-8e65-36bd67c47718" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2034,16 +2034,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11959" + "11975" ], "x-ms-correlation-request-id": [ - "d20a0033-5856-47ad-9f8a-d7a27da071c1" + "baab9c1c-e70c-4a0d-bf8c-a47630ca6800" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20210728T133333Z:d20a0033-5856-47ad-9f8a-d7a27da071c1" + "NORTHCENTRALUS:20210831T220524Z:baab9c1c-e70c-4a0d-bf8c-a47630ca6800" ], "Date": [ - "Wed, 28 Jul 2021 13:33:33 GMT" + "Tue, 31 Aug 2021 22:05:23 GMT" ], "Expires": [ "-1" @@ -2056,16 +2056,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet2256-f156754e-eb96-4efe-9e7a-aff911d36002?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0MjI1Ni1mMTU2NzU0ZS1lYjk2LTRlZmUtOWU3YS1hZmY5MTFkMzYwMDI/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/westus/accountOperationResults/azsmnet7577-69df26f1-8376-4041-abfd-0e8a934ab26b?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL3dlc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0NzU3Ny02OWRmMjZmMS04Mzc2LTQwNDEtYWJmZC0wZThhOTM0YWIyNmI/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.6.30411.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/15.0.0.0" + "Microsoft.Azure.Management.Batch.BatchManagementClient/14.0.0.0" ] }, "ResponseHeaders": { @@ -2076,13 +2076,13 @@ "no-cache" ], "Location": [ - "https://centraluseuap.management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet2256-f156754e-eb96-4efe-9e7a-aff911d36002?api-version=2021-06-01" + "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/westus/accountOperationResults/azsmnet7577-69df26f1-8376-4041-abfd-0e8a934ab26b?api-version=2021-06-01" ], "Retry-After": [ "15" ], "x-ms-request-id": [ - "5aa1c430-e629-476e-869e-be72a983da35" + "53383505-08bf-4672-a7ad-b22c028d37b2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2094,16 +2094,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11958" + "11974" ], "x-ms-correlation-request-id": [ - "f5c37442-b289-47d6-87ea-f7065afe592c" + "10592252-1e3a-43dd-9a8c-2112e0ae2b5b" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20210728T133348Z:f5c37442-b289-47d6-87ea-f7065afe592c" + "NORTHCENTRALUS:20210831T220539Z:10592252-1e3a-43dd-9a8c-2112e0ae2b5b" ], "Date": [ - "Wed, 28 Jul 2021 13:33:47 GMT" + "Tue, 31 Aug 2021 22:05:38 GMT" ], "Expires": [ "-1" @@ -2116,16 +2116,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet2256-f156754e-eb96-4efe-9e7a-aff911d36002?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0MjI1Ni1mMTU2NzU0ZS1lYjk2LTRlZmUtOWU3YS1hZmY5MTFkMzYwMDI/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/westus/accountOperationResults/azsmnet7577-69df26f1-8376-4041-abfd-0e8a934ab26b?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL3dlc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0NzU3Ny02OWRmMjZmMS04Mzc2LTQwNDEtYWJmZC0wZThhOTM0YWIyNmI/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.6.30411.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/15.0.0.0" + "Microsoft.Azure.Management.Batch.BatchManagementClient/14.0.0.0" ] }, "ResponseHeaders": { @@ -2136,13 +2136,13 @@ "no-cache" ], "Location": [ - "https://centraluseuap.management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet2256-f156754e-eb96-4efe-9e7a-aff911d36002?api-version=2021-06-01" + "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/westus/accountOperationResults/azsmnet7577-69df26f1-8376-4041-abfd-0e8a934ab26b?api-version=2021-06-01" ], "Retry-After": [ "15" ], "x-ms-request-id": [ - "ac4c5c1b-4648-4cc0-bd94-cb4b3f5406ba" + "9a1f8436-56f7-40f9-a71f-5bb1b40863d9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2150,20 +2150,20 @@ "X-Content-Type-Options": [ "nosniff" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11973" + ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11957" - ], "x-ms-correlation-request-id": [ - "c433a4f0-3bde-4ff7-9a41-ee4552673cb1" + "61ae744b-7b53-4593-bb31-233e21dba554" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20210728T133403Z:c433a4f0-3bde-4ff7-9a41-ee4552673cb1" + "NORTHCENTRALUS:20210831T220554Z:61ae744b-7b53-4593-bb31-233e21dba554" ], "Date": [ - "Wed, 28 Jul 2021 13:34:03 GMT" + "Tue, 31 Aug 2021 22:05:53 GMT" ], "Expires": [ "-1" @@ -2176,16 +2176,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet2256-f156754e-eb96-4efe-9e7a-aff911d36002?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0MjI1Ni1mMTU2NzU0ZS1lYjk2LTRlZmUtOWU3YS1hZmY5MTFkMzYwMDI/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/westus/accountOperationResults/azsmnet7577-69df26f1-8376-4041-abfd-0e8a934ab26b?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL3dlc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0NzU3Ny02OWRmMjZmMS04Mzc2LTQwNDEtYWJmZC0wZThhOTM0YWIyNmI/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.6.30411.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/15.0.0.0" + "Microsoft.Azure.Management.Batch.BatchManagementClient/14.0.0.0" ] }, "ResponseHeaders": { @@ -2196,13 +2196,13 @@ "no-cache" ], "Location": [ - "https://centraluseuap.management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet2256-f156754e-eb96-4efe-9e7a-aff911d36002?api-version=2021-06-01" + "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/westus/accountOperationResults/azsmnet7577-69df26f1-8376-4041-abfd-0e8a934ab26b?api-version=2021-06-01" ], "Retry-After": [ "15" ], "x-ms-request-id": [ - "018262ba-d27c-4aec-aaa0-0d206fe3388a" + "db052ffe-949f-4121-81cc-1912734e9eac" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2214,16 +2214,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11956" + "11972" ], "x-ms-correlation-request-id": [ - "673eed9b-5ac1-44ef-89f6-68e19363a8da" + "57093c86-f7e0-4188-b907-2391dc05cd40" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20210728T133418Z:673eed9b-5ac1-44ef-89f6-68e19363a8da" + "NORTHCENTRALUS:20210831T220609Z:57093c86-f7e0-4188-b907-2391dc05cd40" ], "Date": [ - "Wed, 28 Jul 2021 13:34:17 GMT" + "Tue, 31 Aug 2021 22:06:09 GMT" ], "Expires": [ "-1" @@ -2236,16 +2236,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet2256-f156754e-eb96-4efe-9e7a-aff911d36002?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0MjI1Ni1mMTU2NzU0ZS1lYjk2LTRlZmUtOWU3YS1hZmY5MTFkMzYwMDI/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/westus/accountOperationResults/azsmnet7577-69df26f1-8376-4041-abfd-0e8a934ab26b?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL3dlc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0NzU3Ny02OWRmMjZmMS04Mzc2LTQwNDEtYWJmZC0wZThhOTM0YWIyNmI/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.6.30411.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/15.0.0.0" + "Microsoft.Azure.Management.Batch.BatchManagementClient/14.0.0.0" ] }, "ResponseHeaders": { @@ -2256,13 +2256,13 @@ "no-cache" ], "Location": [ - "https://centraluseuap.management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet2256-f156754e-eb96-4efe-9e7a-aff911d36002?api-version=2021-06-01" + "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/westus/accountOperationResults/azsmnet7577-69df26f1-8376-4041-abfd-0e8a934ab26b?api-version=2021-06-01" ], "Retry-After": [ "15" ], "x-ms-request-id": [ - "cc7e843f-b787-4c9e-8828-04c102386235" + "8b5eb585-d626-48b4-b28c-250766ee527e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2274,16 +2274,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11955" + "11971" ], "x-ms-correlation-request-id": [ - "da36c451-5350-44ac-b497-b6674a698067" + "e0db89cd-70e6-4dbf-bf65-64d2f0a61b3b" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20210728T133433Z:da36c451-5350-44ac-b497-b6674a698067" + "NORTHCENTRALUS:20210831T220624Z:e0db89cd-70e6-4dbf-bf65-64d2f0a61b3b" ], "Date": [ - "Wed, 28 Jul 2021 13:34:33 GMT" + "Tue, 31 Aug 2021 22:06:23 GMT" ], "Expires": [ "-1" @@ -2296,16 +2296,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet2256-f156754e-eb96-4efe-9e7a-aff911d36002?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0MjI1Ni1mMTU2NzU0ZS1lYjk2LTRlZmUtOWU3YS1hZmY5MTFkMzYwMDI/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/westus/accountOperationResults/azsmnet7577-69df26f1-8376-4041-abfd-0e8a934ab26b?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL3dlc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0NzU3Ny02OWRmMjZmMS04Mzc2LTQwNDEtYWJmZC0wZThhOTM0YWIyNmI/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.6.30411.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/15.0.0.0" + "Microsoft.Azure.Management.Batch.BatchManagementClient/14.0.0.0" ] }, "ResponseHeaders": { @@ -2316,13 +2316,13 @@ "no-cache" ], "Location": [ - "https://centraluseuap.management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet2256-f156754e-eb96-4efe-9e7a-aff911d36002?api-version=2021-06-01" + "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/westus/accountOperationResults/azsmnet7577-69df26f1-8376-4041-abfd-0e8a934ab26b?api-version=2021-06-01" ], "Retry-After": [ "15" ], "x-ms-request-id": [ - "0ec0b2fb-bb8b-4c03-8833-8db798d21596" + "7ae27258-8830-479e-b9dd-09dddd4aa7c1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2334,16 +2334,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11954" + "11970" ], "x-ms-correlation-request-id": [ - "d5143583-2e47-4227-9a71-49b91faa8703" + "c9ae39ba-1a4d-4a5a-baae-862042661c31" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20210728T133448Z:d5143583-2e47-4227-9a71-49b91faa8703" + "NORTHCENTRALUS:20210831T220639Z:c9ae39ba-1a4d-4a5a-baae-862042661c31" ], "Date": [ - "Wed, 28 Jul 2021 13:34:48 GMT" + "Tue, 31 Aug 2021 22:06:39 GMT" ], "Expires": [ "-1" @@ -2356,16 +2356,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet2256-f156754e-eb96-4efe-9e7a-aff911d36002?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0MjI1Ni1mMTU2NzU0ZS1lYjk2LTRlZmUtOWU3YS1hZmY5MTFkMzYwMDI/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/westus/accountOperationResults/azsmnet7577-69df26f1-8376-4041-abfd-0e8a934ab26b?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL3dlc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0NzU3Ny02OWRmMjZmMS04Mzc2LTQwNDEtYWJmZC0wZThhOTM0YWIyNmI/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.6.30411.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/15.0.0.0" + "Microsoft.Azure.Management.Batch.BatchManagementClient/14.0.0.0" ] }, "ResponseHeaders": { @@ -2376,13 +2376,13 @@ "no-cache" ], "Location": [ - "https://centraluseuap.management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet2256-f156754e-eb96-4efe-9e7a-aff911d36002?api-version=2021-06-01" + "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/westus/accountOperationResults/azsmnet7577-69df26f1-8376-4041-abfd-0e8a934ab26b?api-version=2021-06-01" ], "Retry-After": [ "15" ], "x-ms-request-id": [ - "e6fa7e6e-ed7f-46b2-ab93-db95653e61d1" + "00b392a4-f229-4fef-beef-324c5781f7d7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2394,16 +2394,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11953" + "11969" ], "x-ms-correlation-request-id": [ - "aa522b6d-40c0-4733-bd24-aad6f62eca16" + "f8af3c69-51b2-4d4a-8da3-4a0f8523776a" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20210728T133503Z:aa522b6d-40c0-4733-bd24-aad6f62eca16" + "NORTHCENTRALUS:20210831T220654Z:f8af3c69-51b2-4d4a-8da3-4a0f8523776a" ], "Date": [ - "Wed, 28 Jul 2021 13:35:03 GMT" + "Tue, 31 Aug 2021 22:06:54 GMT" ], "Expires": [ "-1" @@ -2416,16 +2416,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet2256-f156754e-eb96-4efe-9e7a-aff911d36002?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0MjI1Ni1mMTU2NzU0ZS1lYjk2LTRlZmUtOWU3YS1hZmY5MTFkMzYwMDI/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/westus/accountOperationResults/azsmnet7577-69df26f1-8376-4041-abfd-0e8a934ab26b?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL3dlc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0NzU3Ny02OWRmMjZmMS04Mzc2LTQwNDEtYWJmZC0wZThhOTM0YWIyNmI/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.6.30411.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/15.0.0.0" + "Microsoft.Azure.Management.Batch.BatchManagementClient/14.0.0.0" ] }, "ResponseHeaders": { @@ -2436,7 +2436,7 @@ "no-cache" ], "x-ms-request-id": [ - "72546f12-bf67-4891-a4f6-e67b2fd03f1d" + "5260187c-3974-4ce6-9ec2-bf8965c570b7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2448,16 +2448,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11952" + "11968" ], "x-ms-correlation-request-id": [ - "2112dddc-30e6-4dd7-b54b-5de9ffa67547" + "ba0eb577-3fcc-40d5-ab49-d287d43ba07e" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20210728T133518Z:2112dddc-30e6-4dd7-b54b-5de9ffa67547" + "NORTHCENTRALUS:20210831T220710Z:ba0eb577-3fcc-40d5-ab49-d287d43ba07e" ], "Date": [ - "Wed, 28 Jul 2021 13:35:18 GMT" + "Tue, 31 Aug 2021 22:07:09 GMT" ], "Expires": [ "-1" @@ -2470,16 +2470,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet2256-f156754e-eb96-4efe-9e7a-aff911d36002?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0MjI1Ni1mMTU2NzU0ZS1lYjk2LTRlZmUtOWU3YS1hZmY5MTFkMzYwMDI/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/westus/accountOperationResults/azsmnet7577-69df26f1-8376-4041-abfd-0e8a934ab26b?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL3dlc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0NzU3Ny02OWRmMjZmMS04Mzc2LTQwNDEtYWJmZC0wZThhOTM0YWIyNmI/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.6.30411.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/15.0.0.0" + "Microsoft.Azure.Management.Batch.BatchManagementClient/14.0.0.0" ] }, "ResponseHeaders": { @@ -2490,7 +2490,7 @@ "no-cache" ], "x-ms-request-id": [ - "59395a12-38e8-47c3-beb7-d373f73ae440" + "d3638590-898c-49c0-8905-406bc429d019" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2502,16 +2502,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11951" + "11967" ], "x-ms-correlation-request-id": [ - "296b491b-3a15-4393-b608-f4f2093a4fc0" + "8541fb41-1519-46cd-a6c2-c9172069cfef" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20210728T133518Z:296b491b-3a15-4393-b608-f4f2093a4fc0" + "NORTHCENTRALUS:20210831T220710Z:8541fb41-1519-46cd-a6c2-c9172069cfef" ], "Date": [ - "Wed, 28 Jul 2021 13:35:18 GMT" + "Tue, 31 Aug 2021 22:07:09 GMT" ], "Expires": [ "-1" @@ -2524,19 +2524,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourcegroups/azsmnet4816?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQ0ODE2P2FwaS12ZXJzaW9uPTIwMTctMDUtMTA=", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourcegroups/azsmnet7833?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQ3ODMzP2FwaS12ZXJzaW9uPTIwMTctMDUtMTA=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "776d75b1-a6a2-4501-829f-8e08fcf80a1a" + "8b161c8b-452f-46e9-970b-a52c3b31492b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.6.30411.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19043.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" @@ -2550,22 +2550,136 @@ "no-cache" ], "Location": [ - "https://centraluseuap.management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUNDgxNi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2017-05-10" + "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUNzgzMy1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2017-05-10" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14994" + "14999" + ], + "x-ms-request-id": [ + "9859d96c-f97f-46ec-a898-a4c4247a5ce8" + ], + "x-ms-correlation-request-id": [ + "9859d96c-f97f-46ec-a898-a4c4247a5ce8" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20210831T220712Z:9859d96c-f97f-46ec-a898-a4c4247a5ce8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 31 Aug 2021 22:07:12 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUNzgzMy1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xOTlRrVlVOemd6TXkxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUNzgzMy1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2017-05-10" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "4dcdca25-14ff-4811-84bf-513a1d820f97" + ], + "x-ms-correlation-request-id": [ + "4dcdca25-14ff-4811-84bf-513a1d820f97" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20210831T220727Z:4dcdca25-14ff-4811-84bf-513a1d820f97" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 31 Aug 2021 22:07:27 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUNzgzMy1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xOTlRrVlVOemd6TXkxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUNzgzMy1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2017-05-10" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" ], "x-ms-request-id": [ - "f08d0eb6-47b5-4790-a9dd-9b0399dc44a5" + "514a1b52-9902-4455-a79d-a0c43ab6f2fa" ], "x-ms-correlation-request-id": [ - "f08d0eb6-47b5-4790-a9dd-9b0399dc44a5" + "514a1b52-9902-4455-a79d-a0c43ab6f2fa" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20210728T133519Z:f08d0eb6-47b5-4790-a9dd-9b0399dc44a5" + "NORTHCENTRALUS:20210831T220742Z:514a1b52-9902-4455-a79d-a0c43ab6f2fa" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2574,7 +2688,7 @@ "nosniff" ], "Date": [ - "Wed, 28 Jul 2021 13:35:19 GMT" + "Tue, 31 Aug 2021 22:07:41 GMT" ], "Expires": [ "-1" @@ -2587,13 +2701,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUNDgxNi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xOTlRrVlVORGd4TmkxRlFWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUNzgzMy1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xOTlRrVlVOemd6TXkxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.6.30411.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19043.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" @@ -2607,22 +2721,22 @@ "no-cache" ], "Location": [ - "https://centraluseuap.management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUNDgxNi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2017-05-10" + "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUNzgzMy1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2017-05-10" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11950" + "11997" ], "x-ms-request-id": [ - "3bf0d760-304e-40b1-98d6-da73ebe30052" + "3ce56016-b2a1-4748-9208-e013300c8077" ], "x-ms-correlation-request-id": [ - "3bf0d760-304e-40b1-98d6-da73ebe30052" + "3ce56016-b2a1-4748-9208-e013300c8077" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20210728T133534Z:3bf0d760-304e-40b1-98d6-da73ebe30052" + "NORTHCENTRALUS:20210831T220757Z:3ce56016-b2a1-4748-9208-e013300c8077" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2631,7 +2745,7 @@ "nosniff" ], "Date": [ - "Wed, 28 Jul 2021 13:35:34 GMT" + "Tue, 31 Aug 2021 22:07:56 GMT" ], "Expires": [ "-1" @@ -2644,13 +2758,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUNDgxNi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xOTlRrVlVORGd4TmkxRlFWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUNzgzMy1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xOTlRrVlVOemd6TXkxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.6.30411.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19043.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" @@ -2664,22 +2778,22 @@ "no-cache" ], "Location": [ - "https://centraluseuap.management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUNDgxNi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2017-05-10" + "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUNzgzMy1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2017-05-10" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11949" + "11996" ], "x-ms-request-id": [ - "6ea69e5f-d82b-4685-8dc5-c98ec0d358ef" + "5326531d-81d5-41f5-a06e-e239e54aff7a" ], "x-ms-correlation-request-id": [ - "6ea69e5f-d82b-4685-8dc5-c98ec0d358ef" + "5326531d-81d5-41f5-a06e-e239e54aff7a" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20210728T133550Z:6ea69e5f-d82b-4685-8dc5-c98ec0d358ef" + "NORTHCENTRALUS:20210831T220812Z:5326531d-81d5-41f5-a06e-e239e54aff7a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2688,7 +2802,7 @@ "nosniff" ], "Date": [ - "Wed, 28 Jul 2021 13:35:49 GMT" + "Tue, 31 Aug 2021 22:08:12 GMT" ], "Expires": [ "-1" @@ -2701,13 +2815,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUNDgxNi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xOTlRrVlVORGd4TmkxRlFWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUNzgzMy1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xOTlRrVlVOemd6TXkxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.6.30411.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19043.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" @@ -2721,16 +2835,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11948" + "11995" ], "x-ms-request-id": [ - "56509bbb-8284-486c-84d3-0ffedaec901f" + "e6de3b32-9a01-4f48-9362-b2a90da6f363" ], "x-ms-correlation-request-id": [ - "56509bbb-8284-486c-84d3-0ffedaec901f" + "e6de3b32-9a01-4f48-9362-b2a90da6f363" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20210728T133605Z:56509bbb-8284-486c-84d3-0ffedaec901f" + "NORTHCENTRALUS:20210831T220827Z:e6de3b32-9a01-4f48-9362-b2a90da6f363" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2739,7 +2853,7 @@ "nosniff" ], "Date": [ - "Wed, 28 Jul 2021 13:36:04 GMT" + "Tue, 31 Aug 2021 22:08:27 GMT" ], "Expires": [ "-1" @@ -2752,13 +2866,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUNDgxNi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xOTlRrVlVORGd4TmkxRlFWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUNzgzMy1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xOTlRrVlVOemd6TXkxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.6.30411.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19043.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" @@ -2772,16 +2886,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11947" + "11994" ], "x-ms-request-id": [ - "b44fcebb-e2f4-4b85-b683-405ca00889ac" + "e5a0b2c2-3ea7-4156-bed7-abf500fa6142" ], "x-ms-correlation-request-id": [ - "b44fcebb-e2f4-4b85-b683-405ca00889ac" + "e5a0b2c2-3ea7-4156-bed7-abf500fa6142" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20210728T133605Z:b44fcebb-e2f4-4b85-b683-405ca00889ac" + "NORTHCENTRALUS:20210831T220828Z:e5a0b2c2-3ea7-4156-bed7-abf500fa6142" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2790,7 +2904,7 @@ "nosniff" ], "Date": [ - "Wed, 28 Jul 2021 13:36:04 GMT" + "Tue, 31 Aug 2021 22:08:27 GMT" ], "Expires": [ "-1" @@ -2805,8 +2919,8 @@ ], "Names": { "BatchCertificateEndToEndAsync": [ - "azsmnet4816", - "azsmnet2256" + "azsmnet7833", + "azsmnet7577" ] }, "Variables": { diff --git a/sdk/batch/Microsoft.Azure.Management.Batch/tests/SessionRecords/LocationTests/GetLocationQuotasAsync.json b/sdk/batch/Microsoft.Azure.Management.Batch/tests/SessionRecords/LocationTests/GetLocationQuotasAsync.json index 106e1b8b3e5d8..0c27544e3f936 100644 --- a/sdk/batch/Microsoft.Azure.Management.Batch/tests/SessionRecords/LocationTests/GetLocationQuotasAsync.json +++ b/sdk/batch/Microsoft.Azure.Management.Batch/tests/SessionRecords/LocationTests/GetLocationQuotasAsync.json @@ -7,13 +7,13 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d4bdcfad-3945-40ad-bd09-f50a4e1287cb" + "78f4a5e3-2739-479b-86a1-ed6424933c1b" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.6.26614.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19043.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" @@ -23,20 +23,23 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 01 Nov 2021 16:47:56 GMT" + ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11999" ], "x-ms-request-id": [ - "6ee64f92-77da-465e-8cd6-588470b896f8" + "3521df24-7aee-41d0-b37c-60731ca47802" ], "x-ms-correlation-request-id": [ - "6ee64f92-77da-465e-8cd6-588470b896f8" + "3521df24-7aee-41d0-b37c-60731ca47802" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20210728T131925Z:6ee64f92-77da-465e-8cd6-588470b896f8" + "NORTHCENTRALUS:20211101T164756Z:3521df24-7aee-41d0-b37c-60731ca47802" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -44,53 +47,56 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Wed, 28 Jul 2021 13:19:25 GMT" + "Content-Length": [ + "8454" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" - ], - "Content-Length": [ - "7221" ] }, - "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 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 \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\",\r\n \"2015-07-01\",\r\n \"2014-05-01-privatepreview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\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 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 \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"batchAccounts/certificates\",\r\n \"locations\": [\r\n \"West Europe\",\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Europe\",\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [\r\n \"West Europe\",\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"West Europe\",\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/accountOperationResults\",\r\n \"locations\": [\r\n \"West Europe\",\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\",\r\n \"2015-07-01\",\r\n \"2014-05-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "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 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 \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\",\r\n \"2015-07-01\",\r\n \"2014-05-01-privatepreview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\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 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 \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"batchAccounts/certificates\",\r\n \"locations\": [\r\n \"West Europe\",\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Europe\",\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [\r\n \"West Europe\",\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"West Europe\",\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/accountOperationResults\",\r\n \"locations\": [\r\n \"West Europe\",\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\",\r\n \"2015-07-01\",\r\n \"2014-05-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/virtualMachineSkus\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US 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 \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/cloudServiceSkus\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US 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 \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/East%20US/quotas?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL0Vhc3QlMjBVUy9xdW90YXM/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/West%20US/quotas?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL1dlc3QlMjBVUy9xdW90YXM/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ca53eedf-f99d-450a-8027-13b04a4ce469" + "ea1591a3-fdef-4f27-b40c-765c3844a238" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.6.26614.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/15.0.0.0" + "Microsoft.Azure.Management.Batch.BatchManagementClient/14.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 01 Nov 2021 16:47:56 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11999" ], "x-ms-request-id": [ - "230eab10-865e-4376-9534-a71cb585d061" + "4ad7b6f3-21c6-4383-9af4-ecfdfd9afefc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -98,20 +104,14 @@ "X-Content-Type-Options": [ "nosniff" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-correlation-request-id": [ - "cbc036c8-5d62-4b2a-8495-1dc6007dcba6" + "dbd61edd-c0b3-467c-a986-a72f73fb71d2" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20210728T131925Z:cbc036c8-5d62-4b2a-8495-1dc6007dcba6" - ], - "Date": [ - "Wed, 28 Jul 2021 13:19:25 GMT" + "NORTHCENTRALUS:20211101T164757Z:dbd61edd-c0b3-467c-a986-a72f73fb71d2" ], "Content-Length": [ - "21" + "19" ], "Content-Type": [ "application/json; charset=utf-8" @@ -120,7 +120,7 @@ "-1" ] }, - "ResponseBody": "{\r\n \"accountQuota\": 1000\r\n}", + "ResponseBody": "{\r\n \"accountQuota\": 50\r\n}", "StatusCode": 200 } ], diff --git a/sdk/batch/Microsoft.Azure.Management.Batch/tests/SessionRecords/LocationTests/ListSupportedCloudServiceSkusAsync.json b/sdk/batch/Microsoft.Azure.Management.Batch/tests/SessionRecords/LocationTests/ListSupportedCloudServiceSkusAsync.json index 5c0eddc31f8fd..96c6ddadafea1 100644 --- a/sdk/batch/Microsoft.Azure.Management.Batch/tests/SessionRecords/LocationTests/ListSupportedCloudServiceSkusAsync.json +++ b/sdk/batch/Microsoft.Azure.Management.Batch/tests/SessionRecords/LocationTests/ListSupportedCloudServiceSkusAsync.json @@ -7,13 +7,13 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b1c7e2d4-ac59-484e-97fb-a907ca10de21" + "2468fd34-3966-4642-a3d1-7564603d1224" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.6.26614.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19043.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" @@ -23,20 +23,23 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 01 Nov 2021 16:48:05 GMT" + ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "11999" ], "x-ms-request-id": [ - "87953418-b272-44fa-bbd0-07471ca18c1f" + "e447a70a-d099-4b08-9d6b-0519afb86062" ], "x-ms-correlation-request-id": [ - "87953418-b272-44fa-bbd0-07471ca18c1f" + "e447a70a-d099-4b08-9d6b-0519afb86062" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20210728T131926Z:87953418-b272-44fa-bbd0-07471ca18c1f" + "NORTHCENTRALUS:20211101T164805Z:e447a70a-d099-4b08-9d6b-0519afb86062" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -44,53 +47,56 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Wed, 28 Jul 2021 13:19:25 GMT" + "Content-Length": [ + "8454" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" - ], - "Content-Length": [ - "7221" ] }, - "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 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 \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\",\r\n \"2015-07-01\",\r\n \"2014-05-01-privatepreview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\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 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 \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"batchAccounts/certificates\",\r\n \"locations\": [\r\n \"West Europe\",\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Europe\",\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [\r\n \"West Europe\",\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"West Europe\",\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/accountOperationResults\",\r\n \"locations\": [\r\n \"West Europe\",\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\",\r\n \"2015-07-01\",\r\n \"2014-05-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "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 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 \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\",\r\n \"2015-07-01\",\r\n \"2014-05-01-privatepreview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\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 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 \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"batchAccounts/certificates\",\r\n \"locations\": [\r\n \"West Europe\",\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Europe\",\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [\r\n \"West Europe\",\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"West Europe\",\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/accountOperationResults\",\r\n \"locations\": [\r\n \"West Europe\",\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\",\r\n \"2015-07-01\",\r\n \"2014-05-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/virtualMachineSkus\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US 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 \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/cloudServiceSkus\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US 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 \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/East%20US/cloudServiceSkus?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL0Vhc3QlMjBVUy9jbG91ZFNlcnZpY2VTa3VzP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/West%20US/cloudServiceSkus?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL1dlc3QlMjBVUy9jbG91ZFNlcnZpY2VTa3VzP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0cc21619-388e-4f0a-91a9-427c81706a70" + "ba89de5b-2f53-454f-9707-71c0a5187d96" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.6.26614.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/15.0.0.0" + "Microsoft.Azure.Management.Batch.BatchManagementClient/14.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 01 Nov 2021 16:48:06 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "11999" ], "x-ms-request-id": [ - "50d15ca9-71b7-4a3b-a08d-88c6cfcad789" + "aa23b1d1-39e9-4c0f-8549-0840c780416d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -98,20 +104,14 @@ "X-Content-Type-Options": [ "nosniff" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-correlation-request-id": [ - "527bdf26-8a9d-4ec9-b222-f426773ce395" + "ebb3a733-8466-4bc2-a5e9-a0beeb0a9736" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20210728T131926Z:527bdf26-8a9d-4ec9-b222-f426773ce395" - ], - "Date": [ - "Wed, 28 Jul 2021 13:19:26 GMT" + "NORTHCENTRALUS:20211101T164806Z:ebb3a733-8466-4bc2-a5e9-a0beeb0a9736" ], "Content-Length": [ - "19965" + "31500" ], "Content-Type": [ "application/json; charset=utf-8" @@ -120,7 +120,7 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"Basic_A1\",\r\n \"familyName\": \"basicAFamily\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Basic_A2\",\r\n \"familyName\": \"basicAFamily\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Basic_A3\",\r\n \"familyName\": \"basicAFamily\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Basic_A4\",\r\n \"familyName\": \"basicAFamily\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"A5\",\r\n \"familyName\": \"standardA0_A7Family\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"MemoryInMb\",\r\n \"value\": \"14336\"\r\n },\r\n {\r\n \"name\": \"SupportedByWebWorkerRoles\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"SupportedByVirtualMachines\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"WebWorkerResourceDiskSizeInMb\",\r\n \"value\": \"501760\"\r\n },\r\n {\r\n \"name\": \"VirtualMachineResourceDiskSizeInMb\",\r\n \"value\": \"138240\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"A6\",\r\n \"familyName\": \"standardA0_A7Family\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"MemoryInMb\",\r\n \"value\": \"28672\"\r\n },\r\n {\r\n \"name\": \"SupportedByWebWorkerRoles\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"SupportedByVirtualMachines\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"WebWorkerResourceDiskSizeInMb\",\r\n \"value\": \"1024000\"\r\n },\r\n {\r\n \"name\": \"VirtualMachineResourceDiskSizeInMb\",\r\n \"value\": \"291840\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"A7\",\r\n \"familyName\": \"standardA0_A7Family\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"MemoryInMb\",\r\n \"value\": \"57344\"\r\n },\r\n {\r\n \"name\": \"SupportedByWebWorkerRoles\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"SupportedByVirtualMachines\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"WebWorkerResourceDiskSizeInMb\",\r\n \"value\": \"2088960\"\r\n },\r\n {\r\n \"name\": \"VirtualMachineResourceDiskSizeInMb\",\r\n \"value\": \"619520\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"ExtraLarge\",\r\n \"familyName\": \"standardA0_A7Family\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"MemoryInMb\",\r\n \"value\": \"14336\"\r\n },\r\n {\r\n \"name\": \"SupportedByWebWorkerRoles\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"SupportedByVirtualMachines\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"WebWorkerResourceDiskSizeInMb\",\r\n \"value\": \"2088960\"\r\n },\r\n {\r\n \"name\": \"VirtualMachineResourceDiskSizeInMb\",\r\n \"value\": \"619520\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Large\",\r\n \"familyName\": \"standardA0_A7Family\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"MemoryInMb\",\r\n \"value\": \"7168\"\r\n },\r\n {\r\n \"name\": \"SupportedByWebWorkerRoles\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"SupportedByVirtualMachines\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"WebWorkerResourceDiskSizeInMb\",\r\n \"value\": \"1024000\"\r\n },\r\n {\r\n \"name\": \"VirtualMachineResourceDiskSizeInMb\",\r\n \"value\": \"291840\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Medium\",\r\n \"familyName\": \"standardA0_A7Family\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"MemoryInMb\",\r\n \"value\": \"3584\"\r\n },\r\n {\r\n \"name\": \"SupportedByWebWorkerRoles\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"SupportedByVirtualMachines\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"WebWorkerResourceDiskSizeInMb\",\r\n \"value\": \"501760\"\r\n },\r\n {\r\n \"name\": \"VirtualMachineResourceDiskSizeInMb\",\r\n \"value\": \"138240\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Small\",\r\n \"familyName\": \"standardA0_A7Family\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"MemoryInMb\",\r\n \"value\": \"1792\"\r\n },\r\n {\r\n \"name\": \"SupportedByWebWorkerRoles\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"SupportedByVirtualMachines\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"WebWorkerResourceDiskSizeInMb\",\r\n \"value\": \"230400\"\r\n },\r\n {\r\n \"name\": \"VirtualMachineResourceDiskSizeInMb\",\r\n \"value\": \"71680\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"A10\",\r\n \"familyName\": \"standardA8_A11Family\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"MemoryInMb\",\r\n \"value\": \"57344\"\r\n },\r\n {\r\n \"name\": \"SupportedByWebWorkerRoles\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"SupportedByVirtualMachines\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"WebWorkerResourceDiskSizeInMb\",\r\n \"value\": \"1861268\"\r\n },\r\n {\r\n \"name\": \"VirtualMachineResourceDiskSizeInMb\",\r\n \"value\": \"391828\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"A11\",\r\n \"familyName\": \"standardA8_A11Family\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"MemoryInMb\",\r\n \"value\": \"114688\"\r\n },\r\n {\r\n \"name\": \"SupportedByWebWorkerRoles\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"SupportedByVirtualMachines\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"WebWorkerResourceDiskSizeInMb\",\r\n \"value\": \"1861268\"\r\n },\r\n {\r\n \"name\": \"VirtualMachineResourceDiskSizeInMb\",\r\n \"value\": \"391828\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"A8\",\r\n \"familyName\": \"standardA8_A11Family\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"MemoryInMb\",\r\n \"value\": \"57344\"\r\n },\r\n {\r\n \"name\": \"SupportedByWebWorkerRoles\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"SupportedByVirtualMachines\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"WebWorkerResourceDiskSizeInMb\",\r\n \"value\": \"1861268\"\r\n },\r\n {\r\n \"name\": \"VirtualMachineResourceDiskSizeInMb\",\r\n \"value\": \"391828\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"A9\",\r\n \"familyName\": \"standardA8_A11Family\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"MemoryInMb\",\r\n \"value\": \"114688\"\r\n },\r\n {\r\n \"name\": \"SupportedByWebWorkerRoles\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"SupportedByVirtualMachines\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"WebWorkerResourceDiskSizeInMb\",\r\n \"value\": \"1861268\"\r\n },\r\n {\r\n \"name\": \"VirtualMachineResourceDiskSizeInMb\",\r\n \"value\": \"391828\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Standard_A1_v2\",\r\n \"familyName\": \"standardAv2Family\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Standard_A2_v2\",\r\n \"familyName\": \"standardAv2Family\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Standard_A2m_v2\",\r\n \"familyName\": \"standardAv2Family\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Standard_A4_v2\",\r\n \"familyName\": \"standardAv2Family\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"4\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Standard_A4m_v2\",\r\n \"familyName\": \"standardAv2Family\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"4\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Standard_A8_v2\",\r\n \"familyName\": \"standardAv2Family\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"8\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Standard_A8m_v2\",\r\n \"familyName\": \"standardAv2Family\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"8\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Standard_D16as_v4\",\r\n \"familyName\": \"standardDASv4Family\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Standard_D2as_v4\",\r\n \"familyName\": \"standardDASv4Family\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Standard_D32as_v4\",\r\n \"familyName\": \"standardDASv4Family\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Standard_D48as_v4\",\r\n \"familyName\": \"standardDASv4Family\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Standard_D4as_v4\",\r\n \"familyName\": \"standardDASv4Family\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Standard_D64as_v4\",\r\n \"familyName\": \"standardDASv4Family\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Standard_D8as_v4\",\r\n \"familyName\": \"standardDASv4Family\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Standard_D96as_v4\",\r\n \"familyName\": \"standardDASv4Family\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Standard_D16a_v4\",\r\n \"familyName\": \"standardDAv4Family\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"16\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Standard_D2a_v4\",\r\n \"familyName\": \"standardDAv4Family\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"2\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Standard_D32a_v4\",\r\n \"familyName\": \"standardDAv4Family\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"32\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Standard_D48a_v4\",\r\n \"familyName\": \"standardDAv4Family\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"48\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Standard_D4a_v4\",\r\n \"familyName\": \"standardDAv4Family\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"4\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Standard_D64a_v4\",\r\n \"familyName\": \"standardDAv4Family\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"64\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Standard_D8a_v4\",\r\n \"familyName\": \"standardDAv4Family\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"8\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Standard_D96a_v4\",\r\n \"familyName\": \"standardDAv4Family\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"96\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Standard_D16ds_v4\",\r\n \"familyName\": \"standardDDSv4Family\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Standard_D2ds_v4\",\r\n \"familyName\": \"standardDDSv4Family\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Standard_D32ds_v4\",\r\n \"familyName\": \"standardDDSv4Family\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Standard_D48ds_v4\",\r\n \"familyName\": \"standardDDSv4Family\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Standard_D4ds_v4\",\r\n \"familyName\": \"standardDDSv4Family\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Standard_D64ds_v4\",\r\n \"familyName\": \"standardDDSv4Family\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Standard_D8ds_v4\",\r\n \"familyName\": \"standardDDSv4Family\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Standard_D16d_v4\",\r\n \"familyName\": \"standardDDv4Family\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Standard_D2d_v4\",\r\n \"familyName\": \"standardDDv4Family\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Standard_D32d_v4\",\r\n \"familyName\": \"standardDDv4Family\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Standard_D48d_v4\",\r\n \"familyName\": \"standardDDv4Family\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Standard_D4d_v4\",\r\n \"familyName\": \"standardDDv4Family\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Standard_D64d_v4\",\r\n \"familyName\": \"standardDDv4Family\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Standard_D8d_v4\",\r\n \"familyName\": \"standardDDv4Family\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Standard_D1\",\r\n \"familyName\": \"standardDFamily\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"1\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Standard_D11\",\r\n \"familyName\": \"standardDFamily\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"2\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Standard_D12\",\r\n \"familyName\": \"standardDFamily\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"4\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Standard_D13\",\r\n \"familyName\": \"standardDFamily\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"8\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Standard_D14\",\r\n \"familyName\": \"standardDFamily\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"16\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Standard_D2\",\r\n \"familyName\": \"standardDFamily\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"2\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Standard_D3\",\r\n \"familyName\": \"standardDFamily\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"4\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Standard_D4\",\r\n \"familyName\": \"standardDFamily\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"8\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Standard_DS1\",\r\n \"familyName\": \"standardDSFamily\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Standard_DS11\",\r\n \"familyName\": \"standardDSFamily\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Standard_DS12\",\r\n \"familyName\": \"standardDSFamily\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Standard_DS13\",\r\n \"familyName\": \"standardDSFamily\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Standard_DS14\",\r\n \"familyName\": \"standardDSFamily\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Standard_DS2\",\r\n \"familyName\": \"standardDSFamily\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Standard_DS3\",\r\n \"familyName\": \"standardDSFamily\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Standard_DS4\",\r\n \"familyName\": \"standardDSFamily\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Standard_DS11_v2\",\r\n \"familyName\": \"standardDSv2Family\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Standard_DS12_v2\",\r\n \"familyName\": \"standardDSv2Family\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Standard_DS13_v2\",\r\n \"familyName\": \"standardDSv2Family\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Standard_DS14_v2\",\r\n \"familyName\": \"standardDSv2Family\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Standard_DS15_v2\",\r\n \"familyName\": \"standardDSv2Family\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Standard_DS1_v2\",\r\n \"familyName\": \"standardDSv2Family\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Standard_DS2_v2\",\r\n \"familyName\": \"standardDSv2Family\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Standard_DS3_v2\",\r\n \"familyName\": \"standardDSv2Family\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Standard_DS4_v2\",\r\n \"familyName\": \"standardDSv2Family\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Standard_DS5_v2\",\r\n \"familyName\": \"standardDSv2Family\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Standard_D16s_v3\",\r\n \"familyName\": \"standardDSv3Family\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Standard_D2s_v3\",\r\n \"familyName\": \"standardDSv3Family\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Standard_D32s_v3\",\r\n \"familyName\": \"standardDSv3Family\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Standard_D48s_v3\",\r\n \"familyName\": \"standardDSv3Family\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Standard_D4s_v3\",\r\n \"familyName\": \"standardDSv3Family\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Standard_D64s_v3\",\r\n \"familyName\": \"standardDSv3Family\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Standard_D8s_v3\",\r\n \"familyName\": \"standardDSv3Family\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Standard_D11_v2\",\r\n \"familyName\": \"standardDv2Family\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"2\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Standard_D12_v2\",\r\n \"familyName\": \"standardDv2Family\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"4\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Standard_D13_v2\",\r\n \"familyName\": \"standardDv2Family\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"8\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Standard_D14_v2\",\r\n \"familyName\": \"standardDv2Family\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"16\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Standard_D15_v2\",\r\n \"familyName\": \"standardDv2Family\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"20\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Standard_D1_v2\",\r\n \"familyName\": \"standardDv2Family\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"1\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Standard_D2_v2\",\r\n \"familyName\": \"standardDv2Family\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"2\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Standard_D3_v2\",\r\n \"familyName\": \"standardDv2Family\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"4\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Standard_D4_v2\",\r\n \"familyName\": \"standardDv2Family\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"8\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Standard_D5_v2\",\r\n \"familyName\": \"standardDv2Family\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"16\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Standard_D16_v3\",\r\n \"familyName\": \"standardDv3Family\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"16\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Standard_D2_v3\",\r\n \"familyName\": \"standardDv3Family\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"2\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Standard_D32_v3\",\r\n \"familyName\": \"standardDv3Family\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"32\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Standard_D48_v3\",\r\n \"familyName\": \"standardDv3Family\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Standard_D4_v3\",\r\n \"familyName\": \"standardDv3Family\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"4\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Standard_D64_v3\",\r\n \"familyName\": \"standardDv3Family\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"64\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Standard_D8_v3\",\r\n \"familyName\": \"standardDv3Family\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"8\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Standard_E16as_v4\",\r\n \"familyName\": \"standardEASv4Family\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Standard_E2as_v4\",\r\n \"familyName\": \"standardEASv4Family\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Standard_E32as_v4\",\r\n \"familyName\": \"standardEASv4Family\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Standard_E48as_v4\",\r\n \"familyName\": \"standardEASv4Family\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Standard_E4as_v4\",\r\n \"familyName\": \"standardEASv4Family\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Standard_E64as_v4\",\r\n \"familyName\": \"standardEASv4Family\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Standard_E8as_v4\",\r\n \"familyName\": \"standardEASv4Family\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Standard_E96as_v4\",\r\n \"familyName\": \"standardEASv4Family\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Standard_E16a_v4\",\r\n \"familyName\": \"standardEAv4Family\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Standard_E2a_v4\",\r\n \"familyName\": \"standardEAv4Family\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Standard_E32a_v4\",\r\n \"familyName\": \"standardEAv4Family\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Standard_E48a_v4\",\r\n \"familyName\": \"standardEAv4Family\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Standard_E4a_v4\",\r\n \"familyName\": \"standardEAv4Family\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Standard_E64a_v4\",\r\n \"familyName\": \"standardEAv4Family\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Standard_E8a_v4\",\r\n \"familyName\": \"standardEAv4Family\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Standard_E96a_v4\",\r\n \"familyName\": \"standardEAv4Family\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Standard_E16ds_v4\",\r\n \"familyName\": \"standardEDSv4Family\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Standard_E2ds_v4\",\r\n \"familyName\": \"standardEDSv4Family\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Standard_E32ds_v4\",\r\n \"familyName\": \"standardEDSv4Family\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Standard_E48ds_v4\",\r\n \"familyName\": \"standardEDSv4Family\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Standard_E4ds_v4\",\r\n \"familyName\": \"standardEDSv4Family\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Standard_E64ds_v4\",\r\n \"familyName\": \"standardEDSv4Family\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Standard_E8ds_v4\",\r\n \"familyName\": \"standardEDSv4Family\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Standard_E16d_v4\",\r\n \"familyName\": \"standardEDv4Family\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Standard_E2d_v4\",\r\n \"familyName\": \"standardEDv4Family\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Standard_E32d_v4\",\r\n \"familyName\": \"standardEDv4Family\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Standard_E48d_v4\",\r\n \"familyName\": \"standardEDv4Family\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Standard_E4d_v4\",\r\n \"familyName\": \"standardEDv4Family\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Standard_E64d_v4\",\r\n \"familyName\": \"standardEDv4Family\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Standard_E8d_v4\",\r\n \"familyName\": \"standardEDv4Family\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Standard_E64i_v3\",\r\n \"familyName\": \"standardEIv3Family\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Standard_E16s_v3\",\r\n \"familyName\": \"standardESv3Family\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Standard_E2s_v3\",\r\n \"familyName\": \"standardESv3Family\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Standard_E32s_v3\",\r\n \"familyName\": \"standardESv3Family\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Standard_E48s_v3\",\r\n \"familyName\": \"standardESv3Family\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Standard_E4s_v3\",\r\n \"familyName\": \"standardESv3Family\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Standard_E64s_v3\",\r\n \"familyName\": \"standardESv3Family\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Standard_E8s_v3\",\r\n \"familyName\": \"standardESv3Family\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Standard_E16_v3\",\r\n \"familyName\": \"standardEv3Family\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"16\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Standard_E2_v3\",\r\n \"familyName\": \"standardEv3Family\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"2\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Standard_E32_v3\",\r\n \"familyName\": \"standardEv3Family\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"32\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Standard_E48_v3\",\r\n \"familyName\": \"standardEv3Family\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Standard_E4_v3\",\r\n \"familyName\": \"standardEv3Family\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"4\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Standard_E64_v3\",\r\n \"familyName\": \"standardEv3Family\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"64\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Standard_E8_v3\",\r\n \"familyName\": \"standardEv3Family\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"8\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Standard_F1\",\r\n \"familyName\": \"standardFFamily\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Standard_F16\",\r\n \"familyName\": \"standardFFamily\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Standard_F2\",\r\n \"familyName\": \"standardFFamily\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Standard_F4\",\r\n \"familyName\": \"standardFFamily\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Standard_F8\",\r\n \"familyName\": \"standardFFamily\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Standard_F16s\",\r\n \"familyName\": \"standardFSFamily\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Standard_F1s\",\r\n \"familyName\": \"standardFSFamily\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Standard_F2s\",\r\n \"familyName\": \"standardFSFamily\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Standard_F4s\",\r\n \"familyName\": \"standardFSFamily\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Standard_F8s\",\r\n \"familyName\": \"standardFSFamily\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Standard_F16s_v2\",\r\n \"familyName\": \"standardFSv2Family\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Standard_F2s_v2\",\r\n \"familyName\": \"standardFSv2Family\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Standard_F32s_v2\",\r\n \"familyName\": \"standardFSv2Family\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Standard_F48s_v2\",\r\n \"familyName\": \"standardFSv2Family\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Standard_F4s_v2\",\r\n \"familyName\": \"standardFSv2Family\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Standard_F64s_v2\",\r\n \"familyName\": \"standardFSv2Family\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Standard_F72s_v2\",\r\n \"familyName\": \"standardFSv2Family\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Standard_F8s_v2\",\r\n \"familyName\": \"standardFSv2Family\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Standard_H16\",\r\n \"familyName\": \"standardHFamily\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"16\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Standard_H16m\",\r\n \"familyName\": \"standardHFamily\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"16\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Standard_H16mr\",\r\n \"familyName\": \"standardHFamily\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"16\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Standard_H16r\",\r\n \"familyName\": \"standardHFamily\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"16\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Standard_H8\",\r\n \"familyName\": \"standardHFamily\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"8\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Standard_H8m\",\r\n \"familyName\": \"standardHFamily\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"8\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Standard_M128\",\r\n \"familyName\": \"standardMSFamily\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"128\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Standard_M128m\",\r\n \"familyName\": \"standardMSFamily\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"128\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Standard_M128ms\",\r\n \"familyName\": \"standardMSFamily\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"128\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Standard_M128s\",\r\n \"familyName\": \"standardMSFamily\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"128\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Standard_M16ms\",\r\n \"familyName\": \"standardMSFamily\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"16\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Standard_M32ms\",\r\n \"familyName\": \"standardMSFamily\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"32\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Standard_M64\",\r\n \"familyName\": \"standardMSFamily\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"64\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Standard_M64m\",\r\n \"familyName\": \"standardMSFamily\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"64\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Standard_M64ms\",\r\n \"familyName\": \"standardMSFamily\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"64\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Standard_M64s\",\r\n \"familyName\": \"standardMSFamily\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"64\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Standard_M8ms\",\r\n \"familyName\": \"standardMSFamily\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"8\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Standard_NC12\",\r\n \"familyName\": \"standardNCFamily\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Standard_NC24\",\r\n \"familyName\": \"standardNCFamily\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Standard_NC6\",\r\n \"familyName\": \"standardNCFamily\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Standard_NV12\",\r\n \"familyName\": \"standardNVFamily\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Standard_NV24\",\r\n \"familyName\": \"standardNVFamily\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Standard_NV6\",\r\n \"familyName\": \"standardNVFamily\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Standard_E80ids_v4\",\r\n \"familyName\": \"standardXEIDSv4Family\",\r\n \"capabilities\": []\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"A5\",\r\n \"familyName\": \"standardA0_A7Family\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"MemoryInMb\",\r\n \"value\": \"14336\"\r\n },\r\n {\r\n \"name\": \"SupportedByWebWorkerRoles\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"SupportedByVirtualMachines\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"WebWorkerResourceDiskSizeInMb\",\r\n \"value\": \"501760\"\r\n },\r\n {\r\n \"name\": \"VirtualMachineResourceDiskSizeInMb\",\r\n \"value\": \"138240\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"A6\",\r\n \"familyName\": \"standardA0_A7Family\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"MemoryInMb\",\r\n \"value\": \"28672\"\r\n },\r\n {\r\n \"name\": \"SupportedByWebWorkerRoles\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"SupportedByVirtualMachines\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"WebWorkerResourceDiskSizeInMb\",\r\n \"value\": \"1024000\"\r\n },\r\n {\r\n \"name\": \"VirtualMachineResourceDiskSizeInMb\",\r\n \"value\": \"291840\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"A7\",\r\n \"familyName\": \"standardA0_A7Family\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"MemoryInMb\",\r\n \"value\": \"57344\"\r\n },\r\n {\r\n \"name\": \"SupportedByWebWorkerRoles\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"SupportedByVirtualMachines\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"WebWorkerResourceDiskSizeInMb\",\r\n \"value\": \"2088960\"\r\n },\r\n {\r\n \"name\": \"VirtualMachineResourceDiskSizeInMb\",\r\n \"value\": \"619520\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"ExtraLarge\",\r\n \"familyName\": \"standardA0_A7Family\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"MemoryInMb\",\r\n \"value\": \"14336\"\r\n },\r\n {\r\n \"name\": \"SupportedByWebWorkerRoles\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"SupportedByVirtualMachines\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"WebWorkerResourceDiskSizeInMb\",\r\n \"value\": \"2088960\"\r\n },\r\n {\r\n \"name\": \"VirtualMachineResourceDiskSizeInMb\",\r\n \"value\": \"619520\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Large\",\r\n \"familyName\": \"standardA0_A7Family\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"MemoryInMb\",\r\n \"value\": \"7168\"\r\n },\r\n {\r\n \"name\": \"SupportedByWebWorkerRoles\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"SupportedByVirtualMachines\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"WebWorkerResourceDiskSizeInMb\",\r\n \"value\": \"1024000\"\r\n },\r\n {\r\n \"name\": \"VirtualMachineResourceDiskSizeInMb\",\r\n \"value\": \"291840\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Medium\",\r\n \"familyName\": \"standardA0_A7Family\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"MemoryInMb\",\r\n \"value\": \"3584\"\r\n },\r\n {\r\n \"name\": \"SupportedByWebWorkerRoles\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"SupportedByVirtualMachines\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"WebWorkerResourceDiskSizeInMb\",\r\n \"value\": \"501760\"\r\n },\r\n {\r\n \"name\": \"VirtualMachineResourceDiskSizeInMb\",\r\n \"value\": \"138240\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Small\",\r\n \"familyName\": \"standardA0_A7Family\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"MemoryInMb\",\r\n \"value\": \"1792\"\r\n },\r\n {\r\n \"name\": \"SupportedByWebWorkerRoles\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"SupportedByVirtualMachines\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"WebWorkerResourceDiskSizeInMb\",\r\n \"value\": \"230400\"\r\n },\r\n {\r\n \"name\": \"VirtualMachineResourceDiskSizeInMb\",\r\n \"value\": \"71680\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Standard_A4_v2\",\r\n \"familyName\": \"standardAv2Family\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"MemoryInMb\",\r\n \"value\": \"8192\"\r\n },\r\n {\r\n \"name\": \"SupportedByWebWorkerRoles\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"SupportedByVirtualMachines\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"WebWorkerResourceDiskSizeInMb\",\r\n \"value\": \"40960\"\r\n },\r\n {\r\n \"name\": \"VirtualMachineResourceDiskSizeInMb\",\r\n \"value\": \"40960\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Standard_A4m_v2\",\r\n \"familyName\": \"standardAv2Family\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"MemoryInMb\",\r\n \"value\": \"32768\"\r\n },\r\n {\r\n \"name\": \"SupportedByWebWorkerRoles\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"SupportedByVirtualMachines\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"WebWorkerResourceDiskSizeInMb\",\r\n \"value\": \"40960\"\r\n },\r\n {\r\n \"name\": \"VirtualMachineResourceDiskSizeInMb\",\r\n \"value\": \"40960\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Standard_A8_v2\",\r\n \"familyName\": \"standardAv2Family\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"MemoryInMb\",\r\n \"value\": \"16384\"\r\n },\r\n {\r\n \"name\": \"SupportedByWebWorkerRoles\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"SupportedByVirtualMachines\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"WebWorkerResourceDiskSizeInMb\",\r\n \"value\": \"81920\"\r\n },\r\n {\r\n \"name\": \"VirtualMachineResourceDiskSizeInMb\",\r\n \"value\": \"81920\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Standard_A8m_v2\",\r\n \"familyName\": \"standardAv2Family\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"MemoryInMb\",\r\n \"value\": \"65536\"\r\n },\r\n {\r\n \"name\": \"SupportedByWebWorkerRoles\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"SupportedByVirtualMachines\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"WebWorkerResourceDiskSizeInMb\",\r\n \"value\": \"81920\"\r\n },\r\n {\r\n \"name\": \"VirtualMachineResourceDiskSizeInMb\",\r\n \"value\": \"81920\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Standard_D16a_v4\",\r\n \"familyName\": \"standardDAv4Family\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"MemoryInMb\",\r\n \"value\": \"65536\"\r\n },\r\n {\r\n \"name\": \"SupportedByWebWorkerRoles\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"SupportedByVirtualMachines\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"WebWorkerResourceDiskSizeInMb\",\r\n \"value\": \"409600\"\r\n },\r\n {\r\n \"name\": \"VirtualMachineResourceDiskSizeInMb\",\r\n \"value\": \"409600\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Standard_D2a_v4\",\r\n \"familyName\": \"standardDAv4Family\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"MemoryInMb\",\r\n \"value\": \"8192\"\r\n },\r\n {\r\n \"name\": \"SupportedByWebWorkerRoles\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"SupportedByVirtualMachines\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"WebWorkerResourceDiskSizeInMb\",\r\n \"value\": \"51200\"\r\n },\r\n {\r\n \"name\": \"VirtualMachineResourceDiskSizeInMb\",\r\n \"value\": \"51200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Standard_D32a_v4\",\r\n \"familyName\": \"standardDAv4Family\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"MemoryInMb\",\r\n \"value\": \"131072\"\r\n },\r\n {\r\n \"name\": \"SupportedByWebWorkerRoles\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"SupportedByVirtualMachines\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"WebWorkerResourceDiskSizeInMb\",\r\n \"value\": \"819200\"\r\n },\r\n {\r\n \"name\": \"VirtualMachineResourceDiskSizeInMb\",\r\n \"value\": \"819200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Standard_D48a_v4\",\r\n \"familyName\": \"standardDAv4Family\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"48\"\r\n },\r\n {\r\n \"name\": \"MemoryInMb\",\r\n \"value\": \"196608\"\r\n },\r\n {\r\n \"name\": \"SupportedByWebWorkerRoles\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"SupportedByVirtualMachines\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"WebWorkerResourceDiskSizeInMb\",\r\n \"value\": \"1228800\"\r\n },\r\n {\r\n \"name\": \"VirtualMachineResourceDiskSizeInMb\",\r\n \"value\": \"1228800\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Standard_D4a_v4\",\r\n \"familyName\": \"standardDAv4Family\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"MemoryInMb\",\r\n \"value\": \"16384\"\r\n },\r\n {\r\n \"name\": \"SupportedByWebWorkerRoles\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"SupportedByVirtualMachines\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"WebWorkerResourceDiskSizeInMb\",\r\n \"value\": \"102400\"\r\n },\r\n {\r\n \"name\": \"VirtualMachineResourceDiskSizeInMb\",\r\n \"value\": \"102400\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Standard_D64a_v4\",\r\n \"familyName\": \"standardDAv4Family\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"MemoryInMb\",\r\n \"value\": \"262144\"\r\n },\r\n {\r\n \"name\": \"SupportedByWebWorkerRoles\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"SupportedByVirtualMachines\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"WebWorkerResourceDiskSizeInMb\",\r\n \"value\": \"1638400\"\r\n },\r\n {\r\n \"name\": \"VirtualMachineResourceDiskSizeInMb\",\r\n \"value\": \"1638400\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Standard_D8a_v4\",\r\n \"familyName\": \"standardDAv4Family\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"MemoryInMb\",\r\n \"value\": \"32768\"\r\n },\r\n {\r\n \"name\": \"SupportedByWebWorkerRoles\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"SupportedByVirtualMachines\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"WebWorkerResourceDiskSizeInMb\",\r\n \"value\": \"204800\"\r\n },\r\n {\r\n \"name\": \"VirtualMachineResourceDiskSizeInMb\",\r\n \"value\": \"204800\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Standard_D96a_v4\",\r\n \"familyName\": \"standardDAv4Family\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"96\"\r\n },\r\n {\r\n \"name\": \"MemoryInMb\",\r\n \"value\": \"393216\"\r\n },\r\n {\r\n \"name\": \"SupportedByWebWorkerRoles\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"SupportedByVirtualMachines\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"WebWorkerResourceDiskSizeInMb\",\r\n \"value\": \"2457600\"\r\n },\r\n {\r\n \"name\": \"VirtualMachineResourceDiskSizeInMb\",\r\n \"value\": \"2457600\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Standard_D1\",\r\n \"familyName\": \"standardDFamily\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"MemoryInMb\",\r\n \"value\": \"3584\"\r\n },\r\n {\r\n \"name\": \"SupportedByWebWorkerRoles\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"SupportedByVirtualMachines\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"WebWorkerResourceDiskSizeInMb\",\r\n \"value\": \"51200\"\r\n },\r\n {\r\n \"name\": \"VirtualMachineResourceDiskSizeInMb\",\r\n \"value\": \"51200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Standard_D11\",\r\n \"familyName\": \"standardDFamily\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"MemoryInMb\",\r\n \"value\": \"14336\"\r\n },\r\n {\r\n \"name\": \"SupportedByWebWorkerRoles\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"SupportedByVirtualMachines\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"WebWorkerResourceDiskSizeInMb\",\r\n \"value\": \"102400\"\r\n },\r\n {\r\n \"name\": \"VirtualMachineResourceDiskSizeInMb\",\r\n \"value\": \"102400\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Standard_D12\",\r\n \"familyName\": \"standardDFamily\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"MemoryInMb\",\r\n \"value\": \"28672\"\r\n },\r\n {\r\n \"name\": \"SupportedByWebWorkerRoles\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"SupportedByVirtualMachines\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"WebWorkerResourceDiskSizeInMb\",\r\n \"value\": \"204800\"\r\n },\r\n {\r\n \"name\": \"VirtualMachineResourceDiskSizeInMb\",\r\n \"value\": \"204800\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Standard_D13\",\r\n \"familyName\": \"standardDFamily\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"MemoryInMb\",\r\n \"value\": \"57344\"\r\n },\r\n {\r\n \"name\": \"SupportedByWebWorkerRoles\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"SupportedByVirtualMachines\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"WebWorkerResourceDiskSizeInMb\",\r\n \"value\": \"409600\"\r\n },\r\n {\r\n \"name\": \"VirtualMachineResourceDiskSizeInMb\",\r\n \"value\": \"409600\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Standard_D14\",\r\n \"familyName\": \"standardDFamily\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"MemoryInMb\",\r\n \"value\": \"114688\"\r\n },\r\n {\r\n \"name\": \"SupportedByWebWorkerRoles\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"SupportedByVirtualMachines\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"WebWorkerResourceDiskSizeInMb\",\r\n \"value\": \"819200\"\r\n },\r\n {\r\n \"name\": \"VirtualMachineResourceDiskSizeInMb\",\r\n \"value\": \"819200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Standard_D2\",\r\n \"familyName\": \"standardDFamily\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"MemoryInMb\",\r\n \"value\": \"7168\"\r\n },\r\n {\r\n \"name\": \"SupportedByWebWorkerRoles\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"SupportedByVirtualMachines\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"WebWorkerResourceDiskSizeInMb\",\r\n \"value\": \"102400\"\r\n },\r\n {\r\n \"name\": \"VirtualMachineResourceDiskSizeInMb\",\r\n \"value\": \"102400\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Standard_D3\",\r\n \"familyName\": \"standardDFamily\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"MemoryInMb\",\r\n \"value\": \"14336\"\r\n },\r\n {\r\n \"name\": \"SupportedByWebWorkerRoles\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"SupportedByVirtualMachines\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"WebWorkerResourceDiskSizeInMb\",\r\n \"value\": \"204800\"\r\n },\r\n {\r\n \"name\": \"VirtualMachineResourceDiskSizeInMb\",\r\n \"value\": \"204800\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Standard_D4\",\r\n \"familyName\": \"standardDFamily\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"MemoryInMb\",\r\n \"value\": \"28672\"\r\n },\r\n {\r\n \"name\": \"SupportedByWebWorkerRoles\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"SupportedByVirtualMachines\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"WebWorkerResourceDiskSizeInMb\",\r\n \"value\": \"409600\"\r\n },\r\n {\r\n \"name\": \"VirtualMachineResourceDiskSizeInMb\",\r\n \"value\": \"409600\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Standard_D11_v2\",\r\n \"familyName\": \"standardDv2Family\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"MemoryInMb\",\r\n \"value\": \"14336\"\r\n },\r\n {\r\n \"name\": \"SupportedByWebWorkerRoles\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"SupportedByVirtualMachines\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"WebWorkerResourceDiskSizeInMb\",\r\n \"value\": \"102400\"\r\n },\r\n {\r\n \"name\": \"VirtualMachineResourceDiskSizeInMb\",\r\n \"value\": \"102400\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Standard_D12_v2\",\r\n \"familyName\": \"standardDv2Family\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"MemoryInMb\",\r\n \"value\": \"28672\"\r\n },\r\n {\r\n \"name\": \"SupportedByWebWorkerRoles\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"SupportedByVirtualMachines\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"WebWorkerResourceDiskSizeInMb\",\r\n \"value\": \"204800\"\r\n },\r\n {\r\n \"name\": \"VirtualMachineResourceDiskSizeInMb\",\r\n \"value\": \"204800\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Standard_D13_v2\",\r\n \"familyName\": \"standardDv2Family\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"MemoryInMb\",\r\n \"value\": \"57344\"\r\n },\r\n {\r\n \"name\": \"SupportedByWebWorkerRoles\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"SupportedByVirtualMachines\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"WebWorkerResourceDiskSizeInMb\",\r\n \"value\": \"409600\"\r\n },\r\n {\r\n \"name\": \"VirtualMachineResourceDiskSizeInMb\",\r\n \"value\": \"409600\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Standard_D14_v2\",\r\n \"familyName\": \"standardDv2Family\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"MemoryInMb\",\r\n \"value\": \"114688\"\r\n },\r\n {\r\n \"name\": \"SupportedByWebWorkerRoles\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"SupportedByVirtualMachines\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"WebWorkerResourceDiskSizeInMb\",\r\n \"value\": \"819200\"\r\n },\r\n {\r\n \"name\": \"VirtualMachineResourceDiskSizeInMb\",\r\n \"value\": \"819200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Standard_D15_v2\",\r\n \"familyName\": \"standardDv2Family\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"20\"\r\n },\r\n {\r\n \"name\": \"MemoryInMb\",\r\n \"value\": \"143360\"\r\n },\r\n {\r\n \"name\": \"SupportedByWebWorkerRoles\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"SupportedByVirtualMachines\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"WebWorkerResourceDiskSizeInMb\",\r\n \"value\": \"1024000\"\r\n },\r\n {\r\n \"name\": \"VirtualMachineResourceDiskSizeInMb\",\r\n \"value\": \"1024000\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Standard_D1_v2\",\r\n \"familyName\": \"standardDv2Family\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"MemoryInMb\",\r\n \"value\": \"3584\"\r\n },\r\n {\r\n \"name\": \"SupportedByWebWorkerRoles\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"SupportedByVirtualMachines\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"WebWorkerResourceDiskSizeInMb\",\r\n \"value\": \"51200\"\r\n },\r\n {\r\n \"name\": \"VirtualMachineResourceDiskSizeInMb\",\r\n \"value\": \"51200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Standard_D2_v2\",\r\n \"familyName\": \"standardDv2Family\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"MemoryInMb\",\r\n \"value\": \"7168\"\r\n },\r\n {\r\n \"name\": \"SupportedByWebWorkerRoles\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"SupportedByVirtualMachines\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"WebWorkerResourceDiskSizeInMb\",\r\n \"value\": \"102400\"\r\n },\r\n {\r\n \"name\": \"VirtualMachineResourceDiskSizeInMb\",\r\n \"value\": \"102400\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Standard_D3_v2\",\r\n \"familyName\": \"standardDv2Family\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"MemoryInMb\",\r\n \"value\": \"14336\"\r\n },\r\n {\r\n \"name\": \"SupportedByWebWorkerRoles\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"SupportedByVirtualMachines\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"WebWorkerResourceDiskSizeInMb\",\r\n \"value\": \"204800\"\r\n },\r\n {\r\n \"name\": \"VirtualMachineResourceDiskSizeInMb\",\r\n \"value\": \"204800\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Standard_D4_v2\",\r\n \"familyName\": \"standardDv2Family\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"MemoryInMb\",\r\n \"value\": \"28672\"\r\n },\r\n {\r\n \"name\": \"SupportedByWebWorkerRoles\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"SupportedByVirtualMachines\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"WebWorkerResourceDiskSizeInMb\",\r\n \"value\": \"409600\"\r\n },\r\n {\r\n \"name\": \"VirtualMachineResourceDiskSizeInMb\",\r\n \"value\": \"409600\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Standard_D5_v2\",\r\n \"familyName\": \"standardDv2Family\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"MemoryInMb\",\r\n \"value\": \"57344\"\r\n },\r\n {\r\n \"name\": \"SupportedByWebWorkerRoles\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"SupportedByVirtualMachines\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"WebWorkerResourceDiskSizeInMb\",\r\n \"value\": \"819200\"\r\n },\r\n {\r\n \"name\": \"VirtualMachineResourceDiskSizeInMb\",\r\n \"value\": \"819200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Standard_D16_v3\",\r\n \"familyName\": \"standardDv3Family\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"MemoryInMb\",\r\n \"value\": \"65536\"\r\n },\r\n {\r\n \"name\": \"SupportedByWebWorkerRoles\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"SupportedByVirtualMachines\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"WebWorkerResourceDiskSizeInMb\",\r\n \"value\": \"409600\"\r\n },\r\n {\r\n \"name\": \"VirtualMachineResourceDiskSizeInMb\",\r\n \"value\": \"409600\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Standard_D2_v3\",\r\n \"familyName\": \"standardDv3Family\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"MemoryInMb\",\r\n \"value\": \"8192\"\r\n },\r\n {\r\n \"name\": \"SupportedByWebWorkerRoles\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"SupportedByVirtualMachines\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"WebWorkerResourceDiskSizeInMb\",\r\n \"value\": \"51200\"\r\n },\r\n {\r\n \"name\": \"VirtualMachineResourceDiskSizeInMb\",\r\n \"value\": \"51200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Standard_D32_v3\",\r\n \"familyName\": \"standardDv3Family\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"MemoryInMb\",\r\n \"value\": \"131072\"\r\n },\r\n {\r\n \"name\": \"SupportedByWebWorkerRoles\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"SupportedByVirtualMachines\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"WebWorkerResourceDiskSizeInMb\",\r\n \"value\": \"819200\"\r\n },\r\n {\r\n \"name\": \"VirtualMachineResourceDiskSizeInMb\",\r\n \"value\": \"819200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Standard_D4_v3\",\r\n \"familyName\": \"standardDv3Family\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"MemoryInMb\",\r\n \"value\": \"16384\"\r\n },\r\n {\r\n \"name\": \"SupportedByWebWorkerRoles\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"SupportedByVirtualMachines\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"WebWorkerResourceDiskSizeInMb\",\r\n \"value\": \"102400\"\r\n },\r\n {\r\n \"name\": \"VirtualMachineResourceDiskSizeInMb\",\r\n \"value\": \"102400\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Standard_D64_v3\",\r\n \"familyName\": \"standardDv3Family\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"MemoryInMb\",\r\n \"value\": \"262144\"\r\n },\r\n {\r\n \"name\": \"SupportedByWebWorkerRoles\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"SupportedByVirtualMachines\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"WebWorkerResourceDiskSizeInMb\",\r\n \"value\": \"1638400\"\r\n },\r\n {\r\n \"name\": \"VirtualMachineResourceDiskSizeInMb\",\r\n \"value\": \"1638400\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Standard_D8_v3\",\r\n \"familyName\": \"standardDv3Family\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"MemoryInMb\",\r\n \"value\": \"32768\"\r\n },\r\n {\r\n \"name\": \"SupportedByWebWorkerRoles\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"SupportedByVirtualMachines\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"WebWorkerResourceDiskSizeInMb\",\r\n \"value\": \"204800\"\r\n },\r\n {\r\n \"name\": \"VirtualMachineResourceDiskSizeInMb\",\r\n \"value\": \"204800\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Standard_E16_v3\",\r\n \"familyName\": \"standardEv3Family\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"MemoryInMb\",\r\n \"value\": \"131072\"\r\n },\r\n {\r\n \"name\": \"SupportedByWebWorkerRoles\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"SupportedByVirtualMachines\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"WebWorkerResourceDiskSizeInMb\",\r\n \"value\": \"409600\"\r\n },\r\n {\r\n \"name\": \"VirtualMachineResourceDiskSizeInMb\",\r\n \"value\": \"409600\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Standard_E2_v3\",\r\n \"familyName\": \"standardEv3Family\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"MemoryInMb\",\r\n \"value\": \"16384\"\r\n },\r\n {\r\n \"name\": \"SupportedByWebWorkerRoles\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"SupportedByVirtualMachines\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"WebWorkerResourceDiskSizeInMb\",\r\n \"value\": \"51200\"\r\n },\r\n {\r\n \"name\": \"VirtualMachineResourceDiskSizeInMb\",\r\n \"value\": \"51200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Standard_E32_v3\",\r\n \"familyName\": \"standardEv3Family\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"MemoryInMb\",\r\n \"value\": \"262144\"\r\n },\r\n {\r\n \"name\": \"SupportedByWebWorkerRoles\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"SupportedByVirtualMachines\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"WebWorkerResourceDiskSizeInMb\",\r\n \"value\": \"819200\"\r\n },\r\n {\r\n \"name\": \"VirtualMachineResourceDiskSizeInMb\",\r\n \"value\": \"819200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Standard_E4_v3\",\r\n \"familyName\": \"standardEv3Family\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"MemoryInMb\",\r\n \"value\": \"32768\"\r\n },\r\n {\r\n \"name\": \"SupportedByWebWorkerRoles\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"SupportedByVirtualMachines\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"WebWorkerResourceDiskSizeInMb\",\r\n \"value\": \"102400\"\r\n },\r\n {\r\n \"name\": \"VirtualMachineResourceDiskSizeInMb\",\r\n \"value\": \"102400\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Standard_E64_v3\",\r\n \"familyName\": \"standardEv3Family\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"MemoryInMb\",\r\n \"value\": \"442368\"\r\n },\r\n {\r\n \"name\": \"SupportedByWebWorkerRoles\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"SupportedByVirtualMachines\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"WebWorkerResourceDiskSizeInMb\",\r\n \"value\": \"1638400\"\r\n },\r\n {\r\n \"name\": \"VirtualMachineResourceDiskSizeInMb\",\r\n \"value\": \"1638400\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Standard_E8_v3\",\r\n \"familyName\": \"standardEv3Family\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"MemoryInMb\",\r\n \"value\": \"65536\"\r\n },\r\n {\r\n \"name\": \"SupportedByWebWorkerRoles\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"SupportedByVirtualMachines\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"WebWorkerResourceDiskSizeInMb\",\r\n \"value\": \"204800\"\r\n },\r\n {\r\n \"name\": \"VirtualMachineResourceDiskSizeInMb\",\r\n \"value\": \"204800\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Standard_G1\",\r\n \"familyName\": \"standardGFamily\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"MemoryInMb\",\r\n \"value\": \"28672\"\r\n },\r\n {\r\n \"name\": \"SupportedByWebWorkerRoles\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"SupportedByVirtualMachines\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"WebWorkerResourceDiskSizeInMb\",\r\n \"value\": \"393216\"\r\n },\r\n {\r\n \"name\": \"VirtualMachineResourceDiskSizeInMb\",\r\n \"value\": \"393216\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Standard_G2\",\r\n \"familyName\": \"standardGFamily\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"MemoryInMb\",\r\n \"value\": \"57344\"\r\n },\r\n {\r\n \"name\": \"SupportedByWebWorkerRoles\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"SupportedByVirtualMachines\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"WebWorkerResourceDiskSizeInMb\",\r\n \"value\": \"786432\"\r\n },\r\n {\r\n \"name\": \"VirtualMachineResourceDiskSizeInMb\",\r\n \"value\": \"786432\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Standard_G3\",\r\n \"familyName\": \"standardGFamily\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"MemoryInMb\",\r\n \"value\": \"114688\"\r\n },\r\n {\r\n \"name\": \"SupportedByWebWorkerRoles\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"SupportedByVirtualMachines\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"WebWorkerResourceDiskSizeInMb\",\r\n \"value\": \"1572864\"\r\n },\r\n {\r\n \"name\": \"VirtualMachineResourceDiskSizeInMb\",\r\n \"value\": \"1572864\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Standard_G4\",\r\n \"familyName\": \"standardGFamily\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"MemoryInMb\",\r\n \"value\": \"229376\"\r\n },\r\n {\r\n \"name\": \"SupportedByWebWorkerRoles\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"SupportedByVirtualMachines\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"WebWorkerResourceDiskSizeInMb\",\r\n \"value\": \"3145728\"\r\n },\r\n {\r\n \"name\": \"VirtualMachineResourceDiskSizeInMb\",\r\n \"value\": \"3145728\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Standard_G5\",\r\n \"familyName\": \"standardGFamily\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"MemoryInMb\",\r\n \"value\": \"458752\"\r\n },\r\n {\r\n \"name\": \"SupportedByWebWorkerRoles\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"SupportedByVirtualMachines\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"WebWorkerResourceDiskSizeInMb\",\r\n \"value\": \"6291456\"\r\n },\r\n {\r\n \"name\": \"VirtualMachineResourceDiskSizeInMb\",\r\n \"value\": \"6291456\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Standard_H16\",\r\n \"familyName\": \"standardHFamily\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"MemoryInMb\",\r\n \"value\": \"114688\"\r\n },\r\n {\r\n \"name\": \"SupportedByWebWorkerRoles\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"SupportedByVirtualMachines\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"WebWorkerResourceDiskSizeInMb\",\r\n \"value\": \"2097152\"\r\n },\r\n {\r\n \"name\": \"VirtualMachineResourceDiskSizeInMb\",\r\n \"value\": \"2097152\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Standard_H16m\",\r\n \"familyName\": \"standardHFamily\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"MemoryInMb\",\r\n \"value\": \"229376\"\r\n },\r\n {\r\n \"name\": \"SupportedByWebWorkerRoles\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"SupportedByVirtualMachines\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"WebWorkerResourceDiskSizeInMb\",\r\n \"value\": \"2097152\"\r\n },\r\n {\r\n \"name\": \"VirtualMachineResourceDiskSizeInMb\",\r\n \"value\": \"2097152\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Standard_H16mr\",\r\n \"familyName\": \"standardHFamily\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"MemoryInMb\",\r\n \"value\": \"229376\"\r\n },\r\n {\r\n \"name\": \"SupportedByWebWorkerRoles\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"SupportedByVirtualMachines\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"WebWorkerResourceDiskSizeInMb\",\r\n \"value\": \"2097152\"\r\n },\r\n {\r\n \"name\": \"VirtualMachineResourceDiskSizeInMb\",\r\n \"value\": \"2097152\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Standard_H16r\",\r\n \"familyName\": \"standardHFamily\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"MemoryInMb\",\r\n \"value\": \"114688\"\r\n },\r\n {\r\n \"name\": \"SupportedByWebWorkerRoles\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"SupportedByVirtualMachines\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"WebWorkerResourceDiskSizeInMb\",\r\n \"value\": \"2097152\"\r\n },\r\n {\r\n \"name\": \"VirtualMachineResourceDiskSizeInMb\",\r\n \"value\": \"2097152\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Standard_H8\",\r\n \"familyName\": \"standardHFamily\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"MemoryInMb\",\r\n \"value\": \"57344\"\r\n },\r\n {\r\n \"name\": \"SupportedByWebWorkerRoles\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"SupportedByVirtualMachines\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"WebWorkerResourceDiskSizeInMb\",\r\n \"value\": \"1048576\"\r\n },\r\n {\r\n \"name\": \"VirtualMachineResourceDiskSizeInMb\",\r\n \"value\": \"1048576\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Standard_H8m\",\r\n \"familyName\": \"standardHFamily\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"MemoryInMb\",\r\n \"value\": \"114688\"\r\n },\r\n {\r\n \"name\": \"SupportedByWebWorkerRoles\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"SupportedByVirtualMachines\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"WebWorkerResourceDiskSizeInMb\",\r\n \"value\": \"1048576\"\r\n },\r\n {\r\n \"name\": \"VirtualMachineResourceDiskSizeInMb\",\r\n \"value\": \"1048576\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Standard_M128\",\r\n \"familyName\": \"standardMSFamily\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"128\"\r\n },\r\n {\r\n \"name\": \"MemoryInMb\",\r\n \"value\": \"2048000\"\r\n },\r\n {\r\n \"name\": \"SupportedByWebWorkerRoles\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"SupportedByVirtualMachines\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"WebWorkerResourceDiskSizeInMb\",\r\n \"value\": \"4194304\"\r\n },\r\n {\r\n \"name\": \"VirtualMachineResourceDiskSizeInMb\",\r\n \"value\": \"4194304\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Standard_M128m\",\r\n \"familyName\": \"standardMSFamily\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"128\"\r\n },\r\n {\r\n \"name\": \"MemoryInMb\",\r\n \"value\": \"3840000\"\r\n },\r\n {\r\n \"name\": \"SupportedByWebWorkerRoles\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"SupportedByVirtualMachines\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"WebWorkerResourceDiskSizeInMb\",\r\n \"value\": \"4194304\"\r\n },\r\n {\r\n \"name\": \"VirtualMachineResourceDiskSizeInMb\",\r\n \"value\": \"4194304\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Standard_M128ms\",\r\n \"familyName\": \"standardMSFamily\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"128\"\r\n },\r\n {\r\n \"name\": \"MemoryInMb\",\r\n \"value\": \"3584000\"\r\n },\r\n {\r\n \"name\": \"SupportedByWebWorkerRoles\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"SupportedByVirtualMachines\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"WebWorkerResourceDiskSizeInMb\",\r\n \"value\": \"4194304\"\r\n },\r\n {\r\n \"name\": \"VirtualMachineResourceDiskSizeInMb\",\r\n \"value\": \"4194304\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Standard_M128s\",\r\n \"familyName\": \"standardMSFamily\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"128\"\r\n },\r\n {\r\n \"name\": \"MemoryInMb\",\r\n \"value\": \"2048000\"\r\n },\r\n {\r\n \"name\": \"SupportedByWebWorkerRoles\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"SupportedByVirtualMachines\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"WebWorkerResourceDiskSizeInMb\",\r\n \"value\": \"4194304\"\r\n },\r\n {\r\n \"name\": \"VirtualMachineResourceDiskSizeInMb\",\r\n \"value\": \"4194304\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Standard_M16ms\",\r\n \"familyName\": \"standardMSFamily\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"MemoryInMb\",\r\n \"value\": \"448000\"\r\n },\r\n {\r\n \"name\": \"SupportedByWebWorkerRoles\",\r\n \"value\": \"false\"\r\n },\r\n {\r\n \"name\": \"SupportedByVirtualMachines\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"WebWorkerResourceDiskSizeInMb\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"name\": \"VirtualMachineResourceDiskSizeInMb\",\r\n \"value\": \"524288\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Standard_M32ms\",\r\n \"familyName\": \"standardMSFamily\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"MemoryInMb\",\r\n \"value\": \"896000\"\r\n },\r\n {\r\n \"name\": \"SupportedByWebWorkerRoles\",\r\n \"value\": \"false\"\r\n },\r\n {\r\n \"name\": \"SupportedByVirtualMachines\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"WebWorkerResourceDiskSizeInMb\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"name\": \"VirtualMachineResourceDiskSizeInMb\",\r\n \"value\": \"1048576\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Standard_M64\",\r\n \"familyName\": \"standardMSFamily\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"MemoryInMb\",\r\n \"value\": \"1024000\"\r\n },\r\n {\r\n \"name\": \"SupportedByWebWorkerRoles\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"SupportedByVirtualMachines\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"WebWorkerResourceDiskSizeInMb\",\r\n \"value\": \"2097152\"\r\n },\r\n {\r\n \"name\": \"VirtualMachineResourceDiskSizeInMb\",\r\n \"value\": \"2097152\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Standard_M64m\",\r\n \"familyName\": \"standardMSFamily\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"MemoryInMb\",\r\n \"value\": \"1792000\"\r\n },\r\n {\r\n \"name\": \"SupportedByWebWorkerRoles\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"SupportedByVirtualMachines\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"WebWorkerResourceDiskSizeInMb\",\r\n \"value\": \"2097152\"\r\n },\r\n {\r\n \"name\": \"VirtualMachineResourceDiskSizeInMb\",\r\n \"value\": \"2097152\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Standard_M64ms\",\r\n \"familyName\": \"standardMSFamily\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"MemoryInMb\",\r\n \"value\": \"1792000\"\r\n },\r\n {\r\n \"name\": \"SupportedByWebWorkerRoles\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"SupportedByVirtualMachines\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"WebWorkerResourceDiskSizeInMb\",\r\n \"value\": \"2097152\"\r\n },\r\n {\r\n \"name\": \"VirtualMachineResourceDiskSizeInMb\",\r\n \"value\": \"2097152\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Standard_M64s\",\r\n \"familyName\": \"standardMSFamily\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"MemoryInMb\",\r\n \"value\": \"1024000\"\r\n },\r\n {\r\n \"name\": \"SupportedByWebWorkerRoles\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"SupportedByVirtualMachines\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"WebWorkerResourceDiskSizeInMb\",\r\n \"value\": \"2097152\"\r\n },\r\n {\r\n \"name\": \"VirtualMachineResourceDiskSizeInMb\",\r\n \"value\": \"2097152\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Standard_M8ms\",\r\n \"familyName\": \"standardMSFamily\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"MemoryInMb\",\r\n \"value\": \"224000\"\r\n },\r\n {\r\n \"name\": \"SupportedByWebWorkerRoles\",\r\n \"value\": \"false\"\r\n },\r\n {\r\n \"name\": \"SupportedByVirtualMachines\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"WebWorkerResourceDiskSizeInMb\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"name\": \"VirtualMachineResourceDiskSizeInMb\",\r\n \"value\": \"262144\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Standard_NC12\",\r\n \"familyName\": \"standardNCFamily\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"12\"\r\n },\r\n {\r\n \"name\": \"MemoryInMb\",\r\n \"value\": \"114688\"\r\n },\r\n {\r\n \"name\": \"SupportedByWebWorkerRoles\",\r\n \"value\": \"false\"\r\n },\r\n {\r\n \"name\": \"SupportedByVirtualMachines\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"48\"\r\n },\r\n {\r\n \"name\": \"WebWorkerResourceDiskSizeInMb\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"name\": \"VirtualMachineResourceDiskSizeInMb\",\r\n \"value\": \"696320\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Standard_NC24\",\r\n \"familyName\": \"standardNCFamily\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"24\"\r\n },\r\n {\r\n \"name\": \"MemoryInMb\",\r\n \"value\": \"229376\"\r\n },\r\n {\r\n \"name\": \"SupportedByWebWorkerRoles\",\r\n \"value\": \"false\"\r\n },\r\n {\r\n \"name\": \"SupportedByVirtualMachines\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"WebWorkerResourceDiskSizeInMb\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"name\": \"VirtualMachineResourceDiskSizeInMb\",\r\n \"value\": \"1474560\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Standard_NC6\",\r\n \"familyName\": \"standardNCFamily\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"6\"\r\n },\r\n {\r\n \"name\": \"MemoryInMb\",\r\n \"value\": \"57344\"\r\n },\r\n {\r\n \"name\": \"SupportedByWebWorkerRoles\",\r\n \"value\": \"false\"\r\n },\r\n {\r\n \"name\": \"SupportedByVirtualMachines\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"24\"\r\n },\r\n {\r\n \"name\": \"WebWorkerResourceDiskSizeInMb\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"name\": \"VirtualMachineResourceDiskSizeInMb\",\r\n \"value\": \"348160\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Standard_NV12\",\r\n \"familyName\": \"standardNVFamily\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"12\"\r\n },\r\n {\r\n \"name\": \"MemoryInMb\",\r\n \"value\": \"114688\"\r\n },\r\n {\r\n \"name\": \"SupportedByWebWorkerRoles\",\r\n \"value\": \"false\"\r\n },\r\n {\r\n \"name\": \"SupportedByVirtualMachines\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"48\"\r\n },\r\n {\r\n \"name\": \"WebWorkerResourceDiskSizeInMb\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"name\": \"VirtualMachineResourceDiskSizeInMb\",\r\n \"value\": \"696320\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Standard_NV24\",\r\n \"familyName\": \"standardNVFamily\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"24\"\r\n },\r\n {\r\n \"name\": \"MemoryInMb\",\r\n \"value\": \"229376\"\r\n },\r\n {\r\n \"name\": \"SupportedByWebWorkerRoles\",\r\n \"value\": \"false\"\r\n },\r\n {\r\n \"name\": \"SupportedByVirtualMachines\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"WebWorkerResourceDiskSizeInMb\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"name\": \"VirtualMachineResourceDiskSizeInMb\",\r\n \"value\": \"1474560\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Standard_NV6\",\r\n \"familyName\": \"standardNVFamily\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"6\"\r\n },\r\n {\r\n \"name\": \"MemoryInMb\",\r\n \"value\": \"57344\"\r\n },\r\n {\r\n \"name\": \"SupportedByWebWorkerRoles\",\r\n \"value\": \"false\"\r\n },\r\n {\r\n \"name\": \"SupportedByVirtualMachines\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"24\"\r\n },\r\n {\r\n \"name\": \"WebWorkerResourceDiskSizeInMb\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"name\": \"VirtualMachineResourceDiskSizeInMb\",\r\n \"value\": \"348160\"\r\n }\r\n ]\r\n }\r\n ]\r\n}", "StatusCode": 200 } ], diff --git a/sdk/batch/Microsoft.Azure.Management.Batch/tests/SessionRecords/LocationTests/ListSupportedCloudServiceSkusFilterFamilyNameAsync.json b/sdk/batch/Microsoft.Azure.Management.Batch/tests/SessionRecords/LocationTests/ListSupportedCloudServiceSkusFilterFamilyNameAsync.json index f920a7bb26b35..19a2dad071293 100644 --- a/sdk/batch/Microsoft.Azure.Management.Batch/tests/SessionRecords/LocationTests/ListSupportedCloudServiceSkusFilterFamilyNameAsync.json +++ b/sdk/batch/Microsoft.Azure.Management.Batch/tests/SessionRecords/LocationTests/ListSupportedCloudServiceSkusFilterFamilyNameAsync.json @@ -7,13 +7,13 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3f59d4ee-db6d-4767-aa16-b644c4380094" + "58bdd90c-c20f-489d-a48e-60df84c26ff8" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.6.26614.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19043.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" @@ -23,20 +23,23 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 01 Nov 2021 16:48:07 GMT" + ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11999" ], "x-ms-request-id": [ - "92949514-2d86-42e2-a0ee-e38861bb07bf" + "ac7781e2-ede4-44e8-8454-96dd22e97e79" ], "x-ms-correlation-request-id": [ - "92949514-2d86-42e2-a0ee-e38861bb07bf" + "ac7781e2-ede4-44e8-8454-96dd22e97e79" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20210728T131927Z:92949514-2d86-42e2-a0ee-e38861bb07bf" + "NORTHCENTRALUS:20211101T164807Z:ac7781e2-ede4-44e8-8454-96dd22e97e79" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -44,53 +47,56 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Wed, 28 Jul 2021 13:19:26 GMT" + "Content-Length": [ + "8454" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" - ], - "Content-Length": [ - "7221" ] }, - "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 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 \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\",\r\n \"2015-07-01\",\r\n \"2014-05-01-privatepreview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\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 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 \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"batchAccounts/certificates\",\r\n \"locations\": [\r\n \"West Europe\",\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Europe\",\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [\r\n \"West Europe\",\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"West Europe\",\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/accountOperationResults\",\r\n \"locations\": [\r\n \"West Europe\",\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\",\r\n \"2015-07-01\",\r\n \"2014-05-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "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 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 \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\",\r\n \"2015-07-01\",\r\n \"2014-05-01-privatepreview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\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 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 \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"batchAccounts/certificates\",\r\n \"locations\": [\r\n \"West Europe\",\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Europe\",\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [\r\n \"West Europe\",\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"West Europe\",\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/accountOperationResults\",\r\n \"locations\": [\r\n \"West Europe\",\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\",\r\n \"2015-07-01\",\r\n \"2014-05-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/virtualMachineSkus\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US 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 \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/cloudServiceSkus\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US 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 \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/East%20US/cloudServiceSkus?$filter=startswith%28familyName%2C%27basic%27%29&api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL0Vhc3QlMjBVUy9jbG91ZFNlcnZpY2VTa3VzPyRmaWx0ZXI9c3RhcnRzd2l0aCUyOGZhbWlseU5hbWUlMkMlMjdiYXNpYyUyNyUyOSZhcGktdmVyc2lvbj0yMDIxLTA2LTAx", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/West%20US/cloudServiceSkus?$filter=startswith(familyName%2C'standardD')&api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL1dlc3QlMjBVUy9jbG91ZFNlcnZpY2VTa3VzPyRmaWx0ZXI9c3RhcnRzd2l0aCUyOGZhbWlseU5hbWUlMkMlMjdzdGFuZGFyZEQlMjclMjkmYXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "73a99cc2-b77d-4755-833e-a391b00470f6" + "56b7637c-5e93-4cd5-a6c3-3ff0e1ccad5e" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.6.26614.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/15.0.0.0" + "Microsoft.Azure.Management.Batch.BatchManagementClient/14.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 01 Nov 2021 16:48:07 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11998" ], "x-ms-request-id": [ - "d9436990-9c14-4500-b962-43a37805cff4" + "c3b1aa9e-6db5-479a-95e8-b59c77972361" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -98,20 +104,14 @@ "X-Content-Type-Options": [ "nosniff" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-correlation-request-id": [ - "17265621-f164-40f6-baf8-932b1eb5e489" + "ba78be94-0049-4df8-9006-4425010a910f" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20210728T131928Z:17265621-f164-40f6-baf8-932b1eb5e489" - ], - "Date": [ - "Wed, 28 Jul 2021 13:19:27 GMT" + "NORTHCENTRALUS:20211101T164808Z:ba78be94-0049-4df8-9006-4425010a910f" ], "Content-Length": [ - "275" + "13131" ], "Content-Type": [ "application/json; charset=utf-8" @@ -120,7 +120,7 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"Basic_A1\",\r\n \"familyName\": \"basicAFamily\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Basic_A2\",\r\n \"familyName\": \"basicAFamily\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Basic_A3\",\r\n \"familyName\": \"basicAFamily\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Basic_A4\",\r\n \"familyName\": \"basicAFamily\",\r\n \"capabilities\": []\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"Standard_D16a_v4\",\r\n \"familyName\": \"standardDAv4Family\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"MemoryInMb\",\r\n \"value\": \"65536\"\r\n },\r\n {\r\n \"name\": \"SupportedByWebWorkerRoles\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"SupportedByVirtualMachines\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"WebWorkerResourceDiskSizeInMb\",\r\n \"value\": \"409600\"\r\n },\r\n {\r\n \"name\": \"VirtualMachineResourceDiskSizeInMb\",\r\n \"value\": \"409600\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Standard_D2a_v4\",\r\n \"familyName\": \"standardDAv4Family\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"MemoryInMb\",\r\n \"value\": \"8192\"\r\n },\r\n {\r\n \"name\": \"SupportedByWebWorkerRoles\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"SupportedByVirtualMachines\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"WebWorkerResourceDiskSizeInMb\",\r\n \"value\": \"51200\"\r\n },\r\n {\r\n \"name\": \"VirtualMachineResourceDiskSizeInMb\",\r\n \"value\": \"51200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Standard_D32a_v4\",\r\n \"familyName\": \"standardDAv4Family\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"MemoryInMb\",\r\n \"value\": \"131072\"\r\n },\r\n {\r\n \"name\": \"SupportedByWebWorkerRoles\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"SupportedByVirtualMachines\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"WebWorkerResourceDiskSizeInMb\",\r\n \"value\": \"819200\"\r\n },\r\n {\r\n \"name\": \"VirtualMachineResourceDiskSizeInMb\",\r\n \"value\": \"819200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Standard_D48a_v4\",\r\n \"familyName\": \"standardDAv4Family\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"48\"\r\n },\r\n {\r\n \"name\": \"MemoryInMb\",\r\n \"value\": \"196608\"\r\n },\r\n {\r\n \"name\": \"SupportedByWebWorkerRoles\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"SupportedByVirtualMachines\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"WebWorkerResourceDiskSizeInMb\",\r\n \"value\": \"1228800\"\r\n },\r\n {\r\n \"name\": \"VirtualMachineResourceDiskSizeInMb\",\r\n \"value\": \"1228800\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Standard_D4a_v4\",\r\n \"familyName\": \"standardDAv4Family\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"MemoryInMb\",\r\n \"value\": \"16384\"\r\n },\r\n {\r\n \"name\": \"SupportedByWebWorkerRoles\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"SupportedByVirtualMachines\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"WebWorkerResourceDiskSizeInMb\",\r\n \"value\": \"102400\"\r\n },\r\n {\r\n \"name\": \"VirtualMachineResourceDiskSizeInMb\",\r\n \"value\": \"102400\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Standard_D64a_v4\",\r\n \"familyName\": \"standardDAv4Family\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"MemoryInMb\",\r\n \"value\": \"262144\"\r\n },\r\n {\r\n \"name\": \"SupportedByWebWorkerRoles\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"SupportedByVirtualMachines\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"WebWorkerResourceDiskSizeInMb\",\r\n \"value\": \"1638400\"\r\n },\r\n {\r\n \"name\": \"VirtualMachineResourceDiskSizeInMb\",\r\n \"value\": \"1638400\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Standard_D8a_v4\",\r\n \"familyName\": \"standardDAv4Family\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"MemoryInMb\",\r\n \"value\": \"32768\"\r\n },\r\n {\r\n \"name\": \"SupportedByWebWorkerRoles\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"SupportedByVirtualMachines\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"WebWorkerResourceDiskSizeInMb\",\r\n \"value\": \"204800\"\r\n },\r\n {\r\n \"name\": \"VirtualMachineResourceDiskSizeInMb\",\r\n \"value\": \"204800\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Standard_D96a_v4\",\r\n \"familyName\": \"standardDAv4Family\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"96\"\r\n },\r\n {\r\n \"name\": \"MemoryInMb\",\r\n \"value\": \"393216\"\r\n },\r\n {\r\n \"name\": \"SupportedByWebWorkerRoles\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"SupportedByVirtualMachines\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"WebWorkerResourceDiskSizeInMb\",\r\n \"value\": \"2457600\"\r\n },\r\n {\r\n \"name\": \"VirtualMachineResourceDiskSizeInMb\",\r\n \"value\": \"2457600\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Standard_D1\",\r\n \"familyName\": \"standardDFamily\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"MemoryInMb\",\r\n \"value\": \"3584\"\r\n },\r\n {\r\n \"name\": \"SupportedByWebWorkerRoles\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"SupportedByVirtualMachines\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"WebWorkerResourceDiskSizeInMb\",\r\n \"value\": \"51200\"\r\n },\r\n {\r\n \"name\": \"VirtualMachineResourceDiskSizeInMb\",\r\n \"value\": \"51200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Standard_D11\",\r\n \"familyName\": \"standardDFamily\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"MemoryInMb\",\r\n \"value\": \"14336\"\r\n },\r\n {\r\n \"name\": \"SupportedByWebWorkerRoles\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"SupportedByVirtualMachines\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"WebWorkerResourceDiskSizeInMb\",\r\n \"value\": \"102400\"\r\n },\r\n {\r\n \"name\": \"VirtualMachineResourceDiskSizeInMb\",\r\n \"value\": \"102400\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Standard_D12\",\r\n \"familyName\": \"standardDFamily\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"MemoryInMb\",\r\n \"value\": \"28672\"\r\n },\r\n {\r\n \"name\": \"SupportedByWebWorkerRoles\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"SupportedByVirtualMachines\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"WebWorkerResourceDiskSizeInMb\",\r\n \"value\": \"204800\"\r\n },\r\n {\r\n \"name\": \"VirtualMachineResourceDiskSizeInMb\",\r\n \"value\": \"204800\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Standard_D13\",\r\n \"familyName\": \"standardDFamily\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"MemoryInMb\",\r\n \"value\": \"57344\"\r\n },\r\n {\r\n \"name\": \"SupportedByWebWorkerRoles\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"SupportedByVirtualMachines\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"WebWorkerResourceDiskSizeInMb\",\r\n \"value\": \"409600\"\r\n },\r\n {\r\n \"name\": \"VirtualMachineResourceDiskSizeInMb\",\r\n \"value\": \"409600\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Standard_D14\",\r\n \"familyName\": \"standardDFamily\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"MemoryInMb\",\r\n \"value\": \"114688\"\r\n },\r\n {\r\n \"name\": \"SupportedByWebWorkerRoles\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"SupportedByVirtualMachines\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"WebWorkerResourceDiskSizeInMb\",\r\n \"value\": \"819200\"\r\n },\r\n {\r\n \"name\": \"VirtualMachineResourceDiskSizeInMb\",\r\n \"value\": \"819200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Standard_D2\",\r\n \"familyName\": \"standardDFamily\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"MemoryInMb\",\r\n \"value\": \"7168\"\r\n },\r\n {\r\n \"name\": \"SupportedByWebWorkerRoles\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"SupportedByVirtualMachines\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"WebWorkerResourceDiskSizeInMb\",\r\n \"value\": \"102400\"\r\n },\r\n {\r\n \"name\": \"VirtualMachineResourceDiskSizeInMb\",\r\n \"value\": \"102400\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Standard_D3\",\r\n \"familyName\": \"standardDFamily\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"MemoryInMb\",\r\n \"value\": \"14336\"\r\n },\r\n {\r\n \"name\": \"SupportedByWebWorkerRoles\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"SupportedByVirtualMachines\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"WebWorkerResourceDiskSizeInMb\",\r\n \"value\": \"204800\"\r\n },\r\n {\r\n \"name\": \"VirtualMachineResourceDiskSizeInMb\",\r\n \"value\": \"204800\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Standard_D4\",\r\n \"familyName\": \"standardDFamily\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"MemoryInMb\",\r\n \"value\": \"28672\"\r\n },\r\n {\r\n \"name\": \"SupportedByWebWorkerRoles\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"SupportedByVirtualMachines\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"WebWorkerResourceDiskSizeInMb\",\r\n \"value\": \"409600\"\r\n },\r\n {\r\n \"name\": \"VirtualMachineResourceDiskSizeInMb\",\r\n \"value\": \"409600\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Standard_D11_v2\",\r\n \"familyName\": \"standardDv2Family\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"MemoryInMb\",\r\n \"value\": \"14336\"\r\n },\r\n {\r\n \"name\": \"SupportedByWebWorkerRoles\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"SupportedByVirtualMachines\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"WebWorkerResourceDiskSizeInMb\",\r\n \"value\": \"102400\"\r\n },\r\n {\r\n \"name\": \"VirtualMachineResourceDiskSizeInMb\",\r\n \"value\": \"102400\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Standard_D12_v2\",\r\n \"familyName\": \"standardDv2Family\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"MemoryInMb\",\r\n \"value\": \"28672\"\r\n },\r\n {\r\n \"name\": \"SupportedByWebWorkerRoles\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"SupportedByVirtualMachines\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"WebWorkerResourceDiskSizeInMb\",\r\n \"value\": \"204800\"\r\n },\r\n {\r\n \"name\": \"VirtualMachineResourceDiskSizeInMb\",\r\n \"value\": \"204800\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Standard_D13_v2\",\r\n \"familyName\": \"standardDv2Family\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"MemoryInMb\",\r\n \"value\": \"57344\"\r\n },\r\n {\r\n \"name\": \"SupportedByWebWorkerRoles\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"SupportedByVirtualMachines\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"WebWorkerResourceDiskSizeInMb\",\r\n \"value\": \"409600\"\r\n },\r\n {\r\n \"name\": \"VirtualMachineResourceDiskSizeInMb\",\r\n \"value\": \"409600\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Standard_D14_v2\",\r\n \"familyName\": \"standardDv2Family\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"MemoryInMb\",\r\n \"value\": \"114688\"\r\n },\r\n {\r\n \"name\": \"SupportedByWebWorkerRoles\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"SupportedByVirtualMachines\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"WebWorkerResourceDiskSizeInMb\",\r\n \"value\": \"819200\"\r\n },\r\n {\r\n \"name\": \"VirtualMachineResourceDiskSizeInMb\",\r\n \"value\": \"819200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Standard_D15_v2\",\r\n \"familyName\": \"standardDv2Family\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"20\"\r\n },\r\n {\r\n \"name\": \"MemoryInMb\",\r\n \"value\": \"143360\"\r\n },\r\n {\r\n \"name\": \"SupportedByWebWorkerRoles\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"SupportedByVirtualMachines\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"WebWorkerResourceDiskSizeInMb\",\r\n \"value\": \"1024000\"\r\n },\r\n {\r\n \"name\": \"VirtualMachineResourceDiskSizeInMb\",\r\n \"value\": \"1024000\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Standard_D1_v2\",\r\n \"familyName\": \"standardDv2Family\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"MemoryInMb\",\r\n \"value\": \"3584\"\r\n },\r\n {\r\n \"name\": \"SupportedByWebWorkerRoles\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"SupportedByVirtualMachines\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"WebWorkerResourceDiskSizeInMb\",\r\n \"value\": \"51200\"\r\n },\r\n {\r\n \"name\": \"VirtualMachineResourceDiskSizeInMb\",\r\n \"value\": \"51200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Standard_D2_v2\",\r\n \"familyName\": \"standardDv2Family\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"MemoryInMb\",\r\n \"value\": \"7168\"\r\n },\r\n {\r\n \"name\": \"SupportedByWebWorkerRoles\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"SupportedByVirtualMachines\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"WebWorkerResourceDiskSizeInMb\",\r\n \"value\": \"102400\"\r\n },\r\n {\r\n \"name\": \"VirtualMachineResourceDiskSizeInMb\",\r\n \"value\": \"102400\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Standard_D3_v2\",\r\n \"familyName\": \"standardDv2Family\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"MemoryInMb\",\r\n \"value\": \"14336\"\r\n },\r\n {\r\n \"name\": \"SupportedByWebWorkerRoles\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"SupportedByVirtualMachines\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"WebWorkerResourceDiskSizeInMb\",\r\n \"value\": \"204800\"\r\n },\r\n {\r\n \"name\": \"VirtualMachineResourceDiskSizeInMb\",\r\n \"value\": \"204800\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Standard_D4_v2\",\r\n \"familyName\": \"standardDv2Family\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"MemoryInMb\",\r\n \"value\": \"28672\"\r\n },\r\n {\r\n \"name\": \"SupportedByWebWorkerRoles\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"SupportedByVirtualMachines\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"WebWorkerResourceDiskSizeInMb\",\r\n \"value\": \"409600\"\r\n },\r\n {\r\n \"name\": \"VirtualMachineResourceDiskSizeInMb\",\r\n \"value\": \"409600\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Standard_D5_v2\",\r\n \"familyName\": \"standardDv2Family\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"MemoryInMb\",\r\n \"value\": \"57344\"\r\n },\r\n {\r\n \"name\": \"SupportedByWebWorkerRoles\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"SupportedByVirtualMachines\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"WebWorkerResourceDiskSizeInMb\",\r\n \"value\": \"819200\"\r\n },\r\n {\r\n \"name\": \"VirtualMachineResourceDiskSizeInMb\",\r\n \"value\": \"819200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Standard_D16_v3\",\r\n \"familyName\": \"standardDv3Family\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"MemoryInMb\",\r\n \"value\": \"65536\"\r\n },\r\n {\r\n \"name\": \"SupportedByWebWorkerRoles\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"SupportedByVirtualMachines\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"WebWorkerResourceDiskSizeInMb\",\r\n \"value\": \"409600\"\r\n },\r\n {\r\n \"name\": \"VirtualMachineResourceDiskSizeInMb\",\r\n \"value\": \"409600\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Standard_D2_v3\",\r\n \"familyName\": \"standardDv3Family\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"MemoryInMb\",\r\n \"value\": \"8192\"\r\n },\r\n {\r\n \"name\": \"SupportedByWebWorkerRoles\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"SupportedByVirtualMachines\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"WebWorkerResourceDiskSizeInMb\",\r\n \"value\": \"51200\"\r\n },\r\n {\r\n \"name\": \"VirtualMachineResourceDiskSizeInMb\",\r\n \"value\": \"51200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Standard_D32_v3\",\r\n \"familyName\": \"standardDv3Family\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"MemoryInMb\",\r\n \"value\": \"131072\"\r\n },\r\n {\r\n \"name\": \"SupportedByWebWorkerRoles\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"SupportedByVirtualMachines\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"WebWorkerResourceDiskSizeInMb\",\r\n \"value\": \"819200\"\r\n },\r\n {\r\n \"name\": \"VirtualMachineResourceDiskSizeInMb\",\r\n \"value\": \"819200\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Standard_D4_v3\",\r\n \"familyName\": \"standardDv3Family\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"MemoryInMb\",\r\n \"value\": \"16384\"\r\n },\r\n {\r\n \"name\": \"SupportedByWebWorkerRoles\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"SupportedByVirtualMachines\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"WebWorkerResourceDiskSizeInMb\",\r\n \"value\": \"102400\"\r\n },\r\n {\r\n \"name\": \"VirtualMachineResourceDiskSizeInMb\",\r\n \"value\": \"102400\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Standard_D64_v3\",\r\n \"familyName\": \"standardDv3Family\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"MemoryInMb\",\r\n \"value\": \"262144\"\r\n },\r\n {\r\n \"name\": \"SupportedByWebWorkerRoles\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"SupportedByVirtualMachines\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"WebWorkerResourceDiskSizeInMb\",\r\n \"value\": \"1638400\"\r\n },\r\n {\r\n \"name\": \"VirtualMachineResourceDiskSizeInMb\",\r\n \"value\": \"1638400\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Standard_D8_v3\",\r\n \"familyName\": \"standardDv3Family\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"MemoryInMb\",\r\n \"value\": \"32768\"\r\n },\r\n {\r\n \"name\": \"SupportedByWebWorkerRoles\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"SupportedByVirtualMachines\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"WebWorkerResourceDiskSizeInMb\",\r\n \"value\": \"204800\"\r\n },\r\n {\r\n \"name\": \"VirtualMachineResourceDiskSizeInMb\",\r\n \"value\": \"204800\"\r\n }\r\n ]\r\n }\r\n ]\r\n}", "StatusCode": 200 } ], diff --git a/sdk/batch/Microsoft.Azure.Management.Batch/tests/SessionRecords/LocationTests/ListSupportedCloudServiceSkusMaxResultsAsync.json b/sdk/batch/Microsoft.Azure.Management.Batch/tests/SessionRecords/LocationTests/ListSupportedCloudServiceSkusMaxResultsAsync.json index 2a8d492b0679d..1fcbd6b37afc6 100644 --- a/sdk/batch/Microsoft.Azure.Management.Batch/tests/SessionRecords/LocationTests/ListSupportedCloudServiceSkusMaxResultsAsync.json +++ b/sdk/batch/Microsoft.Azure.Management.Batch/tests/SessionRecords/LocationTests/ListSupportedCloudServiceSkusMaxResultsAsync.json @@ -7,13 +7,13 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7a186747-59cd-47e3-83ef-809821bd6915" + "9295a0ec-10ef-4698-8649-6abc04910003" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.6.26614.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19043.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" @@ -23,20 +23,23 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 01 Nov 2021 16:47:54 GMT" + ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "11999" ], "x-ms-request-id": [ - "c0eed713-d093-4e5e-855f-2e30b5697fec" + "f70b05dc-fb9d-402c-bfdd-64a8b859d59d" ], "x-ms-correlation-request-id": [ - "c0eed713-d093-4e5e-855f-2e30b5697fec" + "f70b05dc-fb9d-402c-bfdd-64a8b859d59d" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20210728T131924Z:c0eed713-d093-4e5e-855f-2e30b5697fec" + "NORTHCENTRALUS:20211101T164755Z:f70b05dc-fb9d-402c-bfdd-64a8b859d59d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -44,53 +47,56 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Wed, 28 Jul 2021 13:19:24 GMT" + "Content-Length": [ + "8454" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" - ], - "Content-Length": [ - "7221" ] }, - "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 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 \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\",\r\n \"2015-07-01\",\r\n \"2014-05-01-privatepreview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\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 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 \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"batchAccounts/certificates\",\r\n \"locations\": [\r\n \"West Europe\",\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Europe\",\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [\r\n \"West Europe\",\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"West Europe\",\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/accountOperationResults\",\r\n \"locations\": [\r\n \"West Europe\",\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\",\r\n \"2015-07-01\",\r\n \"2014-05-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "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 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 \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\",\r\n \"2015-07-01\",\r\n \"2014-05-01-privatepreview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\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 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 \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"batchAccounts/certificates\",\r\n \"locations\": [\r\n \"West Europe\",\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Europe\",\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [\r\n \"West Europe\",\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"West Europe\",\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/accountOperationResults\",\r\n \"locations\": [\r\n \"West Europe\",\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\",\r\n \"2015-07-01\",\r\n \"2014-05-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/virtualMachineSkus\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US 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 \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/cloudServiceSkus\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US 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 \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/East%20US/cloudServiceSkus?maxresults=5&api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL0Vhc3QlMjBVUy9jbG91ZFNlcnZpY2VTa3VzP21heHJlc3VsdHM9NSZhcGktdmVyc2lvbj0yMDIxLTA2LTAx", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/West%20US/cloudServiceSkus?maxresults=5&api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL1dlc3QlMjBVUy9jbG91ZFNlcnZpY2VTa3VzP21heHJlc3VsdHM9NSZhcGktdmVyc2lvbj0yMDIxLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4208d388-927a-48fc-ae3d-0999ceb0ffb4" + "5a859908-046e-4820-8ba4-7839f15056ed" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.6.26614.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/15.0.0.0" + "Microsoft.Azure.Management.Batch.BatchManagementClient/14.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Mon, 01 Nov 2021 16:47:55 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11999" ], "x-ms-request-id": [ - "e9f81050-d876-44a6-b619-e911d29a85fe" + "c02ccd31-c997-4651-a5dd-bfa7ecf7ab63" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -98,20 +104,14 @@ "X-Content-Type-Options": [ "nosniff" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-correlation-request-id": [ - "3019bd9e-cdb2-4f07-9fe0-e19d482aefe1" + "1361763c-7e02-442c-ace3-3a29e2cbbce1" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20210728T131924Z:3019bd9e-cdb2-4f07-9fe0-e19d482aefe1" - ], - "Date": [ - "Wed, 28 Jul 2021 13:19:24 GMT" + "NORTHCENTRALUS:20211101T164756Z:1361763c-7e02-442c-ace3-3a29e2cbbce1" ], "Content-Length": [ - "948" + "2286" ], "Content-Type": [ "application/json; charset=utf-8" @@ -120,7 +120,7 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"Basic_A1\",\r\n \"familyName\": \"basicAFamily\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Basic_A2\",\r\n \"familyName\": \"basicAFamily\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Basic_A3\",\r\n \"familyName\": \"basicAFamily\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Basic_A4\",\r\n \"familyName\": \"basicAFamily\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"A5\",\r\n \"familyName\": \"standardA0_A7Family\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"MemoryInMb\",\r\n \"value\": \"14336\"\r\n },\r\n {\r\n \"name\": \"SupportedByWebWorkerRoles\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"SupportedByVirtualMachines\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"WebWorkerResourceDiskSizeInMb\",\r\n \"value\": \"501760\"\r\n },\r\n {\r\n \"name\": \"VirtualMachineResourceDiskSizeInMb\",\r\n \"value\": \"138240\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"nextLink\": \"https://centraluseuap.management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/East%20US/cloudServiceSkus?maxresults=5&api-version=2021-06-01&$skiptoken=NPK%3D19%3AstandardA0_A7FamilyNRK%3D2%3AA6SM%3D5%3AFalse\"\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"A5\",\r\n \"familyName\": \"standardA0_A7Family\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"MemoryInMb\",\r\n \"value\": \"14336\"\r\n },\r\n {\r\n \"name\": \"SupportedByWebWorkerRoles\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"SupportedByVirtualMachines\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"WebWorkerResourceDiskSizeInMb\",\r\n \"value\": \"501760\"\r\n },\r\n {\r\n \"name\": \"VirtualMachineResourceDiskSizeInMb\",\r\n \"value\": \"138240\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"A6\",\r\n \"familyName\": \"standardA0_A7Family\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"MemoryInMb\",\r\n \"value\": \"28672\"\r\n },\r\n {\r\n \"name\": \"SupportedByWebWorkerRoles\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"SupportedByVirtualMachines\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"WebWorkerResourceDiskSizeInMb\",\r\n \"value\": \"1024000\"\r\n },\r\n {\r\n \"name\": \"VirtualMachineResourceDiskSizeInMb\",\r\n \"value\": \"291840\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"A7\",\r\n \"familyName\": \"standardA0_A7Family\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"MemoryInMb\",\r\n \"value\": \"57344\"\r\n },\r\n {\r\n \"name\": \"SupportedByWebWorkerRoles\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"SupportedByVirtualMachines\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"WebWorkerResourceDiskSizeInMb\",\r\n \"value\": \"2088960\"\r\n },\r\n {\r\n \"name\": \"VirtualMachineResourceDiskSizeInMb\",\r\n \"value\": \"619520\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"ExtraLarge\",\r\n \"familyName\": \"standardA0_A7Family\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"MemoryInMb\",\r\n \"value\": \"14336\"\r\n },\r\n {\r\n \"name\": \"SupportedByWebWorkerRoles\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"SupportedByVirtualMachines\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"WebWorkerResourceDiskSizeInMb\",\r\n \"value\": \"2088960\"\r\n },\r\n {\r\n \"name\": \"VirtualMachineResourceDiskSizeInMb\",\r\n \"value\": \"619520\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Large\",\r\n \"familyName\": \"standardA0_A7Family\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"MemoryInMb\",\r\n \"value\": \"7168\"\r\n },\r\n {\r\n \"name\": \"SupportedByWebWorkerRoles\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"SupportedByVirtualMachines\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"WebWorkerResourceDiskSizeInMb\",\r\n \"value\": \"1024000\"\r\n },\r\n {\r\n \"name\": \"VirtualMachineResourceDiskSizeInMb\",\r\n \"value\": \"291840\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"nextLink\": \"https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/West%20US/cloudServiceSkus?maxresults=5&api-version=2021-06-01&$skiptoken=NPK%3D19%3AstandardA0_A7FamilyNRK%3D6%3AMediumSM%3D5%3AFalse\"\r\n}", "StatusCode": 200 } ], diff --git a/sdk/batch/Microsoft.Azure.Management.Batch/tests/SessionRecords/PoolTests/BatchPoolEndToEndAsync.json b/sdk/batch/Microsoft.Azure.Management.Batch/tests/SessionRecords/PoolTests/BatchPoolEndToEndAsync.json index e1e792269abe6..d2c7e0d7201b8 100644 --- a/sdk/batch/Microsoft.Azure.Management.Batch/tests/SessionRecords/PoolTests/BatchPoolEndToEndAsync.json +++ b/sdk/batch/Microsoft.Azure.Management.Batch/tests/SessionRecords/PoolTests/BatchPoolEndToEndAsync.json @@ -7,13 +7,13 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6f6fffd7-f4c0-4cf0-aafb-1632e44a7d97" + "b22eb81b-61c9-4721-bd0f-17a41cececdd" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.6.30411.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19043.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" @@ -27,16 +27,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11998" ], "x-ms-request-id": [ - "a05c41f9-75e1-4567-90a2-3c675ba11b88" + "f8d3ea6e-e980-411f-bb8d-7595a86f1f81" ], "x-ms-correlation-request-id": [ - "a05c41f9-75e1-4567-90a2-3c675ba11b88" + "f8d3ea6e-e980-411f-bb8d-7595a86f1f81" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20210728T132059Z:a05c41f9-75e1-4567-90a2-3c675ba11b88" + "NORTHCENTRALUS:20210831T221415Z:f8d3ea6e-e980-411f-bb8d-7595a86f1f81" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -45,7 +45,7 @@ "nosniff" ], "Date": [ - "Wed, 28 Jul 2021 13:20:58 GMT" + "Tue, 31 Aug 2021 22:14:15 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -54,26 +54,26 @@ "-1" ], "Content-Length": [ - "7221" + "8454" ] }, - "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 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 \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\",\r\n \"2015-07-01\",\r\n \"2014-05-01-privatepreview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\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 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 \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"batchAccounts/certificates\",\r\n \"locations\": [\r\n \"West Europe\",\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Europe\",\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [\r\n \"West Europe\",\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"West Europe\",\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/accountOperationResults\",\r\n \"locations\": [\r\n \"West Europe\",\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\",\r\n \"2015-07-01\",\r\n \"2014-05-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "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 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 \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\",\r\n \"2015-07-01\",\r\n \"2014-05-01-privatepreview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\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 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 \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"batchAccounts/certificates\",\r\n \"locations\": [\r\n \"West Europe\",\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Europe\",\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [\r\n \"West Europe\",\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"West Europe\",\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/accountOperationResults\",\r\n \"locations\": [\r\n \"West Europe\",\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\",\r\n \"2015-07-01\",\r\n \"2014-05-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/virtualMachineSkus\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US 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 \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/cloudServiceSkus\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US 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 \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourcegroups/azsmnet9167?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQ5MTY3P2FwaS12ZXJzaW9uPTIwMTctMDUtMTA=", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourcegroups/azsmnet2472?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQyNDcyP2FwaS12ZXJzaW9uPTIwMTctMDUtMTA=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"East US\"\r\n}", + "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "c046a70c-389f-4ec1-b054-b3cb58ec524b" + "29e4b520-31bf-4e3e-843d-1d457e1dca6f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.6.30411.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19043.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" @@ -93,16 +93,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1199" ], "x-ms-request-id": [ - "04d67409-c2e0-4865-8f84-6f5e70599ee0" + "11e1d395-74b5-4d48-9fff-07fd3c5ee430" ], "x-ms-correlation-request-id": [ - "04d67409-c2e0-4865-8f84-6f5e70599ee0" + "11e1d395-74b5-4d48-9fff-07fd3c5ee430" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20210728T132059Z:04d67409-c2e0-4865-8f84-6f5e70599ee0" + "NORTHCENTRALUS:20210831T221416Z:11e1d395-74b5-4d48-9fff-07fd3c5ee430" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -111,7 +111,7 @@ "nosniff" ], "Date": [ - "Wed, 28 Jul 2021 13:20:59 GMT" + "Tue, 31 Aug 2021 22:14:16 GMT" ], "Content-Length": [ "175" @@ -123,26 +123,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet9167\",\r\n \"name\": \"azsmnet9167\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet2472\",\r\n \"name\": \"azsmnet2472\",\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/azsmnet9167/providers/Microsoft.Batch/batchAccounts/azsmnet8411?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5MTY3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0ODQxMT9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet2472/providers/Microsoft.Batch/batchAccounts/azsmnet4342?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyNDcyL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0NDM0Mj9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"East US\"\r\n}", + "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "3a97e0af-ba9d-49f5-b4a4-f508d89716f3" + "d1bbf439-e4df-4637-9297-e1fa7902fd85" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.6.30411.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/15.0.0.0" + "Microsoft.Azure.Management.Batch.BatchManagementClient/14.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -159,13 +159,13 @@ "no-cache" ], "Location": [ - "https://centraluseuap.management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet9167/providers/Microsoft.Batch/batchAccounts/azsmnet8411/operationResults/108b24f7-2687-4545-ad10-0cdcbbf9a322?api-version=2021-06-01" + "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet2472/providers/Microsoft.Batch/batchAccounts/azsmnet4342/operationResults/bd784994-6ecb-42e5-a849-7724c79ca940?api-version=2021-06-01" ], "Retry-After": [ "15" ], "x-ms-request-id": [ - "108b24f7-2687-4545-ad10-0cdcbbf9a322" + "bd784994-6ecb-42e5-a849-7724c79ca940" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -180,13 +180,13 @@ "1199" ], "x-ms-correlation-request-id": [ - "6b2d940d-8293-44c4-b238-9600fc744843" + "fbf846b4-1ecb-429b-ba2a-2a9b360534fb" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20210728T132102Z:6b2d940d-8293-44c4-b238-9600fc744843" + "NORTHCENTRALUS:20210831T221419Z:fbf846b4-1ecb-429b-ba2a-2a9b360534fb" ], "Date": [ - "Wed, 28 Jul 2021 13:21:02 GMT" + "Tue, 31 Aug 2021 22:14:18 GMT" ], "Expires": [ "-1" @@ -199,16 +199,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet9167/providers/Microsoft.Batch/batchAccounts/azsmnet8411/operationResults/108b24f7-2687-4545-ad10-0cdcbbf9a322?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5MTY3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0ODQxMS9vcGVyYXRpb25SZXN1bHRzLzEwOGIyNGY3LTI2ODctNDU0NS1hZDEwLTBjZGNiYmY5YTMyMj9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet2472/providers/Microsoft.Batch/batchAccounts/azsmnet4342/operationResults/bd784994-6ecb-42e5-a849-7724c79ca940?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyNDcyL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0NDM0Mi9vcGVyYXRpb25SZXN1bHRzL2JkNzg0OTk0LTZlY2ItNDJlNS1hODQ5LTc3MjRjNzljYTk0MD9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.6.30411.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/15.0.0.0" + "Microsoft.Azure.Management.Batch.BatchManagementClient/14.0.0.0" ] }, "ResponseHeaders": { @@ -219,13 +219,13 @@ "no-cache" ], "ETag": [ - "\"0x8D951CA94ED4BB2\"" + "\"0x8D96CCCB68DC6DD\"" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11999" ], "x-ms-request-id": [ - "56ff5c7b-b342-4a20-8bfd-ba1ff2d0894c" + "0e7f7b8a-f025-41dc-870d-b65af7c66745" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -237,16 +237,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-correlation-request-id": [ - "0748b317-7b5d-4fb3-a324-42731db37563" + "3bda0c2d-62be-4d81-a636-f2a238458c0d" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20210728T132117Z:0748b317-7b5d-4fb3-a324-42731db37563" + "NORTHCENTRALUS:20210831T221434Z:3bda0c2d-62be-4d81-a636-f2a238458c0d" ], "Date": [ - "Wed, 28 Jul 2021 13:21:17 GMT" + "Tue, 31 Aug 2021 22:14:33 GMT" ], "Content-Length": [ - "2956" + "2991" ], "Content-Type": [ "application/json; charset=utf-8" @@ -255,29 +255,29 @@ "-1" ], "Last-Modified": [ - "Wed, 28 Jul 2021 13:21:17 GMT" + "Tue, 31 Aug 2021 22:14:34 GMT" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet9167/providers/Microsoft.Batch/batchAccounts/azsmnet8411\",\r\n \"name\": \"azsmnet8411\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"azsmnet8411.pilotprod2.eastus.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 \"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 \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet2472/providers/Microsoft.Batch/batchAccounts/azsmnet4342\",\r\n \"name\": \"azsmnet4342\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"azsmnet4342.westus.batch.azure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"dedicatedCoreQuota\": 500,\r\n \"dedicatedCoreQuotaPerVMFamily\": [\r\n {\r\n \"name\": \"standardAv2Family\",\r\n \"coreQuota\": 500\r\n },\r\n {\r\n \"name\": \"standardDv2Family\",\r\n \"coreQuota\": 250\r\n },\r\n {\r\n \"name\": \"standardDv3Family\",\r\n \"coreQuota\": 500\r\n },\r\n {\r\n \"name\": \"standardEv3Family\",\r\n \"coreQuota\": 500\r\n },\r\n {\r\n \"name\": \"standardDSv2Family\",\r\n \"coreQuota\": 250\r\n },\r\n {\r\n \"name\": \"standardDSv3Family\",\r\n \"coreQuota\": 500\r\n },\r\n {\r\n \"name\": \"standardESv3Family\",\r\n \"coreQuota\": 500\r\n },\r\n {\r\n \"name\": \"standardFSv2Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardNCFamily\",\r\n \"coreQuota\": 24\r\n },\r\n {\r\n \"name\": \"standardNVFamily\",\r\n \"coreQuota\": 24\r\n },\r\n {\r\n \"name\": \"standardDDv4Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardDDSv4Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardEDv4Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardEDSv4Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardA0_A7Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardA8_A11Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardDFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardGFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"basicAFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardFFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNVPromoFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNCPromoFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHPromoFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardMSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardDSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardFSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardGSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardLSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardLSv2Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNCSv2Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNDSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNCSv3Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHBSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHCSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNVSv3Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHBrsv2Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardDAv4Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardDASv4Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardEAv4Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardEASv4Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardMSv2Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardEIv3Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNVSv4Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"Standard NCASv3_T4 Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardXEIDSv4Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"Standard NDASv4_A100 Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardDCSv2Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHBv3Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNPSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardFXMDVSFamily\",\r\n \"coreQuota\": 0\r\n }\r\n ],\r\n \"dedicatedCoreQuotaPerVMFamilyEnforced\": true,\r\n \"lowPriorityCoreQuota\": 500,\r\n \"poolQuota\": 100,\r\n \"activeJobAndJobScheduleQuota\": 300,\r\n \"poolAllocationMode\": \"BatchService\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"encryption\": {\r\n \"keySource\": \"Microsoft.Batch\"\r\n },\r\n \"allowedAuthenticationModes\": [\r\n \"SharedKey\",\r\n \"AAD\",\r\n \"TaskAuthenticationToken\"\r\n ]\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet9167/providers/Microsoft.Batch/batchAccounts/azsmnet8411/pools/test_paas_pool?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5MTY3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0ODQxMS9wb29scy90ZXN0X3BhYXNfcG9vbD9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet2472/providers/Microsoft.Batch/batchAccounts/azsmnet4342/pools/test_paas_pool?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyNDcyL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0NDM0Mi9wb29scy90ZXN0X3BhYXNfcG9vbD9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"displayName\": \"test_pool\",\r\n \"vmSize\": \"small\",\r\n \"deploymentConfiguration\": {\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"5\"\r\n }\r\n },\r\n \"scaleSettings\": {\r\n \"fixedScale\": {\r\n \"targetDedicatedNodes\": 0,\r\n \"targetLowPriorityNodes\": 0\r\n }\r\n },\r\n \"userAccounts\": [\r\n {\r\n \"name\": \"username\",\r\n \"password\": \"randompasswd\"\r\n }\r\n ],\r\n \"startTask\": {\r\n \"commandLine\": \"cmd.exe /c \\\"echo hello world\\\"\",\r\n \"resourceFiles\": [\r\n {\r\n \"httpUrl\": \"https://blobsource.com\",\r\n \"filePath\": \"filename.txt\",\r\n \"identityReference\": {\r\n \"resourceId\": \"refUserId123\"\r\n }\r\n }\r\n ],\r\n \"environmentSettings\": [\r\n {\r\n \"name\": \"ENV_VAR\",\r\n \"value\": \"env_value\"\r\n }\r\n ],\r\n \"userIdentity\": {\r\n \"autoUser\": {\r\n \"elevationLevel\": \"Admin\"\r\n }\r\n }\r\n }\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "dfaed33d-a4d2-4e94-89c5-a2612a690b08" + "bcf6f33c-a404-451f-b199-4c6b1dd67ab2" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.6.30411.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/15.0.0.0" + "Microsoft.Azure.Management.Batch.BatchManagementClient/14.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -294,13 +294,13 @@ "no-cache" ], "ETag": [ - "W/\"0x8D951CA952AA218\"" + "W/\"0x8D96CCCB6B9D10A\"" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1198" ], "x-ms-request-id": [ - "c6570fe0-5428-47e1-90ba-6c8f54493573" + "c0bc2fed-d04e-4331-8338-363bbd370ff3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -312,16 +312,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-correlation-request-id": [ - "e6871102-a0f7-43c1-8ee2-81227a9b5010" + "c294b4c8-b320-47e5-b961-7fe1db7d3f6f" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20210728T132117Z:e6871102-a0f7-43c1-8ee2-81227a9b5010" + "NORTHCENTRALUS:20210831T221434Z:c294b4c8-b320-47e5-b961-7fe1db7d3f6f" ], "Date": [ - "Wed, 28 Jul 2021 13:21:17 GMT" + "Tue, 31 Aug 2021 22:14:34 GMT" ], "Content-Length": [ - "1597" + "1602" ], "Content-Type": [ "application/json; charset=utf-8" @@ -330,29 +330,29 @@ "-1" ], "Last-Modified": [ - "Wed, 28 Jul 2021 13:21:17 GMT" + "Tue, 31 Aug 2021 22:14:34 GMT" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet9167/providers/Microsoft.Batch/batchAccounts/azsmnet8411/pools/test_paas_pool\",\r\n \"name\": \"test_paas_pool\",\r\n \"type\": \"Microsoft.Batch/batchAccounts/pools\",\r\n \"etag\": \"W/\\\"0x8D951CA952AA218\\\"\",\r\n \"properties\": {\r\n \"displayName\": \"test_pool\",\r\n \"lastModified\": \"2021-07-28T13:21:17.747868Z\",\r\n \"creationTime\": \"2021-07-28T13:21:17.747868Z\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"provisioningStateTransitionTime\": \"2021-07-28T13:21:17.747868Z\",\r\n \"allocationState\": \"Resizing\",\r\n \"allocationStateTransitionTime\": \"2021-07-28T13:21:17.747868Z\",\r\n \"vmSize\": \"Small\",\r\n \"interNodeCommunication\": \"Disabled\",\r\n \"taskSlotsPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"deploymentConfiguration\": {\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"5\",\r\n \"osVersion\": \"*\"\r\n }\r\n },\r\n \"scaleSettings\": {\r\n \"fixedScale\": {\r\n \"targetDedicatedNodes\": 0,\r\n \"targetLowPriorityNodes\": 0,\r\n \"resizeTimeout\": \"PT15M\"\r\n }\r\n },\r\n \"startTask\": {\r\n \"commandLine\": \"cmd.exe /c \\\"echo hello world\\\"\",\r\n \"resourceFiles\": [\r\n {\r\n \"filePath\": \"filename.txt\",\r\n \"httpUrl\": \"https://blobsource.com\",\r\n \"identityReference\": {\r\n \"resourceId\": \"refUserId123\"\r\n }\r\n }\r\n ],\r\n \"environmentSettings\": [\r\n {\r\n \"name\": \"ENV_VAR\",\r\n \"value\": \"env_value\"\r\n }\r\n ],\r\n \"userIdentity\": {\r\n \"autoUser\": {\r\n \"scope\": \"Pool\",\r\n \"elevationLevel\": \"Admin\"\r\n }\r\n },\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": true\r\n },\r\n \"userAccounts\": [\r\n {\r\n \"name\": \"username\",\r\n \"elevationLevel\": \"NonAdmin\",\r\n \"windowsUserConfiguration\": {\r\n \"loginMode\": \"Interactive\"\r\n }\r\n }\r\n ],\r\n \"resizeOperationStatus\": {\r\n \"targetDedicatedNodes\": 0,\r\n \"nodeDeallocationOption\": \"Requeue\",\r\n \"resizeTimeout\": \"PT15M\",\r\n \"startTime\": \"2021-07-28T13:21:17.747868Z\"\r\n },\r\n \"currentDedicatedNodes\": 0,\r\n \"currentLowPriorityNodes\": 0\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet2472/providers/Microsoft.Batch/batchAccounts/azsmnet4342/pools/test_paas_pool\",\r\n \"name\": \"test_paas_pool\",\r\n \"type\": \"Microsoft.Batch/batchAccounts/pools\",\r\n \"etag\": \"W/\\\"0x8D96CCCB6B9D10A\\\"\",\r\n \"properties\": {\r\n \"displayName\": \"test_pool\",\r\n \"lastModified\": \"2021-08-31T22:14:34.4395018Z\",\r\n \"creationTime\": \"2021-08-31T22:14:34.4395018Z\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"provisioningStateTransitionTime\": \"2021-08-31T22:14:34.4395018Z\",\r\n \"allocationState\": \"Resizing\",\r\n \"allocationStateTransitionTime\": \"2021-08-31T22:14:34.4395018Z\",\r\n \"vmSize\": \"Small\",\r\n \"interNodeCommunication\": \"Disabled\",\r\n \"taskSlotsPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"deploymentConfiguration\": {\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"5\",\r\n \"osVersion\": \"*\"\r\n }\r\n },\r\n \"scaleSettings\": {\r\n \"fixedScale\": {\r\n \"targetDedicatedNodes\": 0,\r\n \"targetLowPriorityNodes\": 0,\r\n \"resizeTimeout\": \"PT15M\"\r\n }\r\n },\r\n \"startTask\": {\r\n \"commandLine\": \"cmd.exe /c \\\"echo hello world\\\"\",\r\n \"resourceFiles\": [\r\n {\r\n \"filePath\": \"filename.txt\",\r\n \"httpUrl\": \"https://blobsource.com\",\r\n \"identityReference\": {\r\n \"resourceId\": \"refUserId123\"\r\n }\r\n }\r\n ],\r\n \"environmentSettings\": [\r\n {\r\n \"name\": \"ENV_VAR\",\r\n \"value\": \"env_value\"\r\n }\r\n ],\r\n \"userIdentity\": {\r\n \"autoUser\": {\r\n \"scope\": \"Pool\",\r\n \"elevationLevel\": \"Admin\"\r\n }\r\n },\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": true\r\n },\r\n \"userAccounts\": [\r\n {\r\n \"name\": \"username\",\r\n \"elevationLevel\": \"NonAdmin\",\r\n \"windowsUserConfiguration\": {\r\n \"loginMode\": \"Interactive\"\r\n }\r\n }\r\n ],\r\n \"resizeOperationStatus\": {\r\n \"targetDedicatedNodes\": 0,\r\n \"nodeDeallocationOption\": \"Requeue\",\r\n \"resizeTimeout\": \"PT15M\",\r\n \"startTime\": \"2021-08-31T22:14:34.4395018Z\"\r\n },\r\n \"currentDedicatedNodes\": 0,\r\n \"currentLowPriorityNodes\": 0\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet9167/providers/Microsoft.Batch/batchAccounts/azsmnet8411/pools/test_iaas_pool?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5MTY3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0ODQxMS9wb29scy90ZXN0X2lhYXNfcG9vbD9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet2472/providers/Microsoft.Batch/batchAccounts/azsmnet4342/pools/test_iaas_pool?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyNDcyL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0NDM0Mi9wb29scy90ZXN0X2lhYXNfcG9vbD9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"displayName\": \"test_pool\",\r\n \"vmSize\": \"Standard_A1\",\r\n \"deploymentConfiguration\": {\r\n \"virtualMachineConfiguration\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2016-Datacenter-smalldisk\"\r\n },\r\n \"nodeAgentSkuId\": \"batch.node.windows amd64\",\r\n \"windowsConfiguration\": {\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"osDisk\": {\r\n \"ephemeralOSDiskSettings\": {\r\n \"placement\": \"CacheDisk\"\r\n }\r\n }\r\n }\r\n },\r\n \"scaleSettings\": {\r\n \"fixedScale\": {\r\n \"targetDedicatedNodes\": 0,\r\n \"targetLowPriorityNodes\": 0\r\n }\r\n }\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "bbaa9e41-63d1-4267-a3a5-e032c25b6323" + "4ef684e6-be6c-41fc-9f9b-8227cfb07001" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.6.30411.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/15.0.0.0" + "Microsoft.Azure.Management.Batch.BatchManagementClient/14.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -369,13 +369,13 @@ "no-cache" ], "ETag": [ - "W/\"0x8D951CA9553AEE2\"" + "W/\"0x8D96CCCB6EBB685\"" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1197" ], "x-ms-request-id": [ - "ba88de3d-aee1-44a3-8adf-51de5b271104" + "edeac340-8b0d-4f77-8e2e-5b989e5f4ede" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -387,16 +387,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-correlation-request-id": [ - "db6a1655-809f-4c54-8b17-480be2aa88c2" + "83dd2864-4b72-4dbf-9097-409a41a92dce" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20210728T132118Z:db6a1655-809f-4c54-8b17-480be2aa88c2" + "NORTHCENTRALUS:20210831T221434Z:83dd2864-4b72-4dbf-9097-409a41a92dce" ], "Date": [ - "Wed, 28 Jul 2021 13:21:17 GMT" + "Tue, 31 Aug 2021 22:14:34 GMT" ], "Content-Length": [ - "1379" + "1384" ], "Content-Type": [ "application/json; charset=utf-8" @@ -405,29 +405,29 @@ "-1" ], "Last-Modified": [ - "Wed, 28 Jul 2021 13:21:18 GMT" + "Tue, 31 Aug 2021 22:14:34 GMT" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet9167/providers/Microsoft.Batch/batchAccounts/azsmnet8411/pools/test_iaas_pool\",\r\n \"name\": \"test_iaas_pool\",\r\n \"type\": \"Microsoft.Batch/batchAccounts/pools\",\r\n \"etag\": \"W/\\\"0x8D951CA9553AEE2\\\"\",\r\n \"properties\": {\r\n \"displayName\": \"test_pool\",\r\n \"lastModified\": \"2021-07-28T13:21:18.016893Z\",\r\n \"creationTime\": \"2021-07-28T13:21:18.016893Z\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"provisioningStateTransitionTime\": \"2021-07-28T13:21:18.016893Z\",\r\n \"allocationState\": \"Resizing\",\r\n \"allocationStateTransitionTime\": \"2021-07-28T13:21:18.016893Z\",\r\n \"vmSize\": \"STANDARD_A1\",\r\n \"interNodeCommunication\": \"Disabled\",\r\n \"taskSlotsPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"deploymentConfiguration\": {\r\n \"virtualMachineConfiguration\": {\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 \"nodeAgentSkuId\": \"batch.node.windows amd64\",\r\n \"osDisk\": {\r\n \"ephemeralOSDiskSettings\": {\r\n \"placement\": \"CacheDisk\"\r\n }\r\n },\r\n \"windowsConfiguration\": {\r\n \"enableAutomaticUpdates\": true\r\n }\r\n }\r\n },\r\n \"scaleSettings\": {\r\n \"fixedScale\": {\r\n \"targetDedicatedNodes\": 0,\r\n \"targetLowPriorityNodes\": 0,\r\n \"resizeTimeout\": \"PT15M\"\r\n }\r\n },\r\n \"resizeOperationStatus\": {\r\n \"targetDedicatedNodes\": 0,\r\n \"nodeDeallocationOption\": \"Requeue\",\r\n \"resizeTimeout\": \"PT15M\",\r\n \"startTime\": \"2021-07-28T13:21:18.016893Z\"\r\n },\r\n \"currentDedicatedNodes\": 0,\r\n \"currentLowPriorityNodes\": 0\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet2472/providers/Microsoft.Batch/batchAccounts/azsmnet4342/pools/test_iaas_pool\",\r\n \"name\": \"test_iaas_pool\",\r\n \"type\": \"Microsoft.Batch/batchAccounts/pools\",\r\n \"etag\": \"W/\\\"0x8D96CCCB6EBB685\\\"\",\r\n \"properties\": {\r\n \"displayName\": \"test_pool\",\r\n \"lastModified\": \"2021-08-31T22:14:34.7665029Z\",\r\n \"creationTime\": \"2021-08-31T22:14:34.7665029Z\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"provisioningStateTransitionTime\": \"2021-08-31T22:14:34.7665029Z\",\r\n \"allocationState\": \"Resizing\",\r\n \"allocationStateTransitionTime\": \"2021-08-31T22:14:34.7665029Z\",\r\n \"vmSize\": \"STANDARD_A1\",\r\n \"interNodeCommunication\": \"Disabled\",\r\n \"taskSlotsPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"deploymentConfiguration\": {\r\n \"virtualMachineConfiguration\": {\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 \"nodeAgentSkuId\": \"batch.node.windows amd64\",\r\n \"osDisk\": {\r\n \"ephemeralOSDiskSettings\": {\r\n \"placement\": \"CacheDisk\"\r\n }\r\n },\r\n \"windowsConfiguration\": {\r\n \"enableAutomaticUpdates\": true\r\n }\r\n }\r\n },\r\n \"scaleSettings\": {\r\n \"fixedScale\": {\r\n \"targetDedicatedNodes\": 0,\r\n \"targetLowPriorityNodes\": 0,\r\n \"resizeTimeout\": \"PT15M\"\r\n }\r\n },\r\n \"resizeOperationStatus\": {\r\n \"targetDedicatedNodes\": 0,\r\n \"nodeDeallocationOption\": \"Requeue\",\r\n \"resizeTimeout\": \"PT15M\",\r\n \"startTime\": \"2021-08-31T22:14:34.7665029Z\"\r\n },\r\n \"currentDedicatedNodes\": 0,\r\n \"currentLowPriorityNodes\": 0\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet9167/providers/Microsoft.Batch/batchAccounts/azsmnet8411/pools?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5MTY3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0ODQxMS9wb29scz9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet2472/providers/Microsoft.Batch/batchAccounts/azsmnet4342/pools?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyNDcyL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0NDM0Mi9wb29scz9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1ad5bd4c-1a71-4b42-9fc0-7b616de587da" + "7dbc61f4-81e2-45ba-96b9-f3cee4a6c027" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.6.30411.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/15.0.0.0" + "Microsoft.Azure.Management.Batch.BatchManagementClient/14.0.0.0" ] }, "ResponseHeaders": { @@ -438,10 +438,10 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11998" ], "x-ms-request-id": [ - "d14e269c-854d-4f21-9759-a941dd1ba74c" + "b4db6235-c680-41d3-8d2e-1a1b7b5d47d5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -453,16 +453,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-correlation-request-id": [ - "cd9813bb-81b4-420d-bad5-3e1abb515e87" + "7bb5804f-b580-4083-8056-468fb9c9d68a" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20210728T132118Z:cd9813bb-81b4-420d-bad5-3e1abb515e87" + "NORTHCENTRALUS:20210831T221434Z:7bb5804f-b580-4083-8056-468fb9c9d68a" ], "Date": [ - "Wed, 28 Jul 2021 13:21:17 GMT" + "Tue, 31 Aug 2021 22:14:34 GMT" ], "Content-Length": [ - "2989" + "2999" ], "Content-Type": [ "application/json; charset=utf-8" @@ -471,26 +471,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet9167/providers/Microsoft.Batch/batchAccounts/azsmnet8411/pools/test_iaas_pool\",\r\n \"name\": \"test_iaas_pool\",\r\n \"type\": \"Microsoft.Batch/batchAccounts/pools\",\r\n \"etag\": \"W/\\\"0x8D951CA9553AEE2\\\"\",\r\n \"properties\": {\r\n \"displayName\": \"test_pool\",\r\n \"lastModified\": \"2021-07-28T13:21:18.016893Z\",\r\n \"creationTime\": \"2021-07-28T13:21:18.016893Z\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"provisioningStateTransitionTime\": \"2021-07-28T13:21:18.016893Z\",\r\n \"allocationState\": \"Resizing\",\r\n \"allocationStateTransitionTime\": \"2021-07-28T13:21:18.016893Z\",\r\n \"vmSize\": \"STANDARD_A1\",\r\n \"interNodeCommunication\": \"Disabled\",\r\n \"taskSlotsPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"deploymentConfiguration\": {\r\n \"virtualMachineConfiguration\": {\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 \"nodeAgentSkuId\": \"batch.node.windows amd64\",\r\n \"osDisk\": {\r\n \"ephemeralOSDiskSettings\": {\r\n \"placement\": \"CacheDisk\"\r\n }\r\n },\r\n \"windowsConfiguration\": {\r\n \"enableAutomaticUpdates\": true\r\n }\r\n }\r\n },\r\n \"scaleSettings\": {\r\n \"fixedScale\": {\r\n \"targetDedicatedNodes\": 0,\r\n \"targetLowPriorityNodes\": 0,\r\n \"resizeTimeout\": \"PT15M\"\r\n }\r\n },\r\n \"resizeOperationStatus\": {\r\n \"targetDedicatedNodes\": 0,\r\n \"nodeDeallocationOption\": \"Requeue\",\r\n \"resizeTimeout\": \"PT15M\",\r\n \"startTime\": \"2021-07-28T13:21:18.016893Z\"\r\n },\r\n \"currentDedicatedNodes\": 0,\r\n \"currentLowPriorityNodes\": 0\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet9167/providers/Microsoft.Batch/batchAccounts/azsmnet8411/pools/test_paas_pool\",\r\n \"name\": \"test_paas_pool\",\r\n \"type\": \"Microsoft.Batch/batchAccounts/pools\",\r\n \"etag\": \"W/\\\"0x8D951CA952AA218\\\"\",\r\n \"properties\": {\r\n \"displayName\": \"test_pool\",\r\n \"lastModified\": \"2021-07-28T13:21:17.747868Z\",\r\n \"creationTime\": \"2021-07-28T13:21:17.747868Z\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"provisioningStateTransitionTime\": \"2021-07-28T13:21:17.747868Z\",\r\n \"allocationState\": \"Resizing\",\r\n \"allocationStateTransitionTime\": \"2021-07-28T13:21:17.747868Z\",\r\n \"vmSize\": \"Small\",\r\n \"interNodeCommunication\": \"Disabled\",\r\n \"taskSlotsPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"deploymentConfiguration\": {\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"5\",\r\n \"osVersion\": \"*\"\r\n }\r\n },\r\n \"scaleSettings\": {\r\n \"fixedScale\": {\r\n \"targetDedicatedNodes\": 0,\r\n \"targetLowPriorityNodes\": 0,\r\n \"resizeTimeout\": \"PT15M\"\r\n }\r\n },\r\n \"startTask\": {\r\n \"commandLine\": \"cmd.exe /c \\\"echo hello world\\\"\",\r\n \"resourceFiles\": [\r\n {\r\n \"filePath\": \"filename.txt\",\r\n \"httpUrl\": \"https://blobsource.com\",\r\n \"identityReference\": {\r\n \"resourceId\": \"refUserId123\"\r\n }\r\n }\r\n ],\r\n \"environmentSettings\": [\r\n {\r\n \"name\": \"ENV_VAR\",\r\n \"value\": \"env_value\"\r\n }\r\n ],\r\n \"userIdentity\": {\r\n \"autoUser\": {\r\n \"scope\": \"Pool\",\r\n \"elevationLevel\": \"Admin\"\r\n }\r\n },\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": true\r\n },\r\n \"userAccounts\": [\r\n {\r\n \"name\": \"username\",\r\n \"elevationLevel\": \"NonAdmin\",\r\n \"windowsUserConfiguration\": {\r\n \"loginMode\": \"Interactive\"\r\n }\r\n }\r\n ],\r\n \"resizeOperationStatus\": {\r\n \"targetDedicatedNodes\": 0,\r\n \"nodeDeallocationOption\": \"Requeue\",\r\n \"resizeTimeout\": \"PT15M\",\r\n \"startTime\": \"2021-07-28T13:21:17.747868Z\"\r\n },\r\n \"currentDedicatedNodes\": 0,\r\n \"currentLowPriorityNodes\": 0\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet2472/providers/Microsoft.Batch/batchAccounts/azsmnet4342/pools/test_iaas_pool\",\r\n \"name\": \"test_iaas_pool\",\r\n \"type\": \"Microsoft.Batch/batchAccounts/pools\",\r\n \"etag\": \"W/\\\"0x8D96CCCB6EBB685\\\"\",\r\n \"properties\": {\r\n \"displayName\": \"test_pool\",\r\n \"lastModified\": \"2021-08-31T22:14:34.7665029Z\",\r\n \"creationTime\": \"2021-08-31T22:14:34.7665029Z\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"provisioningStateTransitionTime\": \"2021-08-31T22:14:34.7665029Z\",\r\n \"allocationState\": \"Resizing\",\r\n \"allocationStateTransitionTime\": \"2021-08-31T22:14:34.7665029Z\",\r\n \"vmSize\": \"STANDARD_A1\",\r\n \"interNodeCommunication\": \"Disabled\",\r\n \"taskSlotsPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"deploymentConfiguration\": {\r\n \"virtualMachineConfiguration\": {\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 \"nodeAgentSkuId\": \"batch.node.windows amd64\",\r\n \"osDisk\": {\r\n \"ephemeralOSDiskSettings\": {\r\n \"placement\": \"CacheDisk\"\r\n }\r\n },\r\n \"windowsConfiguration\": {\r\n \"enableAutomaticUpdates\": true\r\n }\r\n }\r\n },\r\n \"scaleSettings\": {\r\n \"fixedScale\": {\r\n \"targetDedicatedNodes\": 0,\r\n \"targetLowPriorityNodes\": 0,\r\n \"resizeTimeout\": \"PT15M\"\r\n }\r\n },\r\n \"resizeOperationStatus\": {\r\n \"targetDedicatedNodes\": 0,\r\n \"nodeDeallocationOption\": \"Requeue\",\r\n \"resizeTimeout\": \"PT15M\",\r\n \"startTime\": \"2021-08-31T22:14:34.7665029Z\"\r\n },\r\n \"currentDedicatedNodes\": 0,\r\n \"currentLowPriorityNodes\": 0\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet2472/providers/Microsoft.Batch/batchAccounts/azsmnet4342/pools/test_paas_pool\",\r\n \"name\": \"test_paas_pool\",\r\n \"type\": \"Microsoft.Batch/batchAccounts/pools\",\r\n \"etag\": \"W/\\\"0x8D96CCCB6B9D10A\\\"\",\r\n \"properties\": {\r\n \"displayName\": \"test_pool\",\r\n \"lastModified\": \"2021-08-31T22:14:34.4395018Z\",\r\n \"creationTime\": \"2021-08-31T22:14:34.4395018Z\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"provisioningStateTransitionTime\": \"2021-08-31T22:14:34.4395018Z\",\r\n \"allocationState\": \"Resizing\",\r\n \"allocationStateTransitionTime\": \"2021-08-31T22:14:34.4395018Z\",\r\n \"vmSize\": \"Small\",\r\n \"interNodeCommunication\": \"Disabled\",\r\n \"taskSlotsPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"deploymentConfiguration\": {\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"5\",\r\n \"osVersion\": \"*\"\r\n }\r\n },\r\n \"scaleSettings\": {\r\n \"fixedScale\": {\r\n \"targetDedicatedNodes\": 0,\r\n \"targetLowPriorityNodes\": 0,\r\n \"resizeTimeout\": \"PT15M\"\r\n }\r\n },\r\n \"startTask\": {\r\n \"commandLine\": \"cmd.exe /c \\\"echo hello world\\\"\",\r\n \"resourceFiles\": [\r\n {\r\n \"filePath\": \"filename.txt\",\r\n \"httpUrl\": \"https://blobsource.com\",\r\n \"identityReference\": {\r\n \"resourceId\": \"refUserId123\"\r\n }\r\n }\r\n ],\r\n \"environmentSettings\": [\r\n {\r\n \"name\": \"ENV_VAR\",\r\n \"value\": \"env_value\"\r\n }\r\n ],\r\n \"userIdentity\": {\r\n \"autoUser\": {\r\n \"scope\": \"Pool\",\r\n \"elevationLevel\": \"Admin\"\r\n }\r\n },\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": true\r\n },\r\n \"userAccounts\": [\r\n {\r\n \"name\": \"username\",\r\n \"elevationLevel\": \"NonAdmin\",\r\n \"windowsUserConfiguration\": {\r\n \"loginMode\": \"Interactive\"\r\n }\r\n }\r\n ],\r\n \"resizeOperationStatus\": {\r\n \"targetDedicatedNodes\": 0,\r\n \"nodeDeallocationOption\": \"Requeue\",\r\n \"resizeTimeout\": \"PT15M\",\r\n \"startTime\": \"2021-08-31T22:14:34.4395018Z\"\r\n },\r\n \"currentDedicatedNodes\": 0,\r\n \"currentLowPriorityNodes\": 0\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet9167/providers/Microsoft.Batch/batchAccounts/azsmnet8411/pools/test_iaas_pool?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5MTY3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0ODQxMS9wb29scy90ZXN0X2lhYXNfcG9vbD9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet2472/providers/Microsoft.Batch/batchAccounts/azsmnet4342/pools/test_iaas_pool?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyNDcyL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0NDM0Mi9wb29scy90ZXN0X2lhYXNfcG9vbD9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "be900fba-9c82-4b6c-9e89-d9b58cd8e555" + "602c65c6-97a4-4d0f-8e30-0f1cc4d48af3" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.6.30411.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/15.0.0.0" + "Microsoft.Azure.Management.Batch.BatchManagementClient/14.0.0.0" ] }, "ResponseHeaders": { @@ -501,13 +501,13 @@ "no-cache" ], "ETag": [ - "W/\"0x8D951CA9553AEE2\"" + "W/\"0x8D96CCCB6EBB685\"" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11997" ], "x-ms-request-id": [ - "31fdb037-9bec-4ba8-b651-175864c8ef24" + "e8bdfaec-b874-4e74-b9c6-0a14fbaf7a7b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -519,16 +519,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-correlation-request-id": [ - "3b72255a-6f50-4048-a0e9-765eb709ec70" + "16151c54-7757-4cd6-99e0-d8a8da71b5bd" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20210728T132118Z:3b72255a-6f50-4048-a0e9-765eb709ec70" + "NORTHCENTRALUS:20210831T221435Z:16151c54-7757-4cd6-99e0-d8a8da71b5bd" ], "Date": [ - "Wed, 28 Jul 2021 13:21:17 GMT" + "Tue, 31 Aug 2021 22:14:34 GMT" ], "Content-Length": [ - "1379" + "1384" ], "Content-Type": [ "application/json; charset=utf-8" @@ -537,29 +537,29 @@ "-1" ], "Last-Modified": [ - "Wed, 28 Jul 2021 13:21:18 GMT" + "Tue, 31 Aug 2021 22:14:34 GMT" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet9167/providers/Microsoft.Batch/batchAccounts/azsmnet8411/pools/test_iaas_pool\",\r\n \"name\": \"test_iaas_pool\",\r\n \"type\": \"Microsoft.Batch/batchAccounts/pools\",\r\n \"etag\": \"W/\\\"0x8D951CA9553AEE2\\\"\",\r\n \"properties\": {\r\n \"displayName\": \"test_pool\",\r\n \"lastModified\": \"2021-07-28T13:21:18.016893Z\",\r\n \"creationTime\": \"2021-07-28T13:21:18.016893Z\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"provisioningStateTransitionTime\": \"2021-07-28T13:21:18.016893Z\",\r\n \"allocationState\": \"Resizing\",\r\n \"allocationStateTransitionTime\": \"2021-07-28T13:21:18.016893Z\",\r\n \"vmSize\": \"STANDARD_A1\",\r\n \"interNodeCommunication\": \"Disabled\",\r\n \"taskSlotsPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"deploymentConfiguration\": {\r\n \"virtualMachineConfiguration\": {\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 \"nodeAgentSkuId\": \"batch.node.windows amd64\",\r\n \"osDisk\": {\r\n \"ephemeralOSDiskSettings\": {\r\n \"placement\": \"CacheDisk\"\r\n }\r\n },\r\n \"windowsConfiguration\": {\r\n \"enableAutomaticUpdates\": true\r\n }\r\n }\r\n },\r\n \"scaleSettings\": {\r\n \"fixedScale\": {\r\n \"targetDedicatedNodes\": 0,\r\n \"targetLowPriorityNodes\": 0,\r\n \"resizeTimeout\": \"PT15M\"\r\n }\r\n },\r\n \"resizeOperationStatus\": {\r\n \"targetDedicatedNodes\": 0,\r\n \"nodeDeallocationOption\": \"Requeue\",\r\n \"resizeTimeout\": \"PT15M\",\r\n \"startTime\": \"2021-07-28T13:21:18.016893Z\"\r\n },\r\n \"currentDedicatedNodes\": 0,\r\n \"currentLowPriorityNodes\": 0\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet2472/providers/Microsoft.Batch/batchAccounts/azsmnet4342/pools/test_iaas_pool\",\r\n \"name\": \"test_iaas_pool\",\r\n \"type\": \"Microsoft.Batch/batchAccounts/pools\",\r\n \"etag\": \"W/\\\"0x8D96CCCB6EBB685\\\"\",\r\n \"properties\": {\r\n \"displayName\": \"test_pool\",\r\n \"lastModified\": \"2021-08-31T22:14:34.7665029Z\",\r\n \"creationTime\": \"2021-08-31T22:14:34.7665029Z\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"provisioningStateTransitionTime\": \"2021-08-31T22:14:34.7665029Z\",\r\n \"allocationState\": \"Resizing\",\r\n \"allocationStateTransitionTime\": \"2021-08-31T22:14:34.7665029Z\",\r\n \"vmSize\": \"STANDARD_A1\",\r\n \"interNodeCommunication\": \"Disabled\",\r\n \"taskSlotsPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"deploymentConfiguration\": {\r\n \"virtualMachineConfiguration\": {\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 \"nodeAgentSkuId\": \"batch.node.windows amd64\",\r\n \"osDisk\": {\r\n \"ephemeralOSDiskSettings\": {\r\n \"placement\": \"CacheDisk\"\r\n }\r\n },\r\n \"windowsConfiguration\": {\r\n \"enableAutomaticUpdates\": true\r\n }\r\n }\r\n },\r\n \"scaleSettings\": {\r\n \"fixedScale\": {\r\n \"targetDedicatedNodes\": 0,\r\n \"targetLowPriorityNodes\": 0,\r\n \"resizeTimeout\": \"PT15M\"\r\n }\r\n },\r\n \"resizeOperationStatus\": {\r\n \"targetDedicatedNodes\": 0,\r\n \"nodeDeallocationOption\": \"Requeue\",\r\n \"resizeTimeout\": \"PT15M\",\r\n \"startTime\": \"2021-08-31T22:14:34.7665029Z\"\r\n },\r\n \"currentDedicatedNodes\": 0,\r\n \"currentLowPriorityNodes\": 0\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet9167/providers/Microsoft.Batch/batchAccounts/azsmnet8411/pools/test_iaas_pool/stopResize?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5MTY3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0ODQxMS9wb29scy90ZXN0X2lhYXNfcG9vbC9zdG9wUmVzaXplP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet2472/providers/Microsoft.Batch/batchAccounts/azsmnet4342/pools/test_iaas_pool/stopResize?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyNDcyL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0NDM0Mi9wb29scy90ZXN0X2lhYXNfcG9vbC9zdG9wUmVzaXplP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3c6a252a-b440-4981-9277-6842eda705b4" + "d71f9385-4060-4ec2-9837-53494536fba1" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.6.30411.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/15.0.0.0" + "Microsoft.Azure.Management.Batch.BatchManagementClient/14.0.0.0" ] }, "ResponseHeaders": { @@ -570,13 +570,13 @@ "no-cache" ], "ETag": [ - "W/\"0x8D951CA9553AEE2\"" + "W/\"0x8D96CCCB6EBB685\"" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], "x-ms-request-id": [ - "048d3e24-7d4a-413d-836b-d70d580efbc5" + "7f999ee3-efd6-48af-9660-dda1ec38aaee" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -588,16 +588,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-correlation-request-id": [ - "afb767c4-750f-445e-bcef-a96d68c6b51f" + "e1d9d516-72be-4443-9e35-1240a6da8773" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20210728T132120Z:afb767c4-750f-445e-bcef-a96d68c6b51f" + "NORTHCENTRALUS:20210831T221436Z:e1d9d516-72be-4443-9e35-1240a6da8773" ], "Date": [ - "Wed, 28 Jul 2021 13:21:19 GMT" + "Tue, 31 Aug 2021 22:14:36 GMT" ], "Content-Length": [ - "1378" + "1382" ], "Content-Type": [ "application/json; charset=utf-8" @@ -606,29 +606,29 @@ "-1" ], "Last-Modified": [ - "Wed, 28 Jul 2021 13:21:18 GMT" + "Tue, 31 Aug 2021 22:14:34 GMT" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet9167/providers/Microsoft.Batch/batchAccounts/azsmnet8411/pools/test_iaas_pool\",\r\n \"name\": \"test_iaas_pool\",\r\n \"type\": \"Microsoft.Batch/batchAccounts/pools\",\r\n \"etag\": \"W/\\\"0x8D951CA9553AEE2\\\"\",\r\n \"properties\": {\r\n \"displayName\": \"test_pool\",\r\n \"lastModified\": \"2021-07-28T13:21:18.016893Z\",\r\n \"creationTime\": \"2021-07-28T13:21:18.016893Z\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"provisioningStateTransitionTime\": \"2021-07-28T13:21:18.016893Z\",\r\n \"allocationState\": \"Steady\",\r\n \"allocationStateTransitionTime\": \"2021-07-28T13:21:20.3178689Z\",\r\n \"vmSize\": \"STANDARD_A1\",\r\n \"interNodeCommunication\": \"Disabled\",\r\n \"taskSlotsPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"deploymentConfiguration\": {\r\n \"virtualMachineConfiguration\": {\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 \"nodeAgentSkuId\": \"batch.node.windows amd64\",\r\n \"osDisk\": {\r\n \"ephemeralOSDiskSettings\": {\r\n \"placement\": \"CacheDisk\"\r\n }\r\n },\r\n \"windowsConfiguration\": {\r\n \"enableAutomaticUpdates\": true\r\n }\r\n }\r\n },\r\n \"scaleSettings\": {\r\n \"fixedScale\": {\r\n \"targetDedicatedNodes\": 0,\r\n \"targetLowPriorityNodes\": 0,\r\n \"resizeTimeout\": \"PT15M\"\r\n }\r\n },\r\n \"resizeOperationStatus\": {\r\n \"targetDedicatedNodes\": 0,\r\n \"nodeDeallocationOption\": \"Requeue\",\r\n \"resizeTimeout\": \"PT15M\",\r\n \"startTime\": \"2021-07-28T13:21:18.016893Z\"\r\n },\r\n \"currentDedicatedNodes\": 0,\r\n \"currentLowPriorityNodes\": 0\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet2472/providers/Microsoft.Batch/batchAccounts/azsmnet4342/pools/test_iaas_pool\",\r\n \"name\": \"test_iaas_pool\",\r\n \"type\": \"Microsoft.Batch/batchAccounts/pools\",\r\n \"etag\": \"W/\\\"0x8D96CCCB6EBB685\\\"\",\r\n \"properties\": {\r\n \"displayName\": \"test_pool\",\r\n \"lastModified\": \"2021-08-31T22:14:34.7665029Z\",\r\n \"creationTime\": \"2021-08-31T22:14:34.7665029Z\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"provisioningStateTransitionTime\": \"2021-08-31T22:14:34.7665029Z\",\r\n \"allocationState\": \"Steady\",\r\n \"allocationStateTransitionTime\": \"2021-08-31T22:14:36.8165329Z\",\r\n \"vmSize\": \"STANDARD_A1\",\r\n \"interNodeCommunication\": \"Disabled\",\r\n \"taskSlotsPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"deploymentConfiguration\": {\r\n \"virtualMachineConfiguration\": {\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 \"nodeAgentSkuId\": \"batch.node.windows amd64\",\r\n \"osDisk\": {\r\n \"ephemeralOSDiskSettings\": {\r\n \"placement\": \"CacheDisk\"\r\n }\r\n },\r\n \"windowsConfiguration\": {\r\n \"enableAutomaticUpdates\": true\r\n }\r\n }\r\n },\r\n \"scaleSettings\": {\r\n \"fixedScale\": {\r\n \"targetDedicatedNodes\": 0,\r\n \"targetLowPriorityNodes\": 0,\r\n \"resizeTimeout\": \"PT15M\"\r\n }\r\n },\r\n \"resizeOperationStatus\": {\r\n \"targetDedicatedNodes\": 0,\r\n \"nodeDeallocationOption\": \"Requeue\",\r\n \"resizeTimeout\": \"PT15M\",\r\n \"startTime\": \"2021-08-31T22:14:34.7665029Z\"\r\n },\r\n \"currentDedicatedNodes\": 0,\r\n \"currentLowPriorityNodes\": 0\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet9167/providers/Microsoft.Batch/batchAccounts/azsmnet8411/pools/test_iaas_pool/disableAutoScale?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5MTY3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0ODQxMS9wb29scy90ZXN0X2lhYXNfcG9vbC9kaXNhYmxlQXV0b1NjYWxlP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet2472/providers/Microsoft.Batch/batchAccounts/azsmnet4342/pools/test_iaas_pool/disableAutoScale?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyNDcyL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0NDM0Mi9wb29scy90ZXN0X2lhYXNfcG9vbC9kaXNhYmxlQXV0b1NjYWxlP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "23df7527-eff7-4053-ae01-14a8e4416d10" + "af4f534d-11ea-458e-aecf-bdd03fb7bd49" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.6.30411.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/15.0.0.0" + "Microsoft.Azure.Management.Batch.BatchManagementClient/14.0.0.0" ] }, "ResponseHeaders": { @@ -639,13 +639,13 @@ "no-cache" ], "ETag": [ - "W/\"0x8D951CA96D0FEC0\"" + "W/\"0x8D96CCCB841D201\"" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1198" ], "x-ms-request-id": [ - "faed93aa-4078-48b2-bb59-9c493aa41199" + "b4b49e6c-2195-4d5a-8a79-d9d6645f2056" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -657,16 +657,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-correlation-request-id": [ - "27055dd0-5b54-4798-9958-2dcf0872e90f" + "f002d174-0e9a-446c-9728-cd62d596c294" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20210728T132120Z:27055dd0-5b54-4798-9958-2dcf0872e90f" + "NORTHCENTRALUS:20210831T221437Z:f002d174-0e9a-446c-9728-cd62d596c294" ], "Date": [ - "Wed, 28 Jul 2021 13:21:19 GMT" + "Tue, 31 Aug 2021 22:14:36 GMT" ], "Content-Length": [ - "1229" + "1231" ], "Content-Type": [ "application/json; charset=utf-8" @@ -675,29 +675,29 @@ "-1" ], "Last-Modified": [ - "Wed, 28 Jul 2021 13:21:20 GMT" + "Tue, 31 Aug 2021 22:14:37 GMT" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet9167/providers/Microsoft.Batch/batchAccounts/azsmnet8411/pools/test_iaas_pool\",\r\n \"name\": \"test_iaas_pool\",\r\n \"type\": \"Microsoft.Batch/batchAccounts/pools\",\r\n \"etag\": \"W/\\\"0x8D951CA96D0FEC0\\\"\",\r\n \"properties\": {\r\n \"displayName\": \"test_pool\",\r\n \"lastModified\": \"2021-07-28T13:21:20.5158592Z\",\r\n \"creationTime\": \"2021-07-28T13:21:18.016893Z\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"provisioningStateTransitionTime\": \"2021-07-28T13:21:18.016893Z\",\r\n \"allocationState\": \"Resizing\",\r\n \"allocationStateTransitionTime\": \"2021-07-28T13:21:20.5158592Z\",\r\n \"vmSize\": \"STANDARD_A1\",\r\n \"interNodeCommunication\": \"Disabled\",\r\n \"taskSlotsPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"deploymentConfiguration\": {\r\n \"virtualMachineConfiguration\": {\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 \"nodeAgentSkuId\": \"batch.node.windows amd64\",\r\n \"osDisk\": {\r\n \"ephemeralOSDiskSettings\": {\r\n \"placement\": \"CacheDisk\"\r\n }\r\n },\r\n \"windowsConfiguration\": {\r\n \"enableAutomaticUpdates\": true\r\n }\r\n }\r\n },\r\n \"scaleSettings\": {\r\n \"fixedScale\": {\r\n \"targetDedicatedNodes\": 0,\r\n \"targetLowPriorityNodes\": 0,\r\n \"resizeTimeout\": \"PT15M\"\r\n }\r\n },\r\n \"currentDedicatedNodes\": 0,\r\n \"currentLowPriorityNodes\": 0\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet2472/providers/Microsoft.Batch/batchAccounts/azsmnet4342/pools/test_iaas_pool\",\r\n \"name\": \"test_iaas_pool\",\r\n \"type\": \"Microsoft.Batch/batchAccounts/pools\",\r\n \"etag\": \"W/\\\"0x8D96CCCB841D201\\\"\",\r\n \"properties\": {\r\n \"displayName\": \"test_pool\",\r\n \"lastModified\": \"2021-08-31T22:14:37.0085377Z\",\r\n \"creationTime\": \"2021-08-31T22:14:34.7665029Z\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"provisioningStateTransitionTime\": \"2021-08-31T22:14:34.7665029Z\",\r\n \"allocationState\": \"Resizing\",\r\n \"allocationStateTransitionTime\": \"2021-08-31T22:14:37.0085377Z\",\r\n \"vmSize\": \"STANDARD_A1\",\r\n \"interNodeCommunication\": \"Disabled\",\r\n \"taskSlotsPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"deploymentConfiguration\": {\r\n \"virtualMachineConfiguration\": {\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 \"nodeAgentSkuId\": \"batch.node.windows amd64\",\r\n \"osDisk\": {\r\n \"ephemeralOSDiskSettings\": {\r\n \"placement\": \"CacheDisk\"\r\n }\r\n },\r\n \"windowsConfiguration\": {\r\n \"enableAutomaticUpdates\": true\r\n }\r\n }\r\n },\r\n \"scaleSettings\": {\r\n \"fixedScale\": {\r\n \"targetDedicatedNodes\": 0,\r\n \"targetLowPriorityNodes\": 0,\r\n \"resizeTimeout\": \"PT15M\"\r\n }\r\n },\r\n \"currentDedicatedNodes\": 0,\r\n \"currentLowPriorityNodes\": 0\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet9167/providers/Microsoft.Batch/batchAccounts/azsmnet8411/pools/test_paas_pool?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5MTY3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0ODQxMS9wb29scy90ZXN0X3BhYXNfcG9vbD9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet2472/providers/Microsoft.Batch/batchAccounts/azsmnet4342/pools/test_paas_pool?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyNDcyL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0NDM0Mi9wb29scy90ZXN0X3BhYXNfcG9vbD9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ba6974dd-204c-4166-891b-721c7cadc538" + "6c2ca4d6-41c5-4685-8a09-6fba7e19de42" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.6.30411.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/15.0.0.0" + "Microsoft.Azure.Management.Batch.BatchManagementClient/14.0.0.0" ] }, "ResponseHeaders": { @@ -708,13 +708,13 @@ "no-cache" ], "Location": [ - "https://centraluseuap.management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet9167/providers/Microsoft.Batch/batchAccounts/azsmnet8411/poolOperationResults/delete-test_paas_pool?api-version=2021-06-01" + "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet2472/providers/Microsoft.Batch/batchAccounts/azsmnet4342/poolOperationResults/delete-test_paas_pool?api-version=2021-06-01" ], "Retry-After": [ "15" ], "x-ms-request-id": [ - "77e27db6-2b28-4431-bd8e-49f9996fc686" + "5b3bfb54-c5b0-4977-a818-629bdfc62d99" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -729,13 +729,13 @@ "14999" ], "x-ms-correlation-request-id": [ - "5156f077-c09b-4108-bd64-826bada92e05" + "5aab8147-beb0-4559-94ba-c6fc2a492e27" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20210728T132120Z:5156f077-c09b-4108-bd64-826bada92e05" + "NORTHCENTRALUS:20210831T221437Z:5aab8147-beb0-4559-94ba-c6fc2a492e27" ], "Date": [ - "Wed, 28 Jul 2021 13:21:20 GMT" + "Tue, 31 Aug 2021 22:14:36 GMT" ], "Expires": [ "-1" @@ -748,16 +748,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet9167/providers/Microsoft.Batch/batchAccounts/azsmnet8411/poolOperationResults/delete-test_paas_pool?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5MTY3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0ODQxMS9wb29sT3BlcmF0aW9uUmVzdWx0cy9kZWxldGUtdGVzdF9wYWFzX3Bvb2w/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet2472/providers/Microsoft.Batch/batchAccounts/azsmnet4342/poolOperationResults/delete-test_paas_pool?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyNDcyL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0NDM0Mi9wb29sT3BlcmF0aW9uUmVzdWx0cy9kZWxldGUtdGVzdF9wYWFzX3Bvb2w/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.6.30411.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/15.0.0.0" + "Microsoft.Azure.Management.Batch.BatchManagementClient/14.0.0.0" ] }, "ResponseHeaders": { @@ -768,7 +768,7 @@ "no-cache" ], "x-ms-request-id": [ - "9573394a-3beb-46d9-a4d6-442247473eb8" + "7d094994-2802-4ff1-8ce8-6fe473052430" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -780,16 +780,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11996" ], "x-ms-correlation-request-id": [ - "dbb2ac58-7185-4300-bbd6-73d644de3925" + "ed16c2fb-6486-4931-bbba-daf9f00fb883" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20210728T132135Z:dbb2ac58-7185-4300-bbd6-73d644de3925" + "NORTHCENTRALUS:20210831T221452Z:ed16c2fb-6486-4931-bbba-daf9f00fb883" ], "Date": [ - "Wed, 28 Jul 2021 13:21:35 GMT" + "Tue, 31 Aug 2021 22:14:51 GMT" ], "Expires": [ "-1" @@ -802,16 +802,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet9167/providers/Microsoft.Batch/batchAccounts/azsmnet8411/poolOperationResults/delete-test_paas_pool?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5MTY3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0ODQxMS9wb29sT3BlcmF0aW9uUmVzdWx0cy9kZWxldGUtdGVzdF9wYWFzX3Bvb2w/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet2472/providers/Microsoft.Batch/batchAccounts/azsmnet4342/poolOperationResults/delete-test_paas_pool?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyNDcyL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0NDM0Mi9wb29sT3BlcmF0aW9uUmVzdWx0cy9kZWxldGUtdGVzdF9wYWFzX3Bvb2w/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.6.30411.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/15.0.0.0" + "Microsoft.Azure.Management.Batch.BatchManagementClient/14.0.0.0" ] }, "ResponseHeaders": { @@ -822,7 +822,7 @@ "no-cache" ], "x-ms-request-id": [ - "01e17636-eb59-4581-8594-f872bd737bef" + "c94361aa-beaa-43a4-b671-8563d2794663" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -834,16 +834,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11995" ], "x-ms-correlation-request-id": [ - "67c9f829-743d-49f7-acfd-b41ae4c5d519" + "5a548153-39df-4904-83ad-7adfb08a7031" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20210728T132135Z:67c9f829-743d-49f7-acfd-b41ae4c5d519" + "NORTHCENTRALUS:20210831T221452Z:5a548153-39df-4904-83ad-7adfb08a7031" ], "Date": [ - "Wed, 28 Jul 2021 13:21:35 GMT" + "Tue, 31 Aug 2021 22:14:51 GMT" ], "Expires": [ "-1" @@ -856,22 +856,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet9167/providers/Microsoft.Batch/batchAccounts/azsmnet8411/pools/test_iaas_pool?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5MTY3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0ODQxMS9wb29scy90ZXN0X2lhYXNfcG9vbD9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet2472/providers/Microsoft.Batch/batchAccounts/azsmnet4342/pools/test_iaas_pool?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyNDcyL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0NDM0Mi9wb29scy90ZXN0X2lhYXNfcG9vbD9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ee0ce880-cad4-4335-9b8d-bda7734a64a8" + "e1bbb013-1c60-45f8-b7fa-fd65915e821b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.6.30411.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/15.0.0.0" + "Microsoft.Azure.Management.Batch.BatchManagementClient/14.0.0.0" ] }, "ResponseHeaders": { @@ -882,13 +882,13 @@ "no-cache" ], "Location": [ - "https://centraluseuap.management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet9167/providers/Microsoft.Batch/batchAccounts/azsmnet8411/poolOperationResults/delete-test_iaas_pool?api-version=2021-06-01" + "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet2472/providers/Microsoft.Batch/batchAccounts/azsmnet4342/poolOperationResults/delete-test_iaas_pool?api-version=2021-06-01" ], "Retry-After": [ "15" ], "x-ms-request-id": [ - "328e94f0-a273-4982-9c5e-c6a788027839" + "e788af9f-7772-42bf-a16a-5ff61f4c2f66" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -903,13 +903,13 @@ "14998" ], "x-ms-correlation-request-id": [ - "d8da7474-963c-4466-ac7b-954f068aa024" + "4a15469b-9c66-4f16-b107-fe1764351f43" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20210728T132136Z:d8da7474-963c-4466-ac7b-954f068aa024" + "NORTHCENTRALUS:20210831T221452Z:4a15469b-9c66-4f16-b107-fe1764351f43" ], "Date": [ - "Wed, 28 Jul 2021 13:21:35 GMT" + "Tue, 31 Aug 2021 22:14:52 GMT" ], "Expires": [ "-1" @@ -922,16 +922,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet9167/providers/Microsoft.Batch/batchAccounts/azsmnet8411/poolOperationResults/delete-test_iaas_pool?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5MTY3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0ODQxMS9wb29sT3BlcmF0aW9uUmVzdWx0cy9kZWxldGUtdGVzdF9pYWFzX3Bvb2w/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet2472/providers/Microsoft.Batch/batchAccounts/azsmnet4342/poolOperationResults/delete-test_iaas_pool?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyNDcyL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0NDM0Mi9wb29sT3BlcmF0aW9uUmVzdWx0cy9kZWxldGUtdGVzdF9pYWFzX3Bvb2w/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.6.30411.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/15.0.0.0" + "Microsoft.Azure.Management.Batch.BatchManagementClient/14.0.0.0" ] }, "ResponseHeaders": { @@ -942,7 +942,7 @@ "no-cache" ], "x-ms-request-id": [ - "0c2be241-128b-42d2-a29d-927e3f65ce1f" + "7cfcbb75-4f24-4644-935d-26d4fc83d8da" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -954,16 +954,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11994" ], "x-ms-correlation-request-id": [ - "265096fa-b8c2-485f-9a5c-2d93e7186ad7" + "fd4764a2-74a9-4f86-923e-d9b80eb088e6" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20210728T132151Z:265096fa-b8c2-485f-9a5c-2d93e7186ad7" + "NORTHCENTRALUS:20210831T221507Z:fd4764a2-74a9-4f86-923e-d9b80eb088e6" ], "Date": [ - "Wed, 28 Jul 2021 13:21:50 GMT" + "Tue, 31 Aug 2021 22:15:07 GMT" ], "Expires": [ "-1" @@ -976,16 +976,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet9167/providers/Microsoft.Batch/batchAccounts/azsmnet8411/poolOperationResults/delete-test_iaas_pool?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5MTY3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0ODQxMS9wb29sT3BlcmF0aW9uUmVzdWx0cy9kZWxldGUtdGVzdF9pYWFzX3Bvb2w/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet2472/providers/Microsoft.Batch/batchAccounts/azsmnet4342/poolOperationResults/delete-test_iaas_pool?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyNDcyL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0NDM0Mi9wb29sT3BlcmF0aW9uUmVzdWx0cy9kZWxldGUtdGVzdF9pYWFzX3Bvb2w/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.6.30411.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/15.0.0.0" + "Microsoft.Azure.Management.Batch.BatchManagementClient/14.0.0.0" ] }, "ResponseHeaders": { @@ -996,7 +996,7 @@ "no-cache" ], "x-ms-request-id": [ - "976178c3-1a20-412e-8f5c-1001dbc92f54" + "4aa2741c-3890-44f9-99a1-c56bc95bb8a1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1008,16 +1008,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11993" ], "x-ms-correlation-request-id": [ - "f6b37cd0-8d16-447f-976c-706a92e77926" + "23fd613e-514f-472d-baac-b5dda58cf8ee" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20210728T132151Z:f6b37cd0-8d16-447f-976c-706a92e77926" + "NORTHCENTRALUS:20210831T221507Z:23fd613e-514f-472d-baac-b5dda58cf8ee" ], "Date": [ - "Wed, 28 Jul 2021 13:21:50 GMT" + "Tue, 31 Aug 2021 22:15:07 GMT" ], "Expires": [ "-1" @@ -1030,22 +1030,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet9167/providers/Microsoft.Batch/batchAccounts/azsmnet8411/pools/test_paas_pool?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5MTY3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0ODQxMS9wb29scy90ZXN0X3BhYXNfcG9vbD9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet2472/providers/Microsoft.Batch/batchAccounts/azsmnet4342/pools/test_paas_pool?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyNDcyL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0NDM0Mi9wb29scy90ZXN0X3BhYXNfcG9vbD9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "441d97cd-2d5c-4987-90ab-a45a705ed6f1" + "2df4cdc2-81d4-44fe-97af-7909b5d61d1c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.6.30411.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/15.0.0.0" + "Microsoft.Azure.Management.Batch.BatchManagementClient/14.0.0.0" ] }, "ResponseHeaders": { @@ -1056,10 +1056,10 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "11992" ], "x-ms-request-id": [ - "ae63a955-5c3a-4b34-9539-41326b85bd8c" + "ea2d7760-a6ca-4679-aec2-b8108195c6a6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1071,13 +1071,13 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-correlation-request-id": [ - "083664db-0c70-41f7-9343-9ee76080dcef" + "909a4439-ca43-45ad-99cb-ca4f28532a23" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20210728T132151Z:083664db-0c70-41f7-9343-9ee76080dcef" + "NORTHCENTRALUS:20210831T221508Z:909a4439-ca43-45ad-99cb-ca4f28532a23" ], "Date": [ - "Wed, 28 Jul 2021 13:21:50 GMT" + "Tue, 31 Aug 2021 22:15:07 GMT" ], "Content-Length": [ "187" @@ -1089,26 +1089,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"PoolNotFound\",\r\n \"message\": \"The specified pool does not exist.\\nRequestId:ae63a955-5c3a-4b34-9539-41326b85bd8c\\nTime:2021-07-28T13:21:51.4396862Z\",\r\n \"target\": \"BatchAccount\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"PoolNotFound\",\r\n \"message\": \"The specified pool does not exist.\\nRequestId:ea2d7760-a6ca-4679-aec2-b8108195c6a6\\nTime:2021-08-31T22:15:08.0709785Z\",\r\n \"target\": \"BatchAccount\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet9167/providers/Microsoft.Batch/batchAccounts/azsmnet8411?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5MTY3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0ODQxMT9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet2472/providers/Microsoft.Batch/batchAccounts/azsmnet4342?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyNDcyL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0NDM0Mj9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "27caa7bd-40db-4d0e-96bf-76e2cecd5eb7" + "9e6dc05c-47fc-4d87-96e1-7627041b5aad" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.6.30411.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/15.0.0.0" + "Microsoft.Azure.Management.Batch.BatchManagementClient/14.0.0.0" ] }, "ResponseHeaders": { @@ -1119,13 +1119,13 @@ "no-cache" ], "Location": [ - "https://centraluseuap.management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8411-dc869ca7-6b8a-4c96-a82a-398939e97345?api-version=2021-06-01" + "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/westus/accountOperationResults/azsmnet4342-bcd022f1-a5fa-4e07-a71f-25cceca43e92?api-version=2021-06-01" ], "Retry-After": [ "15" ], "x-ms-request-id": [ - "dc869ca7-6b8a-4c96-a82a-398939e97345" + "bcd022f1-a5fa-4e07-a71f-25cceca43e92" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1140,13 +1140,13 @@ "14997" ], "x-ms-correlation-request-id": [ - "fd4f4505-cca6-47e0-9e01-11d3d9973ed1" + "36e6cc9b-2e70-4839-a72d-233528a80ccc" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20210728T132151Z:fd4f4505-cca6-47e0-9e01-11d3d9973ed1" + "NORTHCENTRALUS:20210831T221508Z:36e6cc9b-2e70-4839-a72d-233528a80ccc" ], "Date": [ - "Wed, 28 Jul 2021 13:21:51 GMT" + "Tue, 31 Aug 2021 22:15:07 GMT" ], "Expires": [ "-1" @@ -1159,16 +1159,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8411-dc869ca7-6b8a-4c96-a82a-398939e97345?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0ODQxMS1kYzg2OWNhNy02YjhhLTRjOTYtYTgyYS0zOTg5MzllOTczNDU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/westus/accountOperationResults/azsmnet4342-bcd022f1-a5fa-4e07-a71f-25cceca43e92?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL3dlc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0NDM0Mi1iY2QwMjJmMS1hNWZhLTRlMDctYTcxZi0yNWNjZWNhNDNlOTI/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.6.30411.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/15.0.0.0" + "Microsoft.Azure.Management.Batch.BatchManagementClient/14.0.0.0" ] }, "ResponseHeaders": { @@ -1179,13 +1179,13 @@ "no-cache" ], "Location": [ - "https://centraluseuap.management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8411-dc869ca7-6b8a-4c96-a82a-398939e97345?api-version=2021-06-01" + "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/westus/accountOperationResults/azsmnet4342-bcd022f1-a5fa-4e07-a71f-25cceca43e92?api-version=2021-06-01" ], "Retry-After": [ "15" ], "x-ms-request-id": [ - "525095da-8bfc-4589-9177-6327076cbf86" + "9e0644eb-5257-4d0b-bd38-946fb83de1f8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1197,16 +1197,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "11991" ], "x-ms-correlation-request-id": [ - "e13b3eb5-841d-4330-abc6-b24c78773884" + "0b8df492-f861-4a9f-be80-afbd9800613f" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20210728T132206Z:e13b3eb5-841d-4330-abc6-b24c78773884" + "NORTHCENTRALUS:20210831T221523Z:0b8df492-f861-4a9f-be80-afbd9800613f" ], "Date": [ - "Wed, 28 Jul 2021 13:22:06 GMT" + "Tue, 31 Aug 2021 22:15:23 GMT" ], "Expires": [ "-1" @@ -1219,16 +1219,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8411-dc869ca7-6b8a-4c96-a82a-398939e97345?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0ODQxMS1kYzg2OWNhNy02YjhhLTRjOTYtYTgyYS0zOTg5MzllOTczNDU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/westus/accountOperationResults/azsmnet4342-bcd022f1-a5fa-4e07-a71f-25cceca43e92?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL3dlc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0NDM0Mi1iY2QwMjJmMS1hNWZhLTRlMDctYTcxZi0yNWNjZWNhNDNlOTI/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.6.30411.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/15.0.0.0" + "Microsoft.Azure.Management.Batch.BatchManagementClient/14.0.0.0" ] }, "ResponseHeaders": { @@ -1239,13 +1239,13 @@ "no-cache" ], "Location": [ - "https://centraluseuap.management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8411-dc869ca7-6b8a-4c96-a82a-398939e97345?api-version=2021-06-01" + "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/westus/accountOperationResults/azsmnet4342-bcd022f1-a5fa-4e07-a71f-25cceca43e92?api-version=2021-06-01" ], "Retry-After": [ "15" ], "x-ms-request-id": [ - "82d5fbca-01bd-4df9-bda6-bef962ef33ad" + "a2a8acad-b23f-426a-84b0-94ec713b848b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1257,16 +1257,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" + "11990" ], "x-ms-correlation-request-id": [ - "d8e4a3e7-46f8-4a7d-bc68-562e77df2b3c" + "b741538b-f232-4789-b59f-69c6d182fb14" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20210728T132222Z:d8e4a3e7-46f8-4a7d-bc68-562e77df2b3c" + "NORTHCENTRALUS:20210831T221538Z:b741538b-f232-4789-b59f-69c6d182fb14" ], "Date": [ - "Wed, 28 Jul 2021 13:22:22 GMT" + "Tue, 31 Aug 2021 22:15:38 GMT" ], "Expires": [ "-1" @@ -1279,16 +1279,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8411-dc869ca7-6b8a-4c96-a82a-398939e97345?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0ODQxMS1kYzg2OWNhNy02YjhhLTRjOTYtYTgyYS0zOTg5MzllOTczNDU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/westus/accountOperationResults/azsmnet4342-bcd022f1-a5fa-4e07-a71f-25cceca43e92?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL3dlc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0NDM0Mi1iY2QwMjJmMS1hNWZhLTRlMDctYTcxZi0yNWNjZWNhNDNlOTI/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.6.30411.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/15.0.0.0" + "Microsoft.Azure.Management.Batch.BatchManagementClient/14.0.0.0" ] }, "ResponseHeaders": { @@ -1299,13 +1299,13 @@ "no-cache" ], "Location": [ - "https://centraluseuap.management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8411-dc869ca7-6b8a-4c96-a82a-398939e97345?api-version=2021-06-01" + "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/westus/accountOperationResults/azsmnet4342-bcd022f1-a5fa-4e07-a71f-25cceca43e92?api-version=2021-06-01" ], "Retry-After": [ "15" ], "x-ms-request-id": [ - "48dbf678-8327-4b2f-94af-1b9ed3db8511" + "23501ff7-e1c6-406a-ac76-85a4d6d8d3b2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1317,16 +1317,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" + "11989" ], "x-ms-correlation-request-id": [ - "45b909f5-074f-4aa3-a14c-95e8ba5957f4" + "8146cf38-2d84-4421-86d0-ddb966e9ff55" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20210728T132237Z:45b909f5-074f-4aa3-a14c-95e8ba5957f4" + "NORTHCENTRALUS:20210831T221553Z:8146cf38-2d84-4421-86d0-ddb966e9ff55" ], "Date": [ - "Wed, 28 Jul 2021 13:22:36 GMT" + "Tue, 31 Aug 2021 22:15:53 GMT" ], "Expires": [ "-1" @@ -1339,16 +1339,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8411-dc869ca7-6b8a-4c96-a82a-398939e97345?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0ODQxMS1kYzg2OWNhNy02YjhhLTRjOTYtYTgyYS0zOTg5MzllOTczNDU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/westus/accountOperationResults/azsmnet4342-bcd022f1-a5fa-4e07-a71f-25cceca43e92?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL3dlc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0NDM0Mi1iY2QwMjJmMS1hNWZhLTRlMDctYTcxZi0yNWNjZWNhNDNlOTI/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.6.30411.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/15.0.0.0" + "Microsoft.Azure.Management.Batch.BatchManagementClient/14.0.0.0" ] }, "ResponseHeaders": { @@ -1359,13 +1359,13 @@ "no-cache" ], "Location": [ - "https://centraluseuap.management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8411-dc869ca7-6b8a-4c96-a82a-398939e97345?api-version=2021-06-01" + "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/westus/accountOperationResults/azsmnet4342-bcd022f1-a5fa-4e07-a71f-25cceca43e92?api-version=2021-06-01" ], "Retry-After": [ "15" ], "x-ms-request-id": [ - "0161308b-fb54-47b3-bbeb-0790509e4538" + "b65bcb81-3940-45c7-9571-96aa7dbde80e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1377,16 +1377,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11984" + "11988" ], "x-ms-correlation-request-id": [ - "138f1141-4ced-4696-8b49-657b374f7781" + "4b872fa3-c478-4da9-9e1d-46242858a68d" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20210728T132252Z:138f1141-4ced-4696-8b49-657b374f7781" + "NORTHCENTRALUS:20210831T221609Z:4b872fa3-c478-4da9-9e1d-46242858a68d" ], "Date": [ - "Wed, 28 Jul 2021 13:22:51 GMT" + "Tue, 31 Aug 2021 22:16:08 GMT" ], "Expires": [ "-1" @@ -1399,16 +1399,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8411-dc869ca7-6b8a-4c96-a82a-398939e97345?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0ODQxMS1kYzg2OWNhNy02YjhhLTRjOTYtYTgyYS0zOTg5MzllOTczNDU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/westus/accountOperationResults/azsmnet4342-bcd022f1-a5fa-4e07-a71f-25cceca43e92?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL3dlc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0NDM0Mi1iY2QwMjJmMS1hNWZhLTRlMDctYTcxZi0yNWNjZWNhNDNlOTI/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.6.30411.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/15.0.0.0" + "Microsoft.Azure.Management.Batch.BatchManagementClient/14.0.0.0" ] }, "ResponseHeaders": { @@ -1419,13 +1419,13 @@ "no-cache" ], "Location": [ - "https://centraluseuap.management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8411-dc869ca7-6b8a-4c96-a82a-398939e97345?api-version=2021-06-01" + "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/westus/accountOperationResults/azsmnet4342-bcd022f1-a5fa-4e07-a71f-25cceca43e92?api-version=2021-06-01" ], "Retry-After": [ "15" ], "x-ms-request-id": [ - "b33815c1-a1d1-4955-b2d0-48d89ddb0b33" + "b6659779-d0d8-432b-8c54-b76d2bb25d64" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1437,16 +1437,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11983" + "11987" ], "x-ms-correlation-request-id": [ - "3fe6a871-96fd-455a-868a-73500dc90d60" + "2496ca47-691c-48f9-9832-47bb2f4d7a3b" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20210728T132307Z:3fe6a871-96fd-455a-868a-73500dc90d60" + "NORTHCENTRALUS:20210831T221624Z:2496ca47-691c-48f9-9832-47bb2f4d7a3b" ], "Date": [ - "Wed, 28 Jul 2021 13:23:07 GMT" + "Tue, 31 Aug 2021 22:16:23 GMT" ], "Expires": [ "-1" @@ -1459,16 +1459,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8411-dc869ca7-6b8a-4c96-a82a-398939e97345?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0ODQxMS1kYzg2OWNhNy02YjhhLTRjOTYtYTgyYS0zOTg5MzllOTczNDU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/westus/accountOperationResults/azsmnet4342-bcd022f1-a5fa-4e07-a71f-25cceca43e92?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL3dlc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0NDM0Mi1iY2QwMjJmMS1hNWZhLTRlMDctYTcxZi0yNWNjZWNhNDNlOTI/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.6.30411.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/15.0.0.0" + "Microsoft.Azure.Management.Batch.BatchManagementClient/14.0.0.0" ] }, "ResponseHeaders": { @@ -1479,13 +1479,13 @@ "no-cache" ], "Location": [ - "https://centraluseuap.management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8411-dc869ca7-6b8a-4c96-a82a-398939e97345?api-version=2021-06-01" + "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/westus/accountOperationResults/azsmnet4342-bcd022f1-a5fa-4e07-a71f-25cceca43e92?api-version=2021-06-01" ], "Retry-After": [ "15" ], "x-ms-request-id": [ - "fb9087c6-766f-4334-aa1d-7d3d873ba06b" + "c3e70277-e952-4bf5-b2ca-3683ecea2cb8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1497,16 +1497,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11982" + "11986" ], "x-ms-correlation-request-id": [ - "29a7e048-47fe-4421-ab39-062361090d20" + "7643613f-f718-456f-b4b7-106907eacb5e" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20210728T132322Z:29a7e048-47fe-4421-ab39-062361090d20" + "NORTHCENTRALUS:20210831T221639Z:7643613f-f718-456f-b4b7-106907eacb5e" ], "Date": [ - "Wed, 28 Jul 2021 13:23:22 GMT" + "Tue, 31 Aug 2021 22:16:38 GMT" ], "Expires": [ "-1" @@ -1519,16 +1519,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8411-dc869ca7-6b8a-4c96-a82a-398939e97345?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0ODQxMS1kYzg2OWNhNy02YjhhLTRjOTYtYTgyYS0zOTg5MzllOTczNDU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/westus/accountOperationResults/azsmnet4342-bcd022f1-a5fa-4e07-a71f-25cceca43e92?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL3dlc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0NDM0Mi1iY2QwMjJmMS1hNWZhLTRlMDctYTcxZi0yNWNjZWNhNDNlOTI/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.6.30411.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/15.0.0.0" + "Microsoft.Azure.Management.Batch.BatchManagementClient/14.0.0.0" ] }, "ResponseHeaders": { @@ -1539,13 +1539,13 @@ "no-cache" ], "Location": [ - "https://centraluseuap.management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8411-dc869ca7-6b8a-4c96-a82a-398939e97345?api-version=2021-06-01" + "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/westus/accountOperationResults/azsmnet4342-bcd022f1-a5fa-4e07-a71f-25cceca43e92?api-version=2021-06-01" ], "Retry-After": [ "15" ], "x-ms-request-id": [ - "8eae0a8d-b833-46d3-8ac7-31276a449edd" + "1cb4c580-7591-4cbc-a4ac-24c50cf49c31" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1557,16 +1557,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11981" + "11985" ], "x-ms-correlation-request-id": [ - "10e59fa4-3fa2-4602-9a04-13ab030c5a8b" + "06d77531-a4c1-4ceb-a085-2ec31cde96a9" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20210728T132337Z:10e59fa4-3fa2-4602-9a04-13ab030c5a8b" + "NORTHCENTRALUS:20210831T221654Z:06d77531-a4c1-4ceb-a085-2ec31cde96a9" ], "Date": [ - "Wed, 28 Jul 2021 13:23:37 GMT" + "Tue, 31 Aug 2021 22:16:54 GMT" ], "Expires": [ "-1" @@ -1579,16 +1579,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8411-dc869ca7-6b8a-4c96-a82a-398939e97345?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0ODQxMS1kYzg2OWNhNy02YjhhLTRjOTYtYTgyYS0zOTg5MzllOTczNDU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/westus/accountOperationResults/azsmnet4342-bcd022f1-a5fa-4e07-a71f-25cceca43e92?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL3dlc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0NDM0Mi1iY2QwMjJmMS1hNWZhLTRlMDctYTcxZi0yNWNjZWNhNDNlOTI/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.6.30411.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/15.0.0.0" + "Microsoft.Azure.Management.Batch.BatchManagementClient/14.0.0.0" ] }, "ResponseHeaders": { @@ -1599,13 +1599,13 @@ "no-cache" ], "Location": [ - "https://centraluseuap.management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8411-dc869ca7-6b8a-4c96-a82a-398939e97345?api-version=2021-06-01" + "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/westus/accountOperationResults/azsmnet4342-bcd022f1-a5fa-4e07-a71f-25cceca43e92?api-version=2021-06-01" ], "Retry-After": [ "15" ], "x-ms-request-id": [ - "5ffe1440-55ca-4834-ba27-2b3db43eff76" + "5a334c1e-1507-4b0f-a9b2-96890b33b033" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1617,16 +1617,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11980" + "11984" ], "x-ms-correlation-request-id": [ - "078230c5-b554-455b-acc2-29f8434ee869" + "2bdc4a59-0868-4fb3-841d-195fb4b56534" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20210728T132352Z:078230c5-b554-455b-acc2-29f8434ee869" + "NORTHCENTRALUS:20210831T221709Z:2bdc4a59-0868-4fb3-841d-195fb4b56534" ], "Date": [ - "Wed, 28 Jul 2021 13:23:52 GMT" + "Tue, 31 Aug 2021 22:17:09 GMT" ], "Expires": [ "-1" @@ -1639,16 +1639,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8411-dc869ca7-6b8a-4c96-a82a-398939e97345?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0ODQxMS1kYzg2OWNhNy02YjhhLTRjOTYtYTgyYS0zOTg5MzllOTczNDU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/westus/accountOperationResults/azsmnet4342-bcd022f1-a5fa-4e07-a71f-25cceca43e92?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL3dlc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0NDM0Mi1iY2QwMjJmMS1hNWZhLTRlMDctYTcxZi0yNWNjZWNhNDNlOTI/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.6.30411.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/15.0.0.0" + "Microsoft.Azure.Management.Batch.BatchManagementClient/14.0.0.0" ] }, "ResponseHeaders": { @@ -1659,13 +1659,13 @@ "no-cache" ], "Location": [ - "https://centraluseuap.management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8411-dc869ca7-6b8a-4c96-a82a-398939e97345?api-version=2021-06-01" + "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/westus/accountOperationResults/azsmnet4342-bcd022f1-a5fa-4e07-a71f-25cceca43e92?api-version=2021-06-01" ], "Retry-After": [ "15" ], "x-ms-request-id": [ - "23b1e985-2bf9-4e31-bd61-430acce4c0bd" + "3616c023-d7ed-43a4-a3d6-265da63c45b0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1677,16 +1677,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11979" + "11983" ], "x-ms-correlation-request-id": [ - "a8cefed7-dfaf-4da2-852f-974ff8fc24e0" + "21d91332-33f8-47bd-b400-214a3cfda325" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20210728T132407Z:a8cefed7-dfaf-4da2-852f-974ff8fc24e0" + "NORTHCENTRALUS:20210831T221724Z:21d91332-33f8-47bd-b400-214a3cfda325" ], "Date": [ - "Wed, 28 Jul 2021 13:24:07 GMT" + "Tue, 31 Aug 2021 22:17:24 GMT" ], "Expires": [ "-1" @@ -1699,16 +1699,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8411-dc869ca7-6b8a-4c96-a82a-398939e97345?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0ODQxMS1kYzg2OWNhNy02YjhhLTRjOTYtYTgyYS0zOTg5MzllOTczNDU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/westus/accountOperationResults/azsmnet4342-bcd022f1-a5fa-4e07-a71f-25cceca43e92?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL3dlc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0NDM0Mi1iY2QwMjJmMS1hNWZhLTRlMDctYTcxZi0yNWNjZWNhNDNlOTI/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.6.30411.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/15.0.0.0" + "Microsoft.Azure.Management.Batch.BatchManagementClient/14.0.0.0" ] }, "ResponseHeaders": { @@ -1719,13 +1719,13 @@ "no-cache" ], "Location": [ - "https://centraluseuap.management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8411-dc869ca7-6b8a-4c96-a82a-398939e97345?api-version=2021-06-01" + "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/westus/accountOperationResults/azsmnet4342-bcd022f1-a5fa-4e07-a71f-25cceca43e92?api-version=2021-06-01" ], "Retry-After": [ "15" ], "x-ms-request-id": [ - "1b6970aa-c7cb-433f-ab08-651efb0277bf" + "2a1cfb66-4e56-4c68-8f11-b84c2305f86d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1737,16 +1737,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11978" + "11982" ], "x-ms-correlation-request-id": [ - "8b35c76b-e9d3-4faf-8ba2-b4df0734e1c2" + "1861337e-a296-4b21-9960-4d97be689075" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20210728T132422Z:8b35c76b-e9d3-4faf-8ba2-b4df0734e1c2" + "NORTHCENTRALUS:20210831T221739Z:1861337e-a296-4b21-9960-4d97be689075" ], "Date": [ - "Wed, 28 Jul 2021 13:24:22 GMT" + "Tue, 31 Aug 2021 22:17:38 GMT" ], "Expires": [ "-1" @@ -1759,16 +1759,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8411-dc869ca7-6b8a-4c96-a82a-398939e97345?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0ODQxMS1kYzg2OWNhNy02YjhhLTRjOTYtYTgyYS0zOTg5MzllOTczNDU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/westus/accountOperationResults/azsmnet4342-bcd022f1-a5fa-4e07-a71f-25cceca43e92?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL3dlc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0NDM0Mi1iY2QwMjJmMS1hNWZhLTRlMDctYTcxZi0yNWNjZWNhNDNlOTI/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.6.30411.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/15.0.0.0" + "Microsoft.Azure.Management.Batch.BatchManagementClient/14.0.0.0" ] }, "ResponseHeaders": { @@ -1779,13 +1779,13 @@ "no-cache" ], "Location": [ - "https://centraluseuap.management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8411-dc869ca7-6b8a-4c96-a82a-398939e97345?api-version=2021-06-01" + "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/westus/accountOperationResults/azsmnet4342-bcd022f1-a5fa-4e07-a71f-25cceca43e92?api-version=2021-06-01" ], "Retry-After": [ "15" ], "x-ms-request-id": [ - "5b0f52b5-c0cf-40fb-b287-4f4804a2c8e8" + "58db5728-f37a-40f2-b658-c84d9ad78c24" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1797,16 +1797,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11977" + "11981" ], "x-ms-correlation-request-id": [ - "351d6c9d-21b0-4db2-9f2a-ee22e8464af7" + "e7649729-de53-4c0f-8368-51c0ccafabf8" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20210728T132437Z:351d6c9d-21b0-4db2-9f2a-ee22e8464af7" + "NORTHCENTRALUS:20210831T221754Z:e7649729-de53-4c0f-8368-51c0ccafabf8" ], "Date": [ - "Wed, 28 Jul 2021 13:24:37 GMT" + "Tue, 31 Aug 2021 22:17:53 GMT" ], "Expires": [ "-1" @@ -1819,16 +1819,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8411-dc869ca7-6b8a-4c96-a82a-398939e97345?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0ODQxMS1kYzg2OWNhNy02YjhhLTRjOTYtYTgyYS0zOTg5MzllOTczNDU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/westus/accountOperationResults/azsmnet4342-bcd022f1-a5fa-4e07-a71f-25cceca43e92?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL3dlc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0NDM0Mi1iY2QwMjJmMS1hNWZhLTRlMDctYTcxZi0yNWNjZWNhNDNlOTI/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.6.30411.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/15.0.0.0" + "Microsoft.Azure.Management.Batch.BatchManagementClient/14.0.0.0" ] }, "ResponseHeaders": { @@ -1839,13 +1839,13 @@ "no-cache" ], "Location": [ - "https://centraluseuap.management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8411-dc869ca7-6b8a-4c96-a82a-398939e97345?api-version=2021-06-01" + "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/westus/accountOperationResults/azsmnet4342-bcd022f1-a5fa-4e07-a71f-25cceca43e92?api-version=2021-06-01" ], "Retry-After": [ "15" ], "x-ms-request-id": [ - "e54b1050-9867-41db-98db-fb78e79df2b6" + "e643087c-6d01-4d74-8d74-622771ecdba2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1857,16 +1857,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11976" + "11980" ], "x-ms-correlation-request-id": [ - "fef0afb2-c1e6-4a75-b23f-d27eac05d9b8" + "dea1d605-67c8-42c6-9dc2-1773ed1135c9" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20210728T132452Z:fef0afb2-c1e6-4a75-b23f-d27eac05d9b8" + "NORTHCENTRALUS:20210831T221809Z:dea1d605-67c8-42c6-9dc2-1773ed1135c9" ], "Date": [ - "Wed, 28 Jul 2021 13:24:52 GMT" + "Tue, 31 Aug 2021 22:18:09 GMT" ], "Expires": [ "-1" @@ -1879,16 +1879,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8411-dc869ca7-6b8a-4c96-a82a-398939e97345?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0ODQxMS1kYzg2OWNhNy02YjhhLTRjOTYtYTgyYS0zOTg5MzllOTczNDU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/westus/accountOperationResults/azsmnet4342-bcd022f1-a5fa-4e07-a71f-25cceca43e92?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL3dlc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0NDM0Mi1iY2QwMjJmMS1hNWZhLTRlMDctYTcxZi0yNWNjZWNhNDNlOTI/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.6.30411.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/15.0.0.0" + "Microsoft.Azure.Management.Batch.BatchManagementClient/14.0.0.0" ] }, "ResponseHeaders": { @@ -1899,13 +1899,13 @@ "no-cache" ], "Location": [ - "https://centraluseuap.management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8411-dc869ca7-6b8a-4c96-a82a-398939e97345?api-version=2021-06-01" + "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/westus/accountOperationResults/azsmnet4342-bcd022f1-a5fa-4e07-a71f-25cceca43e92?api-version=2021-06-01" ], "Retry-After": [ "15" ], "x-ms-request-id": [ - "fc45c3c1-ac72-4f5b-bf16-fb1d30593aa8" + "b6f23a73-5af6-433c-a6c2-ab76ddd141de" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1917,16 +1917,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11975" + "11979" ], "x-ms-correlation-request-id": [ - "f4876879-3da9-4960-b20c-14732746aab6" + "ddb1e559-3b53-48ba-95da-235b367cb078" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20210728T132508Z:f4876879-3da9-4960-b20c-14732746aab6" + "NORTHCENTRALUS:20210831T221825Z:ddb1e559-3b53-48ba-95da-235b367cb078" ], "Date": [ - "Wed, 28 Jul 2021 13:25:07 GMT" + "Tue, 31 Aug 2021 22:18:24 GMT" ], "Expires": [ "-1" @@ -1939,16 +1939,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8411-dc869ca7-6b8a-4c96-a82a-398939e97345?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0ODQxMS1kYzg2OWNhNy02YjhhLTRjOTYtYTgyYS0zOTg5MzllOTczNDU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/westus/accountOperationResults/azsmnet4342-bcd022f1-a5fa-4e07-a71f-25cceca43e92?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL3dlc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0NDM0Mi1iY2QwMjJmMS1hNWZhLTRlMDctYTcxZi0yNWNjZWNhNDNlOTI/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.6.30411.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/15.0.0.0" + "Microsoft.Azure.Management.Batch.BatchManagementClient/14.0.0.0" ] }, "ResponseHeaders": { @@ -1959,13 +1959,13 @@ "no-cache" ], "Location": [ - "https://centraluseuap.management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8411-dc869ca7-6b8a-4c96-a82a-398939e97345?api-version=2021-06-01" + "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/westus/accountOperationResults/azsmnet4342-bcd022f1-a5fa-4e07-a71f-25cceca43e92?api-version=2021-06-01" ], "Retry-After": [ "15" ], "x-ms-request-id": [ - "9459f53f-5490-48b2-951f-e32d6e3b7872" + "ece51708-8fd3-4452-88b6-4e3800d90662" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1977,16 +1977,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11974" + "11978" ], "x-ms-correlation-request-id": [ - "868f8055-2a57-42be-86ad-ab002a3fc7ef" + "27218adf-6c4b-4703-8172-da44aa0a26d8" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20210728T132523Z:868f8055-2a57-42be-86ad-ab002a3fc7ef" + "NORTHCENTRALUS:20210831T221840Z:27218adf-6c4b-4703-8172-da44aa0a26d8" ], "Date": [ - "Wed, 28 Jul 2021 13:25:23 GMT" + "Tue, 31 Aug 2021 22:18:39 GMT" ], "Expires": [ "-1" @@ -1999,16 +1999,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8411-dc869ca7-6b8a-4c96-a82a-398939e97345?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0ODQxMS1kYzg2OWNhNy02YjhhLTRjOTYtYTgyYS0zOTg5MzllOTczNDU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/westus/accountOperationResults/azsmnet4342-bcd022f1-a5fa-4e07-a71f-25cceca43e92?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL3dlc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0NDM0Mi1iY2QwMjJmMS1hNWZhLTRlMDctYTcxZi0yNWNjZWNhNDNlOTI/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.6.30411.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/15.0.0.0" + "Microsoft.Azure.Management.Batch.BatchManagementClient/14.0.0.0" ] }, "ResponseHeaders": { @@ -2019,13 +2019,13 @@ "no-cache" ], "Location": [ - "https://centraluseuap.management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8411-dc869ca7-6b8a-4c96-a82a-398939e97345?api-version=2021-06-01" + "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/westus/accountOperationResults/azsmnet4342-bcd022f1-a5fa-4e07-a71f-25cceca43e92?api-version=2021-06-01" ], "Retry-After": [ "15" ], "x-ms-request-id": [ - "48c4f4bb-aafe-4f0e-89f8-3d4141589a8c" + "a8bea2de-b98d-470f-9dff-f2a35fb4736b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2037,16 +2037,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11973" + "11977" ], "x-ms-correlation-request-id": [ - "817bf4e3-2d04-4700-b7e5-8b61dd920d35" + "ba34f192-5bd3-429b-9ce8-3a0b8abd1d44" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20210728T132538Z:817bf4e3-2d04-4700-b7e5-8b61dd920d35" + "NORTHCENTRALUS:20210831T221855Z:ba34f192-5bd3-429b-9ce8-3a0b8abd1d44" ], "Date": [ - "Wed, 28 Jul 2021 13:25:38 GMT" + "Tue, 31 Aug 2021 22:18:55 GMT" ], "Expires": [ "-1" @@ -2059,16 +2059,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8411-dc869ca7-6b8a-4c96-a82a-398939e97345?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0ODQxMS1kYzg2OWNhNy02YjhhLTRjOTYtYTgyYS0zOTg5MzllOTczNDU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/westus/accountOperationResults/azsmnet4342-bcd022f1-a5fa-4e07-a71f-25cceca43e92?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL3dlc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0NDM0Mi1iY2QwMjJmMS1hNWZhLTRlMDctYTcxZi0yNWNjZWNhNDNlOTI/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.6.30411.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/15.0.0.0" + "Microsoft.Azure.Management.Batch.BatchManagementClient/14.0.0.0" ] }, "ResponseHeaders": { @@ -2079,13 +2079,13 @@ "no-cache" ], "Location": [ - "https://centraluseuap.management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8411-dc869ca7-6b8a-4c96-a82a-398939e97345?api-version=2021-06-01" + "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/westus/accountOperationResults/azsmnet4342-bcd022f1-a5fa-4e07-a71f-25cceca43e92?api-version=2021-06-01" ], "Retry-After": [ "15" ], "x-ms-request-id": [ - "e8a7297c-53eb-4df5-a13e-8e40270745fb" + "63dcbae0-cdad-44b8-9cba-8c5ac4c99fb9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2097,16 +2097,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11972" + "11976" ], "x-ms-correlation-request-id": [ - "71a7cb87-0e88-4a27-9408-30314375e06e" + "bd407525-2fff-4266-8155-b486f57bfc58" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20210728T132553Z:71a7cb87-0e88-4a27-9408-30314375e06e" + "NORTHCENTRALUS:20210831T221910Z:bd407525-2fff-4266-8155-b486f57bfc58" ], "Date": [ - "Wed, 28 Jul 2021 13:25:52 GMT" + "Tue, 31 Aug 2021 22:19:09 GMT" ], "Expires": [ "-1" @@ -2119,16 +2119,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8411-dc869ca7-6b8a-4c96-a82a-398939e97345?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0ODQxMS1kYzg2OWNhNy02YjhhLTRjOTYtYTgyYS0zOTg5MzllOTczNDU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/westus/accountOperationResults/azsmnet4342-bcd022f1-a5fa-4e07-a71f-25cceca43e92?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL3dlc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0NDM0Mi1iY2QwMjJmMS1hNWZhLTRlMDctYTcxZi0yNWNjZWNhNDNlOTI/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.6.30411.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/15.0.0.0" + "Microsoft.Azure.Management.Batch.BatchManagementClient/14.0.0.0" ] }, "ResponseHeaders": { @@ -2139,13 +2139,13 @@ "no-cache" ], "Location": [ - "https://centraluseuap.management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8411-dc869ca7-6b8a-4c96-a82a-398939e97345?api-version=2021-06-01" + "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/westus/accountOperationResults/azsmnet4342-bcd022f1-a5fa-4e07-a71f-25cceca43e92?api-version=2021-06-01" ], "Retry-After": [ "15" ], "x-ms-request-id": [ - "267fa80c-2c40-43ca-9f84-a9e819390b0c" + "8889d237-18d2-4443-8955-54d9cbfe5c90" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2157,16 +2157,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11971" + "11975" ], "x-ms-correlation-request-id": [ - "9369ee85-dd44-41c9-9e60-3828b22f32c7" + "7a8850b2-5cae-4ac7-8818-b1edf9f3a3db" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20210728T132608Z:9369ee85-dd44-41c9-9e60-3828b22f32c7" + "NORTHCENTRALUS:20210831T221925Z:7a8850b2-5cae-4ac7-8818-b1edf9f3a3db" ], "Date": [ - "Wed, 28 Jul 2021 13:26:08 GMT" + "Tue, 31 Aug 2021 22:19:24 GMT" ], "Expires": [ "-1" @@ -2179,16 +2179,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8411-dc869ca7-6b8a-4c96-a82a-398939e97345?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0ODQxMS1kYzg2OWNhNy02YjhhLTRjOTYtYTgyYS0zOTg5MzllOTczNDU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/westus/accountOperationResults/azsmnet4342-bcd022f1-a5fa-4e07-a71f-25cceca43e92?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL3dlc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0NDM0Mi1iY2QwMjJmMS1hNWZhLTRlMDctYTcxZi0yNWNjZWNhNDNlOTI/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.6.30411.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/15.0.0.0" + "Microsoft.Azure.Management.Batch.BatchManagementClient/14.0.0.0" ] }, "ResponseHeaders": { @@ -2199,13 +2199,13 @@ "no-cache" ], "Location": [ - "https://centraluseuap.management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8411-dc869ca7-6b8a-4c96-a82a-398939e97345?api-version=2021-06-01" + "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/westus/accountOperationResults/azsmnet4342-bcd022f1-a5fa-4e07-a71f-25cceca43e92?api-version=2021-06-01" ], "Retry-After": [ "15" ], "x-ms-request-id": [ - "fdeecf3c-46db-441c-a2b6-2c48783f79af" + "6c0f996a-4d6e-45ca-9c06-94d5645cbc8d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2213,20 +2213,20 @@ "X-Content-Type-Options": [ "nosniff" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11970" - ], "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11974" + ], "x-ms-correlation-request-id": [ - "3ab0ea3e-fa8e-4ccd-bfbf-96f4821892bc" + "549ec9c2-0c8f-4bc8-8888-462eece35938" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20210728T132623Z:3ab0ea3e-fa8e-4ccd-bfbf-96f4821892bc" + "NORTHCENTRALUS:20210831T221940Z:549ec9c2-0c8f-4bc8-8888-462eece35938" ], "Date": [ - "Wed, 28 Jul 2021 13:26:23 GMT" + "Tue, 31 Aug 2021 22:19:40 GMT" ], "Expires": [ "-1" @@ -2239,16 +2239,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8411-dc869ca7-6b8a-4c96-a82a-398939e97345?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0ODQxMS1kYzg2OWNhNy02YjhhLTRjOTYtYTgyYS0zOTg5MzllOTczNDU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/westus/accountOperationResults/azsmnet4342-bcd022f1-a5fa-4e07-a71f-25cceca43e92?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL3dlc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0NDM0Mi1iY2QwMjJmMS1hNWZhLTRlMDctYTcxZi0yNWNjZWNhNDNlOTI/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.6.30411.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/15.0.0.0" + "Microsoft.Azure.Management.Batch.BatchManagementClient/14.0.0.0" ] }, "ResponseHeaders": { @@ -2259,13 +2259,13 @@ "no-cache" ], "Location": [ - "https://centraluseuap.management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8411-dc869ca7-6b8a-4c96-a82a-398939e97345?api-version=2021-06-01" + "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/westus/accountOperationResults/azsmnet4342-bcd022f1-a5fa-4e07-a71f-25cceca43e92?api-version=2021-06-01" ], "Retry-After": [ "15" ], "x-ms-request-id": [ - "c3227201-2538-4fb6-8a65-4c03c878c6ed" + "6162f8bc-40f9-455e-8099-9f0cd2056845" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2277,16 +2277,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11969" + "11973" ], "x-ms-correlation-request-id": [ - "034bf9c4-2ef4-452a-b5b8-2c5c3c115c52" + "948211c1-1778-4014-94a2-bc47eacc56e2" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20210728T132638Z:034bf9c4-2ef4-452a-b5b8-2c5c3c115c52" + "NORTHCENTRALUS:20210831T221955Z:948211c1-1778-4014-94a2-bc47eacc56e2" ], "Date": [ - "Wed, 28 Jul 2021 13:26:38 GMT" + "Tue, 31 Aug 2021 22:19:55 GMT" ], "Expires": [ "-1" @@ -2299,16 +2299,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8411-dc869ca7-6b8a-4c96-a82a-398939e97345?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0ODQxMS1kYzg2OWNhNy02YjhhLTRjOTYtYTgyYS0zOTg5MzllOTczNDU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/westus/accountOperationResults/azsmnet4342-bcd022f1-a5fa-4e07-a71f-25cceca43e92?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL3dlc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0NDM0Mi1iY2QwMjJmMS1hNWZhLTRlMDctYTcxZi0yNWNjZWNhNDNlOTI/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.6.30411.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/15.0.0.0" + "Microsoft.Azure.Management.Batch.BatchManagementClient/14.0.0.0" ] }, "ResponseHeaders": { @@ -2319,13 +2319,13 @@ "no-cache" ], "Location": [ - "https://centraluseuap.management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8411-dc869ca7-6b8a-4c96-a82a-398939e97345?api-version=2021-06-01" + "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/westus/accountOperationResults/azsmnet4342-bcd022f1-a5fa-4e07-a71f-25cceca43e92?api-version=2021-06-01" ], "Retry-After": [ "15" ], "x-ms-request-id": [ - "0ea51656-2fab-4429-bb80-09e2cf1a846d" + "d5374b1c-f401-4b5b-9e3b-56c908c5fdd5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2333,20 +2333,20 @@ "X-Content-Type-Options": [ "nosniff" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11972" + ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11968" - ], "x-ms-correlation-request-id": [ - "848fd365-6e9c-4659-96b1-4e9c9280f22b" + "e3b98da2-9d2f-43e5-8028-201567b4702e" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20210728T132653Z:848fd365-6e9c-4659-96b1-4e9c9280f22b" + "NORTHCENTRALUS:20210831T222010Z:e3b98da2-9d2f-43e5-8028-201567b4702e" ], "Date": [ - "Wed, 28 Jul 2021 13:26:53 GMT" + "Tue, 31 Aug 2021 22:20:10 GMT" ], "Expires": [ "-1" @@ -2359,16 +2359,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8411-dc869ca7-6b8a-4c96-a82a-398939e97345?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0ODQxMS1kYzg2OWNhNy02YjhhLTRjOTYtYTgyYS0zOTg5MzllOTczNDU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/westus/accountOperationResults/azsmnet4342-bcd022f1-a5fa-4e07-a71f-25cceca43e92?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL3dlc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0NDM0Mi1iY2QwMjJmMS1hNWZhLTRlMDctYTcxZi0yNWNjZWNhNDNlOTI/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.6.30411.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/15.0.0.0" + "Microsoft.Azure.Management.Batch.BatchManagementClient/14.0.0.0" ] }, "ResponseHeaders": { @@ -2379,13 +2379,13 @@ "no-cache" ], "Location": [ - "https://centraluseuap.management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8411-dc869ca7-6b8a-4c96-a82a-398939e97345?api-version=2021-06-01" + "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/westus/accountOperationResults/azsmnet4342-bcd022f1-a5fa-4e07-a71f-25cceca43e92?api-version=2021-06-01" ], "Retry-After": [ "15" ], "x-ms-request-id": [ - "116fa4d4-e3d6-4ead-952f-4e6fbd3f8e50" + "2051a6bf-de26-4835-ac4a-4d206406648a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2397,16 +2397,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11967" + "11971" ], "x-ms-correlation-request-id": [ - "77fb45d2-f501-4cec-a551-1721e3400bbf" + "2e8c12ce-fb27-4138-aee3-8e79d6c06713" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20210728T132708Z:77fb45d2-f501-4cec-a551-1721e3400bbf" + "NORTHCENTRALUS:20210831T222025Z:2e8c12ce-fb27-4138-aee3-8e79d6c06713" ], "Date": [ - "Wed, 28 Jul 2021 13:27:08 GMT" + "Tue, 31 Aug 2021 22:20:25 GMT" ], "Expires": [ "-1" @@ -2419,16 +2419,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8411-dc869ca7-6b8a-4c96-a82a-398939e97345?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0ODQxMS1kYzg2OWNhNy02YjhhLTRjOTYtYTgyYS0zOTg5MzllOTczNDU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/westus/accountOperationResults/azsmnet4342-bcd022f1-a5fa-4e07-a71f-25cceca43e92?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL3dlc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0NDM0Mi1iY2QwMjJmMS1hNWZhLTRlMDctYTcxZi0yNWNjZWNhNDNlOTI/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.6.30411.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/15.0.0.0" + "Microsoft.Azure.Management.Batch.BatchManagementClient/14.0.0.0" ] }, "ResponseHeaders": { @@ -2439,7 +2439,7 @@ "no-cache" ], "x-ms-request-id": [ - "4ddaa57e-2bfc-42ab-a2bd-386b0ce8da8d" + "ef86ab17-8b88-4a33-8243-ff1863f67f7d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2451,16 +2451,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11966" + "11970" ], "x-ms-correlation-request-id": [ - "de115432-09f6-4452-b221-5d702d85656e" + "ba0cbcd9-6daf-4503-b86d-9c1e976c556b" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20210728T132724Z:de115432-09f6-4452-b221-5d702d85656e" + "NORTHCENTRALUS:20210831T222041Z:ba0cbcd9-6daf-4503-b86d-9c1e976c556b" ], "Date": [ - "Wed, 28 Jul 2021 13:27:23 GMT" + "Tue, 31 Aug 2021 22:20:40 GMT" ], "Expires": [ "-1" @@ -2473,16 +2473,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8411-dc869ca7-6b8a-4c96-a82a-398939e97345?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0ODQxMS1kYzg2OWNhNy02YjhhLTRjOTYtYTgyYS0zOTg5MzllOTczNDU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/westus/accountOperationResults/azsmnet4342-bcd022f1-a5fa-4e07-a71f-25cceca43e92?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL3dlc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0NDM0Mi1iY2QwMjJmMS1hNWZhLTRlMDctYTcxZi0yNWNjZWNhNDNlOTI/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.6.30411.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/15.0.0.0" + "Microsoft.Azure.Management.Batch.BatchManagementClient/14.0.0.0" ] }, "ResponseHeaders": { @@ -2493,7 +2493,7 @@ "no-cache" ], "x-ms-request-id": [ - "2df71420-d5a0-4cc8-b0d4-99ce7e33e994" + "98842b53-6d57-48d3-bc39-b1da5b2f1bb4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2505,16 +2505,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11965" + "11969" ], "x-ms-correlation-request-id": [ - "77ff2329-b5ef-42d5-a7cc-b33bf96b454c" + "65b7d0b9-8676-41bf-b58a-9a27701e94d9" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20210728T132724Z:77ff2329-b5ef-42d5-a7cc-b33bf96b454c" + "NORTHCENTRALUS:20210831T222041Z:65b7d0b9-8676-41bf-b58a-9a27701e94d9" ], "Date": [ - "Wed, 28 Jul 2021 13:27:23 GMT" + "Tue, 31 Aug 2021 22:20:40 GMT" ], "Expires": [ "-1" @@ -2527,19 +2527,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourcegroups/azsmnet9167?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQ5MTY3P2FwaS12ZXJzaW9uPTIwMTctMDUtMTA=", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourcegroups/azsmnet2472?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQyNDcyP2FwaS12ZXJzaW9uPTIwMTctMDUtMTA=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d8e66747-d49a-4e8c-8e57-08746781ef49" + "37d12803-be3b-4d0c-864b-9343896c7452" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.6.30411.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19043.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" @@ -2553,22 +2553,22 @@ "no-cache" ], "Location": [ - "https://centraluseuap.management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUOTE2Ny1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2017-05-10" + "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUMjQ3Mi1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2017-05-10" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14998" + "14999" ], "x-ms-request-id": [ - "6befcb90-4a8e-435a-820c-6e742a4f9e3e" + "0a2ca9b2-16b5-4197-9250-6181c7ab0f25" ], "x-ms-correlation-request-id": [ - "6befcb90-4a8e-435a-820c-6e742a4f9e3e" + "0a2ca9b2-16b5-4197-9250-6181c7ab0f25" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20210728T132725Z:6befcb90-4a8e-435a-820c-6e742a4f9e3e" + "NORTHCENTRALUS:20210831T222042Z:0a2ca9b2-16b5-4197-9250-6181c7ab0f25" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2577,7 +2577,7 @@ "nosniff" ], "Date": [ - "Wed, 28 Jul 2021 13:27:24 GMT" + "Tue, 31 Aug 2021 22:20:42 GMT" ], "Expires": [ "-1" @@ -2590,13 +2590,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUOTE2Ny1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xOTlRrVlVPVEUyTnkxRlFWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUMjQ3Mi1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xOTlRrVlVNalEzTWkxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.6.30411.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19043.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" @@ -2610,22 +2610,22 @@ "no-cache" ], "Location": [ - "https://centraluseuap.management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUOTE2Ny1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2017-05-10" + "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUMjQ3Mi1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2017-05-10" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "11999" ], "x-ms-request-id": [ - "a4e8a417-506d-4461-a525-0443d8e62fa9" + "f2744dfc-6773-42fa-b3f4-0f72c16c0651" ], "x-ms-correlation-request-id": [ - "a4e8a417-506d-4461-a525-0443d8e62fa9" + "f2744dfc-6773-42fa-b3f4-0f72c16c0651" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20210728T132740Z:a4e8a417-506d-4461-a525-0443d8e62fa9" + "NORTHCENTRALUS:20210831T222058Z:f2744dfc-6773-42fa-b3f4-0f72c16c0651" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2634,7 +2634,7 @@ "nosniff" ], "Date": [ - "Wed, 28 Jul 2021 13:27:40 GMT" + "Tue, 31 Aug 2021 22:20:57 GMT" ], "Expires": [ "-1" @@ -2647,13 +2647,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUOTE2Ny1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xOTlRrVlVPVEUyTnkxRlFWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUMjQ3Mi1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xOTlRrVlVNalEzTWkxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.6.30411.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19043.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" @@ -2667,22 +2667,22 @@ "no-cache" ], "Location": [ - "https://centraluseuap.management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUOTE2Ny1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2017-05-10" + "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUMjQ3Mi1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2017-05-10" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" + "11998" ], "x-ms-request-id": [ - "7b4c9070-06dc-4c88-a098-e54e810ff8fe" + "254071af-8637-4106-b9e5-686f66eb4323" ], "x-ms-correlation-request-id": [ - "7b4c9070-06dc-4c88-a098-e54e810ff8fe" + "254071af-8637-4106-b9e5-686f66eb4323" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20210728T132755Z:7b4c9070-06dc-4c88-a098-e54e810ff8fe" + "NORTHCENTRALUS:20210831T222113Z:254071af-8637-4106-b9e5-686f66eb4323" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2691,7 +2691,7 @@ "nosniff" ], "Date": [ - "Wed, 28 Jul 2021 13:27:55 GMT" + "Tue, 31 Aug 2021 22:21:12 GMT" ], "Expires": [ "-1" @@ -2704,13 +2704,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUOTE2Ny1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xOTlRrVlVPVEUyTnkxRlFWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUMjQ3Mi1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xOTlRrVlVNalEzTWkxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.6.30411.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19043.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" @@ -2723,17 +2723,23 @@ "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUMjQ3Mi1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2017-05-10" + ], + "Retry-After": [ + "15" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" + "11997" ], "x-ms-request-id": [ - "36fb2de3-9096-4ff3-ba1f-2b0ac83aaa2a" + "e1b54b0f-885b-4acd-a18c-cc23672eaf6b" ], "x-ms-correlation-request-id": [ - "36fb2de3-9096-4ff3-ba1f-2b0ac83aaa2a" + "e1b54b0f-885b-4acd-a18c-cc23672eaf6b" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20210728T132810Z:36fb2de3-9096-4ff3-ba1f-2b0ac83aaa2a" + "NORTHCENTRALUS:20210831T222128Z:e1b54b0f-885b-4acd-a18c-cc23672eaf6b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2742,7 +2748,115 @@ "nosniff" ], "Date": [ - "Wed, 28 Jul 2021 13:28:10 GMT" + "Tue, 31 Aug 2021 22:21:27 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUMjQ3Mi1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xOTlRrVlVNalEzTWkxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUMjQ3Mi1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2017-05-10" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-request-id": [ + "4b99f9e1-51ff-468d-86b8-51b08e81dd4a" + ], + "x-ms-correlation-request-id": [ + "4b99f9e1-51ff-468d-86b8-51b08e81dd4a" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20210831T222143Z:4b99f9e1-51ff-468d-86b8-51b08e81dd4a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 31 Aug 2021 22:21:42 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUMjQ3Mi1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xOTlRrVlVNalEzTWkxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.30411.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-request-id": [ + "f2172116-e7ff-40a2-9f5c-cd483d64a4ec" + ], + "x-ms-correlation-request-id": [ + "f2172116-e7ff-40a2-9f5c-cd483d64a4ec" + ], + "x-ms-routing-request-id": [ + "NORTHCENTRALUS:20210831T222158Z:f2172116-e7ff-40a2-9f5c-cd483d64a4ec" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 31 Aug 2021 22:21:58 GMT" ], "Expires": [ "-1" @@ -2755,13 +2869,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUOTE2Ny1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xOTlRrVlVPVEUyTnkxRlFWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUMjQ3Mi1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xOTlRrVlVNalEzTWkxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.6.30411.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19043.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" @@ -2775,16 +2889,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11984" + "11994" ], "x-ms-request-id": [ - "035b9b80-d225-4594-99dc-417c21552782" + "9cfb7a22-e81f-4f0b-99e7-344caa4504ae" ], "x-ms-correlation-request-id": [ - "035b9b80-d225-4594-99dc-417c21552782" + "9cfb7a22-e81f-4f0b-99e7-344caa4504ae" ], "x-ms-routing-request-id": [ - "CENTRALUSEUAP:20210728T132810Z:035b9b80-d225-4594-99dc-417c21552782" + "NORTHCENTRALUS:20210831T222158Z:9cfb7a22-e81f-4f0b-99e7-344caa4504ae" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2793,7 +2907,7 @@ "nosniff" ], "Date": [ - "Wed, 28 Jul 2021 13:28:10 GMT" + "Tue, 31 Aug 2021 22:21:58 GMT" ], "Expires": [ "-1" @@ -2808,8 +2922,8 @@ ], "Names": { "BatchPoolEndToEndAsync": [ - "azsmnet9167", - "azsmnet8411" + "azsmnet2472", + "azsmnet4342" ] }, "Variables": {