diff --git a/sdk/batch/Microsoft.Azure.Management.Batch/CHANGELOG.md b/sdk/batch/Microsoft.Azure.Management.Batch/CHANGELOG.md
index 0557cd4b6e1d2..68ba162b4d77b 100644
--- a/sdk/batch/Microsoft.Azure.Management.Batch/CHANGELOG.md
+++ b/sdk/batch/Microsoft.Azure.Management.Batch/CHANGELOG.md
@@ -1,5 +1,12 @@
# Release History
+## 12.0.0 (2020-09-17)
+### REST API version
+- This version targets REST API version 2020-09-01.
+
+### Features
+- **[Breaking]** The property `MaxTasksPerNode` on `Pool` has been replaced with `TaskSlotsPerNode` to allow tasks to be created which utilize more than one scheduling slot.
+
## 11.0.0 (2020-06-01)
### REST API version
- This version targets REST API version 2020-05-01.
diff --git a/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/BatchManagementClient.cs b/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/BatchManagementClient.cs
index a19713799d67f..0b484dde5f6a1 100644
--- a/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/BatchManagementClient.cs
+++ b/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/BatchManagementClient.cs
@@ -368,7 +368,7 @@ private void Initialize()
PrivateEndpointConnection = new PrivateEndpointConnectionOperations(this);
Pool = new PoolOperations(this);
BaseUri = new System.Uri("https://management.azure.com");
- ApiVersion = "2020-05-01";
+ ApiVersion = "2020-09-01";
AcceptLanguage = "en-US";
LongRunningOperationRetryTimeout = 30;
GenerateClientRequestId = true;
diff --git a/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/Models/ComputeNodeFillType.cs b/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/Models/ComputeNodeFillType.cs
index d759273b6aa76..3c5dca39c0f91 100644
--- a/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/Models/ComputeNodeFillType.cs
+++ b/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/Models/ComputeNodeFillType.cs
@@ -27,7 +27,7 @@ public enum ComputeNodeFillType
[EnumMember(Value = "Spread")]
Spread,
///
- /// As many tasks as possible (maxTasksPerNode) should be assigned to
+ /// As many tasks as possible (taskSlotsPerNode) should be assigned to
/// each node in the pool before any tasks are assigned to the next
/// node in the pool.
///
diff --git a/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/Models/DataDisk.cs b/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/Models/DataDisk.cs
index 0967f85e44043..ac9d28438e528 100644
--- a/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/Models/DataDisk.cs
+++ b/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/Models/DataDisk.cs
@@ -57,7 +57,8 @@ public DataDisk()
///
///
/// The lun is used to uniquely identify each data disk. If attaching
- /// multiple disks, each should have a distinct lun.
+ /// multiple disks, each should have a distinct lun. The value must be
+ /// between 0 and 63, inclusive.
///
[JsonProperty(PropertyName = "lun")]
public int Lun { get; set; }
diff --git a/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/Models/Pool.cs b/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/Models/Pool.cs
index 6f76584237b1d..eef1c00cb9539 100644
--- a/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/Models/Pool.cs
+++ b/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/Models/Pool.cs
@@ -67,8 +67,9 @@ public Pool()
/// direct communication between nodes.
/// The network configuration for
/// the pool.
- /// The maximum number of tasks that can
- /// run concurrently on a single compute node in the pool.
+ /// The number of task slots that can be
+ /// used to run concurrent tasks on a single compute node in the
+ /// pool.
/// How tasks are distributed across
/// compute nodes in a pool.
/// The list of user accounts to be created
@@ -88,7 +89,7 @@ public Pool()
/// current or last completed resize operation.
/// A list of file systems to mount on
/// each node in the pool.
- public Pool(string id = default(string), string name = default(string), string type = default(string), string etag = default(string), string displayName = default(string), System.DateTime? lastModified = default(System.DateTime?), System.DateTime? creationTime = default(System.DateTime?), PoolProvisioningState? provisioningState = default(PoolProvisioningState?), System.DateTime? provisioningStateTransitionTime = default(System.DateTime?), AllocationState? allocationState = default(AllocationState?), System.DateTime? allocationStateTransitionTime = default(System.DateTime?), string vmSize = default(string), DeploymentConfiguration deploymentConfiguration = default(DeploymentConfiguration), int? currentDedicatedNodes = default(int?), int? currentLowPriorityNodes = default(int?), ScaleSettings scaleSettings = default(ScaleSettings), AutoScaleRun autoScaleRun = default(AutoScaleRun), InterNodeCommunicationState? interNodeCommunication = default(InterNodeCommunicationState?), NetworkConfiguration networkConfiguration = default(NetworkConfiguration), int? maxTasksPerNode = default(int?), TaskSchedulingPolicy taskSchedulingPolicy = default(TaskSchedulingPolicy), IList userAccounts = default(IList), IList metadata = default(IList), StartTask startTask = default(StartTask), IList certificates = default(IList), IList applicationPackages = default(IList), IList applicationLicenses = default(IList), ResizeOperationStatus resizeOperationStatus = default(ResizeOperationStatus), IList mountConfiguration = default(IList))
+ public Pool(string id = default(string), string name = default(string), string type = default(string), string etag = default(string), string displayName = default(string), System.DateTime? lastModified = default(System.DateTime?), System.DateTime? creationTime = default(System.DateTime?), PoolProvisioningState? provisioningState = default(PoolProvisioningState?), System.DateTime? provisioningStateTransitionTime = default(System.DateTime?), AllocationState? allocationState = default(AllocationState?), System.DateTime? allocationStateTransitionTime = default(System.DateTime?), string vmSize = default(string), DeploymentConfiguration deploymentConfiguration = default(DeploymentConfiguration), int? currentDedicatedNodes = default(int?), int? currentLowPriorityNodes = default(int?), ScaleSettings scaleSettings = default(ScaleSettings), AutoScaleRun autoScaleRun = default(AutoScaleRun), InterNodeCommunicationState? interNodeCommunication = default(InterNodeCommunicationState?), NetworkConfiguration networkConfiguration = default(NetworkConfiguration), int? taskSlotsPerNode = default(int?), TaskSchedulingPolicy taskSchedulingPolicy = default(TaskSchedulingPolicy), IList userAccounts = default(IList), IList metadata = default(IList), StartTask startTask = default(StartTask), IList certificates = default(IList), IList applicationPackages = default(IList), IList applicationLicenses = default(IList), ResizeOperationStatus resizeOperationStatus = default(ResizeOperationStatus), IList mountConfiguration = default(IList))
: base(id, name, type, etag)
{
DisplayName = displayName;
@@ -106,7 +107,7 @@ public Pool()
AutoScaleRun = autoScaleRun;
InterNodeCommunication = interNodeCommunication;
NetworkConfiguration = networkConfiguration;
- MaxTasksPerNode = maxTasksPerNode;
+ TaskSlotsPerNode = taskSlotsPerNode;
TaskSchedulingPolicy = taskSchedulingPolicy;
UserAccounts = userAccounts;
Metadata = metadata;
@@ -269,15 +270,15 @@ public Pool()
public NetworkConfiguration NetworkConfiguration { get; set; }
///
- /// Gets or sets the maximum number of tasks that can run concurrently
- /// on a single compute node in the pool.
+ /// Gets or sets the number of task slots that can be used to run
+ /// concurrent tasks on a single compute node in the pool.
///
///
/// The default value is 1. The maximum value is the smaller of 4 times
/// the number of cores of the vmSize of the pool or 256.
///
- [JsonProperty(PropertyName = "properties.maxTasksPerNode")]
- public int? MaxTasksPerNode { get; set; }
+ [JsonProperty(PropertyName = "properties.taskSlotsPerNode")]
+ public int? TaskSlotsPerNode { get; set; }
///
/// Gets or sets how tasks are distributed across compute nodes in a
diff --git a/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/Models/PoolEndpointConfiguration.cs b/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/Models/PoolEndpointConfiguration.cs
index 6b9ac1a7844c2..ca40e269e2633 100644
--- a/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/Models/PoolEndpointConfiguration.cs
+++ b/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/Models/PoolEndpointConfiguration.cs
@@ -53,7 +53,8 @@ public PoolEndpointConfiguration(IList inboundNatPools)
///
/// The maximum number of inbound NAT pools per Batch pool is 5. If the
/// maximum number of inbound NAT pools is exceeded the request fails
- /// with HTTP status code 400.
+ /// with HTTP status code 400. This cannot be specified if the
+ /// IPAddressProvisioningType is NoPublicIPAddresses.
///
[JsonProperty(PropertyName = "inboundNatPools")]
public IList InboundNatPools { get; set; }
diff --git a/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/Models/PublicIPAddressConfiguration.cs b/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/Models/PublicIPAddressConfiguration.cs
index d825fce8233d9..5811754febd87 100644
--- a/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/Models/PublicIPAddressConfiguration.cs
+++ b/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/Models/PublicIPAddressConfiguration.cs
@@ -67,10 +67,10 @@ public PublicIPAddressConfiguration()
///
///
/// The number of IPs specified here limits the maximum size of the
- /// Pool - 50 dedicated nodes or 20 low-priority nodes can be allocated
- /// for each public IP. For example, a pool needing 150 dedicated VMs
- /// would need at least 3 public IPs specified. Each element of this
- /// collection is of the form:
+ /// Pool - 100 dedicated nodes or 100 low-priority nodes can be
+ /// allocated for each public IP. For example, a pool needing 250
+ /// dedicated VMs would need at least 3 public IPs specified. Each
+ /// element of this collection is of the form:
/// /subscriptions/{subscription}/resourceGroups/{group}/providers/Microsoft.Network/publicIPAddresses/{ip}.
///
[JsonProperty(PropertyName = "ipAddressIds")]
diff --git a/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/SdkInfo_BatchManagement.cs b/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/SdkInfo_BatchManagement.cs
index ca1181fc1e843..ec73b068a1128 100644
--- a/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/SdkInfo_BatchManagement.cs
+++ b/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/SdkInfo_BatchManagement.cs
@@ -19,25 +19,25 @@ public static IEnumerable> ApiInfo_BatchManagement
{
return new Tuple[]
{
- new Tuple("Batch", "Application", "2020-05-01"),
- new Tuple("Batch", "ApplicationPackage", "2020-05-01"),
- new Tuple("Batch", "BatchAccount", "2020-05-01"),
- new Tuple("Batch", "Certificate", "2020-05-01"),
- new Tuple("Batch", "Location", "2020-05-01"),
- new Tuple("Batch", "Operations", "2020-05-01"),
- new Tuple("Batch", "Pool", "2020-05-01"),
- new Tuple("Batch", "PrivateEndpointConnection", "2020-05-01"),
- new Tuple("Batch", "PrivateLinkResource", "2020-05-01"),
+ new Tuple("Batch", "Application", "2020-09-01"),
+ new Tuple("Batch", "ApplicationPackage", "2020-09-01"),
+ new Tuple("Batch", "BatchAccount", "2020-09-01"),
+ new Tuple("Batch", "Certificate", "2020-09-01"),
+ new Tuple("Batch", "Location", "2020-09-01"),
+ new Tuple("Batch", "Operations", "2020-09-01"),
+ new Tuple("Batch", "Pool", "2020-09-01"),
+ new Tuple("Batch", "PrivateEndpointConnection", "2020-09-01"),
+ new Tuple("Batch", "PrivateLinkResource", "2020-09-01"),
}.AsEnumerable();
}
}
// BEGIN: Code Generation Metadata Section
public static readonly String AutoRestVersion = "v2";
public static readonly String AutoRestBootStrapperVersion = "autorest@2.0.4413";
- public static readonly String AutoRestCmdExecuted = "cmd.exe /c autorest.cmd https://github.com/Azure/azure-rest-api-specs/blob/master/specification/batch/resource-manager/readme.md --csharp --version=v2 --reflect-api-versions --csharp-sdks-folder=C:\\Users\\jafreck.REDMOND\\source\\azure-sdk-for-net\\sdk";
+ public static readonly String AutoRestCmdExecuted = "cmd.exe /c autorest.cmd https://github.com/Azure/azure-rest-api-specs/blob/master/specification/batch/resource-manager/readme.md --csharp --version=v2 --reflect-api-versions --csharp-sdks-folder=E:\\Github\\azure-sdk-for-net\\sdk";
public static readonly String GithubForkName = "Azure";
public static readonly String GithubBranchName = "master";
- public static readonly String GithubCommidId = "358aade743f3b749da5aee9394f34b55466f3b14";
+ public static readonly String GithubCommidId = "0ac9e064be76262b2625a0b5be1a0cc8b9b272fa";
public static readonly String CodeGenerationErrors = "";
public static readonly String GithubRepoName = "azure-rest-api-specs";
// END: Code Generation Metadata Section
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 cf04a8e2774f4..ae8c5f35d335e 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
- 11.0.0
+ 12.0.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/tests/ScenarioTests/BatchScenarioTestBase.cs b/sdk/batch/Microsoft.Azure.Management.Batch/tests/ScenarioTests/BatchScenarioTestBase.cs
index b498a565a9e50..8fafe3d4cc417 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 Central 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/SessionRecords/AccountTests/BatchAccountCanCreateWithBYOSEnabled.json b/sdk/batch/Microsoft.Azure.Management.Batch/tests/SessionRecords/AccountTests/BatchAccountCanCreateWithBYOSEnabled.json
index 40e44e1454b28..f0e98c2812923 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
@@ -1,21 +1,21 @@
{
"Entries": [
{
- "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch?api-version=2017-05-10",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2g/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==",
+ "RequestUri": "/subscriptions/677f962b-9abf-4423-a27b-0c2f4094dcec/providers/Microsoft.Batch?api-version=2017-05-10",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjc3Zjk2MmItOWFiZi00NDIzLWEyN2ItMGMyZjQwOTRkY2VjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2g/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "9599ea59-dd8d-4e0e-bc99-2505d09fc479"
+ "20896ed4-f3a3-4814-8f8e-a3a92494e4d4"
],
- "accept-language": [
+ "Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.26614.01",
+ "FxVersion/4.6.29220.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
"Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0"
]
},
@@ -23,9 +23,6 @@
"Cache-Control": [
"no-cache"
],
- "Date": [
- "Fri, 29 May 2020 16:40:22 GMT"
- ],
"Pragma": [
"no-cache"
],
@@ -33,13 +30,13 @@
"11999"
],
"x-ms-request-id": [
- "c012f554-bb6e-4fe9-9800-e1e6b589586d"
+ "7e2c8ffb-9509-4f1f-b759-f462d107e5e6"
],
"x-ms-correlation-request-id": [
- "c012f554-bb6e-4fe9-9800-e1e6b589586d"
+ "7e2c8ffb-9509-4f1f-b759-f462d107e5e6"
],
"x-ms-routing-request-id": [
- "WESTUS:20200529T164023Z:c012f554-bb6e-4fe9-9800-e1e6b589586d"
+ "WESTUS:20200928T195702Z:7e2c8ffb-9509-4f1f-b759-f462d107e5e6"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -47,51 +44,51 @@
"X-Content-Type-Options": [
"nosniff"
],
- "Content-Length": [
- "4871"
+ "Date": [
+ "Mon, 28 Sep 2020 19:57:01 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
],
"Expires": [
"-1"
+ ],
+ "Content-Length": [
+ "4774"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch\",\r\n \"namespace\": \"Microsoft.Batch\",\r\n \"authorization\": {\r\n \"applicationId\": \"ddbf3205-c6bd-46ae-8127-60eb93363864\",\r\n \"roleDefinitionId\": \"b7f84953-1d03-4eab-9ea4-45f065258ff8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"batchAccounts\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\",\r\n \"2015-07-01\",\r\n \"2014-05-01-privatepreview\"\r\n ],\r\n \"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\": \"operations\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ],\r\n \"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 \"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\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ],\r\n \"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\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\"\r\n ],\r\n \"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\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\",\r\n \"2015-07-01\",\r\n \"2014-05-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/677f962b-9abf-4423-a27b-0c2f4094dcec/providers/Microsoft.Batch\",\r\n \"namespace\": \"Microsoft.Batch\",\r\n \"authorization\": {\r\n \"applicationId\": \"ddbf3205-c6bd-46ae-8127-60eb93363864\",\r\n \"roleDefinitionId\": \"b7f84953-1d03-4eab-9ea4-45f065258ff8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"batchAccounts\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\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\": \"operations\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\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 \"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\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\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\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\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\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\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}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourcegroups/azsmnet8777?api-version=2017-05-10",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQ4Nzc3P2FwaS12ZXJzaW9uPTIwMTctMDUtMTA=",
+ "RequestUri": "/subscriptions/677f962b-9abf-4423-a27b-0c2f4094dcec/resourcegroups/azsmnet2588?api-version=2017-05-10",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjc3Zjk2MmItOWFiZi00NDIzLWEyN2ItMGMyZjQwOTRkY2VjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQyNTg4P2FwaS12ZXJzaW9uPTIwMTctMDUtMTA=",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"location\": \"East US\"\r\n}",
+ "RequestBody": "{\r\n \"location\": \"West Central US\"\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "78cb90e4-8b1b-48ca-8574-e34eadec3b07"
+ "07dc2ff8-ec9d-475b-aff2-1f997df47c5e"
],
- "accept-language": [
+ "Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.26614.01",
+ "FxVersion/4.6.29220.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
"Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
],
"Content-Length": [
- "29"
+ "37"
]
},
"ResponseHeaders": {
"Cache-Control": [
"no-cache"
],
- "Date": [
- "Fri, 29 May 2020 16:40:23 GMT"
- ],
"Pragma": [
"no-cache"
],
@@ -99,13 +96,13 @@
"1199"
],
"x-ms-request-id": [
- "c52091d7-7dca-450a-8fb0-03d7197578c7"
+ "4d22fdb0-1d0c-49f0-a019-b43b31995046"
],
"x-ms-correlation-request-id": [
- "c52091d7-7dca-450a-8fb0-03d7197578c7"
+ "4d22fdb0-1d0c-49f0-a019-b43b31995046"
],
"x-ms-routing-request-id": [
- "WESTUS:20200529T164024Z:c52091d7-7dca-450a-8fb0-03d7197578c7"
+ "WESTUS:20200928T195703Z:4d22fdb0-1d0c-49f0-a019-b43b31995046"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -113,8 +110,11 @@
"X-Content-Type-Options": [
"nosniff"
],
+ "Date": [
+ "Mon, 28 Sep 2020 19:57:03 GMT"
+ ],
"Content-Length": [
- "175"
+ "182"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -123,25 +123,25 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet8777\",\r\n \"name\": \"azsmnet8777\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/677f962b-9abf-4423-a27b-0c2f4094dcec/resourceGroups/azsmnet2588\",\r\n \"name\": \"azsmnet2588\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.KeyVault/register?api-version=2017-05-10",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuS2V5VmF1bHQvcmVnaXN0ZXI/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==",
+ "RequestUri": "/subscriptions/677f962b-9abf-4423-a27b-0c2f4094dcec/providers/Microsoft.KeyVault/register?api-version=2017-05-10",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjc3Zjk2MmItOWFiZi00NDIzLWEyN2ItMGMyZjQwOTRkY2VjL3Byb3ZpZGVycy9NaWNyb3NvZnQuS2V5VmF1bHQvcmVnaXN0ZXI/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==",
"RequestMethod": "POST",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "0848074b-bf2a-4ce4-b10e-a3f72f52b51a"
+ "77d121b9-c857-45d8-b4a4-3237482b3f73"
],
- "accept-language": [
+ "Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.26614.01",
+ "FxVersion/4.6.29220.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
"Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0"
]
},
@@ -149,9 +149,6 @@
"Cache-Control": [
"no-cache"
],
- "Date": [
- "Fri, 29 May 2020 16:40:25 GMT"
- ],
"Pragma": [
"no-cache"
],
@@ -159,13 +156,13 @@
"1199"
],
"x-ms-request-id": [
- "6130b22d-b340-4360-aa44-343dccabc483"
+ "592560d2-61be-49cf-b893-7705dd3d6f51"
],
"x-ms-correlation-request-id": [
- "6130b22d-b340-4360-aa44-343dccabc483"
+ "592560d2-61be-49cf-b893-7705dd3d6f51"
],
"x-ms-routing-request-id": [
- "WESTUS:20200529T164025Z:6130b22d-b340-4360-aa44-343dccabc483"
+ "WESTUS:20200928T195704Z:592560d2-61be-49cf-b893-7705dd3d6f51"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -173,8 +170,11 @@
"X-Content-Type-Options": [
"nosniff"
],
+ "Date": [
+ "Mon, 28 Sep 2020 19:57:04 GMT"
+ ],
"Content-Length": [
- "7675"
+ "7458"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -183,52 +183,46 @@
"-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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"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 \"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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/677f962b-9abf-4423-a27b-0c2f4094dcec/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 ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\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 \"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 \"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 ],\r\n \"apiVersions\": [\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 \"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 ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\r\n \"2020-04-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourcegroups/azsmnet8777/providers/Microsoft.KeyVault//vaults/azsmnet381?api-version=2016-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQ4Nzc3L3Byb3ZpZGVycy9NaWNyb3NvZnQuS2V5VmF1bHQvL3ZhdWx0cy9henNtbmV0MzgxP2FwaS12ZXJzaW9uPTIwMTYtMTAtMDE=",
+ "RequestUri": "/subscriptions/677f962b-9abf-4423-a27b-0c2f4094dcec/resourcegroups/azsmnet2588/providers/Microsoft.KeyVault//vaults/azsmnet3850?api-version=2016-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjc3Zjk2MmItOWFiZi00NDIzLWEyN2ItMGMyZjQwOTRkY2VjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQyNTg4L3Byb3ZpZGVycy9NaWNyb3NvZnQuS2V5VmF1bHQvL3ZhdWx0cy9henNtbmV0Mzg1MD9hcGktdmVyc2lvbj0yMDE2LTEwLTAx",
"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 Central US\"\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "e1858e97-d034-451e-b538-e469635a79bf"
+ "21fa04fd-371b-4718-b3f6-32aab75591b7"
],
- "accept-language": [
+ "Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.26614.01",
+ "FxVersion/4.6.29220.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
"Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
],
"Content-Length": [
- "617"
+ "625"
]
},
"ResponseHeaders": {
"Cache-Control": [
"no-cache"
],
- "Date": [
- "Fri, 29 May 2020 16:40:28 GMT"
- ],
"Pragma": [
"no-cache"
],
- "Server": [
- "Microsoft-IIS/10.0"
- ],
"x-ms-keyvault-service-version": [
- "1.1.0.281"
+ "1.1.77.0"
],
"x-ms-request-id": [
- "6883b6df-f7e7-42f8-9a97-ea106a406140"
+ "06c71301-409a-4bcd-bb69-f7af02a9c3bc"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -236,6 +230,9 @@
"X-Content-Type-Options": [
"nosniff"
],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
"X-AspNet-Version": [
"4.0.30319"
],
@@ -246,13 +243,16 @@
"1198"
],
"x-ms-correlation-request-id": [
- "3561c3a6-c4f1-4eb1-8796-4c162d25ea5d"
+ "d386a8c3-189b-4adc-b772-5e52cbf66c93"
],
"x-ms-routing-request-id": [
- "WESTUS:20200529T164028Z:3561c3a6-c4f1-4eb1-8796-4c162d25ea5d"
+ "WESTUS:20200928T195710Z:d386a8c3-189b-4adc-b772-5e52cbf66c93"
+ ],
+ "Date": [
+ "Mon, 28 Sep 2020 19:57:10 GMT"
],
"Content-Length": [
- "675"
+ "686"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -261,19 +261,19 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet8777/providers/Microsoft.KeyVault/vaults/azsmnet381\",\r\n \"name\": \"azsmnet381\",\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://azsmnet381.vault.azure.net\",\r\n \"provisioningState\": \"RegisteringDns\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/677f962b-9abf-4423-a27b-0c2f4094dcec/resourceGroups/azsmnet2588/providers/Microsoft.KeyVault/vaults/azsmnet3850\",\r\n \"name\": \"azsmnet3850\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"West Central 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://azsmnet3850.vault.azure.net\",\r\n \"provisioningState\": \"RegisteringDns\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourcegroups/azsmnet8777/providers/Microsoft.KeyVault//vaults/azsmnet381?api-version=2016-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQ4Nzc3L3Byb3ZpZGVycy9NaWNyb3NvZnQuS2V5VmF1bHQvL3ZhdWx0cy9henNtbmV0MzgxP2FwaS12ZXJzaW9uPTIwMTYtMTAtMDE=",
+ "RequestUri": "/subscriptions/677f962b-9abf-4423-a27b-0c2f4094dcec/resourcegroups/azsmnet2588/providers/Microsoft.KeyVault//vaults/azsmnet3850?api-version=2016-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjc3Zjk2MmItOWFiZi00NDIzLWEyN2ItMGMyZjQwOTRkY2VjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQyNTg4L3Byb3ZpZGVycy9NaWNyb3NvZnQuS2V5VmF1bHQvL3ZhdWx0cy9henNtbmV0Mzg1MD9hcGktdmVyc2lvbj0yMDE2LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.26614.01",
+ "FxVersion/4.6.29220.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
"Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0"
]
},
@@ -281,20 +281,14 @@
"Cache-Control": [
"no-cache"
],
- "Date": [
- "Fri, 29 May 2020 16:40:58 GMT"
- ],
"Pragma": [
"no-cache"
],
- "Server": [
- "Microsoft-IIS/10.0"
- ],
"x-ms-keyvault-service-version": [
- "1.1.0.281"
+ "1.1.77.0"
],
"x-ms-request-id": [
- "33dab453-f185-40d4-a0ef-f5ae88f06568"
+ "0e18b0a6-c29e-48c6-ac36-96c04a5516f9"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -302,6 +296,9 @@
"X-Content-Type-Options": [
"nosniff"
],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
"X-AspNet-Version": [
"4.0.30319"
],
@@ -312,13 +309,16 @@
"11999"
],
"x-ms-correlation-request-id": [
- "ea01cef5-edad-4730-b47e-2bd83c080043"
+ "c0035df4-9c24-46ac-8632-4b6bf17d6097"
],
"x-ms-routing-request-id": [
- "WESTUS:20200529T164059Z:ea01cef5-edad-4730-b47e-2bd83c080043"
+ "WESTUS:20200928T195740Z:c0035df4-9c24-46ac-8632-4b6bf17d6097"
+ ],
+ "Date": [
+ "Mon, 28 Sep 2020 19:57:40 GMT"
],
"Content-Length": [
- "671"
+ "682"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -327,55 +327,49 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet8777/providers/Microsoft.KeyVault/vaults/azsmnet381\",\r\n \"name\": \"azsmnet381\",\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://azsmnet381.vault.azure.net/\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/677f962b-9abf-4423-a27b-0c2f4094dcec/resourceGroups/azsmnet2588/providers/Microsoft.KeyVault/vaults/azsmnet3850\",\r\n \"name\": \"azsmnet3850\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"West Central 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://azsmnet3850.vault.azure.net/\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet8777/providers/Microsoft.Batch/batchAccounts/azsmnet796?api-version=2020-05-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ4Nzc3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0Nzk2P2FwaS12ZXJzaW9uPTIwMjAtMDUtMDE=",
+ "RequestUri": "/subscriptions/677f962b-9abf-4423-a27b-0c2f4094dcec/resourceGroups/azsmnet2588/providers/Microsoft.Batch/batchAccounts/azsmnet8278?api-version=2020-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjc3Zjk2MmItOWFiZi00NDIzLWEyN2ItMGMyZjQwOTRkY2VjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyNTg4L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0ODI3OD9hcGktdmVyc2lvbj0yMDIwLTA5LTAx",
"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/azsmnet8777/providers/Microsoft.KeyVault/vaults/azsmnet381\",\r\n \"url\": \"https://azsmnet381.vault.azure.net/\"\r\n }\r\n }\r\n}",
+ "RequestBody": "{\r\n \"location\": \"West Central US\",\r\n \"properties\": {\r\n \"poolAllocationMode\": \"UserSubscription\",\r\n \"keyVaultReference\": {\r\n \"id\": \"/subscriptions/677f962b-9abf-4423-a27b-0c2f4094dcec/resourceGroups/azsmnet2588/providers/Microsoft.KeyVault/vaults/azsmnet3850\",\r\n \"url\": \"https://azsmnet3850.vault.azure.net/\"\r\n }\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "52d48ca7-0770-4d2d-8c9c-e7e3fe0b90f2"
+ "4b94d227-5c88-483f-99e9-babb1467ac63"
],
- "accept-language": [
+ "Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.26614.01",
+ "FxVersion/4.6.29220.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Batch.BatchManagementClient/10.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Batch.BatchManagementClient/11.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
],
"Content-Length": [
- "330"
+ "340"
]
},
"ResponseHeaders": {
"Cache-Control": [
"no-cache"
],
- "Date": [
- "Fri, 29 May 2020 16:41:18 GMT"
- ],
"Pragma": [
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet8777/providers/Microsoft.Batch/batchAccounts/azsmnet796/operationResults/2b39831c-2282-4c2e-8f35-662f19ad3be7?api-version=2020-05-01"
+ "https://management.azure.com/subscriptions/677f962b-9abf-4423-a27b-0c2f4094dcec/resourceGroups/azsmnet2588/providers/Microsoft.Batch/batchAccounts/azsmnet8278/operationResults/ababae2b-c09d-4f34-99e2-c79c420dd8c8?api-version=2020-09-01"
],
"Retry-After": [
"15"
],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ],
"x-ms-request-id": [
- "2b39831c-2282-4c2e-8f35-662f19ad3be7"
+ "ababae2b-c09d-4f34-99e2-c79c420dd8c8"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -383,59 +377,59 @@
"X-Content-Type-Options": [
"nosniff"
],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
"x-ms-ratelimit-remaining-subscription-writes": [
"1199"
],
"x-ms-correlation-request-id": [
- "8ff24399-2157-4688-99d0-9f7e99cb1ef1"
+ "16537a62-cf19-4ab2-b437-fbe7b6e98bba"
],
"x-ms-routing-request-id": [
- "WESTUS:20200529T164118Z:8ff24399-2157-4688-99d0-9f7e99cb1ef1"
+ "WESTUS:20200928T195745Z:16537a62-cf19-4ab2-b437-fbe7b6e98bba"
],
- "Content-Length": [
- "0"
+ "Date": [
+ "Mon, 28 Sep 2020 19:57:45 GMT"
],
"Expires": [
"-1"
+ ],
+ "Content-Length": [
+ "0"
]
},
"ResponseBody": "",
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet8777/providers/Microsoft.Batch/batchAccounts/azsmnet796/operationResults/2b39831c-2282-4c2e-8f35-662f19ad3be7?api-version=2020-05-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ4Nzc3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0Nzk2L29wZXJhdGlvblJlc3VsdHMvMmIzOTgzMWMtMjI4Mi00YzJlLThmMzUtNjYyZjE5YWQzYmU3P2FwaS12ZXJzaW9uPTIwMjAtMDUtMDE=",
+ "RequestUri": "/subscriptions/677f962b-9abf-4423-a27b-0c2f4094dcec/resourceGroups/azsmnet2588/providers/Microsoft.Batch/batchAccounts/azsmnet8278/operationResults/ababae2b-c09d-4f34-99e2-c79c420dd8c8?api-version=2020-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjc3Zjk2MmItOWFiZi00NDIzLWEyN2ItMGMyZjQwOTRkY2VjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyNTg4L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0ODI3OC9vcGVyYXRpb25SZXN1bHRzL2FiYWJhZTJiLWMwOWQtNGYzNC05OWUyLWM3OWM0MjBkZDhjOD9hcGktdmVyc2lvbj0yMDIwLTA5LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.26614.01",
+ "FxVersion/4.6.29220.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Batch.BatchManagementClient/10.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Batch.BatchManagementClient/11.0.0.0"
]
},
"ResponseHeaders": {
"Cache-Control": [
"no-cache"
],
- "Date": [
- "Fri, 29 May 2020 16:41:33 GMT"
- ],
"Pragma": [
"no-cache"
],
"ETag": [
- "\"0x8D803EF25DAEC8B\""
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
+ "\"0x8D863E8CDC56507\""
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11999"
+ "11995"
],
"x-ms-request-id": [
- "68ea80dd-4db5-4e5b-afe4-431038f4d8ed"
+ "9b4de459-2872-4e2a-a6da-ba902403013d"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -443,14 +437,20 @@
"X-Content-Type-Options": [
"nosniff"
],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
"x-ms-correlation-request-id": [
- "a5b11ec6-be7d-4f62-9dc8-9801730cb082"
+ "4fd454a7-4061-4698-a726-c5da3766c83f"
],
"x-ms-routing-request-id": [
- "WESTUS:20200529T164134Z:a5b11ec6-be7d-4f62-9dc8-9801730cb082"
+ "WESTUS:20200928T195800Z:4fd454a7-4061-4698-a726-c5da3766c83f"
+ ],
+ "Date": [
+ "Mon, 28 Sep 2020 19:58:00 GMT"
],
"Content-Length": [
- "769"
+ "777"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -459,52 +459,46 @@
"-1"
],
"Last-Modified": [
- "Fri, 29 May 2020 16:41:34 GMT"
+ "Mon, 28 Sep 2020 19:58:00 GMT"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet8777/providers/Microsoft.Batch/batchAccounts/azsmnet796\",\r\n \"name\": \"azsmnet796\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"azsmnet796.pilotprod2.eastus.batch.azure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"dedicatedCoreQuotaPerVMFamilyEnforced\": false,\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/azsmnet8777/providers/Microsoft.KeyVault/vaults/azsmnet381\",\r\n \"url\": \"https://azsmnet381.vault.azure.net/\"\r\n },\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"encryption\": {\r\n \"keySource\": \"Microsoft.Batch\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/677f962b-9abf-4423-a27b-0c2f4094dcec/resourceGroups/azsmnet2588/providers/Microsoft.Batch/batchAccounts/azsmnet8278\",\r\n \"name\": \"azsmnet8278\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"azsmnet8278.westcentralus.batch.azure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"dedicatedCoreQuotaPerVMFamilyEnforced\": false,\r\n \"poolQuota\": 100,\r\n \"activeJobAndJobScheduleQuota\": 300,\r\n \"poolAllocationMode\": \"UserSubscription\",\r\n \"keyVaultReference\": {\r\n \"id\": \"/subscriptions/677f962b-9abf-4423-a27b-0c2f4094dcec/resourceGroups/azsmnet2588/providers/Microsoft.KeyVault/vaults/azsmnet3850\",\r\n \"url\": \"https://azsmnet3850.vault.azure.net/\"\r\n },\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"encryption\": {\r\n \"keySource\": \"Microsoft.Batch\"\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/azsmnet8777/providers/Microsoft.Batch/batchAccounts/azsmnet796?api-version=2020-05-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ4Nzc3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0Nzk2P2FwaS12ZXJzaW9uPTIwMjAtMDUtMDE=",
+ "RequestUri": "/subscriptions/677f962b-9abf-4423-a27b-0c2f4094dcec/resourceGroups/azsmnet2588/providers/Microsoft.Batch/batchAccounts/azsmnet8278?api-version=2020-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjc3Zjk2MmItOWFiZi00NDIzLWEyN2ItMGMyZjQwOTRkY2VjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyNTg4L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0ODI3OD9hcGktdmVyc2lvbj0yMDIwLTA5LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "e1f3df67-67c3-426a-bb5f-35fcaf1c5057"
+ "aedf3536-da95-4806-8fe0-62ae21bbd781"
],
- "accept-language": [
+ "Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.26614.01",
+ "FxVersion/4.6.29220.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Batch.BatchManagementClient/10.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Batch.BatchManagementClient/11.0.0.0"
]
},
"ResponseHeaders": {
"Cache-Control": [
"no-cache"
],
- "Date": [
- "Fri, 29 May 2020 16:41:33 GMT"
- ],
"Pragma": [
"no-cache"
],
"ETag": [
- "\"0x8D803EF1EC0F120\""
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
+ "\"0x8D863E8C68B196B\""
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11998"
+ "11994"
],
"x-ms-request-id": [
- "b35e0bb0-e99e-4182-be7a-1d2f24169593"
+ "3ec18dfe-6530-4d7b-ad26-c834d35ecf7a"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -512,14 +506,20 @@
"X-Content-Type-Options": [
"nosniff"
],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
"x-ms-correlation-request-id": [
- "eb563b27-e6bf-4baa-8491-a9da4682df53"
+ "ea34aac4-8522-4581-83cc-766e0a0b6adf"
],
"x-ms-routing-request-id": [
- "WESTUS:20200529T164134Z:eb563b27-e6bf-4baa-8491-a9da4682df53"
+ "WESTUS:20200928T195801Z:ea34aac4-8522-4581-83cc-766e0a0b6adf"
+ ],
+ "Date": [
+ "Mon, 28 Sep 2020 19:58:00 GMT"
],
"Content-Length": [
- "769"
+ "777"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -528,28 +528,28 @@
"-1"
],
"Last-Modified": [
- "Fri, 29 May 2020 16:41:22 GMT"
+ "Mon, 28 Sep 2020 19:57:48 GMT"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet8777/providers/Microsoft.Batch/batchAccounts/azsmnet796\",\r\n \"name\": \"azsmnet796\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"azsmnet796.pilotprod2.eastus.batch.azure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"dedicatedCoreQuotaPerVMFamilyEnforced\": false,\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/azsmnet8777/providers/Microsoft.KeyVault/vaults/azsmnet381\",\r\n \"url\": \"https://azsmnet381.vault.azure.net/\"\r\n },\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"encryption\": {\r\n \"keySource\": \"Microsoft.Batch\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/677f962b-9abf-4423-a27b-0c2f4094dcec/resourceGroups/azsmnet2588/providers/Microsoft.Batch/batchAccounts/azsmnet8278\",\r\n \"name\": \"azsmnet8278\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"azsmnet8278.westcentralus.batch.azure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"dedicatedCoreQuotaPerVMFamilyEnforced\": false,\r\n \"poolQuota\": 100,\r\n \"activeJobAndJobScheduleQuota\": 300,\r\n \"poolAllocationMode\": \"UserSubscription\",\r\n \"keyVaultReference\": {\r\n \"id\": \"/subscriptions/677f962b-9abf-4423-a27b-0c2f4094dcec/resourceGroups/azsmnet2588/providers/Microsoft.KeyVault/vaults/azsmnet3850\",\r\n \"url\": \"https://azsmnet3850.vault.azure.net/\"\r\n },\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"encryption\": {\r\n \"keySource\": \"Microsoft.Batch\"\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/azsmnet8777?api-version=2017-05-10",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQ4Nzc3P2FwaS12ZXJzaW9uPTIwMTctMDUtMTA=",
+ "RequestUri": "/subscriptions/677f962b-9abf-4423-a27b-0c2f4094dcec/resourcegroups/azsmnet2588?api-version=2017-05-10",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjc3Zjk2MmItOWFiZi00NDIzLWEyN2ItMGMyZjQwOTRkY2VjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQyNTg4P2FwaS12ZXJzaW9uPTIwMTctMDUtMTA=",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "ab00b3a9-002f-4a63-b8ec-6f95a3a2646d"
+ "23da416d-32a5-48e6-b100-692f30ea4003"
],
- "accept-language": [
+ "Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.26614.01",
+ "FxVersion/4.6.29220.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
"Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0"
]
},
@@ -557,14 +557,11 @@
"Cache-Control": [
"no-cache"
],
- "Date": [
- "Fri, 29 May 2020 16:41:36 GMT"
- ],
"Pragma": [
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUODc3Ny1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2017-05-10"
+ "https://management.azure.com/subscriptions/677f962b-9abf-4423-a27b-0c2f4094dcec/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUMjU4OC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2017-05-10"
],
"Retry-After": [
"15"
@@ -573,13 +570,13 @@
"14999"
],
"x-ms-request-id": [
- "7d13e609-1be3-4a45-933f-2de730a28560"
+ "8159004e-d066-4b9c-bd3f-ab5841d946ba"
],
"x-ms-correlation-request-id": [
- "7d13e609-1be3-4a45-933f-2de730a28560"
+ "8159004e-d066-4b9c-bd3f-ab5841d946ba"
],
"x-ms-routing-request-id": [
- "WESTUS:20200529T164136Z:7d13e609-1be3-4a45-933f-2de730a28560"
+ "WESTUS:20200928T195801Z:8159004e-d066-4b9c-bd3f-ab5841d946ba"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -587,26 +584,29 @@
"X-Content-Type-Options": [
"nosniff"
],
- "Content-Length": [
- "0"
+ "Date": [
+ "Mon, 28 Sep 2020 19:58:01 GMT"
],
"Expires": [
"-1"
+ ],
+ "Content-Length": [
+ "0"
]
},
"ResponseBody": "",
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUODc3Ny1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2017-05-10",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xOTlRrVlVPRGMzTnkxRlFWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==",
+ "RequestUri": "/subscriptions/677f962b-9abf-4423-a27b-0c2f4094dcec/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUMjU4OC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2017-05-10",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjc3Zjk2MmItOWFiZi00NDIzLWEyN2ItMGMyZjQwOTRkY2VjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xOTlRrVlVNalU0T0MxWFJWTlVRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wWTJWdWRISmhiSFZ6SW4wP2FwaS12ZXJzaW9uPTIwMTctMDUtMTA=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.26614.01",
+ "FxVersion/4.6.29220.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
"Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0"
]
},
@@ -614,14 +614,11 @@
"Cache-Control": [
"no-cache"
],
- "Date": [
- "Fri, 29 May 2020 16:41:51 GMT"
- ],
"Pragma": [
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUODc3Ny1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2017-05-10"
+ "https://management.azure.com/subscriptions/677f962b-9abf-4423-a27b-0c2f4094dcec/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUMjU4OC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2017-05-10"
],
"Retry-After": [
"15"
@@ -630,13 +627,13 @@
"11998"
],
"x-ms-request-id": [
- "ce3816bd-de9e-466c-8947-0f8fc3fee057"
+ "ced73703-7b12-4d6c-bc75-2cf1120c1706"
],
"x-ms-correlation-request-id": [
- "ce3816bd-de9e-466c-8947-0f8fc3fee057"
+ "ced73703-7b12-4d6c-bc75-2cf1120c1706"
],
"x-ms-routing-request-id": [
- "WESTUS:20200529T164151Z:ce3816bd-de9e-466c-8947-0f8fc3fee057"
+ "WESTUS:20200928T195816Z:ced73703-7b12-4d6c-bc75-2cf1120c1706"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -644,26 +641,29 @@
"X-Content-Type-Options": [
"nosniff"
],
- "Content-Length": [
- "0"
+ "Date": [
+ "Mon, 28 Sep 2020 19:58:15 GMT"
],
"Expires": [
"-1"
+ ],
+ "Content-Length": [
+ "0"
]
},
"ResponseBody": "",
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUODc3Ny1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2017-05-10",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xOTlRrVlVPRGMzTnkxRlFWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==",
+ "RequestUri": "/subscriptions/677f962b-9abf-4423-a27b-0c2f4094dcec/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUMjU4OC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2017-05-10",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjc3Zjk2MmItOWFiZi00NDIzLWEyN2ItMGMyZjQwOTRkY2VjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xOTlRrVlVNalU0T0MxWFJWTlVRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wWTJWdWRISmhiSFZ6SW4wP2FwaS12ZXJzaW9uPTIwMTctMDUtMTA=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.26614.01",
+ "FxVersion/4.6.29220.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
"Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0"
]
},
@@ -671,14 +671,11 @@
"Cache-Control": [
"no-cache"
],
- "Date": [
- "Fri, 29 May 2020 16:42:06 GMT"
- ],
"Pragma": [
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUODc3Ny1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2017-05-10"
+ "https://management.azure.com/subscriptions/677f962b-9abf-4423-a27b-0c2f4094dcec/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUMjU4OC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2017-05-10"
],
"Retry-After": [
"15"
@@ -687,13 +684,13 @@
"11997"
],
"x-ms-request-id": [
- "77505678-bfca-4674-8ddb-8a3679313677"
+ "47655d2d-c067-4635-94dd-8c00def8eb13"
],
"x-ms-correlation-request-id": [
- "77505678-bfca-4674-8ddb-8a3679313677"
+ "47655d2d-c067-4635-94dd-8c00def8eb13"
],
"x-ms-routing-request-id": [
- "WESTUS:20200529T164206Z:77505678-bfca-4674-8ddb-8a3679313677"
+ "WESTUS:20200928T195831Z:47655d2d-c067-4635-94dd-8c00def8eb13"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -701,26 +698,29 @@
"X-Content-Type-Options": [
"nosniff"
],
- "Content-Length": [
- "0"
+ "Date": [
+ "Mon, 28 Sep 2020 19:58:30 GMT"
],
"Expires": [
"-1"
+ ],
+ "Content-Length": [
+ "0"
]
},
"ResponseBody": "",
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUODc3Ny1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2017-05-10",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xOTlRrVlVPRGMzTnkxRlFWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==",
+ "RequestUri": "/subscriptions/677f962b-9abf-4423-a27b-0c2f4094dcec/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUMjU4OC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2017-05-10",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjc3Zjk2MmItOWFiZi00NDIzLWEyN2ItMGMyZjQwOTRkY2VjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xOTlRrVlVNalU0T0MxWFJWTlVRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wWTJWdWRISmhiSFZ6SW4wP2FwaS12ZXJzaW9uPTIwMTctMDUtMTA=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.26614.01",
+ "FxVersion/4.6.29220.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
"Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0"
]
},
@@ -728,14 +728,11 @@
"Cache-Control": [
"no-cache"
],
- "Date": [
- "Fri, 29 May 2020 16:42:21 GMT"
- ],
"Pragma": [
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUODc3Ny1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2017-05-10"
+ "https://management.azure.com/subscriptions/677f962b-9abf-4423-a27b-0c2f4094dcec/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUMjU4OC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2017-05-10"
],
"Retry-After": [
"15"
@@ -744,13 +741,13 @@
"11996"
],
"x-ms-request-id": [
- "ca700ec8-c823-4053-8e90-cd858cc1cf6b"
+ "a35a5013-0d04-43bf-9b35-3d134b6e4dc6"
],
"x-ms-correlation-request-id": [
- "ca700ec8-c823-4053-8e90-cd858cc1cf6b"
+ "a35a5013-0d04-43bf-9b35-3d134b6e4dc6"
],
"x-ms-routing-request-id": [
- "WESTUS:20200529T164221Z:ca700ec8-c823-4053-8e90-cd858cc1cf6b"
+ "WESTUS:20200928T195847Z:a35a5013-0d04-43bf-9b35-3d134b6e4dc6"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -758,26 +755,29 @@
"X-Content-Type-Options": [
"nosniff"
],
- "Content-Length": [
- "0"
+ "Date": [
+ "Mon, 28 Sep 2020 19:58:46 GMT"
],
"Expires": [
"-1"
+ ],
+ "Content-Length": [
+ "0"
]
},
"ResponseBody": "",
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUODc3Ny1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2017-05-10",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xOTlRrVlVPRGMzTnkxRlFWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==",
+ "RequestUri": "/subscriptions/677f962b-9abf-4423-a27b-0c2f4094dcec/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUMjU4OC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2017-05-10",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjc3Zjk2MmItOWFiZi00NDIzLWEyN2ItMGMyZjQwOTRkY2VjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xOTlRrVlVNalU0T0MxWFJWTlVRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wWTJWdWRISmhiSFZ6SW4wP2FwaS12ZXJzaW9uPTIwMTctMDUtMTA=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.26614.01",
+ "FxVersion/4.6.29220.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
"Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0"
]
},
@@ -785,14 +785,11 @@
"Cache-Control": [
"no-cache"
],
- "Date": [
- "Fri, 29 May 2020 16:42:36 GMT"
- ],
"Pragma": [
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUODc3Ny1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2017-05-10"
+ "https://management.azure.com/subscriptions/677f962b-9abf-4423-a27b-0c2f4094dcec/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUMjU4OC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2017-05-10"
],
"Retry-After": [
"15"
@@ -801,13 +798,13 @@
"11995"
],
"x-ms-request-id": [
- "7cb191f6-8ee5-4752-964f-a15ea9a32e49"
+ "ad9792e6-5473-4313-9610-c2c69d5bd678"
],
"x-ms-correlation-request-id": [
- "7cb191f6-8ee5-4752-964f-a15ea9a32e49"
+ "ad9792e6-5473-4313-9610-c2c69d5bd678"
],
"x-ms-routing-request-id": [
- "WESTUS:20200529T164236Z:7cb191f6-8ee5-4752-964f-a15ea9a32e49"
+ "WESTUS:20200928T195902Z:ad9792e6-5473-4313-9610-c2c69d5bd678"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -815,26 +812,29 @@
"X-Content-Type-Options": [
"nosniff"
],
- "Content-Length": [
- "0"
+ "Date": [
+ "Mon, 28 Sep 2020 19:59:01 GMT"
],
"Expires": [
"-1"
+ ],
+ "Content-Length": [
+ "0"
]
},
"ResponseBody": "",
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUODc3Ny1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2017-05-10",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xOTlRrVlVPRGMzTnkxRlFWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==",
+ "RequestUri": "/subscriptions/677f962b-9abf-4423-a27b-0c2f4094dcec/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUMjU4OC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2017-05-10",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjc3Zjk2MmItOWFiZi00NDIzLWEyN2ItMGMyZjQwOTRkY2VjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xOTlRrVlVNalU0T0MxWFJWTlVRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wWTJWdWRISmhiSFZ6SW4wP2FwaS12ZXJzaW9uPTIwMTctMDUtMTA=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.26614.01",
+ "FxVersion/4.6.29220.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
"Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0"
]
},
@@ -842,14 +842,11 @@
"Cache-Control": [
"no-cache"
],
- "Date": [
- "Fri, 29 May 2020 16:42:51 GMT"
- ],
"Pragma": [
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUODc3Ny1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2017-05-10"
+ "https://management.azure.com/subscriptions/677f962b-9abf-4423-a27b-0c2f4094dcec/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUMjU4OC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2017-05-10"
],
"Retry-After": [
"15"
@@ -858,13 +855,13 @@
"11994"
],
"x-ms-request-id": [
- "3fcf41c7-2ac9-49cf-9e05-d3d2ec74c1f6"
+ "e68dc752-3741-4e35-806e-5aca47b1fe80"
],
"x-ms-correlation-request-id": [
- "3fcf41c7-2ac9-49cf-9e05-d3d2ec74c1f6"
+ "e68dc752-3741-4e35-806e-5aca47b1fe80"
],
"x-ms-routing-request-id": [
- "WESTUS:20200529T164251Z:3fcf41c7-2ac9-49cf-9e05-d3d2ec74c1f6"
+ "WESTUS:20200928T195917Z:e68dc752-3741-4e35-806e-5aca47b1fe80"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -872,26 +869,29 @@
"X-Content-Type-Options": [
"nosniff"
],
- "Content-Length": [
- "0"
+ "Date": [
+ "Mon, 28 Sep 2020 19:59:16 GMT"
],
"Expires": [
"-1"
+ ],
+ "Content-Length": [
+ "0"
]
},
"ResponseBody": "",
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUODc3Ny1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2017-05-10",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xOTlRrVlVPRGMzTnkxRlFWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==",
+ "RequestUri": "/subscriptions/677f962b-9abf-4423-a27b-0c2f4094dcec/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUMjU4OC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2017-05-10",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjc3Zjk2MmItOWFiZi00NDIzLWEyN2ItMGMyZjQwOTRkY2VjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xOTlRrVlVNalU0T0MxWFJWTlVRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wWTJWdWRISmhiSFZ6SW4wP2FwaS12ZXJzaW9uPTIwMTctMDUtMTA=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.26614.01",
+ "FxVersion/4.6.29220.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
"Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0"
]
},
@@ -899,23 +899,26 @@
"Cache-Control": [
"no-cache"
],
- "Date": [
- "Fri, 29 May 2020 16:43:06 GMT"
- ],
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/677f962b-9abf-4423-a27b-0c2f4094dcec/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUMjU4OC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2017-05-10"
+ ],
+ "Retry-After": [
+ "15"
+ ],
"x-ms-ratelimit-remaining-subscription-reads": [
"11993"
],
"x-ms-request-id": [
- "93559f3b-13d4-4d83-8379-9bc217116046"
+ "008ed990-08a4-4c1e-9809-38cddb0e5f10"
],
"x-ms-correlation-request-id": [
- "93559f3b-13d4-4d83-8379-9bc217116046"
+ "008ed990-08a4-4c1e-9809-38cddb0e5f10"
],
"x-ms-routing-request-id": [
- "WESTUS:20200529T164307Z:93559f3b-13d4-4d83-8379-9bc217116046"
+ "WESTUS:20200928T195932Z:008ed990-08a4-4c1e-9809-38cddb0e5f10"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -923,26 +926,29 @@
"X-Content-Type-Options": [
"nosniff"
],
- "Content-Length": [
- "0"
+ "Date": [
+ "Mon, 28 Sep 2020 19:59:31 GMT"
],
"Expires": [
"-1"
+ ],
+ "Content-Length": [
+ "0"
]
},
"ResponseBody": "",
- "StatusCode": 200
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUODc3Ny1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2017-05-10",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xOTlRrVlVPRGMzTnkxRlFWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==",
+ "RequestUri": "/subscriptions/677f962b-9abf-4423-a27b-0c2f4094dcec/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUMjU4OC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2017-05-10",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjc3Zjk2MmItOWFiZi00NDIzLWEyN2ItMGMyZjQwOTRkY2VjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xOTlRrVlVNalU0T0MxWFJWTlVRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wWTJWdWRISmhiSFZ6SW4wP2FwaS12ZXJzaW9uPTIwMTctMDUtMTA=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.26614.01",
+ "FxVersion/4.6.29220.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
"Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0"
]
},
@@ -950,9 +956,6 @@
"Cache-Control": [
"no-cache"
],
- "Date": [
- "Fri, 29 May 2020 16:43:06 GMT"
- ],
"Pragma": [
"no-cache"
],
@@ -960,13 +963,13 @@
"11992"
],
"x-ms-request-id": [
- "2360106e-c458-48a6-b657-b70701d85cc5"
+ "37f161c3-0fce-445e-84bb-c809682dc89a"
],
"x-ms-correlation-request-id": [
- "2360106e-c458-48a6-b657-b70701d85cc5"
+ "37f161c3-0fce-445e-84bb-c809682dc89a"
],
"x-ms-routing-request-id": [
- "WESTUS:20200529T164307Z:2360106e-c458-48a6-b657-b70701d85cc5"
+ "WESTUS:20200928T195947Z:37f161c3-0fce-445e-84bb-c809682dc89a"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -974,11 +977,65 @@
"X-Content-Type-Options": [
"nosniff"
],
+ "Date": [
+ "Mon, 28 Sep 2020 19:59:46 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
"Content-Length": [
"0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/677f962b-9abf-4423-a27b-0c2f4094dcec/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUMjU4OC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2017-05-10",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjc3Zjk2MmItOWFiZi00NDIzLWEyN2ItMGMyZjQwOTRkY2VjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xOTlRrVlVNalU0T0MxWFJWTlVRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wWTJWdWRISmhiSFZ6SW4wP2FwaS12ZXJzaW9uPTIwMTctMDUtMTA=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.29220.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11991"
+ ],
+ "x-ms-request-id": [
+ "c7502bb2-1b1f-44ca-b3a7-f1dc2cac77d5"
+ ],
+ "x-ms-correlation-request-id": [
+ "c7502bb2-1b1f-44ca-b3a7-f1dc2cac77d5"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200928T195947Z:c7502bb2-1b1f-44ca-b3a7-f1dc2cac77d5"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Mon, 28 Sep 2020 19:59:47 GMT"
],
"Expires": [
"-1"
+ ],
+ "Content-Length": [
+ "0"
]
},
"ResponseBody": "",
@@ -987,12 +1044,12 @@
],
"Names": {
"BatchAccountCanCreateWithBYOSEnabled": [
- "azsmnet8777",
- "azsmnet796",
- "azsmnet381"
+ "azsmnet2588",
+ "azsmnet8278",
+ "azsmnet3850"
]
},
"Variables": {
- "SubscriptionId": "21abd678-18c5-4660-9fdd-8c5ba6b6fe1f"
+ "SubscriptionId": "677f962b-9abf-4423-a27b-0c2f4094dcec"
}
}
\ No newline at end of file
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 5190da0ca9934..83e98c67fe2b4 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
@@ -1,21 +1,21 @@
{
"Entries": [
{
- "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch?api-version=2017-05-10",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2g/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==",
+ "RequestUri": "/subscriptions/677f962b-9abf-4423-a27b-0c2f4094dcec/providers/Microsoft.Batch?api-version=2017-05-10",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjc3Zjk2MmItOWFiZi00NDIzLWEyN2ItMGMyZjQwOTRkY2VjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2g/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "8a7c3c52-086c-4487-9ce4-8b9bc06ad972"
+ "625593d4-3106-49d9-a1dc-9dcf33f357c4"
],
- "accept-language": [
+ "Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.26614.01",
+ "FxVersion/4.6.29220.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
"Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0"
]
},
@@ -23,9 +23,6 @@
"Cache-Control": [
"no-cache"
],
- "Date": [
- "Fri, 29 May 2020 16:43:07 GMT"
- ],
"Pragma": [
"no-cache"
],
@@ -33,13 +30,13 @@
"11999"
],
"x-ms-request-id": [
- "4d7e4207-cd9b-4e6c-9613-1253c32f9bd7"
+ "9ec0fb50-6534-448d-a23a-956aeb5cdcde"
],
"x-ms-correlation-request-id": [
- "4d7e4207-cd9b-4e6c-9613-1253c32f9bd7"
+ "9ec0fb50-6534-448d-a23a-956aeb5cdcde"
],
"x-ms-routing-request-id": [
- "WESTUS:20200529T164308Z:4d7e4207-cd9b-4e6c-9613-1253c32f9bd7"
+ "WESTUS:20200928T195948Z:9ec0fb50-6534-448d-a23a-956aeb5cdcde"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -47,51 +44,51 @@
"X-Content-Type-Options": [
"nosniff"
],
- "Content-Length": [
- "4871"
+ "Date": [
+ "Mon, 28 Sep 2020 19:59:48 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
],
"Expires": [
"-1"
+ ],
+ "Content-Length": [
+ "4774"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch\",\r\n \"namespace\": \"Microsoft.Batch\",\r\n \"authorization\": {\r\n \"applicationId\": \"ddbf3205-c6bd-46ae-8127-60eb93363864\",\r\n \"roleDefinitionId\": \"b7f84953-1d03-4eab-9ea4-45f065258ff8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"batchAccounts\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\",\r\n \"2015-07-01\",\r\n \"2014-05-01-privatepreview\"\r\n ],\r\n \"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\": \"operations\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ],\r\n \"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 \"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\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ],\r\n \"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\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\"\r\n ],\r\n \"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\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\",\r\n \"2015-07-01\",\r\n \"2014-05-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/677f962b-9abf-4423-a27b-0c2f4094dcec/providers/Microsoft.Batch\",\r\n \"namespace\": \"Microsoft.Batch\",\r\n \"authorization\": {\r\n \"applicationId\": \"ddbf3205-c6bd-46ae-8127-60eb93363864\",\r\n \"roleDefinitionId\": \"b7f84953-1d03-4eab-9ea4-45f065258ff8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"batchAccounts\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\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\": \"operations\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\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 \"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\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\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\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\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\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\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}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourcegroups/azsmnet4895?api-version=2017-05-10",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQ0ODk1P2FwaS12ZXJzaW9uPTIwMTctMDUtMTA=",
+ "RequestUri": "/subscriptions/677f962b-9abf-4423-a27b-0c2f4094dcec/resourcegroups/azsmnet6115?api-version=2017-05-10",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjc3Zjk2MmItOWFiZi00NDIzLWEyN2ItMGMyZjQwOTRkY2VjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQ2MTE1P2FwaS12ZXJzaW9uPTIwMTctMDUtMTA=",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"location\": \"East US\"\r\n}",
+ "RequestBody": "{\r\n \"location\": \"West Central US\"\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "bed04fd6-d826-4976-9805-bb8b7af61b1f"
+ "69ed9396-0ab7-49b2-bc0a-fe96b14e695b"
],
- "accept-language": [
+ "Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.26614.01",
+ "FxVersion/4.6.29220.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
"Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
],
"Content-Length": [
- "29"
+ "37"
]
},
"ResponseHeaders": {
"Cache-Control": [
"no-cache"
],
- "Date": [
- "Fri, 29 May 2020 16:43:09 GMT"
- ],
"Pragma": [
"no-cache"
],
@@ -99,13 +96,13 @@
"1199"
],
"x-ms-request-id": [
- "b6219a7b-3468-488a-81f8-50cec5b10555"
+ "5460a38b-6712-406e-a77f-4eb9ba22b396"
],
"x-ms-correlation-request-id": [
- "b6219a7b-3468-488a-81f8-50cec5b10555"
+ "5460a38b-6712-406e-a77f-4eb9ba22b396"
],
"x-ms-routing-request-id": [
- "WESTUS:20200529T164310Z:b6219a7b-3468-488a-81f8-50cec5b10555"
+ "WESTUS:20200928T195948Z:5460a38b-6712-406e-a77f-4eb9ba22b396"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -113,8 +110,11 @@
"X-Content-Type-Options": [
"nosniff"
],
+ "Date": [
+ "Mon, 28 Sep 2020 19:59:48 GMT"
+ ],
"Content-Length": [
- "175"
+ "182"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -123,26 +123,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet4895\",\r\n \"name\": \"azsmnet4895\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/677f962b-9abf-4423-a27b-0c2f4094dcec/resourceGroups/azsmnet6115\",\r\n \"name\": \"azsmnet6115\",\r\n \"location\": \"westcentralus\",\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=2020-05-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL0Vhc3QlMjBVUy9jaGVja05hbWVBdmFpbGFiaWxpdHk/YXBpLXZlcnNpb249MjAyMC0wNS0wMQ==",
+ "RequestUri": "/subscriptions/677f962b-9abf-4423-a27b-0c2f4094dcec/providers/Microsoft.Batch/locations/West%20Central%20US/checkNameAvailability?api-version=2020-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjc3Zjk2MmItOWFiZi00NDIzLWEyN2ItMGMyZjQwOTRkY2VjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL1dlc3QlMjBDZW50cmFsJTIwVVMvY2hlY2tOYW1lQXZhaWxhYmlsaXR5P2FwaS12ZXJzaW9uPTIwMjAtMDktMDE=",
"RequestMethod": "POST",
- "RequestBody": "{\r\n \"name\": \"azsmnet6608\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}",
+ "RequestBody": "{\r\n \"name\": \"azsmnet9124\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "3c95f0c3-3b1d-4e18-a11b-fbf78a021ce6"
+ "c9d8b891-191a-4456-aa4a-05c497e4dda9"
],
- "accept-language": [
+ "Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.26614.01",
+ "FxVersion/4.6.29220.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Batch.BatchManagementClient/10.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Batch.BatchManagementClient/11.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -155,20 +155,14 @@
"Cache-Control": [
"no-cache"
],
- "Date": [
- "Fri, 29 May 2020 16:43:10 GMT"
- ],
"Pragma": [
"no-cache"
],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ],
"x-ms-ratelimit-remaining-subscription-writes": [
"1199"
],
"x-ms-request-id": [
- "66060f39-51f8-4a5d-a018-225d6793d4ee"
+ "9c865177-dda5-4001-8b63-fe14b4da819a"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -176,11 +170,17 @@
"X-Content-Type-Options": [
"nosniff"
],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
"x-ms-correlation-request-id": [
- "8152bcf9-43e3-4420-b52b-eb1729d59ca6"
+ "7877ab17-088d-450f-916f-6a571db8009f"
],
"x-ms-routing-request-id": [
- "WESTUS:20200529T164310Z:8152bcf9-43e3-4420-b52b-eb1729d59ca6"
+ "WESTUS:20200928T195949Z:7877ab17-088d-450f-916f-6a571db8009f"
+ ],
+ "Date": [
+ "Mon, 28 Sep 2020 19:59:49 GMT"
],
"Content-Length": [
"22"
@@ -196,22 +196,22 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/East%20US/checkNameAvailability?api-version=2020-05-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL0Vhc3QlMjBVUy9jaGVja05hbWVBdmFpbGFiaWxpdHk/YXBpLXZlcnNpb249MjAyMC0wNS0wMQ==",
+ "RequestUri": "/subscriptions/677f962b-9abf-4423-a27b-0c2f4094dcec/providers/Microsoft.Batch/locations/West%20Central%20US/checkNameAvailability?api-version=2020-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjc3Zjk2MmItOWFiZi00NDIzLWEyN2ItMGMyZjQwOTRkY2VjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL1dlc3QlMjBDZW50cmFsJTIwVVMvY2hlY2tOYW1lQXZhaWxhYmlsaXR5P2FwaS12ZXJzaW9uPTIwMjAtMDktMDE=",
"RequestMethod": "POST",
- "RequestBody": "{\r\n \"name\": \"azsmnet6608\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}",
+ "RequestBody": "{\r\n \"name\": \"azsmnet9124\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "d4825f20-98e3-4c7f-8c39-f9c885e567d2"
+ "9dbd1a3b-c5f9-4f9d-9055-2dfe99cc9cc4"
],
- "accept-language": [
+ "Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.26614.01",
+ "FxVersion/4.6.29220.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Batch.BatchManagementClient/10.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Batch.BatchManagementClient/11.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -224,20 +224,14 @@
"Cache-Control": [
"no-cache"
],
- "Date": [
- "Fri, 29 May 2020 16:43:28 GMT"
- ],
"Pragma": [
"no-cache"
],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ],
"x-ms-ratelimit-remaining-subscription-writes": [
"1198"
],
"x-ms-request-id": [
- "696312cb-be97-494b-8b63-6c5a6a82ee78"
+ "ac152c1a-1078-4fa2-8231-7887ee439eaa"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -245,11 +239,17 @@
"X-Content-Type-Options": [
"nosniff"
],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
"x-ms-correlation-request-id": [
- "db28c77a-755e-4be3-96a5-cecd42f4b33b"
+ "7e505f8f-3dd9-443a-8419-147ebb9e9a2c"
],
"x-ms-routing-request-id": [
- "WESTUS:20200529T164328Z:db28c77a-755e-4be3-96a5-cecd42f4b33b"
+ "WESTUS:20200928T200006Z:7e505f8f-3dd9-443a-8419-147ebb9e9a2c"
+ ],
+ "Date": [
+ "Mon, 28 Sep 2020 20:00:06 GMT"
],
"Content-Length": [
"110"
@@ -261,55 +261,49 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"nameAvailable\": false,\r\n \"reason\": \"AlreadyExists\",\r\n \"message\": \"An account named 'azsmnet6608' is already in use.\"\r\n}",
+ "ResponseBody": "{\r\n \"nameAvailable\": false,\r\n \"reason\": \"AlreadyExists\",\r\n \"message\": \"An account named 'azsmnet9124' is already in use.\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet4895/providers/Microsoft.Batch/batchAccounts/azsmnet6608?api-version=2020-05-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0ODk1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0NjYwOD9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestUri": "/subscriptions/677f962b-9abf-4423-a27b-0c2f4094dcec/resourceGroups/azsmnet6115/providers/Microsoft.Batch/batchAccounts/azsmnet9124?api-version=2020-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjc3Zjk2MmItOWFiZi00NDIzLWEyN2ItMGMyZjQwOTRkY2VjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2MTE1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0OTEyND9hcGktdmVyc2lvbj0yMDIwLTA5LTAx",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"location\": \"East US\"\r\n}",
+ "RequestBody": "{\r\n \"location\": \"West Central US\"\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a2d5b431-9c51-40b1-b664-75f457581f6d"
+ "07969fbd-93b5-4e6a-929f-658ef59dbb2f"
],
- "accept-language": [
+ "Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.26614.01",
+ "FxVersion/4.6.29220.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Batch.BatchManagementClient/10.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Batch.BatchManagementClient/11.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
],
"Content-Length": [
- "29"
+ "37"
]
},
"ResponseHeaders": {
"Cache-Control": [
"no-cache"
],
- "Date": [
- "Fri, 29 May 2020 16:43:13 GMT"
- ],
"Pragma": [
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet4895/providers/Microsoft.Batch/batchAccounts/azsmnet6608/operationResults/ed83da3b-31ea-49d2-8e91-97b8096458af?api-version=2020-05-01"
+ "https://management.azure.com/subscriptions/677f962b-9abf-4423-a27b-0c2f4094dcec/resourceGroups/azsmnet6115/providers/Microsoft.Batch/batchAccounts/azsmnet9124/operationResults/002fa7a9-8df1-4d5d-8999-34d07261b21d?api-version=2020-09-01"
],
"Retry-After": [
"15"
],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ],
"x-ms-request-id": [
- "ed83da3b-31ea-49d2-8e91-97b8096458af"
+ "002fa7a9-8df1-4d5d-8999-34d07261b21d"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -317,59 +311,59 @@
"X-Content-Type-Options": [
"nosniff"
],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
"x-ms-ratelimit-remaining-subscription-writes": [
"1199"
],
"x-ms-correlation-request-id": [
- "8b229a09-f2c1-4d9c-ad04-998b29c81e72"
+ "d4938c36-3502-4bce-8606-1207b3c014ea"
],
"x-ms-routing-request-id": [
- "WESTUS:20200529T164313Z:8b229a09-f2c1-4d9c-ad04-998b29c81e72"
+ "WESTUS:20200928T195951Z:d4938c36-3502-4bce-8606-1207b3c014ea"
],
- "Content-Length": [
- "0"
+ "Date": [
+ "Mon, 28 Sep 2020 19:59:51 GMT"
],
"Expires": [
"-1"
+ ],
+ "Content-Length": [
+ "0"
]
},
"ResponseBody": "",
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet4895/providers/Microsoft.Batch/batchAccounts/azsmnet6608/operationResults/ed83da3b-31ea-49d2-8e91-97b8096458af?api-version=2020-05-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0ODk1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0NjYwOC9vcGVyYXRpb25SZXN1bHRzL2VkODNkYTNiLTMxZWEtNDlkMi04ZTkxLTk3YjgwOTY0NThhZj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestUri": "/subscriptions/677f962b-9abf-4423-a27b-0c2f4094dcec/resourceGroups/azsmnet6115/providers/Microsoft.Batch/batchAccounts/azsmnet9124/operationResults/002fa7a9-8df1-4d5d-8999-34d07261b21d?api-version=2020-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjc3Zjk2MmItOWFiZi00NDIzLWEyN2ItMGMyZjQwOTRkY2VjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2MTE1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0OTEyNC9vcGVyYXRpb25SZXN1bHRzLzAwMmZhN2E5LThkZjEtNGQ1ZC04OTk5LTM0ZDA3MjYxYjIxZD9hcGktdmVyc2lvbj0yMDIwLTA5LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.26614.01",
+ "FxVersion/4.6.29220.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Batch.BatchManagementClient/10.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Batch.BatchManagementClient/11.0.0.0"
]
},
"ResponseHeaders": {
"Cache-Control": [
"no-cache"
],
- "Date": [
- "Fri, 29 May 2020 16:43:28 GMT"
- ],
"Pragma": [
"no-cache"
],
"ETag": [
- "\"0x8D803EF6A1EEF3D\""
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
+ "\"0x8D863E918BEA6B9\""
],
"x-ms-ratelimit-remaining-subscription-reads": [
"11999"
],
"x-ms-request-id": [
- "edc2cdba-4aad-4eda-a875-daae3137f2e4"
+ "44e076ca-fb44-4e16-8fcb-6751bb3edcb6"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -377,14 +371,20 @@
"X-Content-Type-Options": [
"nosniff"
],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
"x-ms-correlation-request-id": [
- "c796dca1-14d3-4bd8-baa5-f20f727e45b9"
+ "c464ede0-0560-464f-8279-4aee2b0efa8c"
],
"x-ms-routing-request-id": [
- "WESTUS:20200529T164328Z:c796dca1-14d3-4bd8-baa5-f20f727e45b9"
+ "WESTUS:20200928T200006Z:c464ede0-0560-464f-8279-4aee2b0efa8c"
+ ],
+ "Date": [
+ "Mon, 28 Sep 2020 20:00:06 GMT"
],
"Content-Length": [
- "2232"
+ "2545"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -393,52 +393,46 @@
"-1"
],
"Last-Modified": [
- "Fri, 29 May 2020 16:43:28 GMT"
+ "Mon, 28 Sep 2020 20:00:06 GMT"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet4895/providers/Microsoft.Batch/batchAccounts/azsmnet6608\",\r\n \"name\": \"azsmnet6608\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"azsmnet6608.pilotprod2.eastus.batch.azure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"dedicatedCoreQuota\": 700,\r\n \"dedicatedCoreQuotaPerVMFamily\": [\r\n {\r\n \"name\": \"standardAv2Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardDv2Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardDv3Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardEv3Family\",\r\n \"coreQuota\": 50\r\n },\r\n {\r\n \"name\": \"standardDSv2Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardDSv3Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardESv3Family\",\r\n \"coreQuota\": 50\r\n },\r\n {\r\n \"name\": \"standardFFamily\",\r\n \"coreQuota\": 50\r\n },\r\n {\r\n \"name\": \"standardFSFamily\",\r\n \"coreQuota\": 50\r\n },\r\n {\r\n \"name\": \"standardA0_A7Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardA8_A11Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardDFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardGFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"basicAFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNVFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNVPromoFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNCFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNCPromoFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHPromoFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardMSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardDSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardGSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardLSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardLSv2Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNCSv2Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNDSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNCSv3Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardFSv2Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHBSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHCSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNVSv3Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHBrsv2Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardDASv4Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardEAv4Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardEASv4Family\",\r\n \"coreQuota\": 0\r\n }\r\n ],\r\n \"dedicatedCoreQuotaPerVMFamilyEnforced\": false,\r\n \"lowPriorityCoreQuota\": 500,\r\n \"poolQuota\": 100,\r\n \"activeJobAndJobScheduleQuota\": 300,\r\n \"poolAllocationMode\": \"BatchService\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"encryption\": {\r\n \"keySource\": \"Microsoft.Batch\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/677f962b-9abf-4423-a27b-0c2f4094dcec/resourceGroups/azsmnet6115/providers/Microsoft.Batch/batchAccounts/azsmnet9124\",\r\n \"name\": \"azsmnet9124\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"azsmnet9124.westcentralus.batch.azure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"dedicatedCoreQuota\": 700,\r\n \"dedicatedCoreQuotaPerVMFamily\": [\r\n {\r\n \"name\": \"standardAv2Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardDv2Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardDv3Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardEv3Family\",\r\n \"coreQuota\": 50\r\n },\r\n {\r\n \"name\": \"standardDSv2Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardDSv3Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardESv3Family\",\r\n \"coreQuota\": 50\r\n },\r\n {\r\n \"name\": \"standardFFamily\",\r\n \"coreQuota\": 50\r\n },\r\n {\r\n \"name\": \"standardFSFamily\",\r\n \"coreQuota\": 50\r\n },\r\n {\r\n \"name\": \"standardA0_A7Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardA8_A11Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardDFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardGFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"basicAFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNVFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNVPromoFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNCFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNCPromoFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHPromoFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardMSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardDSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardGSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardLSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardLSv2Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNCSv2Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNDSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNCSv3Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardFSv2Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHBSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHCSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNVSv3Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHBrsv2Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"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\": \"standardDDv4Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardDDSv4Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardEDv4Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardEDSv4Family\",\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 \"dedicatedCoreQuotaPerVMFamilyEnforced\": false,\r\n \"lowPriorityCoreQuota\": 500,\r\n \"poolQuota\": 100,\r\n \"activeJobAndJobScheduleQuota\": 300,\r\n \"poolAllocationMode\": \"BatchService\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"encryption\": {\r\n \"keySource\": \"Microsoft.Batch\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet4895/providers/Microsoft.Batch/batchAccounts/azsmnet6608?api-version=2020-05-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0ODk1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0NjYwOD9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestUri": "/subscriptions/677f962b-9abf-4423-a27b-0c2f4094dcec/resourceGroups/azsmnet6115/providers/Microsoft.Batch/batchAccounts/azsmnet9124?api-version=2020-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjc3Zjk2MmItOWFiZi00NDIzLWEyN2ItMGMyZjQwOTRkY2VjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2MTE1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0OTEyND9hcGktdmVyc2lvbj0yMDIwLTA5LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "f8539348-8087-4e34-80c2-3dd7ce9bb644"
+ "d57fed14-9ca1-47f5-ab54-2647c9c5f4e5"
],
- "accept-language": [
+ "Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.26614.01",
+ "FxVersion/4.6.29220.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Batch.BatchManagementClient/10.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Batch.BatchManagementClient/11.0.0.0"
]
},
"ResponseHeaders": {
"Cache-Control": [
"no-cache"
],
- "Date": [
- "Fri, 29 May 2020 16:43:28 GMT"
- ],
"Pragma": [
"no-cache"
],
"ETag": [
- "\"0x8D803EF62EEBF04\""
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
+ "\"0x8D863E911E1087C\""
],
"x-ms-ratelimit-remaining-subscription-reads": [
"11998"
],
"x-ms-request-id": [
- "346bee1b-edd0-41e2-bac8-d5822bf48e21"
+ "93da9183-4ab4-400c-9447-42bc4d749a9f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -446,14 +440,20 @@
"X-Content-Type-Options": [
"nosniff"
],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
"x-ms-correlation-request-id": [
- "f713f50c-adab-4c9f-a3cb-78227d5ab878"
+ "d2ecfaa2-f069-414f-8f53-c3d0ab8bab35"
],
"x-ms-routing-request-id": [
- "WESTUS:20200529T164328Z:f713f50c-adab-4c9f-a3cb-78227d5ab878"
+ "WESTUS:20200928T200006Z:d2ecfaa2-f069-414f-8f53-c3d0ab8bab35"
+ ],
+ "Date": [
+ "Mon, 28 Sep 2020 20:00:06 GMT"
],
"Content-Length": [
- "2232"
+ "2545"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -462,49 +462,43 @@
"-1"
],
"Last-Modified": [
- "Fri, 29 May 2020 16:43:16 GMT"
+ "Mon, 28 Sep 2020 19:59:55 GMT"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet4895/providers/Microsoft.Batch/batchAccounts/azsmnet6608\",\r\n \"name\": \"azsmnet6608\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"azsmnet6608.pilotprod2.eastus.batch.azure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"dedicatedCoreQuota\": 700,\r\n \"dedicatedCoreQuotaPerVMFamily\": [\r\n {\r\n \"name\": \"standardAv2Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardDv2Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardDv3Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardEv3Family\",\r\n \"coreQuota\": 50\r\n },\r\n {\r\n \"name\": \"standardDSv2Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardDSv3Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardESv3Family\",\r\n \"coreQuota\": 50\r\n },\r\n {\r\n \"name\": \"standardFFamily\",\r\n \"coreQuota\": 50\r\n },\r\n {\r\n \"name\": \"standardFSFamily\",\r\n \"coreQuota\": 50\r\n },\r\n {\r\n \"name\": \"standardA0_A7Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardA8_A11Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardDFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardGFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"basicAFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNVFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNVPromoFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNCFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNCPromoFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHPromoFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardMSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardDSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardGSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardLSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardLSv2Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNCSv2Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNDSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNCSv3Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardFSv2Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHBSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHCSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNVSv3Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHBrsv2Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardDASv4Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardEAv4Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardEASv4Family\",\r\n \"coreQuota\": 0\r\n }\r\n ],\r\n \"dedicatedCoreQuotaPerVMFamilyEnforced\": false,\r\n \"lowPriorityCoreQuota\": 500,\r\n \"poolQuota\": 100,\r\n \"activeJobAndJobScheduleQuota\": 300,\r\n \"poolAllocationMode\": \"BatchService\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"encryption\": {\r\n \"keySource\": \"Microsoft.Batch\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/677f962b-9abf-4423-a27b-0c2f4094dcec/resourceGroups/azsmnet6115/providers/Microsoft.Batch/batchAccounts/azsmnet9124\",\r\n \"name\": \"azsmnet9124\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"azsmnet9124.westcentralus.batch.azure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"dedicatedCoreQuota\": 700,\r\n \"dedicatedCoreQuotaPerVMFamily\": [\r\n {\r\n \"name\": \"standardAv2Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardDv2Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardDv3Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardEv3Family\",\r\n \"coreQuota\": 50\r\n },\r\n {\r\n \"name\": \"standardDSv2Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardDSv3Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardESv3Family\",\r\n \"coreQuota\": 50\r\n },\r\n {\r\n \"name\": \"standardFFamily\",\r\n \"coreQuota\": 50\r\n },\r\n {\r\n \"name\": \"standardFSFamily\",\r\n \"coreQuota\": 50\r\n },\r\n {\r\n \"name\": \"standardA0_A7Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardA8_A11Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardDFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardGFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"basicAFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNVFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNVPromoFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNCFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNCPromoFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHPromoFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardMSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardDSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardGSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardLSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardLSv2Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNCSv2Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNDSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNCSv3Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardFSv2Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHBSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHCSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNVSv3Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHBrsv2Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"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\": \"standardDDv4Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardDDSv4Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardEDv4Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardEDSv4Family\",\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 \"dedicatedCoreQuotaPerVMFamilyEnforced\": false,\r\n \"lowPriorityCoreQuota\": 500,\r\n \"poolQuota\": 100,\r\n \"activeJobAndJobScheduleQuota\": 300,\r\n \"poolAllocationMode\": \"BatchService\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"encryption\": {\r\n \"keySource\": \"Microsoft.Batch\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet4895/providers/Microsoft.Batch/batchAccounts/azsmnet6608?api-version=2020-05-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0ODk1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0NjYwOD9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestUri": "/subscriptions/677f962b-9abf-4423-a27b-0c2f4094dcec/resourceGroups/azsmnet6115/providers/Microsoft.Batch/batchAccounts/azsmnet9124?api-version=2020-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjc3Zjk2MmItOWFiZi00NDIzLWEyN2ItMGMyZjQwOTRkY2VjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2MTE1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0OTEyND9hcGktdmVyc2lvbj0yMDIwLTA5LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "5b4f660d-84f3-4696-95b6-c3847a3f6ed9"
+ "18cefdd1-8bc1-4c0a-9625-45b28564e1cf"
],
- "accept-language": [
+ "Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.26614.01",
+ "FxVersion/4.6.29220.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Batch.BatchManagementClient/10.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Batch.BatchManagementClient/11.0.0.0"
]
},
"ResponseHeaders": {
"Cache-Control": [
"no-cache"
],
- "Date": [
- "Fri, 29 May 2020 16:43:45 GMT"
- ],
"Pragma": [
"no-cache"
],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ],
"x-ms-ratelimit-remaining-subscription-reads": [
"11994"
],
"x-ms-request-id": [
- "1058b849-6a69-4620-b962-e2cc958a7d92"
+ "bba96f57-b2c5-4cdf-ae8d-65c19d7a73fd"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -512,11 +506,17 @@
"X-Content-Type-Options": [
"nosniff"
],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
"x-ms-correlation-request-id": [
- "8c7908cf-dfc7-425d-9177-f22372821c59"
+ "34c1e6c8-10ed-487b-945f-cb9e38e5c379"
],
"x-ms-routing-request-id": [
- "WESTUS:20200529T164345Z:8c7908cf-dfc7-425d-9177-f22372821c59"
+ "WESTUS:20200928T200022Z:34c1e6c8-10ed-487b-945f-cb9e38e5c379"
+ ],
+ "Date": [
+ "Mon, 28 Sep 2020 20:00:22 GMT"
],
"Content-Length": [
"193"
@@ -528,46 +528,40 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"AccountNotFound\",\r\n \"message\": \"The specified account does not exist.\\nRequestId:1058b849-6a69-4620-b962-e2cc958a7d92\\nTime:2020-05-29T16:43:45.1941368Z\",\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:bba96f57-b2c5-4cdf-ae8d-65c19d7a73fd\\nTime:2020-09-28T20:00:22.8008240Z\",\r\n \"target\": \"BatchAccount\"\r\n }\r\n}",
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet4895/providers/Microsoft.Batch/batchAccounts/azsmnet6608/listKeys?api-version=2020-05-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0ODk1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0NjYwOC9saXN0S2V5cz9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestUri": "/subscriptions/677f962b-9abf-4423-a27b-0c2f4094dcec/resourceGroups/azsmnet6115/providers/Microsoft.Batch/batchAccounts/azsmnet9124/listKeys?api-version=2020-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjc3Zjk2MmItOWFiZi00NDIzLWEyN2ItMGMyZjQwOTRkY2VjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2MTE1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0OTEyNC9saXN0S2V5cz9hcGktdmVyc2lvbj0yMDIwLTA5LTAx",
"RequestMethod": "POST",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "92055f44-270e-46ff-889d-ffa4c8b1eeb6"
+ "257a3ce7-a38c-480b-aaf1-221debf03ac0"
],
- "accept-language": [
+ "Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.26614.01",
+ "FxVersion/4.6.29220.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Batch.BatchManagementClient/10.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Batch.BatchManagementClient/11.0.0.0"
]
},
"ResponseHeaders": {
"Cache-Control": [
"no-cache"
],
- "Date": [
- "Fri, 29 May 2020 16:43:28 GMT"
- ],
"Pragma": [
"no-cache"
],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ],
"x-ms-ratelimit-remaining-subscription-writes": [
"1197"
],
"x-ms-request-id": [
- "6b331bd1-42fc-40dd-af65-b759fc296418"
+ "c105827e-3362-4534-95de-bea7a499f7a7"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -575,11 +569,17 @@
"X-Content-Type-Options": [
"nosniff"
],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
"x-ms-correlation-request-id": [
- "36845093-fa0c-459a-ae38-382cbc120085"
+ "23f4d1fd-b0f0-4c52-8670-869478ea505f"
],
"x-ms-routing-request-id": [
- "WESTUS:20200529T164328Z:36845093-fa0c-459a-ae38-382cbc120085"
+ "WESTUS:20200928T200006Z:23f4d1fd-b0f0-4c52-8670-869478ea505f"
+ ],
+ "Date": [
+ "Mon, 28 Sep 2020 20:00:06 GMT"
],
"Content-Length": [
"233"
@@ -591,26 +591,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"accountName\": \"azsmnet6608\",\r\n \"primary\": \"1Ik++gbzwLhVr1bMB2FNirWrFRw61ydDSJ6bRNfNqETYFttwerYZg2iqRs4kyBUw9rOkVbXsD5+gTMhGwRP5iw==\",\r\n \"secondary\": \"DLwWu7mt4aPA3w0NONX/6R7r8G3LiMy8as0y6DMVwQmNb8qUxlg0DOvRe3Uw3iVKmwBqiaWgYDGI9atrhlowyQ==\"\r\n}",
+ "ResponseBody": "{\r\n \"accountName\": \"azsmnet9124\",\r\n \"primary\": \"TV9Q4ty9GX3k+MzQVZ4ojPfIo8doxShlEistg3mCMkTvv8EU0cipmBhQAGLl4pBeyuO/zHaQE0VxmHEq0hevXQ==\",\r\n \"secondary\": \"8bfTiVy9KZ+AmyxOloAgl+45ZwQ+67n38eGxj5/zNhKkGZxFeC0IGaaXGU1N5wD7o4xn7aumQ/w7x3lmV3XGGg==\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet4895/providers/Microsoft.Batch/batchAccounts/azsmnet6608/regenerateKeys?api-version=2020-05-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0ODk1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0NjYwOC9yZWdlbmVyYXRlS2V5cz9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestUri": "/subscriptions/677f962b-9abf-4423-a27b-0c2f4094dcec/resourceGroups/azsmnet6115/providers/Microsoft.Batch/batchAccounts/azsmnet9124/regenerateKeys?api-version=2020-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjc3Zjk2MmItOWFiZi00NDIzLWEyN2ItMGMyZjQwOTRkY2VjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2MTE1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0OTEyNC9yZWdlbmVyYXRlS2V5cz9hcGktdmVyc2lvbj0yMDIwLTA5LTAx",
"RequestMethod": "POST",
"RequestBody": "{\r\n \"keyName\": \"Primary\"\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "89938a11-7934-4d8e-9526-1a74c655f69b"
+ "a0ee349c-16f1-41ea-a956-803ce6cba453"
],
- "accept-language": [
+ "Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.26614.01",
+ "FxVersion/4.6.29220.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Batch.BatchManagementClient/10.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Batch.BatchManagementClient/11.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -623,20 +623,14 @@
"Cache-Control": [
"no-cache"
],
- "Date": [
- "Fri, 29 May 2020 16:43:29 GMT"
- ],
"Pragma": [
"no-cache"
],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ],
"x-ms-ratelimit-remaining-subscription-writes": [
"1196"
],
"x-ms-request-id": [
- "3e73d75e-ceec-4271-97ea-54980e292cfd"
+ "d2e018c7-1c1b-4e0d-9a93-99c9dd6efe7f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -644,11 +638,17 @@
"X-Content-Type-Options": [
"nosniff"
],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
"x-ms-correlation-request-id": [
- "b051f2ee-75d9-44dc-81df-49f2855829af"
+ "0b8b28df-5fdc-41cf-af2f-6b5df875ce1e"
],
"x-ms-routing-request-id": [
- "WESTUS:20200529T164329Z:b051f2ee-75d9-44dc-81df-49f2855829af"
+ "WESTUS:20200928T200007Z:0b8b28df-5fdc-41cf-af2f-6b5df875ce1e"
+ ],
+ "Date": [
+ "Mon, 28 Sep 2020 20:00:06 GMT"
],
"Content-Length": [
"233"
@@ -660,46 +660,40 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"accountName\": \"azsmnet6608\",\r\n \"primary\": \"na4VfcuClO7pnKhlvlpXCQbeRD+ovrFd8rE3N9N1/L143ncP9fTsDXPQNgD57n7jUsQzryzfXoaOayXhxzGaAQ==\",\r\n \"secondary\": \"DLwWu7mt4aPA3w0NONX/6R7r8G3LiMy8as0y6DMVwQmNb8qUxlg0DOvRe3Uw3iVKmwBqiaWgYDGI9atrhlowyQ==\"\r\n}",
+ "ResponseBody": "{\r\n \"accountName\": \"azsmnet9124\",\r\n \"primary\": \"aJGupMry5GXkcqQ8OJRCQYBGehB948jLTMgTWz1IAdH2UC1CdV1WR13d5beX0CCi+PC1cC0xwYLng2MBjS5raQ==\",\r\n \"secondary\": \"8bfTiVy9KZ+AmyxOloAgl+45ZwQ+67n38eGxj5/zNhKkGZxFeC0IGaaXGU1N5wD7o4xn7aumQ/w7x3lmV3XGGg==\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet4895/providers/Microsoft.Batch/batchAccounts?api-version=2020-05-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0ODk1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cz9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestUri": "/subscriptions/677f962b-9abf-4423-a27b-0c2f4094dcec/resourceGroups/azsmnet6115/providers/Microsoft.Batch/batchAccounts?api-version=2020-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjc3Zjk2MmItOWFiZi00NDIzLWEyN2ItMGMyZjQwOTRkY2VjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2MTE1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cz9hcGktdmVyc2lvbj0yMDIwLTA5LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "93c43a9a-7cc3-405c-8330-a4c32414719a"
+ "bc3984e7-37ac-422b-9f9a-a7cb32b0238c"
],
- "accept-language": [
+ "Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.26614.01",
+ "FxVersion/4.6.29220.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Batch.BatchManagementClient/10.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Batch.BatchManagementClient/11.0.0.0"
]
},
"ResponseHeaders": {
"Cache-Control": [
"no-cache"
],
- "Date": [
- "Fri, 29 May 2020 16:43:29 GMT"
- ],
"Pragma": [
"no-cache"
],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ],
"x-ms-ratelimit-remaining-subscription-reads": [
"11997"
],
"x-ms-request-id": [
- "dd548c45-d850-4544-ae42-33ef2e693380"
+ "a4404aba-2e68-4efa-9a0a-1c7cddd506e5"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -707,14 +701,20 @@
"X-Content-Type-Options": [
"nosniff"
],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
"x-ms-correlation-request-id": [
- "672cb2eb-d1eb-4416-9450-640c5f3578cf"
+ "1cc42009-c51d-4ee9-9468-fc68d9ad8994"
],
"x-ms-routing-request-id": [
- "WESTUS:20200529T164329Z:672cb2eb-d1eb-4416-9450-640c5f3578cf"
+ "WESTUS:20200928T200007Z:1cc42009-c51d-4ee9-9468-fc68d9ad8994"
+ ],
+ "Date": [
+ "Mon, 28 Sep 2020 20:00:07 GMT"
],
"Content-Length": [
- "2244"
+ "2557"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -723,49 +723,43 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet4895/providers/Microsoft.Batch/batchAccounts/azsmnet6608\",\r\n \"name\": \"azsmnet6608\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"azsmnet6608.pilotprod2.eastus.batch.azure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"dedicatedCoreQuota\": 700,\r\n \"dedicatedCoreQuotaPerVMFamily\": [\r\n {\r\n \"name\": \"standardAv2Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardDv2Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardDv3Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardEv3Family\",\r\n \"coreQuota\": 50\r\n },\r\n {\r\n \"name\": \"standardDSv2Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardDSv3Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardESv3Family\",\r\n \"coreQuota\": 50\r\n },\r\n {\r\n \"name\": \"standardFFamily\",\r\n \"coreQuota\": 50\r\n },\r\n {\r\n \"name\": \"standardFSFamily\",\r\n \"coreQuota\": 50\r\n },\r\n {\r\n \"name\": \"standardA0_A7Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardA8_A11Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardDFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardGFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"basicAFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNVFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNVPromoFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNCFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNCPromoFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHPromoFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardMSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardDSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardGSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardLSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardLSv2Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNCSv2Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNDSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNCSv3Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardFSv2Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHBSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHCSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNVSv3Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHBrsv2Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardDASv4Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardEAv4Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardEASv4Family\",\r\n \"coreQuota\": 0\r\n }\r\n ],\r\n \"dedicatedCoreQuotaPerVMFamilyEnforced\": false,\r\n \"lowPriorityCoreQuota\": 500,\r\n \"poolQuota\": 100,\r\n \"activeJobAndJobScheduleQuota\": 300,\r\n \"poolAllocationMode\": \"BatchService\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"encryption\": {\r\n \"keySource\": \"Microsoft.Batch\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/677f962b-9abf-4423-a27b-0c2f4094dcec/resourceGroups/azsmnet6115/providers/Microsoft.Batch/batchAccounts/azsmnet9124\",\r\n \"name\": \"azsmnet9124\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"azsmnet9124.westcentralus.batch.azure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"dedicatedCoreQuota\": 700,\r\n \"dedicatedCoreQuotaPerVMFamily\": [\r\n {\r\n \"name\": \"standardAv2Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardDv2Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardDv3Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardEv3Family\",\r\n \"coreQuota\": 50\r\n },\r\n {\r\n \"name\": \"standardDSv2Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardDSv3Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardESv3Family\",\r\n \"coreQuota\": 50\r\n },\r\n {\r\n \"name\": \"standardFFamily\",\r\n \"coreQuota\": 50\r\n },\r\n {\r\n \"name\": \"standardFSFamily\",\r\n \"coreQuota\": 50\r\n },\r\n {\r\n \"name\": \"standardA0_A7Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardA8_A11Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardDFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardGFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"basicAFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNVFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNVPromoFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNCFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNCPromoFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHPromoFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardMSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardDSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardGSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardLSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardLSv2Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNCSv2Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNDSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNCSv3Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardFSv2Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHBSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHCSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNVSv3Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHBrsv2Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"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\": \"standardDDv4Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardDDSv4Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardEDv4Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardEDSv4Family\",\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 \"dedicatedCoreQuotaPerVMFamilyEnforced\": false,\r\n \"lowPriorityCoreQuota\": 500,\r\n \"poolQuota\": 100,\r\n \"activeJobAndJobScheduleQuota\": 300,\r\n \"poolAllocationMode\": \"BatchService\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"encryption\": {\r\n \"keySource\": \"Microsoft.Batch\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet4895/providers/Microsoft.Batch/batchAccounts/azsmnet6608?api-version=2020-05-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0ODk1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0NjYwOD9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestUri": "/subscriptions/677f962b-9abf-4423-a27b-0c2f4094dcec/resourceGroups/azsmnet6115/providers/Microsoft.Batch/batchAccounts/azsmnet9124?api-version=2020-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjc3Zjk2MmItOWFiZi00NDIzLWEyN2ItMGMyZjQwOTRkY2VjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2MTE1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0OTEyND9hcGktdmVyc2lvbj0yMDIwLTA5LTAx",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "688f9f8a-e5d8-4017-b1a2-9675cd22c136"
+ "85341052-1424-4d08-8c99-c073c457a4c8"
],
- "accept-language": [
+ "Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.26614.01",
+ "FxVersion/4.6.29220.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Batch.BatchManagementClient/10.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Batch.BatchManagementClient/11.0.0.0"
]
},
"ResponseHeaders": {
"Cache-Control": [
"no-cache"
],
- "Date": [
- "Fri, 29 May 2020 16:43:29 GMT"
- ],
"Pragma": [
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet6608-d4d724f5-7911-43b9-ae04-f1cddf550e9e?api-version=2020-05-01"
+ "https://management.azure.com/subscriptions/677f962b-9abf-4423-a27b-0c2f4094dcec/providers/Microsoft.Batch/locations/westcentralus/accountOperationResults/azsmnet9124-2d5d31c4-d530-4783-b0d4-fbb3ccc0a696?api-version=2020-09-01"
],
"Retry-After": [
"15"
],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ],
"x-ms-request-id": [
- "d4d724f5-7911-43b9-ae04-f1cddf550e9e"
+ "2d5d31c4-d530-4783-b0d4-fbb3ccc0a696"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -773,53 +767,53 @@
"X-Content-Type-Options": [
"nosniff"
],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
"x-ms-ratelimit-remaining-subscription-deletes": [
"14999"
],
"x-ms-correlation-request-id": [
- "846ab4b2-c647-40d4-a911-5791d39cfa5a"
+ "93139d62-47b6-4561-a856-1af5a960b742"
],
"x-ms-routing-request-id": [
- "WESTUS:20200529T164329Z:846ab4b2-c647-40d4-a911-5791d39cfa5a"
+ "WESTUS:20200928T200007Z:93139d62-47b6-4561-a856-1af5a960b742"
],
- "Content-Length": [
- "0"
+ "Date": [
+ "Mon, 28 Sep 2020 20:00:07 GMT"
],
"Expires": [
"-1"
+ ],
+ "Content-Length": [
+ "0"
]
},
"ResponseBody": "",
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet6608-d4d724f5-7911-43b9-ae04-f1cddf550e9e?api-version=2020-05-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0NjYwOC1kNGQ3MjRmNS03OTExLTQzYjktYWUwNC1mMWNkZGY1NTBlOWU/YXBpLXZlcnNpb249MjAyMC0wNS0wMQ==",
+ "RequestUri": "/subscriptions/677f962b-9abf-4423-a27b-0c2f4094dcec/providers/Microsoft.Batch/locations/westcentralus/accountOperationResults/azsmnet9124-2d5d31c4-d530-4783-b0d4-fbb3ccc0a696?api-version=2020-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjc3Zjk2MmItOWFiZi00NDIzLWEyN2ItMGMyZjQwOTRkY2VjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL3dlc3RjZW50cmFsdXMvYWNjb3VudE9wZXJhdGlvblJlc3VsdHMvYXpzbW5ldDkxMjQtMmQ1ZDMxYzQtZDUzMC00NzgzLWIwZDQtZmJiM2NjYzBhNjk2P2FwaS12ZXJzaW9uPTIwMjAtMDktMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.26614.01",
+ "FxVersion/4.6.29220.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Batch.BatchManagementClient/10.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Batch.BatchManagementClient/11.0.0.0"
]
},
"ResponseHeaders": {
"Cache-Control": [
"no-cache"
],
- "Date": [
- "Fri, 29 May 2020 16:43:44 GMT"
- ],
"Pragma": [
"no-cache"
],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ],
"x-ms-request-id": [
- "29245945-c950-4be1-b159-8b438dd1484d"
+ "cf507279-7d0a-4cfd-a006-f171fc2d3e1a"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -827,53 +821,53 @@
"X-Content-Type-Options": [
"nosniff"
],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
"x-ms-ratelimit-remaining-subscription-reads": [
"11996"
],
"x-ms-correlation-request-id": [
- "a5c65b48-baf2-4122-9702-6b6184cde588"
+ "47e7f074-d533-4bed-8357-fc8d8c291558"
],
"x-ms-routing-request-id": [
- "WESTUS:20200529T164344Z:a5c65b48-baf2-4122-9702-6b6184cde588"
+ "WESTUS:20200928T200022Z:47e7f074-d533-4bed-8357-fc8d8c291558"
],
- "Content-Length": [
- "0"
+ "Date": [
+ "Mon, 28 Sep 2020 20:00:22 GMT"
],
"Expires": [
"-1"
+ ],
+ "Content-Length": [
+ "0"
]
},
"ResponseBody": "",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet6608-d4d724f5-7911-43b9-ae04-f1cddf550e9e?api-version=2020-05-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0NjYwOC1kNGQ3MjRmNS03OTExLTQzYjktYWUwNC1mMWNkZGY1NTBlOWU/YXBpLXZlcnNpb249MjAyMC0wNS0wMQ==",
+ "RequestUri": "/subscriptions/677f962b-9abf-4423-a27b-0c2f4094dcec/providers/Microsoft.Batch/locations/westcentralus/accountOperationResults/azsmnet9124-2d5d31c4-d530-4783-b0d4-fbb3ccc0a696?api-version=2020-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjc3Zjk2MmItOWFiZi00NDIzLWEyN2ItMGMyZjQwOTRkY2VjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL3dlc3RjZW50cmFsdXMvYWNjb3VudE9wZXJhdGlvblJlc3VsdHMvYXpzbW5ldDkxMjQtMmQ1ZDMxYzQtZDUzMC00NzgzLWIwZDQtZmJiM2NjYzBhNjk2P2FwaS12ZXJzaW9uPTIwMjAtMDktMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.26614.01",
+ "FxVersion/4.6.29220.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Batch.BatchManagementClient/10.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Batch.BatchManagementClient/11.0.0.0"
]
},
"ResponseHeaders": {
"Cache-Control": [
"no-cache"
],
- "Date": [
- "Fri, 29 May 2020 16:43:44 GMT"
- ],
"Pragma": [
"no-cache"
],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ],
"x-ms-request-id": [
- "260e661c-cb87-45fc-ba38-d27fac695969"
+ "b6dc6741-2380-4f00-afcf-87a5f5d1732c"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -881,41 +875,47 @@
"X-Content-Type-Options": [
"nosniff"
],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
"x-ms-ratelimit-remaining-subscription-reads": [
"11995"
],
"x-ms-correlation-request-id": [
- "9e97bb9f-4f75-4531-b6f4-9ed31e0829fc"
+ "32ece314-2fbd-436c-a279-a7ce5d8602e9"
],
"x-ms-routing-request-id": [
- "WESTUS:20200529T164345Z:9e97bb9f-4f75-4531-b6f4-9ed31e0829fc"
+ "WESTUS:20200928T200022Z:32ece314-2fbd-436c-a279-a7ce5d8602e9"
],
- "Content-Length": [
- "0"
+ "Date": [
+ "Mon, 28 Sep 2020 20:00:22 GMT"
],
"Expires": [
"-1"
+ ],
+ "Content-Length": [
+ "0"
]
},
"ResponseBody": "",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourcegroups/azsmnet4895?api-version=2017-05-10",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQ0ODk1P2FwaS12ZXJzaW9uPTIwMTctMDUtMTA=",
+ "RequestUri": "/subscriptions/677f962b-9abf-4423-a27b-0c2f4094dcec/resourcegroups/azsmnet6115?api-version=2017-05-10",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjc3Zjk2MmItOWFiZi00NDIzLWEyN2ItMGMyZjQwOTRkY2VjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQ2MTE1P2FwaS12ZXJzaW9uPTIwMTctMDUtMTA=",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "d6c53ff8-279d-43df-a1b2-8c2c1d253b8e"
+ "a7003b95-ee47-4e4c-bb16-24874b769f31"
],
- "accept-language": [
+ "Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.26614.01",
+ "FxVersion/4.6.29220.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
"Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0"
]
},
@@ -923,14 +923,11 @@
"Cache-Control": [
"no-cache"
],
- "Date": [
- "Fri, 29 May 2020 16:43:45 GMT"
- ],
"Pragma": [
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUNDg5NS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2017-05-10"
+ "https://management.azure.com/subscriptions/677f962b-9abf-4423-a27b-0c2f4094dcec/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUNjExNS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2017-05-10"
],
"Retry-After": [
"15"
@@ -939,13 +936,13 @@
"14999"
],
"x-ms-request-id": [
- "aee09ba5-8b70-4f29-b0fe-86de16068e08"
+ "c3b710fa-b53e-49bd-ad31-82401fe897a3"
],
"x-ms-correlation-request-id": [
- "aee09ba5-8b70-4f29-b0fe-86de16068e08"
+ "c3b710fa-b53e-49bd-ad31-82401fe897a3"
],
"x-ms-routing-request-id": [
- "WESTUS:20200529T164346Z:aee09ba5-8b70-4f29-b0fe-86de16068e08"
+ "WESTUS:20200928T200023Z:c3b710fa-b53e-49bd-ad31-82401fe897a3"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -953,26 +950,29 @@
"X-Content-Type-Options": [
"nosniff"
],
- "Content-Length": [
- "0"
+ "Date": [
+ "Mon, 28 Sep 2020 20:00:23 GMT"
],
"Expires": [
"-1"
+ ],
+ "Content-Length": [
+ "0"
]
},
"ResponseBody": "",
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUNDg5NS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2017-05-10",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xOTlRrVlVORGc1TlMxRlFWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==",
+ "RequestUri": "/subscriptions/677f962b-9abf-4423-a27b-0c2f4094dcec/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUNjExNS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2017-05-10",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjc3Zjk2MmItOWFiZi00NDIzLWEyN2ItMGMyZjQwOTRkY2VjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xOTlRrVlVOakV4TlMxWFJWTlVRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wWTJWdWRISmhiSFZ6SW4wP2FwaS12ZXJzaW9uPTIwMTctMDUtMTA=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.26614.01",
+ "FxVersion/4.6.29220.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
"Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0"
]
},
@@ -980,29 +980,26 @@
"Cache-Control": [
"no-cache"
],
- "Date": [
- "Fri, 29 May 2020 16:44:01 GMT"
- ],
"Pragma": [
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUNDg5NS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2017-05-10"
+ "https://management.azure.com/subscriptions/677f962b-9abf-4423-a27b-0c2f4094dcec/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUNjExNS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2017-05-10"
],
"Retry-After": [
"15"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11999"
+ "11998"
],
"x-ms-request-id": [
- "ecf50a57-159a-4d1b-beca-f6ad8b808133"
+ "233da054-465d-4c34-874d-d0f20263047f"
],
"x-ms-correlation-request-id": [
- "ecf50a57-159a-4d1b-beca-f6ad8b808133"
+ "233da054-465d-4c34-874d-d0f20263047f"
],
"x-ms-routing-request-id": [
- "WESTUS:20200529T164402Z:ecf50a57-159a-4d1b-beca-f6ad8b808133"
+ "WESTUS:20200928T200038Z:233da054-465d-4c34-874d-d0f20263047f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1010,26 +1007,29 @@
"X-Content-Type-Options": [
"nosniff"
],
- "Content-Length": [
- "0"
+ "Date": [
+ "Mon, 28 Sep 2020 20:00:38 GMT"
],
"Expires": [
"-1"
+ ],
+ "Content-Length": [
+ "0"
]
},
"ResponseBody": "",
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUNDg5NS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2017-05-10",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xOTlRrVlVORGc1TlMxRlFWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==",
+ "RequestUri": "/subscriptions/677f962b-9abf-4423-a27b-0c2f4094dcec/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUNjExNS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2017-05-10",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjc3Zjk2MmItOWFiZi00NDIzLWEyN2ItMGMyZjQwOTRkY2VjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xOTlRrVlVOakV4TlMxWFJWTlVRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wWTJWdWRISmhiSFZ6SW4wP2FwaS12ZXJzaW9uPTIwMTctMDUtMTA=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.26614.01",
+ "FxVersion/4.6.29220.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
"Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0"
]
},
@@ -1037,29 +1037,26 @@
"Cache-Control": [
"no-cache"
],
- "Date": [
- "Fri, 29 May 2020 16:44:16 GMT"
- ],
"Pragma": [
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUNDg5NS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2017-05-10"
+ "https://management.azure.com/subscriptions/677f962b-9abf-4423-a27b-0c2f4094dcec/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUNjExNS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2017-05-10"
],
"Retry-After": [
"15"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11998"
+ "11997"
],
"x-ms-request-id": [
- "940f4bbe-0c64-45d1-8c0f-12bc78acf42e"
+ "3ea40bb1-38a2-49b7-950c-8ae1328282a4"
],
"x-ms-correlation-request-id": [
- "940f4bbe-0c64-45d1-8c0f-12bc78acf42e"
+ "3ea40bb1-38a2-49b7-950c-8ae1328282a4"
],
"x-ms-routing-request-id": [
- "WESTUS:20200529T164417Z:940f4bbe-0c64-45d1-8c0f-12bc78acf42e"
+ "WESTUS:20200928T200053Z:3ea40bb1-38a2-49b7-950c-8ae1328282a4"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1067,26 +1064,29 @@
"X-Content-Type-Options": [
"nosniff"
],
- "Content-Length": [
- "0"
+ "Date": [
+ "Mon, 28 Sep 2020 20:00:53 GMT"
],
"Expires": [
"-1"
+ ],
+ "Content-Length": [
+ "0"
]
},
"ResponseBody": "",
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUNDg5NS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2017-05-10",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xOTlRrVlVORGc1TlMxRlFWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==",
+ "RequestUri": "/subscriptions/677f962b-9abf-4423-a27b-0c2f4094dcec/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUNjExNS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2017-05-10",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjc3Zjk2MmItOWFiZi00NDIzLWEyN2ItMGMyZjQwOTRkY2VjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xOTlRrVlVOakV4TlMxWFJWTlVRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wWTJWdWRISmhiSFZ6SW4wP2FwaS12ZXJzaW9uPTIwMTctMDUtMTA=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.26614.01",
+ "FxVersion/4.6.29220.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
"Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0"
]
},
@@ -1094,23 +1094,20 @@
"Cache-Control": [
"no-cache"
],
- "Date": [
- "Fri, 29 May 2020 16:44:31 GMT"
- ],
"Pragma": [
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11997"
+ "11996"
],
"x-ms-request-id": [
- "51062712-9f0b-4e06-a344-87918044946f"
+ "34dcab87-173d-4ceb-aac4-32833defb355"
],
"x-ms-correlation-request-id": [
- "51062712-9f0b-4e06-a344-87918044946f"
+ "34dcab87-173d-4ceb-aac4-32833defb355"
],
"x-ms-routing-request-id": [
- "WESTUS:20200529T164432Z:51062712-9f0b-4e06-a344-87918044946f"
+ "WESTUS:20200928T200108Z:34dcab87-173d-4ceb-aac4-32833defb355"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1118,26 +1115,29 @@
"X-Content-Type-Options": [
"nosniff"
],
- "Content-Length": [
- "0"
+ "Date": [
+ "Mon, 28 Sep 2020 20:01:08 GMT"
],
"Expires": [
"-1"
+ ],
+ "Content-Length": [
+ "0"
]
},
"ResponseBody": "",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUNDg5NS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2017-05-10",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xOTlRrVlVORGc1TlMxRlFWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==",
+ "RequestUri": "/subscriptions/677f962b-9abf-4423-a27b-0c2f4094dcec/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUNjExNS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2017-05-10",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjc3Zjk2MmItOWFiZi00NDIzLWEyN2ItMGMyZjQwOTRkY2VjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xOTlRrVlVOakV4TlMxWFJWTlVRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wWTJWdWRISmhiSFZ6SW4wP2FwaS12ZXJzaW9uPTIwMTctMDUtMTA=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.26614.01",
+ "FxVersion/4.6.29220.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
"Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0"
]
},
@@ -1145,23 +1145,20 @@
"Cache-Control": [
"no-cache"
],
- "Date": [
- "Fri, 29 May 2020 16:44:31 GMT"
- ],
"Pragma": [
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11996"
+ "11995"
],
"x-ms-request-id": [
- "d4d3dd06-8894-4489-99f0-e9fd56970740"
+ "9d4d3e8f-fb2f-4920-9573-27572667a3f6"
],
"x-ms-correlation-request-id": [
- "d4d3dd06-8894-4489-99f0-e9fd56970740"
+ "9d4d3e8f-fb2f-4920-9573-27572667a3f6"
],
"x-ms-routing-request-id": [
- "WESTUS:20200529T164432Z:d4d3dd06-8894-4489-99f0-e9fd56970740"
+ "WESTUS:20200928T200108Z:9d4d3e8f-fb2f-4920-9573-27572667a3f6"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1169,11 +1166,14 @@
"X-Content-Type-Options": [
"nosniff"
],
- "Content-Length": [
- "0"
+ "Date": [
+ "Mon, 28 Sep 2020 20:01:08 GMT"
],
"Expires": [
"-1"
+ ],
+ "Content-Length": [
+ "0"
]
},
"ResponseBody": "",
@@ -1182,11 +1182,11 @@
],
"Names": {
"BatchAccountEndToEndAsync": [
- "azsmnet4895",
- "azsmnet6608"
+ "azsmnet6115",
+ "azsmnet9124"
]
},
"Variables": {
- "SubscriptionId": "21abd678-18c5-4660-9fdd-8c5ba6b6fe1f"
+ "SubscriptionId": "677f962b-9abf-4423-a27b-0c2f4094dcec"
}
}
\ No newline at end of file
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 71436eda0a3e4..d50aac59d7234 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
@@ -1,21 +1,21 @@
{
"Entries": [
{
- "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch?api-version=2017-05-10",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2g/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==",
+ "RequestUri": "/subscriptions/677f962b-9abf-4423-a27b-0c2f4094dcec/providers/Microsoft.Batch?api-version=2017-05-10",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjc3Zjk2MmItOWFiZi00NDIzLWEyN2ItMGMyZjQwOTRkY2VjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2g/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "98d25511-36dd-4bfe-aa7e-675abe38f150"
+ "9d97d2e1-0911-4947-83ef-83efa35a6cce"
],
- "accept-language": [
+ "Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.26614.01",
+ "FxVersion/4.6.29220.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
"Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0"
]
},
@@ -23,9 +23,6 @@
"Cache-Control": [
"no-cache"
],
- "Date": [
- "Fri, 29 May 2020 16:32:38 GMT"
- ],
"Pragma": [
"no-cache"
],
@@ -33,13 +30,13 @@
"11999"
],
"x-ms-request-id": [
- "879a81b6-cb23-4511-9b2a-3788e6bcccbf"
+ "b6621a91-8a1f-4e54-be52-64a5a0891560"
],
"x-ms-correlation-request-id": [
- "879a81b6-cb23-4511-9b2a-3788e6bcccbf"
+ "b6621a91-8a1f-4e54-be52-64a5a0891560"
],
"x-ms-routing-request-id": [
- "WESTUS:20200529T163238Z:879a81b6-cb23-4511-9b2a-3788e6bcccbf"
+ "WESTUS:20200928T200109Z:b6621a91-8a1f-4e54-be52-64a5a0891560"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -47,51 +44,51 @@
"X-Content-Type-Options": [
"nosniff"
],
- "Content-Length": [
- "4871"
+ "Date": [
+ "Mon, 28 Sep 2020 20:01:08 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
],
"Expires": [
"-1"
+ ],
+ "Content-Length": [
+ "4774"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch\",\r\n \"namespace\": \"Microsoft.Batch\",\r\n \"authorization\": {\r\n \"applicationId\": \"ddbf3205-c6bd-46ae-8127-60eb93363864\",\r\n \"roleDefinitionId\": \"b7f84953-1d03-4eab-9ea4-45f065258ff8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"batchAccounts\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\",\r\n \"2015-07-01\",\r\n \"2014-05-01-privatepreview\"\r\n ],\r\n \"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\": \"operations\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ],\r\n \"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 \"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\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ],\r\n \"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\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\"\r\n ],\r\n \"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\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\",\r\n \"2015-07-01\",\r\n \"2014-05-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/677f962b-9abf-4423-a27b-0c2f4094dcec/providers/Microsoft.Batch\",\r\n \"namespace\": \"Microsoft.Batch\",\r\n \"authorization\": {\r\n \"applicationId\": \"ddbf3205-c6bd-46ae-8127-60eb93363864\",\r\n \"roleDefinitionId\": \"b7f84953-1d03-4eab-9ea4-45f065258ff8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"batchAccounts\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\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\": \"operations\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\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 \"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\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\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\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\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\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\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}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourcegroups/azsmnet1881?api-version=2017-05-10",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQxODgxP2FwaS12ZXJzaW9uPTIwMTctMDUtMTA=",
+ "RequestUri": "/subscriptions/677f962b-9abf-4423-a27b-0c2f4094dcec/resourcegroups/azsmnet2634?api-version=2017-05-10",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjc3Zjk2MmItOWFiZi00NDIzLWEyN2ItMGMyZjQwOTRkY2VjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQyNjM0P2FwaS12ZXJzaW9uPTIwMTctMDUtMTA=",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"location\": \"East US\"\r\n}",
+ "RequestBody": "{\r\n \"location\": \"West Central US\"\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "47091f67-d6ed-46d9-9e44-ed3cb1576b95"
+ "613bbcaa-c74d-43b1-b2e7-ea058a2be3d6"
],
- "accept-language": [
+ "Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.26614.01",
+ "FxVersion/4.6.29220.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
"Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
],
"Content-Length": [
- "29"
+ "37"
]
},
"ResponseHeaders": {
"Cache-Control": [
"no-cache"
],
- "Date": [
- "Fri, 29 May 2020 16:32:39 GMT"
- ],
"Pragma": [
"no-cache"
],
@@ -99,13 +96,13 @@
"1199"
],
"x-ms-request-id": [
- "9c59a59b-32f2-4184-aa65-e444a167c094"
+ "1270a5c9-b65e-4aef-be34-4f43134d030c"
],
"x-ms-correlation-request-id": [
- "9c59a59b-32f2-4184-aa65-e444a167c094"
+ "1270a5c9-b65e-4aef-be34-4f43134d030c"
],
"x-ms-routing-request-id": [
- "WESTUS:20200529T163239Z:9c59a59b-32f2-4184-aa65-e444a167c094"
+ "WESTUS:20200928T200110Z:1270a5c9-b65e-4aef-be34-4f43134d030c"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -113,8 +110,11 @@
"X-Content-Type-Options": [
"nosniff"
],
+ "Date": [
+ "Mon, 28 Sep 2020 20:01:09 GMT"
+ ],
"Content-Length": [
- "175"
+ "182"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -123,55 +123,49 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet1881\",\r\n \"name\": \"azsmnet1881\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/677f962b-9abf-4423-a27b-0c2f4094dcec/resourceGroups/azsmnet2634\",\r\n \"name\": \"azsmnet2634\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet1881/providers/Microsoft.Batch/batchAccounts/azsmnet8147?api-version=2020-05-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQxODgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0ODE0Nz9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestUri": "/subscriptions/677f962b-9abf-4423-a27b-0c2f4094dcec/resourceGroups/azsmnet2634/providers/Microsoft.Batch/batchAccounts/azsmnet8359?api-version=2020-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjc3Zjk2MmItOWFiZi00NDIzLWEyN2ItMGMyZjQwOTRkY2VjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyNjM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0ODM1OT9hcGktdmVyc2lvbj0yMDIwLTA5LTAx",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"location\": \"East US\"\r\n}",
+ "RequestBody": "{\r\n \"location\": \"West Central US\"\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "2aa8e864-27b3-4d21-9bf9-74ff4d599f0f"
+ "889f2e4b-a30d-4081-9c13-bf2b99ac480d"
],
- "accept-language": [
+ "Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.26614.01",
+ "FxVersion/4.6.29220.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Batch.BatchManagementClient/10.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Batch.BatchManagementClient/11.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
],
"Content-Length": [
- "29"
+ "37"
]
},
"ResponseHeaders": {
"Cache-Control": [
"no-cache"
],
- "Date": [
- "Fri, 29 May 2020 16:32:42 GMT"
- ],
"Pragma": [
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet1881/providers/Microsoft.Batch/batchAccounts/azsmnet8147/operationResults/00377671-2a00-4a90-ae64-5fefe4c6ac3a?api-version=2020-05-01"
+ "https://management.azure.com/subscriptions/677f962b-9abf-4423-a27b-0c2f4094dcec/resourceGroups/azsmnet2634/providers/Microsoft.Batch/batchAccounts/azsmnet8359/operationResults/8d124556-f712-4c68-b2d5-f4058be4a614?api-version=2020-09-01"
],
"Retry-After": [
"15"
],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ],
"x-ms-request-id": [
- "00377671-2a00-4a90-ae64-5fefe4c6ac3a"
+ "8d124556-f712-4c68-b2d5-f4058be4a614"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -179,59 +173,59 @@
"X-Content-Type-Options": [
"nosniff"
],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
"x-ms-ratelimit-remaining-subscription-writes": [
"1199"
],
"x-ms-correlation-request-id": [
- "ba3a103d-9791-481c-9c2a-a088fd19f7f5"
+ "5e4e6438-ffbf-42e2-bc27-c56eac9f28ac"
],
"x-ms-routing-request-id": [
- "WESTUS:20200529T163243Z:ba3a103d-9791-481c-9c2a-a088fd19f7f5"
+ "WESTUS:20200928T200112Z:5e4e6438-ffbf-42e2-bc27-c56eac9f28ac"
],
- "Content-Length": [
- "0"
+ "Date": [
+ "Mon, 28 Sep 2020 20:01:12 GMT"
],
"Expires": [
"-1"
+ ],
+ "Content-Length": [
+ "0"
]
},
"ResponseBody": "",
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet1881/providers/Microsoft.Batch/batchAccounts/azsmnet8147/operationResults/00377671-2a00-4a90-ae64-5fefe4c6ac3a?api-version=2020-05-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQxODgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0ODE0Ny9vcGVyYXRpb25SZXN1bHRzLzAwMzc3NjcxLTJhMDAtNGE5MC1hZTY0LTVmZWZlNGM2YWMzYT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestUri": "/subscriptions/677f962b-9abf-4423-a27b-0c2f4094dcec/resourceGroups/azsmnet2634/providers/Microsoft.Batch/batchAccounts/azsmnet8359/operationResults/8d124556-f712-4c68-b2d5-f4058be4a614?api-version=2020-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjc3Zjk2MmItOWFiZi00NDIzLWEyN2ItMGMyZjQwOTRkY2VjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyNjM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0ODM1OS9vcGVyYXRpb25SZXN1bHRzLzhkMTI0NTU2LWY3MTItNGM2OC1iMmQ1LWY0MDU4YmU0YTYxND9hcGktdmVyc2lvbj0yMDIwLTA5LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.26614.01",
+ "FxVersion/4.6.29220.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Batch.BatchManagementClient/10.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Batch.BatchManagementClient/11.0.0.0"
]
},
"ResponseHeaders": {
"Cache-Control": [
"no-cache"
],
- "Date": [
- "Fri, 29 May 2020 16:32:57 GMT"
- ],
"Pragma": [
"no-cache"
],
"ETag": [
- "\"0x8D803EDF2846B12\""
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
+ "\"0x8D863E948E3FEF5\""
],
"x-ms-ratelimit-remaining-subscription-reads": [
"11999"
],
"x-ms-request-id": [
- "454c1c86-b741-4415-87db-9d4019a668c8"
+ "e0f206b4-e167-4d39-8940-a104a7194ac2"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -239,14 +233,20 @@
"X-Content-Type-Options": [
"nosniff"
],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
"x-ms-correlation-request-id": [
- "a1f80306-e86a-4998-89a8-afdf13b3affc"
+ "675dd136-f5ad-49c0-825f-e26933c7dc72"
],
"x-ms-routing-request-id": [
- "WESTUS:20200529T163258Z:a1f80306-e86a-4998-89a8-afdf13b3affc"
+ "WESTUS:20200928T200127Z:675dd136-f5ad-49c0-825f-e26933c7dc72"
+ ],
+ "Date": [
+ "Mon, 28 Sep 2020 20:01:27 GMT"
],
"Content-Length": [
- "2232"
+ "2545"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -255,29 +255,29 @@
"-1"
],
"Last-Modified": [
- "Fri, 29 May 2020 16:32:58 GMT"
+ "Mon, 28 Sep 2020 20:01:27 GMT"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet1881/providers/Microsoft.Batch/batchAccounts/azsmnet8147\",\r\n \"name\": \"azsmnet8147\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"azsmnet8147.pilotprod2.eastus.batch.azure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"dedicatedCoreQuota\": 700,\r\n \"dedicatedCoreQuotaPerVMFamily\": [\r\n {\r\n \"name\": \"standardAv2Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardDv2Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardDv3Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardEv3Family\",\r\n \"coreQuota\": 50\r\n },\r\n {\r\n \"name\": \"standardDSv2Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardDSv3Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardESv3Family\",\r\n \"coreQuota\": 50\r\n },\r\n {\r\n \"name\": \"standardFFamily\",\r\n \"coreQuota\": 50\r\n },\r\n {\r\n \"name\": \"standardFSFamily\",\r\n \"coreQuota\": 50\r\n },\r\n {\r\n \"name\": \"standardA0_A7Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardA8_A11Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardDFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardGFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"basicAFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNVFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNVPromoFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNCFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNCPromoFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHPromoFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardMSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardDSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardGSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardLSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardLSv2Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNCSv2Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNDSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNCSv3Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardFSv2Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHBSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHCSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNVSv3Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHBrsv2Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardDASv4Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardEAv4Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardEASv4Family\",\r\n \"coreQuota\": 0\r\n }\r\n ],\r\n \"dedicatedCoreQuotaPerVMFamilyEnforced\": false,\r\n \"lowPriorityCoreQuota\": 500,\r\n \"poolQuota\": 100,\r\n \"activeJobAndJobScheduleQuota\": 300,\r\n \"poolAllocationMode\": \"BatchService\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"encryption\": {\r\n \"keySource\": \"Microsoft.Batch\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/677f962b-9abf-4423-a27b-0c2f4094dcec/resourceGroups/azsmnet2634/providers/Microsoft.Batch/batchAccounts/azsmnet8359\",\r\n \"name\": \"azsmnet8359\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"azsmnet8359.westcentralus.batch.azure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"dedicatedCoreQuota\": 700,\r\n \"dedicatedCoreQuotaPerVMFamily\": [\r\n {\r\n \"name\": \"standardAv2Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardDv2Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardDv3Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardEv3Family\",\r\n \"coreQuota\": 50\r\n },\r\n {\r\n \"name\": \"standardDSv2Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardDSv3Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardESv3Family\",\r\n \"coreQuota\": 50\r\n },\r\n {\r\n \"name\": \"standardFFamily\",\r\n \"coreQuota\": 50\r\n },\r\n {\r\n \"name\": \"standardFSFamily\",\r\n \"coreQuota\": 50\r\n },\r\n {\r\n \"name\": \"standardA0_A7Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardA8_A11Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardDFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardGFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"basicAFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNVFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNVPromoFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNCFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNCPromoFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHPromoFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardMSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardDSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardGSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardLSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardLSv2Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNCSv2Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNDSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNCSv3Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardFSv2Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHBSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHCSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNVSv3Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHBrsv2Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"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\": \"standardDDv4Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardDDSv4Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardEDv4Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardEDSv4Family\",\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 \"dedicatedCoreQuotaPerVMFamilyEnforced\": false,\r\n \"lowPriorityCoreQuota\": 500,\r\n \"poolQuota\": 100,\r\n \"activeJobAndJobScheduleQuota\": 300,\r\n \"poolAllocationMode\": \"BatchService\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"encryption\": {\r\n \"keySource\": \"Microsoft.Batch\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet1881/providers/Microsoft.Batch/batchAccounts/azsmnet8147/certificates/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7?api-version=2020-05-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQxODgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0ODE0Ny9jZXJ0aWZpY2F0ZXMvc2hhMS1jZmYyYWI2M2M4Yzk1NWFhZjcxOTg5ZWZhNjQxYjkwNjU1OGQ5ZmI3P2FwaS12ZXJzaW9uPTIwMjAtMDUtMDE=",
+ "RequestUri": "/subscriptions/677f962b-9abf-4423-a27b-0c2f4094dcec/resourceGroups/azsmnet2634/providers/Microsoft.Batch/batchAccounts/azsmnet8359/certificates/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7?api-version=2020-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjc3Zjk2MmItOWFiZi00NDIzLWEyN2ItMGMyZjQwOTRkY2VjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyNjM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0ODM1OS9jZXJ0aWZpY2F0ZXMvc2hhMS1jZmYyYWI2M2M4Yzk1NWFhZjcxOTg5ZWZhNjQxYjkwNjU1OGQ5ZmI3P2FwaS12ZXJzaW9uPTIwMjAtMDktMDE=",
"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": [
- "eaeae8dd-2ab9-42df-acb0-6a934c55d821"
+ "6fd43fb4-69f3-4cb0-8223-4431b474b1ec"
],
- "accept-language": [
+ "Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.26614.01",
+ "FxVersion/4.6.29220.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Batch.BatchManagementClient/10.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Batch.BatchManagementClient/11.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -290,23 +290,17 @@
"Cache-Control": [
"no-cache"
],
- "Date": [
- "Fri, 29 May 2020 16:32:58 GMT"
- ],
"Pragma": [
"no-cache"
],
"ETag": [
- "W/\"0x8D803EDF2B4E0AE\""
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
+ "W/\"0x8D863E9490EADB1\""
],
"x-ms-ratelimit-remaining-subscription-writes": [
"1198"
],
"x-ms-request-id": [
- "ed5c2d8a-0b2a-4068-b787-7334100ee498"
+ "f9d00e8b-7a17-4808-8fba-a5a82276107e"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -314,11 +308,17 @@
"X-Content-Type-Options": [
"nosniff"
],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
"x-ms-correlation-request-id": [
- "ce9a387a-46d8-4b06-8456-15e6560b0caf"
+ "2c7931ec-d29b-40f3-ba5a-56d5f881058f"
],
"x-ms-routing-request-id": [
- "WESTUS:20200529T163258Z:ce9a387a-46d8-4b06-8456-15e6560b0caf"
+ "WESTUS:20200928T200127Z:2c7931ec-d29b-40f3-ba5a-56d5f881058f"
+ ],
+ "Date": [
+ "Mon, 28 Sep 2020 20:01:27 GMT"
],
"Content-Length": [
"1146"
@@ -330,49 +330,43 @@
"-1"
],
"Last-Modified": [
- "Fri, 29 May 2020 16:32:58 GMT"
+ "Mon, 28 Sep 2020 20:01:27 GMT"
]
},
- "ResponseBody": "{\r\n \"name\": \"sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7\",\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet1881/providers/Microsoft.Batch/batchAccounts/azsmnet8147/certificates/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7\",\r\n \"type\": \"Microsoft.Batch/batchAccounts/certificates\",\r\n \"etag\": \"W/\\\"0x8D803EDF2B4E0AE\\\"\",\r\n \"properties\": {\r\n \"thumbprintAlgorithm\": \"sha1\",\r\n \"thumbprint\": \"cff2ab63c8c955aaf71989efa641b906558d9fb7\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"provisioningStateTransitionTime\": \"2020-05-29T16:32:58.6934881Z\",\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/677f962b-9abf-4423-a27b-0c2f4094dcec/resourceGroups/azsmnet2634/providers/Microsoft.Batch/batchAccounts/azsmnet8359/certificates/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7\",\r\n \"type\": \"Microsoft.Batch/batchAccounts/certificates\",\r\n \"etag\": \"W/\\\"0x8D863E9490EADB1\\\"\",\r\n \"properties\": {\r\n \"thumbprintAlgorithm\": \"sha1\",\r\n \"thumbprint\": \"cff2ab63c8c955aaf71989efa641b906558d9fb7\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"provisioningStateTransitionTime\": \"2020-09-28T20:01:27.7116948Z\",\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/azsmnet1881/providers/Microsoft.Batch/batchAccounts/azsmnet8147/certificates?api-version=2020-05-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQxODgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0ODE0Ny9jZXJ0aWZpY2F0ZXM/YXBpLXZlcnNpb249MjAyMC0wNS0wMQ==",
+ "RequestUri": "/subscriptions/677f962b-9abf-4423-a27b-0c2f4094dcec/resourceGroups/azsmnet2634/providers/Microsoft.Batch/batchAccounts/azsmnet8359/certificates?api-version=2020-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjc3Zjk2MmItOWFiZi00NDIzLWEyN2ItMGMyZjQwOTRkY2VjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyNjM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0ODM1OS9jZXJ0aWZpY2F0ZXM/YXBpLXZlcnNpb249MjAyMC0wOS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "ce6465c5-e78c-4ab1-9b4c-83b7aa29cbf0"
+ "4536604d-3ca3-49a1-b436-9424e227b06f"
],
- "accept-language": [
+ "Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.26614.01",
+ "FxVersion/4.6.29220.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Batch.BatchManagementClient/10.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Batch.BatchManagementClient/11.0.0.0"
]
},
"ResponseHeaders": {
"Cache-Control": [
"no-cache"
],
- "Date": [
- "Fri, 29 May 2020 16:32:58 GMT"
- ],
"Pragma": [
"no-cache"
],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ],
"x-ms-ratelimit-remaining-subscription-reads": [
"11998"
],
"x-ms-request-id": [
- "cd41d75d-8f8d-4793-a5a9-ea9c7eabd74e"
+ "488a2846-aa78-47b7-b56e-334523a9d449"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -380,11 +374,17 @@
"X-Content-Type-Options": [
"nosniff"
],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
"x-ms-correlation-request-id": [
- "b8725ee0-d443-4adf-bc3e-fb91c086138d"
+ "24d3fb72-2cbe-40bb-9970-48e2db93585f"
],
"x-ms-routing-request-id": [
- "WESTUS:20200529T163259Z:b8725ee0-d443-4adf-bc3e-fb91c086138d"
+ "WESTUS:20200928T200127Z:24d3fb72-2cbe-40bb-9970-48e2db93585f"
+ ],
+ "Date": [
+ "Mon, 28 Sep 2020 20:01:27 GMT"
],
"Content-Length": [
"1158"
@@ -396,49 +396,43 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7\",\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet1881/providers/Microsoft.Batch/batchAccounts/azsmnet8147/certificates/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7\",\r\n \"type\": \"Microsoft.Batch/batchAccounts/certificates\",\r\n \"etag\": \"W/\\\"0x8D803EDF2B4E0AE\\\"\",\r\n \"properties\": {\r\n \"thumbprintAlgorithm\": \"sha1\",\r\n \"thumbprint\": \"cff2ab63c8c955aaf71989efa641b906558d9fb7\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"provisioningStateTransitionTime\": \"2020-05-29T16:32:58.6934881Z\",\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/677f962b-9abf-4423-a27b-0c2f4094dcec/resourceGroups/azsmnet2634/providers/Microsoft.Batch/batchAccounts/azsmnet8359/certificates/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7\",\r\n \"type\": \"Microsoft.Batch/batchAccounts/certificates\",\r\n \"etag\": \"W/\\\"0x8D863E9490EADB1\\\"\",\r\n \"properties\": {\r\n \"thumbprintAlgorithm\": \"sha1\",\r\n \"thumbprint\": \"cff2ab63c8c955aaf71989efa641b906558d9fb7\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"provisioningStateTransitionTime\": \"2020-09-28T20:01:27.7116948Z\",\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/azsmnet1881/providers/Microsoft.Batch/batchAccounts/azsmnet8147/certificates/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7?api-version=2020-05-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQxODgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0ODE0Ny9jZXJ0aWZpY2F0ZXMvc2hhMS1jZmYyYWI2M2M4Yzk1NWFhZjcxOTg5ZWZhNjQxYjkwNjU1OGQ5ZmI3P2FwaS12ZXJzaW9uPTIwMjAtMDUtMDE=",
+ "RequestUri": "/subscriptions/677f962b-9abf-4423-a27b-0c2f4094dcec/resourceGroups/azsmnet2634/providers/Microsoft.Batch/batchAccounts/azsmnet8359/certificates/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7?api-version=2020-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjc3Zjk2MmItOWFiZi00NDIzLWEyN2ItMGMyZjQwOTRkY2VjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyNjM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0ODM1OS9jZXJ0aWZpY2F0ZXMvc2hhMS1jZmYyYWI2M2M4Yzk1NWFhZjcxOTg5ZWZhNjQxYjkwNjU1OGQ5ZmI3P2FwaS12ZXJzaW9uPTIwMjAtMDktMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "6b943a25-65f4-4834-86ad-d0501721409b"
+ "63cbd94f-b68c-4a1f-893c-8ed118238d1d"
],
- "accept-language": [
+ "Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.26614.01",
+ "FxVersion/4.6.29220.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Batch.BatchManagementClient/10.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Batch.BatchManagementClient/11.0.0.0"
]
},
"ResponseHeaders": {
"Cache-Control": [
"no-cache"
],
- "Date": [
- "Fri, 29 May 2020 16:32:58 GMT"
- ],
"Pragma": [
"no-cache"
],
"ETag": [
- "W/\"0x8D803EDF2B4E0AE\""
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
+ "W/\"0x8D863E9490EADB1\""
],
"x-ms-ratelimit-remaining-subscription-reads": [
"11997"
],
"x-ms-request-id": [
- "71b88a9e-95b4-4734-9a86-db218cef334f"
+ "9dd36119-defe-4fc3-a728-d2fda0728db4"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -446,11 +440,17 @@
"X-Content-Type-Options": [
"nosniff"
],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
"x-ms-correlation-request-id": [
- "8630dc97-704a-4e48-b88b-55d5bca1a0c1"
+ "22f89c56-c59d-47de-b0ff-85357ae387fc"
],
"x-ms-routing-request-id": [
- "WESTUS:20200529T163259Z:8630dc97-704a-4e48-b88b-55d5bca1a0c1"
+ "WESTUS:20200928T200127Z:22f89c56-c59d-47de-b0ff-85357ae387fc"
+ ],
+ "Date": [
+ "Mon, 28 Sep 2020 20:01:27 GMT"
],
"Content-Length": [
"1146"
@@ -462,49 +462,43 @@
"-1"
],
"Last-Modified": [
- "Fri, 29 May 2020 16:32:58 GMT"
+ "Mon, 28 Sep 2020 20:01:27 GMT"
]
},
- "ResponseBody": "{\r\n \"name\": \"sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7\",\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet1881/providers/Microsoft.Batch/batchAccounts/azsmnet8147/certificates/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7\",\r\n \"type\": \"Microsoft.Batch/batchAccounts/certificates\",\r\n \"etag\": \"W/\\\"0x8D803EDF2B4E0AE\\\"\",\r\n \"properties\": {\r\n \"thumbprintAlgorithm\": \"sha1\",\r\n \"thumbprint\": \"cff2ab63c8c955aaf71989efa641b906558d9fb7\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"provisioningStateTransitionTime\": \"2020-05-29T16:32:58.6934881Z\",\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/677f962b-9abf-4423-a27b-0c2f4094dcec/resourceGroups/azsmnet2634/providers/Microsoft.Batch/batchAccounts/azsmnet8359/certificates/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7\",\r\n \"type\": \"Microsoft.Batch/batchAccounts/certificates\",\r\n \"etag\": \"W/\\\"0x8D863E9490EADB1\\\"\",\r\n \"properties\": {\r\n \"thumbprintAlgorithm\": \"sha1\",\r\n \"thumbprint\": \"cff2ab63c8c955aaf71989efa641b906558d9fb7\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"provisioningStateTransitionTime\": \"2020-09-28T20:01:27.7116948Z\",\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/azsmnet1881/providers/Microsoft.Batch/batchAccounts/azsmnet8147/certificates/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7?api-version=2020-05-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQxODgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0ODE0Ny9jZXJ0aWZpY2F0ZXMvc2hhMS1jZmYyYWI2M2M4Yzk1NWFhZjcxOTg5ZWZhNjQxYjkwNjU1OGQ5ZmI3P2FwaS12ZXJzaW9uPTIwMjAtMDUtMDE=",
+ "RequestUri": "/subscriptions/677f962b-9abf-4423-a27b-0c2f4094dcec/resourceGroups/azsmnet2634/providers/Microsoft.Batch/batchAccounts/azsmnet8359/certificates/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7?api-version=2020-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjc3Zjk2MmItOWFiZi00NDIzLWEyN2ItMGMyZjQwOTRkY2VjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyNjM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0ODM1OS9jZXJ0aWZpY2F0ZXMvc2hhMS1jZmYyYWI2M2M4Yzk1NWFhZjcxOTg5ZWZhNjQxYjkwNjU1OGQ5ZmI3P2FwaS12ZXJzaW9uPTIwMjAtMDktMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "94c68dcd-da37-4b85-9618-38ddf231e911"
+ "9ae109a7-b93c-494e-8d41-fd9ef00662f0"
],
- "accept-language": [
+ "Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.26614.01",
+ "FxVersion/4.6.29220.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Batch.BatchManagementClient/10.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Batch.BatchManagementClient/11.0.0.0"
]
},
"ResponseHeaders": {
"Cache-Control": [
"no-cache"
],
- "Date": [
- "Fri, 29 May 2020 16:34:15 GMT"
- ],
"Pragma": [
"no-cache"
],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11990"
+ "11991"
],
"x-ms-request-id": [
- "83910c29-d8cd-4ab4-b42e-264c67a07b4d"
+ "706bbdc0-da7e-4fe1-844f-a48403a09d9b"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -512,11 +506,17 @@
"X-Content-Type-Options": [
"nosniff"
],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
"x-ms-correlation-request-id": [
- "52262839-7ec1-4e21-b76c-95aaf123f19f"
+ "bdd29356-b1ba-4916-a5ec-1c239bf3a94e"
],
"x-ms-routing-request-id": [
- "WESTUS:20200529T163416Z:52262839-7ec1-4e21-b76c-95aaf123f19f"
+ "WESTUS:20200928T200228Z:bdd29356-b1ba-4916-a5ec-1c239bf3a94e"
+ ],
+ "Date": [
+ "Mon, 28 Sep 2020 20:02:28 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:83910c29-d8cd-4ab4-b42e-264c67a07b4d\\nTime:2020-05-29T16:34:16.0524810Z\",\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:706bbdc0-da7e-4fe1-844f-a48403a09d9b\\nTime:2020-09-28T20:02:28.9845619Z\",\r\n \"target\": \"BatchAccount\"\r\n }\r\n}",
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet1881/providers/Microsoft.Batch/batchAccounts/azsmnet8147/certificates/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7?api-version=2020-05-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQxODgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0ODE0Ny9jZXJ0aWZpY2F0ZXMvc2hhMS1jZmYyYWI2M2M4Yzk1NWFhZjcxOTg5ZWZhNjQxYjkwNjU1OGQ5ZmI3P2FwaS12ZXJzaW9uPTIwMjAtMDUtMDE=",
+ "RequestUri": "/subscriptions/677f962b-9abf-4423-a27b-0c2f4094dcec/resourceGroups/azsmnet2634/providers/Microsoft.Batch/batchAccounts/azsmnet8359/certificates/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7?api-version=2020-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjc3Zjk2MmItOWFiZi00NDIzLWEyN2ItMGMyZjQwOTRkY2VjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyNjM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0ODM1OS9jZXJ0aWZpY2F0ZXMvc2hhMS1jZmYyYWI2M2M4Yzk1NWFhZjcxOTg5ZWZhNjQxYjkwNjU1OGQ5ZmI3P2FwaS12ZXJzaW9uPTIwMjAtMDktMDE=",
"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": [
- "3d183212-3856-4e87-8757-15d846f9ce92"
+ "ea40f0e2-e3de-4995-8952-a66e06c0974f"
],
- "accept-language": [
+ "Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.26614.01",
+ "FxVersion/4.6.29220.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Batch.BatchManagementClient/10.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Batch.BatchManagementClient/11.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -560,23 +560,17 @@
"Cache-Control": [
"no-cache"
],
- "Date": [
- "Fri, 29 May 2020 16:32:58 GMT"
- ],
"Pragma": [
"no-cache"
],
"ETag": [
- "W/\"0x8D803EDF2B4E0AE\""
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
+ "W/\"0x8D863E9490EADB1\""
],
"x-ms-ratelimit-remaining-subscription-writes": [
"1197"
],
"x-ms-request-id": [
- "b16287d9-bb53-4550-9824-6d999b315ad6"
+ "0276ccd6-f89c-4eac-a7b5-c5c1a2db7143"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -584,11 +578,17 @@
"X-Content-Type-Options": [
"nosniff"
],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
"x-ms-correlation-request-id": [
- "ec3cc840-2cbe-44e2-b1c2-f9caadfb3e93"
+ "538b613d-0e46-43da-b5cf-dd46b5c013cc"
],
"x-ms-routing-request-id": [
- "WESTUS:20200529T163259Z:ec3cc840-2cbe-44e2-b1c2-f9caadfb3e93"
+ "WESTUS:20200928T200128Z:538b613d-0e46-43da-b5cf-dd46b5c013cc"
+ ],
+ "Date": [
+ "Mon, 28 Sep 2020 20:01:27 GMT"
],
"Content-Length": [
"1146"
@@ -600,52 +600,46 @@
"-1"
],
"Last-Modified": [
- "Fri, 29 May 2020 16:32:58 GMT"
+ "Mon, 28 Sep 2020 20:01:27 GMT"
]
},
- "ResponseBody": "{\r\n \"name\": \"sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7\",\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet1881/providers/Microsoft.Batch/batchAccounts/azsmnet8147/certificates/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7\",\r\n \"type\": \"Microsoft.Batch/batchAccounts/certificates\",\r\n \"etag\": \"W/\\\"0x8D803EDF2B4E0AE\\\"\",\r\n \"properties\": {\r\n \"thumbprintAlgorithm\": \"sha1\",\r\n \"thumbprint\": \"cff2ab63c8c955aaf71989efa641b906558d9fb7\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"provisioningStateTransitionTime\": \"2020-05-29T16:32:58.6934881Z\",\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/677f962b-9abf-4423-a27b-0c2f4094dcec/resourceGroups/azsmnet2634/providers/Microsoft.Batch/batchAccounts/azsmnet8359/certificates/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7\",\r\n \"type\": \"Microsoft.Batch/batchAccounts/certificates\",\r\n \"etag\": \"W/\\\"0x8D863E9490EADB1\\\"\",\r\n \"properties\": {\r\n \"thumbprintAlgorithm\": \"sha1\",\r\n \"thumbprint\": \"cff2ab63c8c955aaf71989efa641b906558d9fb7\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"provisioningStateTransitionTime\": \"2020-09-28T20:01:27.7116948Z\",\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/azsmnet1881/providers/Microsoft.Batch/batchAccounts/azsmnet8147/certificates/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7/cancelDelete?api-version=2020-05-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQxODgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0ODE0Ny9jZXJ0aWZpY2F0ZXMvc2hhMS1jZmYyYWI2M2M4Yzk1NWFhZjcxOTg5ZWZhNjQxYjkwNjU1OGQ5ZmI3L2NhbmNlbERlbGV0ZT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestUri": "/subscriptions/677f962b-9abf-4423-a27b-0c2f4094dcec/resourceGroups/azsmnet2634/providers/Microsoft.Batch/batchAccounts/azsmnet8359/certificates/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7/cancelDelete?api-version=2020-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjc3Zjk2MmItOWFiZi00NDIzLWEyN2ItMGMyZjQwOTRkY2VjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyNjM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0ODM1OS9jZXJ0aWZpY2F0ZXMvc2hhMS1jZmYyYWI2M2M4Yzk1NWFhZjcxOTg5ZWZhNjQxYjkwNjU1OGQ5ZmI3L2NhbmNlbERlbGV0ZT9hcGktdmVyc2lvbj0yMDIwLTA5LTAx",
"RequestMethod": "POST",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "8f947a2c-d387-4894-9a8e-544a341ae704"
+ "328bce5b-10c6-4ceb-9467-cba7f98ed19a"
],
- "accept-language": [
+ "Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.26614.01",
+ "FxVersion/4.6.29220.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Batch.BatchManagementClient/10.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Batch.BatchManagementClient/11.0.0.0"
]
},
"ResponseHeaders": {
"Cache-Control": [
"no-cache"
],
- "Date": [
- "Fri, 29 May 2020 16:32:58 GMT"
- ],
"Pragma": [
"no-cache"
],
"ETag": [
- "W/\"0x8D803EDF2B4E0AE\""
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
+ "W/\"0x8D863E9490EADB1\""
],
"x-ms-ratelimit-remaining-subscription-writes": [
"1199"
],
"x-ms-request-id": [
- "5b1f5248-30b4-4e59-a261-56a4649a94a1"
+ "8791ae99-d9cc-45cb-b47c-2f2b8c4d2af4"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -653,11 +647,17 @@
"X-Content-Type-Options": [
"nosniff"
],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
"x-ms-correlation-request-id": [
- "9607f424-4e7e-4a82-9884-b370a8aebacd"
+ "187f5bb3-64d2-4749-8687-9748e5fb0e1c"
],
"x-ms-routing-request-id": [
- "WESTUS:20200529T163259Z:9607f424-4e7e-4a82-9884-b370a8aebacd"
+ "WESTUS:20200928T200128Z:187f5bb3-64d2-4749-8687-9748e5fb0e1c"
+ ],
+ "Date": [
+ "Mon, 28 Sep 2020 20:01:28 GMT"
],
"Content-Length": [
"1146"
@@ -669,52 +669,46 @@
"-1"
],
"Last-Modified": [
- "Fri, 29 May 2020 16:32:58 GMT"
+ "Mon, 28 Sep 2020 20:01:27 GMT"
]
},
- "ResponseBody": "{\r\n \"name\": \"sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7\",\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet1881/providers/Microsoft.Batch/batchAccounts/azsmnet8147/certificates/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7\",\r\n \"type\": \"Microsoft.Batch/batchAccounts/certificates\",\r\n \"etag\": \"W/\\\"0x8D803EDF2B4E0AE\\\"\",\r\n \"properties\": {\r\n \"thumbprintAlgorithm\": \"sha1\",\r\n \"thumbprint\": \"cff2ab63c8c955aaf71989efa641b906558d9fb7\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"provisioningStateTransitionTime\": \"2020-05-29T16:32:58.6934881Z\",\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/677f962b-9abf-4423-a27b-0c2f4094dcec/resourceGroups/azsmnet2634/providers/Microsoft.Batch/batchAccounts/azsmnet8359/certificates/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7\",\r\n \"type\": \"Microsoft.Batch/batchAccounts/certificates\",\r\n \"etag\": \"W/\\\"0x8D863E9490EADB1\\\"\",\r\n \"properties\": {\r\n \"thumbprintAlgorithm\": \"sha1\",\r\n \"thumbprint\": \"cff2ab63c8c955aaf71989efa641b906558d9fb7\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"provisioningStateTransitionTime\": \"2020-09-28T20:01:27.7116948Z\",\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/azsmnet1881/providers/Microsoft.Batch/batchAccounts/azsmnet8147/certificates/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7?api-version=2020-05-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQxODgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0ODE0Ny9jZXJ0aWZpY2F0ZXMvc2hhMS1jZmYyYWI2M2M4Yzk1NWFhZjcxOTg5ZWZhNjQxYjkwNjU1OGQ5ZmI3P2FwaS12ZXJzaW9uPTIwMjAtMDUtMDE=",
+ "RequestUri": "/subscriptions/677f962b-9abf-4423-a27b-0c2f4094dcec/resourceGroups/azsmnet2634/providers/Microsoft.Batch/batchAccounts/azsmnet8359/certificates/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7?api-version=2020-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjc3Zjk2MmItOWFiZi00NDIzLWEyN2ItMGMyZjQwOTRkY2VjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyNjM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0ODM1OS9jZXJ0aWZpY2F0ZXMvc2hhMS1jZmYyYWI2M2M4Yzk1NWFhZjcxOTg5ZWZhNjQxYjkwNjU1OGQ5ZmI3P2FwaS12ZXJzaW9uPTIwMjAtMDktMDE=",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "e73d4395-703a-41fe-85e3-280a2fcc3550"
+ "fdbe7af5-aedd-43ca-a555-33d928847c2e"
],
- "accept-language": [
+ "Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.26614.01",
+ "FxVersion/4.6.29220.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Batch.BatchManagementClient/10.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Batch.BatchManagementClient/11.0.0.0"
]
},
"ResponseHeaders": {
"Cache-Control": [
"no-cache"
],
- "Date": [
- "Fri, 29 May 2020 16:32:59 GMT"
- ],
"Pragma": [
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet1881/providers/Microsoft.Batch/batchAccounts/azsmnet8147/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8D803EDF363CD74?api-version=2020-05-01"
+ "https://management.azure.com/subscriptions/677f962b-9abf-4423-a27b-0c2f4094dcec/resourceGroups/azsmnet2634/providers/Microsoft.Batch/batchAccounts/azsmnet8359/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8D863E94970F93C?api-version=2020-09-01"
],
"Retry-After": [
"15"
],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ],
"x-ms-request-id": [
- "de9bf041-4f80-42fa-9810-002ae83b942f"
+ "53c26295-46f1-4940-8c1f-50dbcfc931e3"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -722,59 +716,59 @@
"X-Content-Type-Options": [
"nosniff"
],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
"x-ms-ratelimit-remaining-subscription-deletes": [
"14999"
],
"x-ms-correlation-request-id": [
- "ecb2d85c-1327-4827-b591-790c0f23e4ae"
+ "51df9317-0105-400b-b05f-398e761e1300"
],
"x-ms-routing-request-id": [
- "WESTUS:20200529T163300Z:ecb2d85c-1327-4827-b591-790c0f23e4ae"
+ "WESTUS:20200928T200128Z:51df9317-0105-400b-b05f-398e761e1300"
],
- "Content-Length": [
- "0"
+ "Date": [
+ "Mon, 28 Sep 2020 20:01:28 GMT"
],
"Expires": [
"-1"
+ ],
+ "Content-Length": [
+ "0"
]
},
"ResponseBody": "",
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet1881/providers/Microsoft.Batch/batchAccounts/azsmnet8147/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8D803EDF363CD74?api-version=2020-05-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQxODgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0ODE0Ny9jZXJ0aWZpY2F0ZU9wZXJhdGlvblJlc3VsdHMvc2hhMS1jZmYyYWI2M2M4Yzk1NWFhZjcxOTg5ZWZhNjQxYjkwNjU1OGQ5ZmI3LThEODAzRURGMzYzQ0Q3ND9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestUri": "/subscriptions/677f962b-9abf-4423-a27b-0c2f4094dcec/resourceGroups/azsmnet2634/providers/Microsoft.Batch/batchAccounts/azsmnet8359/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8D863E94970F93C?api-version=2020-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjc3Zjk2MmItOWFiZi00NDIzLWEyN2ItMGMyZjQwOTRkY2VjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyNjM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0ODM1OS9jZXJ0aWZpY2F0ZU9wZXJhdGlvblJlc3VsdHMvc2hhMS1jZmYyYWI2M2M4Yzk1NWFhZjcxOTg5ZWZhNjQxYjkwNjU1OGQ5ZmI3LThEODYzRTk0OTcwRjkzQz9hcGktdmVyc2lvbj0yMDIwLTA5LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.26614.01",
+ "FxVersion/4.6.29220.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Batch.BatchManagementClient/10.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Batch.BatchManagementClient/11.0.0.0"
]
},
"ResponseHeaders": {
"Cache-Control": [
"no-cache"
],
- "Date": [
- "Fri, 29 May 2020 16:33:14 GMT"
- ],
"Pragma": [
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet1881/providers/Microsoft.Batch/batchAccounts/azsmnet8147/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d803edf363cd74?api-version=2020-05-01"
+ "https://management.azure.com/subscriptions/677f962b-9abf-4423-a27b-0c2f4094dcec/resourceGroups/azsmnet2634/providers/Microsoft.Batch/batchAccounts/azsmnet8359/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d863e94970f93c?api-version=2020-09-01"
],
"Retry-After": [
"15"
],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ],
"x-ms-request-id": [
- "f0cd4a26-0d3c-4e9f-8267-162a013d6761"
+ "1c5f79b1-bf4d-4cab-9cd9-d77cc1b67984"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -782,59 +776,59 @@
"X-Content-Type-Options": [
"nosniff"
],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
"x-ms-ratelimit-remaining-subscription-reads": [
"11996"
],
"x-ms-correlation-request-id": [
- "32a064a4-fa87-4b9d-a907-52dc94a76046"
+ "e872bd3c-6bd8-4c1c-91cb-c34cf1244ce6"
],
"x-ms-routing-request-id": [
- "WESTUS:20200529T163315Z:32a064a4-fa87-4b9d-a907-52dc94a76046"
+ "WESTUS:20200928T200143Z:e872bd3c-6bd8-4c1c-91cb-c34cf1244ce6"
],
- "Content-Length": [
- "0"
+ "Date": [
+ "Mon, 28 Sep 2020 20:01:43 GMT"
],
"Expires": [
"-1"
+ ],
+ "Content-Length": [
+ "0"
]
},
"ResponseBody": "",
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet1881/providers/Microsoft.Batch/batchAccounts/azsmnet8147/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d803edf363cd74?api-version=2020-05-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQxODgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0ODE0Ny9jZXJ0aWZpY2F0ZU9wZXJhdGlvblJlc3VsdHMvc2hhMS1jZmYyYWI2M2M4Yzk1NWFhZjcxOTg5ZWZhNjQxYjkwNjU1OGQ5ZmI3LThkODAzZWRmMzYzY2Q3ND9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestUri": "/subscriptions/677f962b-9abf-4423-a27b-0c2f4094dcec/resourceGroups/azsmnet2634/providers/Microsoft.Batch/batchAccounts/azsmnet8359/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d863e94970f93c?api-version=2020-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjc3Zjk2MmItOWFiZi00NDIzLWEyN2ItMGMyZjQwOTRkY2VjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyNjM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0ODM1OS9jZXJ0aWZpY2F0ZU9wZXJhdGlvblJlc3VsdHMvc2hhMS1jZmYyYWI2M2M4Yzk1NWFhZjcxOTg5ZWZhNjQxYjkwNjU1OGQ5ZmI3LThkODYzZTk0OTcwZjkzYz9hcGktdmVyc2lvbj0yMDIwLTA5LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.26614.01",
+ "FxVersion/4.6.29220.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Batch.BatchManagementClient/10.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Batch.BatchManagementClient/11.0.0.0"
]
},
"ResponseHeaders": {
"Cache-Control": [
"no-cache"
],
- "Date": [
- "Fri, 29 May 2020 16:33:30 GMT"
- ],
"Pragma": [
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet1881/providers/Microsoft.Batch/batchAccounts/azsmnet8147/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d803edf363cd74?api-version=2020-05-01"
+ "https://management.azure.com/subscriptions/677f962b-9abf-4423-a27b-0c2f4094dcec/resourceGroups/azsmnet2634/providers/Microsoft.Batch/batchAccounts/azsmnet8359/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d863e94970f93c?api-version=2020-09-01"
],
"Retry-After": [
"15"
],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ],
"x-ms-request-id": [
- "f07c98c4-f5fe-4b5b-b2fe-ea0a66fd4458"
+ "d55fb0f4-2ece-4020-a9bb-ba07c4f4f255"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -842,59 +836,59 @@
"X-Content-Type-Options": [
"nosniff"
],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
"x-ms-ratelimit-remaining-subscription-reads": [
"11995"
],
"x-ms-correlation-request-id": [
- "8e2cc65d-b921-4bf4-a717-1ff1584afd2c"
+ "a750c620-42f1-43cc-b8b4-8944d2ec48fa"
],
"x-ms-routing-request-id": [
- "WESTUS:20200529T163330Z:8e2cc65d-b921-4bf4-a717-1ff1584afd2c"
+ "WESTUS:20200928T200158Z:a750c620-42f1-43cc-b8b4-8944d2ec48fa"
],
- "Content-Length": [
- "0"
+ "Date": [
+ "Mon, 28 Sep 2020 20:01:58 GMT"
],
"Expires": [
"-1"
+ ],
+ "Content-Length": [
+ "0"
]
},
"ResponseBody": "",
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet1881/providers/Microsoft.Batch/batchAccounts/azsmnet8147/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d803edf363cd74?api-version=2020-05-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQxODgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0ODE0Ny9jZXJ0aWZpY2F0ZU9wZXJhdGlvblJlc3VsdHMvc2hhMS1jZmYyYWI2M2M4Yzk1NWFhZjcxOTg5ZWZhNjQxYjkwNjU1OGQ5ZmI3LThkODAzZWRmMzYzY2Q3ND9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestUri": "/subscriptions/677f962b-9abf-4423-a27b-0c2f4094dcec/resourceGroups/azsmnet2634/providers/Microsoft.Batch/batchAccounts/azsmnet8359/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d863e94970f93c?api-version=2020-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjc3Zjk2MmItOWFiZi00NDIzLWEyN2ItMGMyZjQwOTRkY2VjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyNjM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0ODM1OS9jZXJ0aWZpY2F0ZU9wZXJhdGlvblJlc3VsdHMvc2hhMS1jZmYyYWI2M2M4Yzk1NWFhZjcxOTg5ZWZhNjQxYjkwNjU1OGQ5ZmI3LThkODYzZTk0OTcwZjkzYz9hcGktdmVyc2lvbj0yMDIwLTA5LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.26614.01",
+ "FxVersion/4.6.29220.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Batch.BatchManagementClient/10.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Batch.BatchManagementClient/11.0.0.0"
]
},
"ResponseHeaders": {
"Cache-Control": [
"no-cache"
],
- "Date": [
- "Fri, 29 May 2020 16:33:45 GMT"
- ],
"Pragma": [
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet1881/providers/Microsoft.Batch/batchAccounts/azsmnet8147/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d803edf363cd74?api-version=2020-05-01"
+ "https://management.azure.com/subscriptions/677f962b-9abf-4423-a27b-0c2f4094dcec/resourceGroups/azsmnet2634/providers/Microsoft.Batch/batchAccounts/azsmnet8359/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d863e94970f93c?api-version=2020-09-01"
],
"Retry-After": [
"15"
],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ],
"x-ms-request-id": [
- "f265089f-c393-4073-80db-a77241f98b2c"
+ "bb013d1c-d911-44e1-9206-2fb799b94208"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -902,59 +896,53 @@
"X-Content-Type-Options": [
"nosniff"
],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
"x-ms-ratelimit-remaining-subscription-reads": [
"11994"
],
"x-ms-correlation-request-id": [
- "ce39435b-3b30-4ca9-a623-57f67a2b4771"
+ "5a929107-3ac1-4bb7-bdf0-905fd4352bd7"
],
"x-ms-routing-request-id": [
- "WESTUS:20200529T163345Z:ce39435b-3b30-4ca9-a623-57f67a2b4771"
+ "WESTUS:20200928T200213Z:5a929107-3ac1-4bb7-bdf0-905fd4352bd7"
],
- "Content-Length": [
- "0"
+ "Date": [
+ "Mon, 28 Sep 2020 20:02:13 GMT"
],
"Expires": [
"-1"
+ ],
+ "Content-Length": [
+ "0"
]
},
"ResponseBody": "",
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet1881/providers/Microsoft.Batch/batchAccounts/azsmnet8147/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d803edf363cd74?api-version=2020-05-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQxODgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0ODE0Ny9jZXJ0aWZpY2F0ZU9wZXJhdGlvblJlc3VsdHMvc2hhMS1jZmYyYWI2M2M4Yzk1NWFhZjcxOTg5ZWZhNjQxYjkwNjU1OGQ5ZmI3LThkODAzZWRmMzYzY2Q3ND9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestUri": "/subscriptions/677f962b-9abf-4423-a27b-0c2f4094dcec/resourceGroups/azsmnet2634/providers/Microsoft.Batch/batchAccounts/azsmnet8359/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d863e94970f93c?api-version=2020-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjc3Zjk2MmItOWFiZi00NDIzLWEyN2ItMGMyZjQwOTRkY2VjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyNjM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0ODM1OS9jZXJ0aWZpY2F0ZU9wZXJhdGlvblJlc3VsdHMvc2hhMS1jZmYyYWI2M2M4Yzk1NWFhZjcxOTg5ZWZhNjQxYjkwNjU1OGQ5ZmI3LThkODYzZTk0OTcwZjkzYz9hcGktdmVyc2lvbj0yMDIwLTA5LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.26614.01",
+ "FxVersion/4.6.29220.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Batch.BatchManagementClient/10.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Batch.BatchManagementClient/11.0.0.0"
]
},
"ResponseHeaders": {
"Cache-Control": [
"no-cache"
],
- "Date": [
- "Fri, 29 May 2020 16:34:00 GMT"
- ],
"Pragma": [
"no-cache"
],
- "Location": [
- "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet1881/providers/Microsoft.Batch/batchAccounts/azsmnet8147/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d803edf363cd74?api-version=2020-05-01"
- ],
- "Retry-After": [
- "15"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ],
"x-ms-request-id": [
- "72803892-2d27-4cf9-baad-e5a014da58f0"
+ "bddc2836-1bb1-4b49-ba89-3afe8240a8e4"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -962,53 +950,53 @@
"X-Content-Type-Options": [
"nosniff"
],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
"x-ms-ratelimit-remaining-subscription-reads": [
"11993"
],
"x-ms-correlation-request-id": [
- "ad74c6ef-c7af-45fe-a81a-0f5fdfbcb955"
+ "74be9270-db2f-4ee2-805a-ef224588eaa3"
],
"x-ms-routing-request-id": [
- "WESTUS:20200529T163400Z:ad74c6ef-c7af-45fe-a81a-0f5fdfbcb955"
+ "WESTUS:20200928T200228Z:74be9270-db2f-4ee2-805a-ef224588eaa3"
],
- "Content-Length": [
- "0"
+ "Date": [
+ "Mon, 28 Sep 2020 20:02:28 GMT"
],
"Expires": [
"-1"
+ ],
+ "Content-Length": [
+ "0"
]
},
"ResponseBody": "",
- "StatusCode": 202
+ "StatusCode": 200
},
{
- "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet1881/providers/Microsoft.Batch/batchAccounts/azsmnet8147/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d803edf363cd74?api-version=2020-05-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQxODgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0ODE0Ny9jZXJ0aWZpY2F0ZU9wZXJhdGlvblJlc3VsdHMvc2hhMS1jZmYyYWI2M2M4Yzk1NWFhZjcxOTg5ZWZhNjQxYjkwNjU1OGQ5ZmI3LThkODAzZWRmMzYzY2Q3ND9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestUri": "/subscriptions/677f962b-9abf-4423-a27b-0c2f4094dcec/resourceGroups/azsmnet2634/providers/Microsoft.Batch/batchAccounts/azsmnet8359/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d863e94970f93c?api-version=2020-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjc3Zjk2MmItOWFiZi00NDIzLWEyN2ItMGMyZjQwOTRkY2VjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyNjM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0ODM1OS9jZXJ0aWZpY2F0ZU9wZXJhdGlvblJlc3VsdHMvc2hhMS1jZmYyYWI2M2M4Yzk1NWFhZjcxOTg5ZWZhNjQxYjkwNjU1OGQ5ZmI3LThkODYzZTk0OTcwZjkzYz9hcGktdmVyc2lvbj0yMDIwLTA5LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.26614.01",
+ "FxVersion/4.6.29220.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Batch.BatchManagementClient/10.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Batch.BatchManagementClient/11.0.0.0"
]
},
"ResponseHeaders": {
"Cache-Control": [
"no-cache"
],
- "Date": [
- "Fri, 29 May 2020 16:34:15 GMT"
- ],
"Pragma": [
"no-cache"
],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ],
"x-ms-request-id": [
- "456cbf10-50be-4003-976c-4b83e2fcffdb"
+ "66d39b66-64f4-48cd-a01a-96872ef6eb1f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1016,53 +1004,65 @@
"X-Content-Type-Options": [
"nosniff"
],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
"x-ms-ratelimit-remaining-subscription-reads": [
"11992"
],
"x-ms-correlation-request-id": [
- "624bea91-2620-4bd7-8dbf-f53f488e4918"
+ "fdc9f757-2651-4a4e-9e9c-68eab07ec7d9"
],
"x-ms-routing-request-id": [
- "WESTUS:20200529T163415Z:624bea91-2620-4bd7-8dbf-f53f488e4918"
+ "WESTUS:20200928T200228Z:fdc9f757-2651-4a4e-9e9c-68eab07ec7d9"
],
- "Content-Length": [
- "0"
+ "Date": [
+ "Mon, 28 Sep 2020 20:02:28 GMT"
],
"Expires": [
"-1"
+ ],
+ "Content-Length": [
+ "0"
]
},
"ResponseBody": "",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet1881/providers/Microsoft.Batch/batchAccounts/azsmnet8147/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d803edf363cd74?api-version=2020-05-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQxODgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0ODE0Ny9jZXJ0aWZpY2F0ZU9wZXJhdGlvblJlc3VsdHMvc2hhMS1jZmYyYWI2M2M4Yzk1NWFhZjcxOTg5ZWZhNjQxYjkwNjU1OGQ5ZmI3LThkODAzZWRmMzYzY2Q3ND9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
- "RequestMethod": "GET",
+ "RequestUri": "/subscriptions/677f962b-9abf-4423-a27b-0c2f4094dcec/resourceGroups/azsmnet2634/providers/Microsoft.Batch/batchAccounts/azsmnet8359?api-version=2020-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjc3Zjk2MmItOWFiZi00NDIzLWEyN2ItMGMyZjQwOTRkY2VjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyNjM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0ODM1OT9hcGktdmVyc2lvbj0yMDIwLTA5LTAx",
+ "RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "de484ad0-de9e-41c5-b5f1-8841c4163ed7"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
"User-Agent": [
- "FxVersion/4.6.26614.01",
+ "FxVersion/4.6.29220.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Batch.BatchManagementClient/10.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Batch.BatchManagementClient/11.0.0.0"
]
},
"ResponseHeaders": {
"Cache-Control": [
"no-cache"
],
- "Date": [
- "Fri, 29 May 2020 16:34:15 GMT"
- ],
"Pragma": [
"no-cache"
],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
+ "Location": [
+ "https://management.azure.com/subscriptions/677f962b-9abf-4423-a27b-0c2f4094dcec/providers/Microsoft.Batch/locations/westcentralus/accountOperationResults/azsmnet8359-40feb82d-66d2-4b27-9d17-869a8360128b?api-version=2020-09-01"
+ ],
+ "Retry-After": [
+ "15"
],
"x-ms-request-id": [
- "a363ae77-8ee1-48b7-9e74-0ec0f0d6f9fb"
+ "40feb82d-66d2-4b27-9d17-869a8360128b"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1070,65 +1070,59 @@
"X-Content-Type-Options": [
"nosniff"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11991"
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-deletes": [
+ "14998"
],
"x-ms-correlation-request-id": [
- "9d3548ad-f6fe-48fa-aff4-b3e8f14a2902"
+ "5015fa8f-2747-4708-8c6c-a02bb08a0768"
],
"x-ms-routing-request-id": [
- "WESTUS:20200529T163415Z:9d3548ad-f6fe-48fa-aff4-b3e8f14a2902"
+ "WESTUS:20200928T200229Z:5015fa8f-2747-4708-8c6c-a02bb08a0768"
],
- "Content-Length": [
- "0"
+ "Date": [
+ "Mon, 28 Sep 2020 20:02:28 GMT"
],
"Expires": [
"-1"
+ ],
+ "Content-Length": [
+ "0"
]
},
"ResponseBody": "",
- "StatusCode": 200
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet1881/providers/Microsoft.Batch/batchAccounts/azsmnet8147?api-version=2020-05-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQxODgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0ODE0Nz9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
- "RequestMethod": "DELETE",
+ "RequestUri": "/subscriptions/677f962b-9abf-4423-a27b-0c2f4094dcec/providers/Microsoft.Batch/locations/westcentralus/accountOperationResults/azsmnet8359-40feb82d-66d2-4b27-9d17-869a8360128b?api-version=2020-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjc3Zjk2MmItOWFiZi00NDIzLWEyN2ItMGMyZjQwOTRkY2VjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL3dlc3RjZW50cmFsdXMvYWNjb3VudE9wZXJhdGlvblJlc3VsdHMvYXpzbW5ldDgzNTktNDBmZWI4MmQtNjZkMi00YjI3LTlkMTctODY5YTgzNjAxMjhiP2FwaS12ZXJzaW9uPTIwMjAtMDktMDE=",
+ "RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "x-ms-client-request-id": [
- "fb54d81e-376e-4a4e-b72d-3f1a852fa320"
- ],
- "accept-language": [
- "en-US"
- ],
"User-Agent": [
- "FxVersion/4.6.26614.01",
+ "FxVersion/4.6.29220.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Batch.BatchManagementClient/10.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Batch.BatchManagementClient/11.0.0.0"
]
},
"ResponseHeaders": {
"Cache-Control": [
"no-cache"
],
- "Date": [
- "Fri, 29 May 2020 16:34:15 GMT"
- ],
"Pragma": [
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8147-607838ba-6f55-408b-a406-33f307226a0d?api-version=2020-05-01"
+ "https://management.azure.com/subscriptions/677f962b-9abf-4423-a27b-0c2f4094dcec/providers/Microsoft.Batch/locations/westcentralus/accountOperationResults/azsmnet8359-40feb82d-66d2-4b27-9d17-869a8360128b?api-version=2020-09-01"
],
"Retry-After": [
"15"
],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ],
"x-ms-request-id": [
- "607838ba-6f55-408b-a406-33f307226a0d"
+ "068f7602-d5b5-427b-95e5-dd94f9f417f9"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1136,59 +1130,59 @@
"X-Content-Type-Options": [
"nosniff"
],
- "x-ms-ratelimit-remaining-subscription-deletes": [
- "14998"
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11990"
],
"x-ms-correlation-request-id": [
- "0bbb5177-5c6c-449f-844e-94c6e9c43547"
+ "1b842302-6dc1-48ca-a662-7842b4a1fe96"
],
"x-ms-routing-request-id": [
- "WESTUS:20200529T163416Z:0bbb5177-5c6c-449f-844e-94c6e9c43547"
+ "WESTUS:20200928T200244Z:1b842302-6dc1-48ca-a662-7842b4a1fe96"
],
- "Content-Length": [
- "0"
+ "Date": [
+ "Mon, 28 Sep 2020 20:02:43 GMT"
],
"Expires": [
"-1"
+ ],
+ "Content-Length": [
+ "0"
]
},
"ResponseBody": "",
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8147-607838ba-6f55-408b-a406-33f307226a0d?api-version=2020-05-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0ODE0Ny02MDc4MzhiYS02ZjU1LTQwOGItYTQwNi0zM2YzMDcyMjZhMGQ/YXBpLXZlcnNpb249MjAyMC0wNS0wMQ==",
+ "RequestUri": "/subscriptions/677f962b-9abf-4423-a27b-0c2f4094dcec/providers/Microsoft.Batch/locations/westcentralus/accountOperationResults/azsmnet8359-40feb82d-66d2-4b27-9d17-869a8360128b?api-version=2020-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjc3Zjk2MmItOWFiZi00NDIzLWEyN2ItMGMyZjQwOTRkY2VjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL3dlc3RjZW50cmFsdXMvYWNjb3VudE9wZXJhdGlvblJlc3VsdHMvYXpzbW5ldDgzNTktNDBmZWI4MmQtNjZkMi00YjI3LTlkMTctODY5YTgzNjAxMjhiP2FwaS12ZXJzaW9uPTIwMjAtMDktMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.26614.01",
+ "FxVersion/4.6.29220.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Batch.BatchManagementClient/10.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Batch.BatchManagementClient/11.0.0.0"
]
},
"ResponseHeaders": {
"Cache-Control": [
"no-cache"
],
- "Date": [
- "Fri, 29 May 2020 16:34:30 GMT"
- ],
"Pragma": [
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8147-607838ba-6f55-408b-a406-33f307226a0d?api-version=2020-05-01"
+ "https://management.azure.com/subscriptions/677f962b-9abf-4423-a27b-0c2f4094dcec/providers/Microsoft.Batch/locations/westcentralus/accountOperationResults/azsmnet8359-40feb82d-66d2-4b27-9d17-869a8360128b?api-version=2020-09-01"
],
"Retry-After": [
"15"
],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ],
"x-ms-request-id": [
- "33074362-3ebd-4e4c-bb41-b1f654810729"
+ "25c1d936-308f-4abb-acf1-028402ffaaf7"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1196,59 +1190,59 @@
"X-Content-Type-Options": [
"nosniff"
],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
"x-ms-ratelimit-remaining-subscription-reads": [
"11989"
],
"x-ms-correlation-request-id": [
- "93314f0e-dd6e-42a4-8ea6-0845e1324870"
+ "b6ed4519-37d1-4969-9802-861e854820d2"
],
"x-ms-routing-request-id": [
- "WESTUS:20200529T163431Z:93314f0e-dd6e-42a4-8ea6-0845e1324870"
+ "WESTUS:20200928T200259Z:b6ed4519-37d1-4969-9802-861e854820d2"
],
- "Content-Length": [
- "0"
+ "Date": [
+ "Mon, 28 Sep 2020 20:02:58 GMT"
],
"Expires": [
"-1"
+ ],
+ "Content-Length": [
+ "0"
]
},
"ResponseBody": "",
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8147-607838ba-6f55-408b-a406-33f307226a0d?api-version=2020-05-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0ODE0Ny02MDc4MzhiYS02ZjU1LTQwOGItYTQwNi0zM2YzMDcyMjZhMGQ/YXBpLXZlcnNpb249MjAyMC0wNS0wMQ==",
+ "RequestUri": "/subscriptions/677f962b-9abf-4423-a27b-0c2f4094dcec/providers/Microsoft.Batch/locations/westcentralus/accountOperationResults/azsmnet8359-40feb82d-66d2-4b27-9d17-869a8360128b?api-version=2020-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjc3Zjk2MmItOWFiZi00NDIzLWEyN2ItMGMyZjQwOTRkY2VjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL3dlc3RjZW50cmFsdXMvYWNjb3VudE9wZXJhdGlvblJlc3VsdHMvYXpzbW5ldDgzNTktNDBmZWI4MmQtNjZkMi00YjI3LTlkMTctODY5YTgzNjAxMjhiP2FwaS12ZXJzaW9uPTIwMjAtMDktMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.26614.01",
+ "FxVersion/4.6.29220.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Batch.BatchManagementClient/10.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Batch.BatchManagementClient/11.0.0.0"
]
},
"ResponseHeaders": {
"Cache-Control": [
"no-cache"
],
- "Date": [
- "Fri, 29 May 2020 16:34:45 GMT"
- ],
"Pragma": [
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8147-607838ba-6f55-408b-a406-33f307226a0d?api-version=2020-05-01"
+ "https://management.azure.com/subscriptions/677f962b-9abf-4423-a27b-0c2f4094dcec/providers/Microsoft.Batch/locations/westcentralus/accountOperationResults/azsmnet8359-40feb82d-66d2-4b27-9d17-869a8360128b?api-version=2020-09-01"
],
"Retry-After": [
"15"
],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ],
"x-ms-request-id": [
- "0c63664d-36c9-4fbb-a725-69d187b3738a"
+ "ccf29b96-ac3a-4d01-a055-20ab03f7e66e"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1256,59 +1250,59 @@
"X-Content-Type-Options": [
"nosniff"
],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
"x-ms-ratelimit-remaining-subscription-reads": [
"11988"
],
"x-ms-correlation-request-id": [
- "b177f3a5-5276-4531-982d-0d6149195de5"
+ "f2571de1-58dc-4aba-83a5-e8b3e8b3e214"
],
"x-ms-routing-request-id": [
- "WESTUS:20200529T163446Z:b177f3a5-5276-4531-982d-0d6149195de5"
+ "WESTUS:20200928T200314Z:f2571de1-58dc-4aba-83a5-e8b3e8b3e214"
],
- "Content-Length": [
- "0"
+ "Date": [
+ "Mon, 28 Sep 2020 20:03:13 GMT"
],
"Expires": [
"-1"
+ ],
+ "Content-Length": [
+ "0"
]
},
"ResponseBody": "",
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8147-607838ba-6f55-408b-a406-33f307226a0d?api-version=2020-05-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0ODE0Ny02MDc4MzhiYS02ZjU1LTQwOGItYTQwNi0zM2YzMDcyMjZhMGQ/YXBpLXZlcnNpb249MjAyMC0wNS0wMQ==",
+ "RequestUri": "/subscriptions/677f962b-9abf-4423-a27b-0c2f4094dcec/providers/Microsoft.Batch/locations/westcentralus/accountOperationResults/azsmnet8359-40feb82d-66d2-4b27-9d17-869a8360128b?api-version=2020-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjc3Zjk2MmItOWFiZi00NDIzLWEyN2ItMGMyZjQwOTRkY2VjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL3dlc3RjZW50cmFsdXMvYWNjb3VudE9wZXJhdGlvblJlc3VsdHMvYXpzbW5ldDgzNTktNDBmZWI4MmQtNjZkMi00YjI3LTlkMTctODY5YTgzNjAxMjhiP2FwaS12ZXJzaW9uPTIwMjAtMDktMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.26614.01",
+ "FxVersion/4.6.29220.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Batch.BatchManagementClient/10.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Batch.BatchManagementClient/11.0.0.0"
]
},
"ResponseHeaders": {
"Cache-Control": [
"no-cache"
],
- "Date": [
- "Fri, 29 May 2020 16:35:00 GMT"
- ],
"Pragma": [
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8147-607838ba-6f55-408b-a406-33f307226a0d?api-version=2020-05-01"
+ "https://management.azure.com/subscriptions/677f962b-9abf-4423-a27b-0c2f4094dcec/providers/Microsoft.Batch/locations/westcentralus/accountOperationResults/azsmnet8359-40feb82d-66d2-4b27-9d17-869a8360128b?api-version=2020-09-01"
],
"Retry-After": [
"15"
],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ],
"x-ms-request-id": [
- "22e42950-b542-4f9f-9480-f209ac08c7f1"
+ "f468956d-fa4a-4283-8352-3d0d6ba0a51c"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1316,59 +1310,59 @@
"X-Content-Type-Options": [
"nosniff"
],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
"x-ms-ratelimit-remaining-subscription-reads": [
"11987"
],
"x-ms-correlation-request-id": [
- "7b312356-d215-4c8f-abd9-cd77b677f336"
+ "4eca0f9c-ba4a-41ce-9e1e-6746961fe7dc"
],
"x-ms-routing-request-id": [
- "WESTUS:20200529T163501Z:7b312356-d215-4c8f-abd9-cd77b677f336"
+ "WESTUS:20200928T200329Z:4eca0f9c-ba4a-41ce-9e1e-6746961fe7dc"
],
- "Content-Length": [
- "0"
+ "Date": [
+ "Mon, 28 Sep 2020 20:03:28 GMT"
],
"Expires": [
"-1"
+ ],
+ "Content-Length": [
+ "0"
]
},
"ResponseBody": "",
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8147-607838ba-6f55-408b-a406-33f307226a0d?api-version=2020-05-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0ODE0Ny02MDc4MzhiYS02ZjU1LTQwOGItYTQwNi0zM2YzMDcyMjZhMGQ/YXBpLXZlcnNpb249MjAyMC0wNS0wMQ==",
+ "RequestUri": "/subscriptions/677f962b-9abf-4423-a27b-0c2f4094dcec/providers/Microsoft.Batch/locations/westcentralus/accountOperationResults/azsmnet8359-40feb82d-66d2-4b27-9d17-869a8360128b?api-version=2020-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjc3Zjk2MmItOWFiZi00NDIzLWEyN2ItMGMyZjQwOTRkY2VjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL3dlc3RjZW50cmFsdXMvYWNjb3VudE9wZXJhdGlvblJlc3VsdHMvYXpzbW5ldDgzNTktNDBmZWI4MmQtNjZkMi00YjI3LTlkMTctODY5YTgzNjAxMjhiP2FwaS12ZXJzaW9uPTIwMjAtMDktMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.26614.01",
+ "FxVersion/4.6.29220.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Batch.BatchManagementClient/10.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Batch.BatchManagementClient/11.0.0.0"
]
},
"ResponseHeaders": {
"Cache-Control": [
"no-cache"
],
- "Date": [
- "Fri, 29 May 2020 16:35:16 GMT"
- ],
"Pragma": [
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8147-607838ba-6f55-408b-a406-33f307226a0d?api-version=2020-05-01"
+ "https://management.azure.com/subscriptions/677f962b-9abf-4423-a27b-0c2f4094dcec/providers/Microsoft.Batch/locations/westcentralus/accountOperationResults/azsmnet8359-40feb82d-66d2-4b27-9d17-869a8360128b?api-version=2020-09-01"
],
"Retry-After": [
"15"
],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ],
"x-ms-request-id": [
- "6919986a-10c7-40c6-b3b3-983f3d177be6"
+ "93b25891-8c16-4826-88b1-c375965a0c86"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1376,59 +1370,59 @@
"X-Content-Type-Options": [
"nosniff"
],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
"x-ms-ratelimit-remaining-subscription-reads": [
"11986"
],
"x-ms-correlation-request-id": [
- "638f7552-7648-4eb2-87bc-a5373db27a94"
+ "6e3dfbb1-0905-423d-81b0-02844e3b1408"
],
"x-ms-routing-request-id": [
- "WESTUS:20200529T163516Z:638f7552-7648-4eb2-87bc-a5373db27a94"
+ "WESTUS:20200928T200344Z:6e3dfbb1-0905-423d-81b0-02844e3b1408"
],
- "Content-Length": [
- "0"
+ "Date": [
+ "Mon, 28 Sep 2020 20:03:43 GMT"
],
"Expires": [
"-1"
+ ],
+ "Content-Length": [
+ "0"
]
},
"ResponseBody": "",
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8147-607838ba-6f55-408b-a406-33f307226a0d?api-version=2020-05-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0ODE0Ny02MDc4MzhiYS02ZjU1LTQwOGItYTQwNi0zM2YzMDcyMjZhMGQ/YXBpLXZlcnNpb249MjAyMC0wNS0wMQ==",
+ "RequestUri": "/subscriptions/677f962b-9abf-4423-a27b-0c2f4094dcec/providers/Microsoft.Batch/locations/westcentralus/accountOperationResults/azsmnet8359-40feb82d-66d2-4b27-9d17-869a8360128b?api-version=2020-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjc3Zjk2MmItOWFiZi00NDIzLWEyN2ItMGMyZjQwOTRkY2VjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL3dlc3RjZW50cmFsdXMvYWNjb3VudE9wZXJhdGlvblJlc3VsdHMvYXpzbW5ldDgzNTktNDBmZWI4MmQtNjZkMi00YjI3LTlkMTctODY5YTgzNjAxMjhiP2FwaS12ZXJzaW9uPTIwMjAtMDktMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.26614.01",
+ "FxVersion/4.6.29220.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Batch.BatchManagementClient/10.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Batch.BatchManagementClient/11.0.0.0"
]
},
"ResponseHeaders": {
"Cache-Control": [
"no-cache"
],
- "Date": [
- "Fri, 29 May 2020 16:35:31 GMT"
- ],
"Pragma": [
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8147-607838ba-6f55-408b-a406-33f307226a0d?api-version=2020-05-01"
+ "https://management.azure.com/subscriptions/677f962b-9abf-4423-a27b-0c2f4094dcec/providers/Microsoft.Batch/locations/westcentralus/accountOperationResults/azsmnet8359-40feb82d-66d2-4b27-9d17-869a8360128b?api-version=2020-09-01"
],
"Retry-After": [
"15"
],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ],
"x-ms-request-id": [
- "e443083e-e278-42a8-a793-a18c882cf121"
+ "20de8180-dabe-46b0-817d-d8da2ea6e721"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1436,59 +1430,59 @@
"X-Content-Type-Options": [
"nosniff"
],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
"x-ms-ratelimit-remaining-subscription-reads": [
"11985"
],
"x-ms-correlation-request-id": [
- "f3efbb51-e1f1-41c3-9d99-2d75518fbfc6"
+ "433e4a42-7d6d-41d1-b8d4-0e6e9ec70b66"
],
"x-ms-routing-request-id": [
- "WESTUS:20200529T163532Z:f3efbb51-e1f1-41c3-9d99-2d75518fbfc6"
+ "WESTUS:20200928T200359Z:433e4a42-7d6d-41d1-b8d4-0e6e9ec70b66"
],
- "Content-Length": [
- "0"
+ "Date": [
+ "Mon, 28 Sep 2020 20:03:59 GMT"
],
"Expires": [
"-1"
+ ],
+ "Content-Length": [
+ "0"
]
},
"ResponseBody": "",
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8147-607838ba-6f55-408b-a406-33f307226a0d?api-version=2020-05-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0ODE0Ny02MDc4MzhiYS02ZjU1LTQwOGItYTQwNi0zM2YzMDcyMjZhMGQ/YXBpLXZlcnNpb249MjAyMC0wNS0wMQ==",
+ "RequestUri": "/subscriptions/677f962b-9abf-4423-a27b-0c2f4094dcec/providers/Microsoft.Batch/locations/westcentralus/accountOperationResults/azsmnet8359-40feb82d-66d2-4b27-9d17-869a8360128b?api-version=2020-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjc3Zjk2MmItOWFiZi00NDIzLWEyN2ItMGMyZjQwOTRkY2VjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL3dlc3RjZW50cmFsdXMvYWNjb3VudE9wZXJhdGlvblJlc3VsdHMvYXpzbW5ldDgzNTktNDBmZWI4MmQtNjZkMi00YjI3LTlkMTctODY5YTgzNjAxMjhiP2FwaS12ZXJzaW9uPTIwMjAtMDktMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.26614.01",
+ "FxVersion/4.6.29220.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Batch.BatchManagementClient/10.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Batch.BatchManagementClient/11.0.0.0"
]
},
"ResponseHeaders": {
"Cache-Control": [
"no-cache"
],
- "Date": [
- "Fri, 29 May 2020 16:35:46 GMT"
- ],
"Pragma": [
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8147-607838ba-6f55-408b-a406-33f307226a0d?api-version=2020-05-01"
+ "https://management.azure.com/subscriptions/677f962b-9abf-4423-a27b-0c2f4094dcec/providers/Microsoft.Batch/locations/westcentralus/accountOperationResults/azsmnet8359-40feb82d-66d2-4b27-9d17-869a8360128b?api-version=2020-09-01"
],
"Retry-After": [
"15"
],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ],
"x-ms-request-id": [
- "67643b39-c3f0-47af-ab8f-95554c8bb265"
+ "874362d7-d6f2-42a1-b266-0385d3c8dbce"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1496,59 +1490,59 @@
"X-Content-Type-Options": [
"nosniff"
],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
"x-ms-ratelimit-remaining-subscription-reads": [
"11984"
],
"x-ms-correlation-request-id": [
- "3fcfcb17-aa3c-48e2-9f83-231642b8c5fa"
+ "212709db-4f31-45e4-907c-648901fd77fe"
],
"x-ms-routing-request-id": [
- "WESTUS:20200529T163547Z:3fcfcb17-aa3c-48e2-9f83-231642b8c5fa"
+ "WESTUS:20200928T200414Z:212709db-4f31-45e4-907c-648901fd77fe"
],
- "Content-Length": [
- "0"
+ "Date": [
+ "Mon, 28 Sep 2020 20:04:14 GMT"
],
"Expires": [
"-1"
+ ],
+ "Content-Length": [
+ "0"
]
},
"ResponseBody": "",
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8147-607838ba-6f55-408b-a406-33f307226a0d?api-version=2020-05-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0ODE0Ny02MDc4MzhiYS02ZjU1LTQwOGItYTQwNi0zM2YzMDcyMjZhMGQ/YXBpLXZlcnNpb249MjAyMC0wNS0wMQ==",
+ "RequestUri": "/subscriptions/677f962b-9abf-4423-a27b-0c2f4094dcec/providers/Microsoft.Batch/locations/westcentralus/accountOperationResults/azsmnet8359-40feb82d-66d2-4b27-9d17-869a8360128b?api-version=2020-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjc3Zjk2MmItOWFiZi00NDIzLWEyN2ItMGMyZjQwOTRkY2VjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL3dlc3RjZW50cmFsdXMvYWNjb3VudE9wZXJhdGlvblJlc3VsdHMvYXpzbW5ldDgzNTktNDBmZWI4MmQtNjZkMi00YjI3LTlkMTctODY5YTgzNjAxMjhiP2FwaS12ZXJzaW9uPTIwMjAtMDktMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.26614.01",
+ "FxVersion/4.6.29220.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Batch.BatchManagementClient/10.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Batch.BatchManagementClient/11.0.0.0"
]
},
"ResponseHeaders": {
"Cache-Control": [
"no-cache"
],
- "Date": [
- "Fri, 29 May 2020 16:36:01 GMT"
- ],
"Pragma": [
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8147-607838ba-6f55-408b-a406-33f307226a0d?api-version=2020-05-01"
+ "https://management.azure.com/subscriptions/677f962b-9abf-4423-a27b-0c2f4094dcec/providers/Microsoft.Batch/locations/westcentralus/accountOperationResults/azsmnet8359-40feb82d-66d2-4b27-9d17-869a8360128b?api-version=2020-09-01"
],
"Retry-After": [
"15"
],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ],
"x-ms-request-id": [
- "cfda7178-41d0-4406-8f62-90096e155bce"
+ "376c71ad-f731-4bc4-a299-b33f8770151e"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1556,59 +1550,59 @@
"X-Content-Type-Options": [
"nosniff"
],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
"x-ms-ratelimit-remaining-subscription-reads": [
"11983"
],
"x-ms-correlation-request-id": [
- "d62e2c98-a2c4-4bd9-a4a0-0c85e068e6db"
+ "e346a7c1-eec9-4e92-804f-1d25603c6911"
],
"x-ms-routing-request-id": [
- "WESTUS:20200529T163602Z:d62e2c98-a2c4-4bd9-a4a0-0c85e068e6db"
+ "WESTUS:20200928T200430Z:e346a7c1-eec9-4e92-804f-1d25603c6911"
],
- "Content-Length": [
- "0"
+ "Date": [
+ "Mon, 28 Sep 2020 20:04:29 GMT"
],
"Expires": [
"-1"
+ ],
+ "Content-Length": [
+ "0"
]
},
"ResponseBody": "",
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8147-607838ba-6f55-408b-a406-33f307226a0d?api-version=2020-05-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0ODE0Ny02MDc4MzhiYS02ZjU1LTQwOGItYTQwNi0zM2YzMDcyMjZhMGQ/YXBpLXZlcnNpb249MjAyMC0wNS0wMQ==",
+ "RequestUri": "/subscriptions/677f962b-9abf-4423-a27b-0c2f4094dcec/providers/Microsoft.Batch/locations/westcentralus/accountOperationResults/azsmnet8359-40feb82d-66d2-4b27-9d17-869a8360128b?api-version=2020-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjc3Zjk2MmItOWFiZi00NDIzLWEyN2ItMGMyZjQwOTRkY2VjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL3dlc3RjZW50cmFsdXMvYWNjb3VudE9wZXJhdGlvblJlc3VsdHMvYXpzbW5ldDgzNTktNDBmZWI4MmQtNjZkMi00YjI3LTlkMTctODY5YTgzNjAxMjhiP2FwaS12ZXJzaW9uPTIwMjAtMDktMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.26614.01",
+ "FxVersion/4.6.29220.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Batch.BatchManagementClient/10.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Batch.BatchManagementClient/11.0.0.0"
]
},
"ResponseHeaders": {
"Cache-Control": [
"no-cache"
],
- "Date": [
- "Fri, 29 May 2020 16:36:16 GMT"
- ],
"Pragma": [
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8147-607838ba-6f55-408b-a406-33f307226a0d?api-version=2020-05-01"
+ "https://management.azure.com/subscriptions/677f962b-9abf-4423-a27b-0c2f4094dcec/providers/Microsoft.Batch/locations/westcentralus/accountOperationResults/azsmnet8359-40feb82d-66d2-4b27-9d17-869a8360128b?api-version=2020-09-01"
],
"Retry-After": [
"15"
],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ],
"x-ms-request-id": [
- "24272865-2017-4d95-8af9-de64cb46e55d"
+ "8581831a-08c3-4916-a886-6a09fc60e3d5"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1616,59 +1610,59 @@
"X-Content-Type-Options": [
"nosniff"
],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
"x-ms-ratelimit-remaining-subscription-reads": [
"11982"
],
"x-ms-correlation-request-id": [
- "58aae9c8-da07-4007-9ef9-3410f3bb19b0"
+ "f8d566ed-36b6-4d92-9a75-e5ffd02339b4"
],
"x-ms-routing-request-id": [
- "WESTUS:20200529T163617Z:58aae9c8-da07-4007-9ef9-3410f3bb19b0"
+ "WESTUS:20200928T200445Z:f8d566ed-36b6-4d92-9a75-e5ffd02339b4"
],
- "Content-Length": [
- "0"
+ "Date": [
+ "Mon, 28 Sep 2020 20:04:44 GMT"
],
"Expires": [
"-1"
+ ],
+ "Content-Length": [
+ "0"
]
},
"ResponseBody": "",
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8147-607838ba-6f55-408b-a406-33f307226a0d?api-version=2020-05-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0ODE0Ny02MDc4MzhiYS02ZjU1LTQwOGItYTQwNi0zM2YzMDcyMjZhMGQ/YXBpLXZlcnNpb249MjAyMC0wNS0wMQ==",
+ "RequestUri": "/subscriptions/677f962b-9abf-4423-a27b-0c2f4094dcec/providers/Microsoft.Batch/locations/westcentralus/accountOperationResults/azsmnet8359-40feb82d-66d2-4b27-9d17-869a8360128b?api-version=2020-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjc3Zjk2MmItOWFiZi00NDIzLWEyN2ItMGMyZjQwOTRkY2VjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL3dlc3RjZW50cmFsdXMvYWNjb3VudE9wZXJhdGlvblJlc3VsdHMvYXpzbW5ldDgzNTktNDBmZWI4MmQtNjZkMi00YjI3LTlkMTctODY5YTgzNjAxMjhiP2FwaS12ZXJzaW9uPTIwMjAtMDktMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.26614.01",
+ "FxVersion/4.6.29220.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Batch.BatchManagementClient/10.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Batch.BatchManagementClient/11.0.0.0"
]
},
"ResponseHeaders": {
"Cache-Control": [
"no-cache"
],
- "Date": [
- "Fri, 29 May 2020 16:36:31 GMT"
- ],
"Pragma": [
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8147-607838ba-6f55-408b-a406-33f307226a0d?api-version=2020-05-01"
+ "https://management.azure.com/subscriptions/677f962b-9abf-4423-a27b-0c2f4094dcec/providers/Microsoft.Batch/locations/westcentralus/accountOperationResults/azsmnet8359-40feb82d-66d2-4b27-9d17-869a8360128b?api-version=2020-09-01"
],
"Retry-After": [
"15"
],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ],
"x-ms-request-id": [
- "d560dea9-10a5-44ea-9b95-7e6c7bc88d4d"
+ "fd6e7291-758d-43c9-b2b2-74597f3a3675"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1676,59 +1670,59 @@
"X-Content-Type-Options": [
"nosniff"
],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
"x-ms-ratelimit-remaining-subscription-reads": [
"11981"
],
"x-ms-correlation-request-id": [
- "3d08a920-a446-4692-9966-d7954983667a"
+ "c59a601a-ca03-41ff-ba35-1396dabb34f1"
],
"x-ms-routing-request-id": [
- "WESTUS:20200529T163632Z:3d08a920-a446-4692-9966-d7954983667a"
+ "WESTUS:20200928T200500Z:c59a601a-ca03-41ff-ba35-1396dabb34f1"
],
- "Content-Length": [
- "0"
+ "Date": [
+ "Mon, 28 Sep 2020 20:04:59 GMT"
],
"Expires": [
"-1"
+ ],
+ "Content-Length": [
+ "0"
]
},
"ResponseBody": "",
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8147-607838ba-6f55-408b-a406-33f307226a0d?api-version=2020-05-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0ODE0Ny02MDc4MzhiYS02ZjU1LTQwOGItYTQwNi0zM2YzMDcyMjZhMGQ/YXBpLXZlcnNpb249MjAyMC0wNS0wMQ==",
+ "RequestUri": "/subscriptions/677f962b-9abf-4423-a27b-0c2f4094dcec/providers/Microsoft.Batch/locations/westcentralus/accountOperationResults/azsmnet8359-40feb82d-66d2-4b27-9d17-869a8360128b?api-version=2020-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjc3Zjk2MmItOWFiZi00NDIzLWEyN2ItMGMyZjQwOTRkY2VjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL3dlc3RjZW50cmFsdXMvYWNjb3VudE9wZXJhdGlvblJlc3VsdHMvYXpzbW5ldDgzNTktNDBmZWI4MmQtNjZkMi00YjI3LTlkMTctODY5YTgzNjAxMjhiP2FwaS12ZXJzaW9uPTIwMjAtMDktMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.26614.01",
+ "FxVersion/4.6.29220.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Batch.BatchManagementClient/10.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Batch.BatchManagementClient/11.0.0.0"
]
},
"ResponseHeaders": {
"Cache-Control": [
"no-cache"
],
- "Date": [
- "Fri, 29 May 2020 16:36:46 GMT"
- ],
"Pragma": [
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8147-607838ba-6f55-408b-a406-33f307226a0d?api-version=2020-05-01"
+ "https://management.azure.com/subscriptions/677f962b-9abf-4423-a27b-0c2f4094dcec/providers/Microsoft.Batch/locations/westcentralus/accountOperationResults/azsmnet8359-40feb82d-66d2-4b27-9d17-869a8360128b?api-version=2020-09-01"
],
"Retry-After": [
"15"
],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ],
"x-ms-request-id": [
- "c5af475f-d494-4cbc-8afb-60913c1076f8"
+ "db924d60-5169-4af2-9d24-a423adb13907"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1739,56 +1733,56 @@
"x-ms-ratelimit-remaining-subscription-reads": [
"11980"
],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
"x-ms-correlation-request-id": [
- "4feaca28-a93c-4b87-a673-62f7a9c53938"
+ "493e3006-1ffd-4e1b-bb31-9c84b3bfcfe3"
],
"x-ms-routing-request-id": [
- "WESTUS:20200529T163647Z:4feaca28-a93c-4b87-a673-62f7a9c53938"
+ "WESTUS:20200928T200515Z:493e3006-1ffd-4e1b-bb31-9c84b3bfcfe3"
],
- "Content-Length": [
- "0"
+ "Date": [
+ "Mon, 28 Sep 2020 20:05:14 GMT"
],
"Expires": [
"-1"
+ ],
+ "Content-Length": [
+ "0"
]
},
"ResponseBody": "",
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8147-607838ba-6f55-408b-a406-33f307226a0d?api-version=2020-05-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0ODE0Ny02MDc4MzhiYS02ZjU1LTQwOGItYTQwNi0zM2YzMDcyMjZhMGQ/YXBpLXZlcnNpb249MjAyMC0wNS0wMQ==",
+ "RequestUri": "/subscriptions/677f962b-9abf-4423-a27b-0c2f4094dcec/providers/Microsoft.Batch/locations/westcentralus/accountOperationResults/azsmnet8359-40feb82d-66d2-4b27-9d17-869a8360128b?api-version=2020-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjc3Zjk2MmItOWFiZi00NDIzLWEyN2ItMGMyZjQwOTRkY2VjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL3dlc3RjZW50cmFsdXMvYWNjb3VudE9wZXJhdGlvblJlc3VsdHMvYXpzbW5ldDgzNTktNDBmZWI4MmQtNjZkMi00YjI3LTlkMTctODY5YTgzNjAxMjhiP2FwaS12ZXJzaW9uPTIwMjAtMDktMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.26614.01",
+ "FxVersion/4.6.29220.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Batch.BatchManagementClient/10.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Batch.BatchManagementClient/11.0.0.0"
]
},
"ResponseHeaders": {
"Cache-Control": [
"no-cache"
],
- "Date": [
- "Fri, 29 May 2020 16:37:01 GMT"
- ],
"Pragma": [
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8147-607838ba-6f55-408b-a406-33f307226a0d?api-version=2020-05-01"
+ "https://management.azure.com/subscriptions/677f962b-9abf-4423-a27b-0c2f4094dcec/providers/Microsoft.Batch/locations/westcentralus/accountOperationResults/azsmnet8359-40feb82d-66d2-4b27-9d17-869a8360128b?api-version=2020-09-01"
],
"Retry-After": [
"15"
],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ],
"x-ms-request-id": [
- "d83463c3-706c-4ce3-a391-fe086fe917c6"
+ "60c90e8d-f55f-4aab-a12c-8490fddf856c"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1796,59 +1790,59 @@
"X-Content-Type-Options": [
"nosniff"
],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
"x-ms-ratelimit-remaining-subscription-reads": [
"11979"
],
"x-ms-correlation-request-id": [
- "3047a6fb-97aa-467d-82d4-40422363362a"
+ "ba33b7b2-b774-48e0-9b9f-3793a910de0f"
],
"x-ms-routing-request-id": [
- "WESTUS:20200529T163702Z:3047a6fb-97aa-467d-82d4-40422363362a"
+ "WESTUS:20200928T200530Z:ba33b7b2-b774-48e0-9b9f-3793a910de0f"
],
- "Content-Length": [
- "0"
+ "Date": [
+ "Mon, 28 Sep 2020 20:05:29 GMT"
],
"Expires": [
"-1"
+ ],
+ "Content-Length": [
+ "0"
]
},
"ResponseBody": "",
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8147-607838ba-6f55-408b-a406-33f307226a0d?api-version=2020-05-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0ODE0Ny02MDc4MzhiYS02ZjU1LTQwOGItYTQwNi0zM2YzMDcyMjZhMGQ/YXBpLXZlcnNpb249MjAyMC0wNS0wMQ==",
+ "RequestUri": "/subscriptions/677f962b-9abf-4423-a27b-0c2f4094dcec/providers/Microsoft.Batch/locations/westcentralus/accountOperationResults/azsmnet8359-40feb82d-66d2-4b27-9d17-869a8360128b?api-version=2020-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjc3Zjk2MmItOWFiZi00NDIzLWEyN2ItMGMyZjQwOTRkY2VjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL3dlc3RjZW50cmFsdXMvYWNjb3VudE9wZXJhdGlvblJlc3VsdHMvYXpzbW5ldDgzNTktNDBmZWI4MmQtNjZkMi00YjI3LTlkMTctODY5YTgzNjAxMjhiP2FwaS12ZXJzaW9uPTIwMjAtMDktMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.26614.01",
+ "FxVersion/4.6.29220.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Batch.BatchManagementClient/10.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Batch.BatchManagementClient/11.0.0.0"
]
},
"ResponseHeaders": {
"Cache-Control": [
"no-cache"
],
- "Date": [
- "Fri, 29 May 2020 16:37:17 GMT"
- ],
"Pragma": [
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8147-607838ba-6f55-408b-a406-33f307226a0d?api-version=2020-05-01"
+ "https://management.azure.com/subscriptions/677f962b-9abf-4423-a27b-0c2f4094dcec/providers/Microsoft.Batch/locations/westcentralus/accountOperationResults/azsmnet8359-40feb82d-66d2-4b27-9d17-869a8360128b?api-version=2020-09-01"
],
"Retry-After": [
"15"
],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ],
"x-ms-request-id": [
- "e2098ddc-bdee-4268-8a27-a3de284bf2fc"
+ "95f28570-82e4-4b7e-ae92-30205606f626"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1856,59 +1850,59 @@
"X-Content-Type-Options": [
"nosniff"
],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
"x-ms-ratelimit-remaining-subscription-reads": [
"11978"
],
"x-ms-correlation-request-id": [
- "fc75bb6f-6f20-417c-b1e1-86a033bc800d"
+ "bcc29d1e-1445-4a06-a0cb-2aa7606321aa"
],
"x-ms-routing-request-id": [
- "WESTUS:20200529T163717Z:fc75bb6f-6f20-417c-b1e1-86a033bc800d"
+ "WESTUS:20200928T200545Z:bcc29d1e-1445-4a06-a0cb-2aa7606321aa"
],
- "Content-Length": [
- "0"
+ "Date": [
+ "Mon, 28 Sep 2020 20:05:44 GMT"
],
"Expires": [
"-1"
+ ],
+ "Content-Length": [
+ "0"
]
},
"ResponseBody": "",
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8147-607838ba-6f55-408b-a406-33f307226a0d?api-version=2020-05-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0ODE0Ny02MDc4MzhiYS02ZjU1LTQwOGItYTQwNi0zM2YzMDcyMjZhMGQ/YXBpLXZlcnNpb249MjAyMC0wNS0wMQ==",
+ "RequestUri": "/subscriptions/677f962b-9abf-4423-a27b-0c2f4094dcec/providers/Microsoft.Batch/locations/westcentralus/accountOperationResults/azsmnet8359-40feb82d-66d2-4b27-9d17-869a8360128b?api-version=2020-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjc3Zjk2MmItOWFiZi00NDIzLWEyN2ItMGMyZjQwOTRkY2VjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL3dlc3RjZW50cmFsdXMvYWNjb3VudE9wZXJhdGlvblJlc3VsdHMvYXpzbW5ldDgzNTktNDBmZWI4MmQtNjZkMi00YjI3LTlkMTctODY5YTgzNjAxMjhiP2FwaS12ZXJzaW9uPTIwMjAtMDktMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.26614.01",
+ "FxVersion/4.6.29220.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Batch.BatchManagementClient/10.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Batch.BatchManagementClient/11.0.0.0"
]
},
"ResponseHeaders": {
"Cache-Control": [
"no-cache"
],
- "Date": [
- "Fri, 29 May 2020 16:37:32 GMT"
- ],
"Pragma": [
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8147-607838ba-6f55-408b-a406-33f307226a0d?api-version=2020-05-01"
+ "https://management.azure.com/subscriptions/677f962b-9abf-4423-a27b-0c2f4094dcec/providers/Microsoft.Batch/locations/westcentralus/accountOperationResults/azsmnet8359-40feb82d-66d2-4b27-9d17-869a8360128b?api-version=2020-09-01"
],
"Retry-After": [
"15"
],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ],
"x-ms-request-id": [
- "a1615e16-62be-4ecd-9787-b766160dbe7c"
+ "6624683d-0f33-4f04-859b-abcc2a5a736a"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1916,59 +1910,59 @@
"X-Content-Type-Options": [
"nosniff"
],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
"x-ms-ratelimit-remaining-subscription-reads": [
"11977"
],
"x-ms-correlation-request-id": [
- "5fdea882-6cea-4756-80b6-5b4cf2870db0"
+ "4343c9ff-625b-44ce-a097-3f03d42ea5d2"
],
"x-ms-routing-request-id": [
- "WESTUS:20200529T163732Z:5fdea882-6cea-4756-80b6-5b4cf2870db0"
+ "WESTUS:20200928T200600Z:4343c9ff-625b-44ce-a097-3f03d42ea5d2"
],
- "Content-Length": [
- "0"
+ "Date": [
+ "Mon, 28 Sep 2020 20:05:59 GMT"
],
"Expires": [
"-1"
+ ],
+ "Content-Length": [
+ "0"
]
},
"ResponseBody": "",
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8147-607838ba-6f55-408b-a406-33f307226a0d?api-version=2020-05-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0ODE0Ny02MDc4MzhiYS02ZjU1LTQwOGItYTQwNi0zM2YzMDcyMjZhMGQ/YXBpLXZlcnNpb249MjAyMC0wNS0wMQ==",
+ "RequestUri": "/subscriptions/677f962b-9abf-4423-a27b-0c2f4094dcec/providers/Microsoft.Batch/locations/westcentralus/accountOperationResults/azsmnet8359-40feb82d-66d2-4b27-9d17-869a8360128b?api-version=2020-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjc3Zjk2MmItOWFiZi00NDIzLWEyN2ItMGMyZjQwOTRkY2VjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL3dlc3RjZW50cmFsdXMvYWNjb3VudE9wZXJhdGlvblJlc3VsdHMvYXpzbW5ldDgzNTktNDBmZWI4MmQtNjZkMi00YjI3LTlkMTctODY5YTgzNjAxMjhiP2FwaS12ZXJzaW9uPTIwMjAtMDktMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.26614.01",
+ "FxVersion/4.6.29220.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Batch.BatchManagementClient/10.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Batch.BatchManagementClient/11.0.0.0"
]
},
"ResponseHeaders": {
"Cache-Control": [
"no-cache"
],
- "Date": [
- "Fri, 29 May 2020 16:37:47 GMT"
- ],
"Pragma": [
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8147-607838ba-6f55-408b-a406-33f307226a0d?api-version=2020-05-01"
+ "https://management.azure.com/subscriptions/677f962b-9abf-4423-a27b-0c2f4094dcec/providers/Microsoft.Batch/locations/westcentralus/accountOperationResults/azsmnet8359-40feb82d-66d2-4b27-9d17-869a8360128b?api-version=2020-09-01"
],
"Retry-After": [
"15"
],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ],
"x-ms-request-id": [
- "b18111b8-2df8-4a93-9c80-fe85ac7b8a46"
+ "fc5599e8-4799-4edf-92ba-88fd3e5980eb"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1976,59 +1970,59 @@
"X-Content-Type-Options": [
"nosniff"
],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
"x-ms-ratelimit-remaining-subscription-reads": [
"11976"
],
"x-ms-correlation-request-id": [
- "382091db-118a-4ff4-b5ce-9beb177e2517"
+ "42e0e399-2c66-4917-bb29-3113b114239c"
],
"x-ms-routing-request-id": [
- "WESTUS:20200529T163748Z:382091db-118a-4ff4-b5ce-9beb177e2517"
+ "WESTUS:20200928T200615Z:42e0e399-2c66-4917-bb29-3113b114239c"
],
- "Content-Length": [
- "0"
+ "Date": [
+ "Mon, 28 Sep 2020 20:06:14 GMT"
],
"Expires": [
"-1"
+ ],
+ "Content-Length": [
+ "0"
]
},
"ResponseBody": "",
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8147-607838ba-6f55-408b-a406-33f307226a0d?api-version=2020-05-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0ODE0Ny02MDc4MzhiYS02ZjU1LTQwOGItYTQwNi0zM2YzMDcyMjZhMGQ/YXBpLXZlcnNpb249MjAyMC0wNS0wMQ==",
+ "RequestUri": "/subscriptions/677f962b-9abf-4423-a27b-0c2f4094dcec/providers/Microsoft.Batch/locations/westcentralus/accountOperationResults/azsmnet8359-40feb82d-66d2-4b27-9d17-869a8360128b?api-version=2020-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjc3Zjk2MmItOWFiZi00NDIzLWEyN2ItMGMyZjQwOTRkY2VjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL3dlc3RjZW50cmFsdXMvYWNjb3VudE9wZXJhdGlvblJlc3VsdHMvYXpzbW5ldDgzNTktNDBmZWI4MmQtNjZkMi00YjI3LTlkMTctODY5YTgzNjAxMjhiP2FwaS12ZXJzaW9uPTIwMjAtMDktMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.26614.01",
+ "FxVersion/4.6.29220.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Batch.BatchManagementClient/10.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Batch.BatchManagementClient/11.0.0.0"
]
},
"ResponseHeaders": {
"Cache-Control": [
"no-cache"
],
- "Date": [
- "Fri, 29 May 2020 16:38:03 GMT"
- ],
"Pragma": [
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8147-607838ba-6f55-408b-a406-33f307226a0d?api-version=2020-05-01"
+ "https://management.azure.com/subscriptions/677f962b-9abf-4423-a27b-0c2f4094dcec/providers/Microsoft.Batch/locations/westcentralus/accountOperationResults/azsmnet8359-40feb82d-66d2-4b27-9d17-869a8360128b?api-version=2020-09-01"
],
"Retry-After": [
"15"
],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ],
"x-ms-request-id": [
- "cac7e674-9ffe-471d-901e-7b158e3799b6"
+ "cefa0997-6dd5-4127-870c-6a0a06b56000"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2036,59 +2030,59 @@
"X-Content-Type-Options": [
"nosniff"
],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
"x-ms-ratelimit-remaining-subscription-reads": [
"11975"
],
"x-ms-correlation-request-id": [
- "d0dea7c0-8f5a-4785-acf8-fb73a188a761"
+ "e43b9c2a-5363-46c9-9eae-479e2e5b6915"
],
"x-ms-routing-request-id": [
- "WESTUS:20200529T163803Z:d0dea7c0-8f5a-4785-acf8-fb73a188a761"
+ "WESTUS:20200928T200630Z:e43b9c2a-5363-46c9-9eae-479e2e5b6915"
],
- "Content-Length": [
- "0"
+ "Date": [
+ "Mon, 28 Sep 2020 20:06:30 GMT"
],
"Expires": [
"-1"
+ ],
+ "Content-Length": [
+ "0"
]
},
"ResponseBody": "",
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8147-607838ba-6f55-408b-a406-33f307226a0d?api-version=2020-05-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0ODE0Ny02MDc4MzhiYS02ZjU1LTQwOGItYTQwNi0zM2YzMDcyMjZhMGQ/YXBpLXZlcnNpb249MjAyMC0wNS0wMQ==",
+ "RequestUri": "/subscriptions/677f962b-9abf-4423-a27b-0c2f4094dcec/providers/Microsoft.Batch/locations/westcentralus/accountOperationResults/azsmnet8359-40feb82d-66d2-4b27-9d17-869a8360128b?api-version=2020-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjc3Zjk2MmItOWFiZi00NDIzLWEyN2ItMGMyZjQwOTRkY2VjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL3dlc3RjZW50cmFsdXMvYWNjb3VudE9wZXJhdGlvblJlc3VsdHMvYXpzbW5ldDgzNTktNDBmZWI4MmQtNjZkMi00YjI3LTlkMTctODY5YTgzNjAxMjhiP2FwaS12ZXJzaW9uPTIwMjAtMDktMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.26614.01",
+ "FxVersion/4.6.29220.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Batch.BatchManagementClient/10.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Batch.BatchManagementClient/11.0.0.0"
]
},
"ResponseHeaders": {
"Cache-Control": [
"no-cache"
],
- "Date": [
- "Fri, 29 May 2020 16:38:17 GMT"
- ],
"Pragma": [
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8147-607838ba-6f55-408b-a406-33f307226a0d?api-version=2020-05-01"
+ "https://management.azure.com/subscriptions/677f962b-9abf-4423-a27b-0c2f4094dcec/providers/Microsoft.Batch/locations/westcentralus/accountOperationResults/azsmnet8359-40feb82d-66d2-4b27-9d17-869a8360128b?api-version=2020-09-01"
],
"Retry-After": [
"15"
],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ],
"x-ms-request-id": [
- "f23314f7-2dce-4ec3-a660-0fe84906752e"
+ "21a9f8b8-9c87-4f4d-b86f-ab54eaab0ae3"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2096,59 +2090,59 @@
"X-Content-Type-Options": [
"nosniff"
],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
"x-ms-ratelimit-remaining-subscription-reads": [
"11974"
],
"x-ms-correlation-request-id": [
- "e7735b7b-c807-4e10-92cc-ab6a104d7c37"
+ "fd81f9da-9f70-4723-9c17-a3b3a8b2eaf1"
],
"x-ms-routing-request-id": [
- "WESTUS:20200529T163818Z:e7735b7b-c807-4e10-92cc-ab6a104d7c37"
+ "WESTUS:20200928T200645Z:fd81f9da-9f70-4723-9c17-a3b3a8b2eaf1"
],
- "Content-Length": [
- "0"
+ "Date": [
+ "Mon, 28 Sep 2020 20:06:45 GMT"
],
"Expires": [
"-1"
+ ],
+ "Content-Length": [
+ "0"
]
},
"ResponseBody": "",
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8147-607838ba-6f55-408b-a406-33f307226a0d?api-version=2020-05-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0ODE0Ny02MDc4MzhiYS02ZjU1LTQwOGItYTQwNi0zM2YzMDcyMjZhMGQ/YXBpLXZlcnNpb249MjAyMC0wNS0wMQ==",
+ "RequestUri": "/subscriptions/677f962b-9abf-4423-a27b-0c2f4094dcec/providers/Microsoft.Batch/locations/westcentralus/accountOperationResults/azsmnet8359-40feb82d-66d2-4b27-9d17-869a8360128b?api-version=2020-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjc3Zjk2MmItOWFiZi00NDIzLWEyN2ItMGMyZjQwOTRkY2VjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL3dlc3RjZW50cmFsdXMvYWNjb3VudE9wZXJhdGlvblJlc3VsdHMvYXpzbW5ldDgzNTktNDBmZWI4MmQtNjZkMi00YjI3LTlkMTctODY5YTgzNjAxMjhiP2FwaS12ZXJzaW9uPTIwMjAtMDktMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.26614.01",
+ "FxVersion/4.6.29220.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Batch.BatchManagementClient/10.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Batch.BatchManagementClient/11.0.0.0"
]
},
"ResponseHeaders": {
"Cache-Control": [
"no-cache"
],
- "Date": [
- "Fri, 29 May 2020 16:38:32 GMT"
- ],
"Pragma": [
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8147-607838ba-6f55-408b-a406-33f307226a0d?api-version=2020-05-01"
+ "https://management.azure.com/subscriptions/677f962b-9abf-4423-a27b-0c2f4094dcec/providers/Microsoft.Batch/locations/westcentralus/accountOperationResults/azsmnet8359-40feb82d-66d2-4b27-9d17-869a8360128b?api-version=2020-09-01"
],
"Retry-After": [
"15"
],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ],
"x-ms-request-id": [
- "10e04c52-79fb-44f7-912c-5ac97dc15ba4"
+ "e12c3ed6-5b92-4c47-9416-2461838dae40"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2156,59 +2150,59 @@
"X-Content-Type-Options": [
"nosniff"
],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
"x-ms-ratelimit-remaining-subscription-reads": [
"11973"
],
"x-ms-correlation-request-id": [
- "9b4bd238-5b21-418d-a6c5-1151c36f36ed"
+ "a2a76a9e-3e82-45d2-a94b-222376ad719b"
],
"x-ms-routing-request-id": [
- "WESTUS:20200529T163833Z:9b4bd238-5b21-418d-a6c5-1151c36f36ed"
+ "WESTUS:20200928T200700Z:a2a76a9e-3e82-45d2-a94b-222376ad719b"
],
- "Content-Length": [
- "0"
+ "Date": [
+ "Mon, 28 Sep 2020 20:07:00 GMT"
],
"Expires": [
"-1"
+ ],
+ "Content-Length": [
+ "0"
]
},
"ResponseBody": "",
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8147-607838ba-6f55-408b-a406-33f307226a0d?api-version=2020-05-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0ODE0Ny02MDc4MzhiYS02ZjU1LTQwOGItYTQwNi0zM2YzMDcyMjZhMGQ/YXBpLXZlcnNpb249MjAyMC0wNS0wMQ==",
+ "RequestUri": "/subscriptions/677f962b-9abf-4423-a27b-0c2f4094dcec/providers/Microsoft.Batch/locations/westcentralus/accountOperationResults/azsmnet8359-40feb82d-66d2-4b27-9d17-869a8360128b?api-version=2020-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjc3Zjk2MmItOWFiZi00NDIzLWEyN2ItMGMyZjQwOTRkY2VjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL3dlc3RjZW50cmFsdXMvYWNjb3VudE9wZXJhdGlvblJlc3VsdHMvYXpzbW5ldDgzNTktNDBmZWI4MmQtNjZkMi00YjI3LTlkMTctODY5YTgzNjAxMjhiP2FwaS12ZXJzaW9uPTIwMjAtMDktMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.26614.01",
+ "FxVersion/4.6.29220.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Batch.BatchManagementClient/10.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Batch.BatchManagementClient/11.0.0.0"
]
},
"ResponseHeaders": {
"Cache-Control": [
"no-cache"
],
- "Date": [
- "Fri, 29 May 2020 16:38:48 GMT"
- ],
"Pragma": [
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8147-607838ba-6f55-408b-a406-33f307226a0d?api-version=2020-05-01"
+ "https://management.azure.com/subscriptions/677f962b-9abf-4423-a27b-0c2f4094dcec/providers/Microsoft.Batch/locations/westcentralus/accountOperationResults/azsmnet8359-40feb82d-66d2-4b27-9d17-869a8360128b?api-version=2020-09-01"
],
"Retry-After": [
"15"
],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ],
"x-ms-request-id": [
- "3d99e8e5-1dab-452a-b0bc-a5fd630357f0"
+ "494b1dec-0133-4013-88b5-dbdf07b2ba03"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2216,59 +2210,59 @@
"X-Content-Type-Options": [
"nosniff"
],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
"x-ms-ratelimit-remaining-subscription-reads": [
"11972"
],
"x-ms-correlation-request-id": [
- "937fe801-68da-413b-90a1-e98b5dbbab88"
+ "2c45c0aa-4b21-4828-8858-865448659229"
],
"x-ms-routing-request-id": [
- "WESTUS:20200529T163848Z:937fe801-68da-413b-90a1-e98b5dbbab88"
+ "WESTUS:20200928T200716Z:2c45c0aa-4b21-4828-8858-865448659229"
],
- "Content-Length": [
- "0"
+ "Date": [
+ "Mon, 28 Sep 2020 20:07:15 GMT"
],
"Expires": [
"-1"
+ ],
+ "Content-Length": [
+ "0"
]
},
"ResponseBody": "",
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8147-607838ba-6f55-408b-a406-33f307226a0d?api-version=2020-05-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0ODE0Ny02MDc4MzhiYS02ZjU1LTQwOGItYTQwNi0zM2YzMDcyMjZhMGQ/YXBpLXZlcnNpb249MjAyMC0wNS0wMQ==",
+ "RequestUri": "/subscriptions/677f962b-9abf-4423-a27b-0c2f4094dcec/providers/Microsoft.Batch/locations/westcentralus/accountOperationResults/azsmnet8359-40feb82d-66d2-4b27-9d17-869a8360128b?api-version=2020-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjc3Zjk2MmItOWFiZi00NDIzLWEyN2ItMGMyZjQwOTRkY2VjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL3dlc3RjZW50cmFsdXMvYWNjb3VudE9wZXJhdGlvblJlc3VsdHMvYXpzbW5ldDgzNTktNDBmZWI4MmQtNjZkMi00YjI3LTlkMTctODY5YTgzNjAxMjhiP2FwaS12ZXJzaW9uPTIwMjAtMDktMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.26614.01",
+ "FxVersion/4.6.29220.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Batch.BatchManagementClient/10.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Batch.BatchManagementClient/11.0.0.0"
]
},
"ResponseHeaders": {
"Cache-Control": [
"no-cache"
],
- "Date": [
- "Fri, 29 May 2020 16:39:03 GMT"
- ],
"Pragma": [
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8147-607838ba-6f55-408b-a406-33f307226a0d?api-version=2020-05-01"
+ "https://management.azure.com/subscriptions/677f962b-9abf-4423-a27b-0c2f4094dcec/providers/Microsoft.Batch/locations/westcentralus/accountOperationResults/azsmnet8359-40feb82d-66d2-4b27-9d17-869a8360128b?api-version=2020-09-01"
],
"Retry-After": [
"15"
],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ],
"x-ms-request-id": [
- "0f053647-8530-4b8a-a91b-dc9bb9b1fc96"
+ "6fb77b54-b764-4ae2-b1e9-7e1b1dc484e1"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2276,59 +2270,59 @@
"X-Content-Type-Options": [
"nosniff"
],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
"x-ms-ratelimit-remaining-subscription-reads": [
"11971"
],
"x-ms-correlation-request-id": [
- "5f2150d2-527d-4b2a-890c-8423e7bfd8f1"
+ "17595065-09e9-4415-b4dc-ea4c657b661b"
],
"x-ms-routing-request-id": [
- "WESTUS:20200529T163904Z:5f2150d2-527d-4b2a-890c-8423e7bfd8f1"
+ "WESTUS:20200928T200731Z:17595065-09e9-4415-b4dc-ea4c657b661b"
],
- "Content-Length": [
- "0"
+ "Date": [
+ "Mon, 28 Sep 2020 20:07:30 GMT"
],
"Expires": [
"-1"
+ ],
+ "Content-Length": [
+ "0"
]
},
"ResponseBody": "",
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8147-607838ba-6f55-408b-a406-33f307226a0d?api-version=2020-05-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0ODE0Ny02MDc4MzhiYS02ZjU1LTQwOGItYTQwNi0zM2YzMDcyMjZhMGQ/YXBpLXZlcnNpb249MjAyMC0wNS0wMQ==",
+ "RequestUri": "/subscriptions/677f962b-9abf-4423-a27b-0c2f4094dcec/providers/Microsoft.Batch/locations/westcentralus/accountOperationResults/azsmnet8359-40feb82d-66d2-4b27-9d17-869a8360128b?api-version=2020-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjc3Zjk2MmItOWFiZi00NDIzLWEyN2ItMGMyZjQwOTRkY2VjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL3dlc3RjZW50cmFsdXMvYWNjb3VudE9wZXJhdGlvblJlc3VsdHMvYXpzbW5ldDgzNTktNDBmZWI4MmQtNjZkMi00YjI3LTlkMTctODY5YTgzNjAxMjhiP2FwaS12ZXJzaW9uPTIwMjAtMDktMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.26614.01",
+ "FxVersion/4.6.29220.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Batch.BatchManagementClient/10.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Batch.BatchManagementClient/11.0.0.0"
]
},
"ResponseHeaders": {
"Cache-Control": [
"no-cache"
],
- "Date": [
- "Fri, 29 May 2020 16:39:18 GMT"
- ],
"Pragma": [
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8147-607838ba-6f55-408b-a406-33f307226a0d?api-version=2020-05-01"
+ "https://management.azure.com/subscriptions/677f962b-9abf-4423-a27b-0c2f4094dcec/providers/Microsoft.Batch/locations/westcentralus/accountOperationResults/azsmnet8359-40feb82d-66d2-4b27-9d17-869a8360128b?api-version=2020-09-01"
],
"Retry-After": [
"15"
],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ],
"x-ms-request-id": [
- "574ad824-1bb6-4bed-900d-6d9b1f054eca"
+ "38808761-a76c-4212-bd5c-87726303623b"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2336,59 +2330,53 @@
"X-Content-Type-Options": [
"nosniff"
],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
"x-ms-ratelimit-remaining-subscription-reads": [
"11970"
],
"x-ms-correlation-request-id": [
- "ef2ffbce-cfcd-43de-8ff2-e1a1db4dbd27"
+ "870b50f4-87ff-4519-b63a-5611820b3a02"
],
"x-ms-routing-request-id": [
- "WESTUS:20200529T163919Z:ef2ffbce-cfcd-43de-8ff2-e1a1db4dbd27"
+ "WESTUS:20200928T200746Z:870b50f4-87ff-4519-b63a-5611820b3a02"
],
- "Content-Length": [
- "0"
+ "Date": [
+ "Mon, 28 Sep 2020 20:07:45 GMT"
],
"Expires": [
"-1"
+ ],
+ "Content-Length": [
+ "0"
]
},
"ResponseBody": "",
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8147-607838ba-6f55-408b-a406-33f307226a0d?api-version=2020-05-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0ODE0Ny02MDc4MzhiYS02ZjU1LTQwOGItYTQwNi0zM2YzMDcyMjZhMGQ/YXBpLXZlcnNpb249MjAyMC0wNS0wMQ==",
+ "RequestUri": "/subscriptions/677f962b-9abf-4423-a27b-0c2f4094dcec/providers/Microsoft.Batch/locations/westcentralus/accountOperationResults/azsmnet8359-40feb82d-66d2-4b27-9d17-869a8360128b?api-version=2020-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjc3Zjk2MmItOWFiZi00NDIzLWEyN2ItMGMyZjQwOTRkY2VjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL3dlc3RjZW50cmFsdXMvYWNjb3VudE9wZXJhdGlvblJlc3VsdHMvYXpzbW5ldDgzNTktNDBmZWI4MmQtNjZkMi00YjI3LTlkMTctODY5YTgzNjAxMjhiP2FwaS12ZXJzaW9uPTIwMjAtMDktMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.26614.01",
+ "FxVersion/4.6.29220.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Batch.BatchManagementClient/10.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Batch.BatchManagementClient/11.0.0.0"
]
},
"ResponseHeaders": {
"Cache-Control": [
"no-cache"
],
- "Date": [
- "Fri, 29 May 2020 16:39:33 GMT"
- ],
"Pragma": [
"no-cache"
],
- "Location": [
- "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8147-607838ba-6f55-408b-a406-33f307226a0d?api-version=2020-05-01"
- ],
- "Retry-After": [
- "15"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ],
"x-ms-request-id": [
- "3bd1df9c-d049-45a7-aa4d-338546b03b6c"
+ "bb1f0087-0205-43fc-a610-a1fc831516e6"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2396,53 +2384,53 @@
"X-Content-Type-Options": [
"nosniff"
],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
"x-ms-ratelimit-remaining-subscription-reads": [
"11969"
],
"x-ms-correlation-request-id": [
- "8e4aa6d2-0f51-4802-b435-e11c6726300e"
+ "d92bf1de-e1a1-4a29-babb-0bebe8aaf349"
],
"x-ms-routing-request-id": [
- "WESTUS:20200529T163934Z:8e4aa6d2-0f51-4802-b435-e11c6726300e"
+ "WESTUS:20200928T200801Z:d92bf1de-e1a1-4a29-babb-0bebe8aaf349"
],
- "Content-Length": [
- "0"
+ "Date": [
+ "Mon, 28 Sep 2020 20:08:00 GMT"
],
"Expires": [
"-1"
+ ],
+ "Content-Length": [
+ "0"
]
},
"ResponseBody": "",
- "StatusCode": 202
+ "StatusCode": 200
},
{
- "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8147-607838ba-6f55-408b-a406-33f307226a0d?api-version=2020-05-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0ODE0Ny02MDc4MzhiYS02ZjU1LTQwOGItYTQwNi0zM2YzMDcyMjZhMGQ/YXBpLXZlcnNpb249MjAyMC0wNS0wMQ==",
+ "RequestUri": "/subscriptions/677f962b-9abf-4423-a27b-0c2f4094dcec/providers/Microsoft.Batch/locations/westcentralus/accountOperationResults/azsmnet8359-40feb82d-66d2-4b27-9d17-869a8360128b?api-version=2020-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjc3Zjk2MmItOWFiZi00NDIzLWEyN2ItMGMyZjQwOTRkY2VjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL3dlc3RjZW50cmFsdXMvYWNjb3VudE9wZXJhdGlvblJlc3VsdHMvYXpzbW5ldDgzNTktNDBmZWI4MmQtNjZkMi00YjI3LTlkMTctODY5YTgzNjAxMjhiP2FwaS12ZXJzaW9uPTIwMjAtMDktMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.26614.01",
+ "FxVersion/4.6.29220.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Batch.BatchManagementClient/10.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Batch.BatchManagementClient/11.0.0.0"
]
},
"ResponseHeaders": {
"Cache-Control": [
"no-cache"
],
- "Date": [
- "Fri, 29 May 2020 16:39:48 GMT"
- ],
"Pragma": [
"no-cache"
],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ],
"x-ms-request-id": [
- "3d7b1094-c176-406d-a948-915ebc7b51a2"
+ "8dca15ea-005f-4e7d-a99b-39a3b6cf8dd4"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2450,53 +2438,74 @@
"X-Content-Type-Options": [
"nosniff"
],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
"x-ms-ratelimit-remaining-subscription-reads": [
"11968"
],
"x-ms-correlation-request-id": [
- "2714c5a1-a923-48c2-a229-c4e5277522e6"
+ "bcb38b8c-ebe8-4345-9842-58e4ab8c4fe0"
],
"x-ms-routing-request-id": [
- "WESTUS:20200529T163949Z:2714c5a1-a923-48c2-a229-c4e5277522e6"
+ "WESTUS:20200928T200801Z:bcb38b8c-ebe8-4345-9842-58e4ab8c4fe0"
],
- "Content-Length": [
- "0"
+ "Date": [
+ "Mon, 28 Sep 2020 20:08:00 GMT"
],
"Expires": [
"-1"
+ ],
+ "Content-Length": [
+ "0"
]
},
"ResponseBody": "",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8147-607838ba-6f55-408b-a406-33f307226a0d?api-version=2020-05-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0ODE0Ny02MDc4MzhiYS02ZjU1LTQwOGItYTQwNi0zM2YzMDcyMjZhMGQ/YXBpLXZlcnNpb249MjAyMC0wNS0wMQ==",
- "RequestMethod": "GET",
+ "RequestUri": "/subscriptions/677f962b-9abf-4423-a27b-0c2f4094dcec/resourcegroups/azsmnet2634?api-version=2017-05-10",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjc3Zjk2MmItOWFiZi00NDIzLWEyN2ItMGMyZjQwOTRkY2VjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQyNjM0P2FwaS12ZXJzaW9uPTIwMTctMDUtMTA=",
+ "RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "14cd5249-32da-4cfd-83b7-de67650fa87c"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
"User-Agent": [
- "FxVersion/4.6.26614.01",
+ "FxVersion/4.6.29220.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Batch.BatchManagementClient/10.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0"
]
},
"ResponseHeaders": {
"Cache-Control": [
"no-cache"
],
- "Date": [
- "Fri, 29 May 2020 16:39:48 GMT"
- ],
"Pragma": [
"no-cache"
],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
+ "Location": [
+ "https://management.azure.com/subscriptions/677f962b-9abf-4423-a27b-0c2f4094dcec/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUMjYzNC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2017-05-10"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-deletes": [
+ "14999"
],
"x-ms-request-id": [
- "1e64e4f8-ba4b-4e98-b3cc-72d898292df2"
+ "0e063696-9748-4f6b-9c8e-7e1c4350cc3c"
+ ],
+ "x-ms-correlation-request-id": [
+ "0e063696-9748-4f6b-9c8e-7e1c4350cc3c"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200928T200802Z:0e063696-9748-4f6b-9c8e-7e1c4350cc3c"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2504,41 +2513,29 @@
"X-Content-Type-Options": [
"nosniff"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11967"
- ],
- "x-ms-correlation-request-id": [
- "cfe0fbfb-1d9c-464e-8af2-64ac9e4893d8"
+ "Date": [
+ "Mon, 28 Sep 2020 20:08:01 GMT"
],
- "x-ms-routing-request-id": [
- "WESTUS:20200529T163949Z:cfe0fbfb-1d9c-464e-8af2-64ac9e4893d8"
+ "Expires": [
+ "-1"
],
"Content-Length": [
"0"
- ],
- "Expires": [
- "-1"
]
},
"ResponseBody": "",
- "StatusCode": 200
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourcegroups/azsmnet1881?api-version=2017-05-10",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQxODgxP2FwaS12ZXJzaW9uPTIwMTctMDUtMTA=",
- "RequestMethod": "DELETE",
+ "RequestUri": "/subscriptions/677f962b-9abf-4423-a27b-0c2f4094dcec/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUMjYzNC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2017-05-10",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjc3Zjk2MmItOWFiZi00NDIzLWEyN2ItMGMyZjQwOTRkY2VjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xOTlRrVlVNall6TkMxWFJWTlVRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wWTJWdWRISmhiSFZ6SW4wP2FwaS12ZXJzaW9uPTIwMTctMDUtMTA=",
+ "RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "x-ms-client-request-id": [
- "7462720c-cf6d-44c6-88df-3ce24e212b8f"
- ],
- "accept-language": [
- "en-US"
- ],
"User-Agent": [
- "FxVersion/4.6.26614.01",
+ "FxVersion/4.6.29220.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
"Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0"
]
},
@@ -2546,29 +2543,26 @@
"Cache-Control": [
"no-cache"
],
- "Date": [
- "Fri, 29 May 2020 16:39:51 GMT"
- ],
"Pragma": [
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUMTg4MS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2017-05-10"
+ "https://management.azure.com/subscriptions/677f962b-9abf-4423-a27b-0c2f4094dcec/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUMjYzNC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2017-05-10"
],
"Retry-After": [
"15"
],
- "x-ms-ratelimit-remaining-subscription-deletes": [
- "14999"
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11999"
],
"x-ms-request-id": [
- "9582df3c-53dc-40d6-86f9-e69c9e8d8ff5"
+ "ac5f19a6-fabf-444b-99ce-a3d74d40a7ab"
],
"x-ms-correlation-request-id": [
- "9582df3c-53dc-40d6-86f9-e69c9e8d8ff5"
+ "ac5f19a6-fabf-444b-99ce-a3d74d40a7ab"
],
"x-ms-routing-request-id": [
- "WESTUS:20200529T163951Z:9582df3c-53dc-40d6-86f9-e69c9e8d8ff5"
+ "WESTUS:20200928T200817Z:ac5f19a6-fabf-444b-99ce-a3d74d40a7ab"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2576,26 +2570,29 @@
"X-Content-Type-Options": [
"nosniff"
],
- "Content-Length": [
- "0"
+ "Date": [
+ "Mon, 28 Sep 2020 20:08:16 GMT"
],
"Expires": [
"-1"
+ ],
+ "Content-Length": [
+ "0"
]
},
"ResponseBody": "",
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUMTg4MS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2017-05-10",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xOTlRrVlVNVGc0TVMxRlFWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==",
+ "RequestUri": "/subscriptions/677f962b-9abf-4423-a27b-0c2f4094dcec/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUMjYzNC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2017-05-10",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjc3Zjk2MmItOWFiZi00NDIzLWEyN2ItMGMyZjQwOTRkY2VjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xOTlRrVlVNall6TkMxWFJWTlVRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wWTJWdWRISmhiSFZ6SW4wP2FwaS12ZXJzaW9uPTIwMTctMDUtMTA=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.26614.01",
+ "FxVersion/4.6.29220.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
"Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0"
]
},
@@ -2603,29 +2600,26 @@
"Cache-Control": [
"no-cache"
],
- "Date": [
- "Fri, 29 May 2020 16:40:06 GMT"
- ],
"Pragma": [
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUMTg4MS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2017-05-10"
+ "https://management.azure.com/subscriptions/677f962b-9abf-4423-a27b-0c2f4094dcec/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUMjYzNC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2017-05-10"
],
"Retry-After": [
"15"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11999"
+ "11998"
],
"x-ms-request-id": [
- "5a7d7699-d372-45bf-8816-f6a473c5981b"
+ "e872def6-8f8e-460d-bc43-c51461a67344"
],
"x-ms-correlation-request-id": [
- "5a7d7699-d372-45bf-8816-f6a473c5981b"
+ "e872def6-8f8e-460d-bc43-c51461a67344"
],
"x-ms-routing-request-id": [
- "WESTUS:20200529T164006Z:5a7d7699-d372-45bf-8816-f6a473c5981b"
+ "WESTUS:20200928T200832Z:e872def6-8f8e-460d-bc43-c51461a67344"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2633,26 +2627,29 @@
"X-Content-Type-Options": [
"nosniff"
],
- "Content-Length": [
- "0"
+ "Date": [
+ "Mon, 28 Sep 2020 20:08:32 GMT"
],
"Expires": [
"-1"
+ ],
+ "Content-Length": [
+ "0"
]
},
"ResponseBody": "",
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUMTg4MS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2017-05-10",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xOTlRrVlVNVGc0TVMxRlFWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==",
+ "RequestUri": "/subscriptions/677f962b-9abf-4423-a27b-0c2f4094dcec/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUMjYzNC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2017-05-10",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjc3Zjk2MmItOWFiZi00NDIzLWEyN2ItMGMyZjQwOTRkY2VjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xOTlRrVlVNall6TkMxWFJWTlVRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wWTJWdWRISmhiSFZ6SW4wP2FwaS12ZXJzaW9uPTIwMTctMDUtMTA=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.26614.01",
+ "FxVersion/4.6.29220.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
"Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0"
]
},
@@ -2660,23 +2657,20 @@
"Cache-Control": [
"no-cache"
],
- "Date": [
- "Fri, 29 May 2020 16:40:21 GMT"
- ],
"Pragma": [
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11998"
+ "11997"
],
"x-ms-request-id": [
- "20b169c6-b234-4463-8f5f-6e69927108d1"
+ "7410fbfd-729b-48ac-9fb5-95d30d9f6018"
],
"x-ms-correlation-request-id": [
- "20b169c6-b234-4463-8f5f-6e69927108d1"
+ "7410fbfd-729b-48ac-9fb5-95d30d9f6018"
],
"x-ms-routing-request-id": [
- "WESTUS:20200529T164021Z:20b169c6-b234-4463-8f5f-6e69927108d1"
+ "WESTUS:20200928T200847Z:7410fbfd-729b-48ac-9fb5-95d30d9f6018"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2684,26 +2678,29 @@
"X-Content-Type-Options": [
"nosniff"
],
- "Content-Length": [
- "0"
+ "Date": [
+ "Mon, 28 Sep 2020 20:08:47 GMT"
],
"Expires": [
"-1"
+ ],
+ "Content-Length": [
+ "0"
]
},
"ResponseBody": "",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUMTg4MS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2017-05-10",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xOTlRrVlVNVGc0TVMxRlFWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==",
+ "RequestUri": "/subscriptions/677f962b-9abf-4423-a27b-0c2f4094dcec/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUMjYzNC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2017-05-10",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjc3Zjk2MmItOWFiZi00NDIzLWEyN2ItMGMyZjQwOTRkY2VjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xOTlRrVlVNall6TkMxWFJWTlVRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wWTJWdWRISmhiSFZ6SW4wP2FwaS12ZXJzaW9uPTIwMTctMDUtMTA=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.26614.01",
+ "FxVersion/4.6.29220.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
"Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0"
]
},
@@ -2711,23 +2708,20 @@
"Cache-Control": [
"no-cache"
],
- "Date": [
- "Fri, 29 May 2020 16:40:21 GMT"
- ],
"Pragma": [
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11997"
+ "11996"
],
"x-ms-request-id": [
- "f75b747a-636c-4df2-86d6-366429be27be"
+ "51628459-0f59-4b4e-896f-5a3113ecb6fd"
],
"x-ms-correlation-request-id": [
- "f75b747a-636c-4df2-86d6-366429be27be"
+ "51628459-0f59-4b4e-896f-5a3113ecb6fd"
],
"x-ms-routing-request-id": [
- "WESTUS:20200529T164022Z:f75b747a-636c-4df2-86d6-366429be27be"
+ "WESTUS:20200928T200848Z:51628459-0f59-4b4e-896f-5a3113ecb6fd"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2735,11 +2729,14 @@
"X-Content-Type-Options": [
"nosniff"
],
- "Content-Length": [
- "0"
+ "Date": [
+ "Mon, 28 Sep 2020 20:08:47 GMT"
],
"Expires": [
"-1"
+ ],
+ "Content-Length": [
+ "0"
]
},
"ResponseBody": "",
@@ -2748,11 +2745,11 @@
],
"Names": {
"BatchCertificateEndToEndAsync": [
- "azsmnet1881",
- "azsmnet8147"
+ "azsmnet2634",
+ "azsmnet8359"
]
},
"Variables": {
- "SubscriptionId": "21abd678-18c5-4660-9fdd-8c5ba6b6fe1f"
+ "SubscriptionId": "677f962b-9abf-4423-a27b-0c2f4094dcec"
}
}
\ No newline at end of file
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 91e48ad3ee2a8..fa86457356241 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
@@ -1,21 +1,21 @@
{
"Entries": [
{
- "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch?api-version=2017-05-10",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2g/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==",
+ "RequestUri": "/subscriptions/677f962b-9abf-4423-a27b-0c2f4094dcec/providers/Microsoft.Batch?api-version=2017-05-10",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjc3Zjk2MmItOWFiZi00NDIzLWEyN2ItMGMyZjQwOTRkY2VjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2g/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "f752d240-9441-4310-b536-acbaba10571b"
+ "11f7f532-df9a-498b-b39d-d85b4ae3adeb"
],
- "accept-language": [
+ "Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.26614.01",
+ "FxVersion/4.6.29220.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
"Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0"
]
},
@@ -23,9 +23,6 @@
"Cache-Control": [
"no-cache"
],
- "Date": [
- "Fri, 29 May 2020 16:44:33 GMT"
- ],
"Pragma": [
"no-cache"
],
@@ -33,13 +30,13 @@
"11999"
],
"x-ms-request-id": [
- "cd43a1e2-41b9-42b0-aad6-f8ff5ddc2c44"
+ "a39f53e9-85e5-43d2-adb8-4ea9dee94dad"
],
"x-ms-correlation-request-id": [
- "cd43a1e2-41b9-42b0-aad6-f8ff5ddc2c44"
+ "a39f53e9-85e5-43d2-adb8-4ea9dee94dad"
],
"x-ms-routing-request-id": [
- "WESTUS:20200529T164433Z:cd43a1e2-41b9-42b0-aad6-f8ff5ddc2c44"
+ "WESTUS:20200928T194946Z:a39f53e9-85e5-43d2-adb8-4ea9dee94dad"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -47,56 +44,53 @@
"X-Content-Type-Options": [
"nosniff"
],
- "Content-Length": [
- "4871"
+ "Date": [
+ "Mon, 28 Sep 2020 19:49:45 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
],
"Expires": [
"-1"
+ ],
+ "Content-Length": [
+ "4774"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch\",\r\n \"namespace\": \"Microsoft.Batch\",\r\n \"authorization\": {\r\n \"applicationId\": \"ddbf3205-c6bd-46ae-8127-60eb93363864\",\r\n \"roleDefinitionId\": \"b7f84953-1d03-4eab-9ea4-45f065258ff8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"batchAccounts\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\",\r\n \"2015-07-01\",\r\n \"2014-05-01-privatepreview\"\r\n ],\r\n \"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\": \"operations\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ],\r\n \"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 \"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\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ],\r\n \"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\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\"\r\n ],\r\n \"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\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\",\r\n \"2015-07-01\",\r\n \"2014-05-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/677f962b-9abf-4423-a27b-0c2f4094dcec/providers/Microsoft.Batch\",\r\n \"namespace\": \"Microsoft.Batch\",\r\n \"authorization\": {\r\n \"applicationId\": \"ddbf3205-c6bd-46ae-8127-60eb93363864\",\r\n \"roleDefinitionId\": \"b7f84953-1d03-4eab-9ea4-45f065258ff8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"batchAccounts\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\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\": \"operations\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\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 \"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\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\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\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\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\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\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}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/East%20US/quotas?api-version=2020-05-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL0Vhc3QlMjBVUy9xdW90YXM/YXBpLXZlcnNpb249MjAyMC0wNS0wMQ==",
+ "RequestUri": "/subscriptions/677f962b-9abf-4423-a27b-0c2f4094dcec/providers/Microsoft.Batch/locations/West%20Central%20US/quotas?api-version=2020-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjc3Zjk2MmItOWFiZi00NDIzLWEyN2ItMGMyZjQwOTRkY2VjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL1dlc3QlMjBDZW50cmFsJTIwVVMvcXVvdGFzP2FwaS12ZXJzaW9uPTIwMjAtMDktMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "97e70559-351a-4a03-910e-43a7125cabbc"
+ "cd2e9a66-bdbc-460f-b947-dab170b1e829"
],
- "accept-language": [
+ "Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.26614.01",
+ "FxVersion/4.6.29220.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Batch.BatchManagementClient/10.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Batch.BatchManagementClient/11.0.0.0"
]
},
"ResponseHeaders": {
"Cache-Control": [
"no-cache"
],
- "Date": [
- "Fri, 29 May 2020 16:44:33 GMT"
- ],
"Pragma": [
"no-cache"
],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ],
"x-ms-ratelimit-remaining-subscription-reads": [
"11999"
],
"x-ms-request-id": [
- "93dc2206-7e82-480b-ba49-fa7aa85113e0"
+ "b017f489-e586-4a37-b9d8-6eee4b36ce18"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -104,14 +98,20 @@
"X-Content-Type-Options": [
"nosniff"
],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
"x-ms-correlation-request-id": [
- "f31f516f-deae-4e87-8619-4c3337078d67"
+ "18e139a1-e2e0-4573-a2e8-1944054241e6"
],
"x-ms-routing-request-id": [
- "WESTUS:20200529T164433Z:f31f516f-deae-4e87-8619-4c3337078d67"
+ "WESTUS:20200928T194947Z:18e139a1-e2e0-4573-a2e8-1944054241e6"
+ ],
+ "Date": [
+ "Mon, 28 Sep 2020 19:49:46 GMT"
],
"Content-Length": [
- "21"
+ "19"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -120,12 +120,12 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"accountQuota\": 1000\r\n}",
+ "ResponseBody": "{\r\n \"accountQuota\": 50\r\n}",
"StatusCode": 200
}
],
"Names": {},
"Variables": {
- "SubscriptionId": "21abd678-18c5-4660-9fdd-8c5ba6b6fe1f"
+ "SubscriptionId": "677f962b-9abf-4423-a27b-0c2f4094dcec"
}
}
\ No newline at end of file
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 b2a5d13c9daac..95d42846a942e 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
@@ -1,21 +1,21 @@
{
"Entries": [
{
- "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch?api-version=2017-05-10",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2g/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==",
+ "RequestUri": "/subscriptions/677f962b-9abf-4423-a27b-0c2f4094dcec/providers/Microsoft.Batch?api-version=2017-05-10",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjc3Zjk2MmItOWFiZi00NDIzLWEyN2ItMGMyZjQwOTRkY2VjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2g/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "e34ea06f-8584-4a9b-8ac6-673a8e938a49"
+ "1df13321-8e89-450e-8f56-6b6581012572"
],
- "accept-language": [
+ "Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.26614.01",
+ "FxVersion/4.6.29220.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
"Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0"
]
},
@@ -23,9 +23,6 @@
"Cache-Control": [
"no-cache"
],
- "Date": [
- "Fri, 29 May 2020 16:24:03 GMT"
- ],
"Pragma": [
"no-cache"
],
@@ -33,13 +30,13 @@
"11999"
],
"x-ms-request-id": [
- "c8be4868-be00-42da-bed6-10f5b3afd354"
+ "1b2ecc38-cc8c-4def-aadf-9ede29f99188"
],
"x-ms-correlation-request-id": [
- "c8be4868-be00-42da-bed6-10f5b3afd354"
+ "1b2ecc38-cc8c-4def-aadf-9ede29f99188"
],
"x-ms-routing-request-id": [
- "WESTUS:20200529T162404Z:c8be4868-be00-42da-bed6-10f5b3afd354"
+ "WESTUS:20200928T194947Z:1b2ecc38-cc8c-4def-aadf-9ede29f99188"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -47,51 +44,51 @@
"X-Content-Type-Options": [
"nosniff"
],
- "Content-Length": [
- "4871"
+ "Date": [
+ "Mon, 28 Sep 2020 19:49:47 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
],
"Expires": [
"-1"
+ ],
+ "Content-Length": [
+ "4774"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch\",\r\n \"namespace\": \"Microsoft.Batch\",\r\n \"authorization\": {\r\n \"applicationId\": \"ddbf3205-c6bd-46ae-8127-60eb93363864\",\r\n \"roleDefinitionId\": \"b7f84953-1d03-4eab-9ea4-45f065258ff8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"batchAccounts\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\",\r\n \"2015-07-01\",\r\n \"2014-05-01-privatepreview\"\r\n ],\r\n \"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\": \"operations\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ],\r\n \"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 \"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\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ],\r\n \"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\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\"\r\n ],\r\n \"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\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\",\r\n \"2015-07-01\",\r\n \"2014-05-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/677f962b-9abf-4423-a27b-0c2f4094dcec/providers/Microsoft.Batch\",\r\n \"namespace\": \"Microsoft.Batch\",\r\n \"authorization\": {\r\n \"applicationId\": \"ddbf3205-c6bd-46ae-8127-60eb93363864\",\r\n \"roleDefinitionId\": \"b7f84953-1d03-4eab-9ea4-45f065258ff8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"batchAccounts\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\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\": \"operations\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\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 \"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\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\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\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\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\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\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}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourcegroups/azsmnet6894?api-version=2017-05-10",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQ2ODk0P2FwaS12ZXJzaW9uPTIwMTctMDUtMTA=",
+ "RequestUri": "/subscriptions/677f962b-9abf-4423-a27b-0c2f4094dcec/resourcegroups/azsmnet1192?api-version=2017-05-10",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjc3Zjk2MmItOWFiZi00NDIzLWEyN2ItMGMyZjQwOTRkY2VjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQxMTkyP2FwaS12ZXJzaW9uPTIwMTctMDUtMTA=",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"location\": \"East US\"\r\n}",
+ "RequestBody": "{\r\n \"location\": \"West Central US\"\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "cd788fa0-b482-4c10-a809-e2bd06931694"
+ "91363176-1e9c-48d5-a34d-253249e52eac"
],
- "accept-language": [
+ "Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.26614.01",
+ "FxVersion/4.6.29220.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
"Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
],
"Content-Length": [
- "29"
+ "37"
]
},
"ResponseHeaders": {
"Cache-Control": [
"no-cache"
],
- "Date": [
- "Fri, 29 May 2020 16:24:05 GMT"
- ],
"Pragma": [
"no-cache"
],
@@ -99,13 +96,13 @@
"1199"
],
"x-ms-request-id": [
- "ea71c3b8-bbf9-4ec9-a2cd-f7dbbcc7ed2e"
+ "64c39fc8-1c47-42da-aad4-eda266216b8f"
],
"x-ms-correlation-request-id": [
- "ea71c3b8-bbf9-4ec9-a2cd-f7dbbcc7ed2e"
+ "64c39fc8-1c47-42da-aad4-eda266216b8f"
],
"x-ms-routing-request-id": [
- "WESTUS:20200529T162406Z:ea71c3b8-bbf9-4ec9-a2cd-f7dbbcc7ed2e"
+ "WESTUS:20200928T194948Z:64c39fc8-1c47-42da-aad4-eda266216b8f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -113,8 +110,11 @@
"X-Content-Type-Options": [
"nosniff"
],
+ "Date": [
+ "Mon, 28 Sep 2020 19:49:47 GMT"
+ ],
"Content-Length": [
- "175"
+ "182"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -123,55 +123,49 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet6894\",\r\n \"name\": \"azsmnet6894\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/677f962b-9abf-4423-a27b-0c2f4094dcec/resourceGroups/azsmnet1192\",\r\n \"name\": \"azsmnet1192\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet6894/providers/Microsoft.Batch/batchAccounts/azsmnet1882?api-version=2020-05-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2ODk0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0MTg4Mj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestUri": "/subscriptions/677f962b-9abf-4423-a27b-0c2f4094dcec/resourceGroups/azsmnet1192/providers/Microsoft.Batch/batchAccounts/azsmnet5461?api-version=2020-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjc3Zjk2MmItOWFiZi00NDIzLWEyN2ItMGMyZjQwOTRkY2VjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQxMTkyL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0NTQ2MT9hcGktdmVyc2lvbj0yMDIwLTA5LTAx",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"location\": \"East US\"\r\n}",
+ "RequestBody": "{\r\n \"location\": \"West Central US\"\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "510c33df-f922-4441-a7dc-06aaadc93ed8"
+ "e6797a86-5f67-41dd-9fe8-d2a959ccd003"
],
- "accept-language": [
+ "Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.26614.01",
+ "FxVersion/4.6.29220.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Batch.BatchManagementClient/10.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Batch.BatchManagementClient/11.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
],
"Content-Length": [
- "29"
+ "37"
]
},
"ResponseHeaders": {
"Cache-Control": [
"no-cache"
],
- "Date": [
- "Fri, 29 May 2020 16:24:09 GMT"
- ],
"Pragma": [
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet6894/providers/Microsoft.Batch/batchAccounts/azsmnet1882/operationResults/41ee3a4b-63ef-4ce7-aff5-d25303c0b363?api-version=2020-05-01"
+ "https://management.azure.com/subscriptions/677f962b-9abf-4423-a27b-0c2f4094dcec/resourceGroups/azsmnet1192/providers/Microsoft.Batch/batchAccounts/azsmnet5461/operationResults/56dc33ba-f5fb-42ff-a945-a7028f20e7a3?api-version=2020-09-01"
],
"Retry-After": [
"15"
],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ],
"x-ms-request-id": [
- "41ee3a4b-63ef-4ce7-aff5-d25303c0b363"
+ "56dc33ba-f5fb-42ff-a945-a7028f20e7a3"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -179,59 +173,59 @@
"X-Content-Type-Options": [
"nosniff"
],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
"x-ms-ratelimit-remaining-subscription-writes": [
"1199"
],
"x-ms-correlation-request-id": [
- "63adf9a9-3376-4158-8d65-45134680ec58"
+ "2de1156f-1e0f-4688-bc85-d4e9eab6d61b"
],
"x-ms-routing-request-id": [
- "WESTUS:20200529T162409Z:63adf9a9-3376-4158-8d65-45134680ec58"
+ "WESTUS:20200928T194951Z:2de1156f-1e0f-4688-bc85-d4e9eab6d61b"
],
- "Content-Length": [
- "0"
+ "Date": [
+ "Mon, 28 Sep 2020 19:49:50 GMT"
],
"Expires": [
"-1"
+ ],
+ "Content-Length": [
+ "0"
]
},
"ResponseBody": "",
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet6894/providers/Microsoft.Batch/batchAccounts/azsmnet1882/operationResults/41ee3a4b-63ef-4ce7-aff5-d25303c0b363?api-version=2020-05-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2ODk0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0MTg4Mi9vcGVyYXRpb25SZXN1bHRzLzQxZWUzYTRiLTYzZWYtNGNlNy1hZmY1LWQyNTMwM2MwYjM2Mz9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestUri": "/subscriptions/677f962b-9abf-4423-a27b-0c2f4094dcec/resourceGroups/azsmnet1192/providers/Microsoft.Batch/batchAccounts/azsmnet5461/operationResults/56dc33ba-f5fb-42ff-a945-a7028f20e7a3?api-version=2020-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjc3Zjk2MmItOWFiZi00NDIzLWEyN2ItMGMyZjQwOTRkY2VjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQxMTkyL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0NTQ2MS9vcGVyYXRpb25SZXN1bHRzLzU2ZGMzM2JhLWY1ZmItNDJmZi1hOTQ1LWE3MDI4ZjIwZTdhMz9hcGktdmVyc2lvbj0yMDIwLTA5LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.26614.01",
+ "FxVersion/4.6.29220.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Batch.BatchManagementClient/10.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Batch.BatchManagementClient/11.0.0.0"
]
},
"ResponseHeaders": {
"Cache-Control": [
"no-cache"
],
- "Date": [
- "Fri, 29 May 2020 16:24:24 GMT"
- ],
"Pragma": [
"no-cache"
],
"ETag": [
- "\"0x8D803ECC085BD16\""
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
+ "\"0x8D863E7B3046BEF\""
],
"x-ms-ratelimit-remaining-subscription-reads": [
"11999"
],
"x-ms-request-id": [
- "fec49985-c23b-4b0c-80fe-7641b85bcacd"
+ "4591073a-2611-49e3-88b3-a3f6e0faad34"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -239,14 +233,20 @@
"X-Content-Type-Options": [
"nosniff"
],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
"x-ms-correlation-request-id": [
- "359dbd09-441f-459f-ab51-acef96f795b8"
+ "7de4d328-1baa-4a36-8ac7-88e9d085645c"
],
"x-ms-routing-request-id": [
- "WESTUS:20200529T162425Z:359dbd09-441f-459f-ab51-acef96f795b8"
+ "WESTUS:20200928T195006Z:7de4d328-1baa-4a36-8ac7-88e9d085645c"
+ ],
+ "Date": [
+ "Mon, 28 Sep 2020 19:50:05 GMT"
],
"Content-Length": [
- "2232"
+ "2545"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -255,29 +255,29 @@
"-1"
],
"Last-Modified": [
- "Fri, 29 May 2020 16:24:25 GMT"
+ "Mon, 28 Sep 2020 19:50:06 GMT"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet6894/providers/Microsoft.Batch/batchAccounts/azsmnet1882\",\r\n \"name\": \"azsmnet1882\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"azsmnet1882.pilotprod2.eastus.batch.azure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"dedicatedCoreQuota\": 700,\r\n \"dedicatedCoreQuotaPerVMFamily\": [\r\n {\r\n \"name\": \"standardAv2Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardDv2Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardDv3Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardEv3Family\",\r\n \"coreQuota\": 50\r\n },\r\n {\r\n \"name\": \"standardDSv2Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardDSv3Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardESv3Family\",\r\n \"coreQuota\": 50\r\n },\r\n {\r\n \"name\": \"standardFFamily\",\r\n \"coreQuota\": 50\r\n },\r\n {\r\n \"name\": \"standardFSFamily\",\r\n \"coreQuota\": 50\r\n },\r\n {\r\n \"name\": \"standardA0_A7Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardA8_A11Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardDFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardGFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"basicAFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNVFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNVPromoFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNCFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNCPromoFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHPromoFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardMSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardDSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardGSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardLSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardLSv2Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNCSv2Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNDSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNCSv3Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardFSv2Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHBSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHCSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNVSv3Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHBrsv2Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardDASv4Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardEAv4Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardEASv4Family\",\r\n \"coreQuota\": 0\r\n }\r\n ],\r\n \"dedicatedCoreQuotaPerVMFamilyEnforced\": false,\r\n \"lowPriorityCoreQuota\": 500,\r\n \"poolQuota\": 100,\r\n \"activeJobAndJobScheduleQuota\": 300,\r\n \"poolAllocationMode\": \"BatchService\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"encryption\": {\r\n \"keySource\": \"Microsoft.Batch\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/677f962b-9abf-4423-a27b-0c2f4094dcec/resourceGroups/azsmnet1192/providers/Microsoft.Batch/batchAccounts/azsmnet5461\",\r\n \"name\": \"azsmnet5461\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"azsmnet5461.westcentralus.batch.azure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"dedicatedCoreQuota\": 700,\r\n \"dedicatedCoreQuotaPerVMFamily\": [\r\n {\r\n \"name\": \"standardAv2Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardDv2Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardDv3Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardEv3Family\",\r\n \"coreQuota\": 50\r\n },\r\n {\r\n \"name\": \"standardDSv2Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardDSv3Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardESv3Family\",\r\n \"coreQuota\": 50\r\n },\r\n {\r\n \"name\": \"standardFFamily\",\r\n \"coreQuota\": 50\r\n },\r\n {\r\n \"name\": \"standardFSFamily\",\r\n \"coreQuota\": 50\r\n },\r\n {\r\n \"name\": \"standardA0_A7Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardA8_A11Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardDFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardGFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"basicAFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNVFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNVPromoFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNCFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNCPromoFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHPromoFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardMSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardDSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardGSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardLSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardLSv2Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNCSv2Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNDSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNCSv3Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardFSv2Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHBSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHCSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNVSv3Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHBrsv2Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"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\": \"standardDDv4Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardDDSv4Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardEDv4Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardEDSv4Family\",\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 \"dedicatedCoreQuotaPerVMFamilyEnforced\": false,\r\n \"lowPriorityCoreQuota\": 500,\r\n \"poolQuota\": 100,\r\n \"activeJobAndJobScheduleQuota\": 300,\r\n \"poolAllocationMode\": \"BatchService\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"encryption\": {\r\n \"keySource\": \"Microsoft.Batch\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet6894/providers/Microsoft.Batch/batchAccounts/azsmnet1882/pools/test_paas_pool?api-version=2020-05-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2ODk0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0MTg4Mi9wb29scy90ZXN0X3BhYXNfcG9vbD9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestUri": "/subscriptions/677f962b-9abf-4423-a27b-0c2f4094dcec/resourceGroups/azsmnet1192/providers/Microsoft.Batch/batchAccounts/azsmnet5461/pools/test_paas_pool?api-version=2020-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjc3Zjk2MmItOWFiZi00NDIzLWEyN2ItMGMyZjQwOTRkY2VjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQxMTkyL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0NTQ2MS9wb29scy90ZXN0X3BhYXNfcG9vbD9hcGktdmVyc2lvbj0yMDIwLTA5LTAx",
"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 }\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": [
- "24591f36-978f-4033-8ee1-07c2f4dfd5dd"
+ "271fb660-51f4-4abd-a55f-fc8615cc6684"
],
- "accept-language": [
+ "Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.26614.01",
+ "FxVersion/4.6.29220.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Batch.BatchManagementClient/10.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Batch.BatchManagementClient/11.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -290,23 +290,17 @@
"Cache-Control": [
"no-cache"
],
- "Date": [
- "Fri, 29 May 2020 16:24:25 GMT"
- ],
"Pragma": [
"no-cache"
],
"ETag": [
- "W/\"0x8D803ECC0DA798E\""
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
+ "W/\"0x8D863E7B34D481C\""
],
"x-ms-ratelimit-remaining-subscription-writes": [
"1198"
],
"x-ms-request-id": [
- "c6e05d67-eec1-4a29-9df7-41b8840deb3d"
+ "d8204801-ee29-4b79-b542-3b898f368d05"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -314,14 +308,20 @@
"X-Content-Type-Options": [
"nosniff"
],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
"x-ms-correlation-request-id": [
- "064c9844-87e1-40b4-8f59-9c213db3100d"
+ "0fff1844-0ca7-4a18-9cdc-898070af1565"
],
"x-ms-routing-request-id": [
- "WESTUS:20200529T162425Z:064c9844-87e1-40b4-8f59-9c213db3100d"
+ "WESTUS:20200928T195007Z:0fff1844-0ca7-4a18-9cdc-898070af1565"
+ ],
+ "Date": [
+ "Mon, 28 Sep 2020 19:50:06 GMT"
],
"Content-Length": [
- "1551"
+ "1547"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -330,29 +330,29 @@
"-1"
],
"Last-Modified": [
- "Fri, 29 May 2020 16:24:25 GMT"
+ "Mon, 28 Sep 2020 19:50:06 GMT"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet6894/providers/Microsoft.Batch/batchAccounts/azsmnet1882/pools/test_paas_pool\",\r\n \"name\": \"test_paas_pool\",\r\n \"type\": \"Microsoft.Batch/batchAccounts/pools\",\r\n \"etag\": \"W/\\\"0x8D803ECC0DA798E\\\"\",\r\n \"properties\": {\r\n \"displayName\": \"test_pool\",\r\n \"lastModified\": \"2020-05-29T16:24:25.5633806Z\",\r\n \"creationTime\": \"2020-05-29T16:24:25.5633806Z\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"provisioningStateTransitionTime\": \"2020-05-29T16:24:25.5633806Z\",\r\n \"allocationState\": \"Resizing\",\r\n \"allocationStateTransitionTime\": \"2020-05-29T16:24:25.5633806Z\",\r\n \"vmSize\": \"Small\",\r\n \"interNodeCommunication\": \"Disabled\",\r\n \"maxTasksPerNode\": 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 }\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\": \"2020-05-29T16:24:25.5633806Z\"\r\n },\r\n \"currentDedicatedNodes\": 0,\r\n \"currentLowPriorityNodes\": 0\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/677f962b-9abf-4423-a27b-0c2f4094dcec/resourceGroups/azsmnet1192/providers/Microsoft.Batch/batchAccounts/azsmnet5461/pools/test_paas_pool\",\r\n \"name\": \"test_paas_pool\",\r\n \"type\": \"Microsoft.Batch/batchAccounts/pools\",\r\n \"etag\": \"W/\\\"0x8D863E7B34D481C\\\"\",\r\n \"properties\": {\r\n \"displayName\": \"test_pool\",\r\n \"lastModified\": \"2020-09-28T19:50:06.970678Z\",\r\n \"creationTime\": \"2020-09-28T19:50:06.970678Z\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"provisioningStateTransitionTime\": \"2020-09-28T19:50:06.970678Z\",\r\n \"allocationState\": \"Resizing\",\r\n \"allocationStateTransitionTime\": \"2020-09-28T19:50:06.970678Z\",\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 }\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\": \"2020-09-28T19:50:06.970678Z\"\r\n },\r\n \"currentDedicatedNodes\": 0,\r\n \"currentLowPriorityNodes\": 0\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet6894/providers/Microsoft.Batch/batchAccounts/azsmnet1882/pools/test_iaas_pool?api-version=2020-05-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2ODk0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0MTg4Mi9wb29scy90ZXN0X2lhYXNfcG9vbD9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestUri": "/subscriptions/677f962b-9abf-4423-a27b-0c2f4094dcec/resourceGroups/azsmnet1192/providers/Microsoft.Batch/batchAccounts/azsmnet5461/pools/test_iaas_pool?api-version=2020-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjc3Zjk2MmItOWFiZi00NDIzLWEyN2ItMGMyZjQwOTRkY2VjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQxMTkyL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0NTQ2MS9wb29scy90ZXN0X2lhYXNfcG9vbD9hcGktdmVyc2lvbj0yMDIwLTA5LTAx",
"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 }\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": [
- "b9d488f1-33a9-4161-a760-f4414cbb00af"
+ "63113f8e-8f5f-429d-9211-57cd3878ba03"
],
- "accept-language": [
+ "Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.26614.01",
+ "FxVersion/4.6.29220.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Batch.BatchManagementClient/10.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Batch.BatchManagementClient/11.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -365,23 +365,17 @@
"Cache-Control": [
"no-cache"
],
- "Date": [
- "Fri, 29 May 2020 16:24:25 GMT"
- ],
"Pragma": [
"no-cache"
],
"ETag": [
- "W/\"0x8D803ECC11BF0CB\""
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
+ "W/\"0x8D863E7B37CBC7C\""
],
"x-ms-ratelimit-remaining-subscription-writes": [
"1197"
],
"x-ms-request-id": [
- "2ab42853-a5a4-4610-804f-420fea97c458"
+ "82cece6b-c202-4301-a013-70d5124ca3d4"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -389,14 +383,20 @@
"X-Content-Type-Options": [
"nosniff"
],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
"x-ms-correlation-request-id": [
- "0ccc671f-157c-4ec1-b631-0cd73b4243d0"
+ "f7b49626-7534-44a3-898a-19ec46853f00"
],
"x-ms-routing-request-id": [
- "WESTUS:20200529T162426Z:0ccc671f-157c-4ec1-b631-0cd73b4243d0"
+ "WESTUS:20200928T195007Z:f7b49626-7534-44a3-898a-19ec46853f00"
+ ],
+ "Date": [
+ "Mon, 28 Sep 2020 19:50:06 GMT"
],
"Content-Length": [
- "1320"
+ "1321"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -405,49 +405,43 @@
"-1"
],
"Last-Modified": [
- "Fri, 29 May 2020 16:24:25 GMT"
+ "Mon, 28 Sep 2020 19:50:07 GMT"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet6894/providers/Microsoft.Batch/batchAccounts/azsmnet1882/pools/test_iaas_pool\",\r\n \"name\": \"test_iaas_pool\",\r\n \"type\": \"Microsoft.Batch/batchAccounts/pools\",\r\n \"etag\": \"W/\\\"0x8D803ECC11BF0CB\\\"\",\r\n \"properties\": {\r\n \"displayName\": \"test_pool\",\r\n \"lastModified\": \"2020-05-29T16:24:25.9924171Z\",\r\n \"creationTime\": \"2020-05-29T16:24:25.9924171Z\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"provisioningStateTransitionTime\": \"2020-05-29T16:24:25.9924171Z\",\r\n \"allocationState\": \"Resizing\",\r\n \"allocationStateTransitionTime\": \"2020-05-29T16:24:25.9924171Z\",\r\n \"vmSize\": \"STANDARD_A1\",\r\n \"interNodeCommunication\": \"Disabled\",\r\n \"maxTasksPerNode\": 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 \"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\": \"2020-05-29T16:24:25.9924171Z\"\r\n },\r\n \"currentDedicatedNodes\": 0,\r\n \"currentLowPriorityNodes\": 0\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/677f962b-9abf-4423-a27b-0c2f4094dcec/resourceGroups/azsmnet1192/providers/Microsoft.Batch/batchAccounts/azsmnet5461/pools/test_iaas_pool\",\r\n \"name\": \"test_iaas_pool\",\r\n \"type\": \"Microsoft.Batch/batchAccounts/pools\",\r\n \"etag\": \"W/\\\"0x8D863E7B37CBC7C\\\"\",\r\n \"properties\": {\r\n \"displayName\": \"test_pool\",\r\n \"lastModified\": \"2020-09-28T19:50:07.2816764Z\",\r\n \"creationTime\": \"2020-09-28T19:50:07.2816764Z\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"provisioningStateTransitionTime\": \"2020-09-28T19:50:07.2816764Z\",\r\n \"allocationState\": \"Resizing\",\r\n \"allocationStateTransitionTime\": \"2020-09-28T19:50:07.2816764Z\",\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 \"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\": \"2020-09-28T19:50:07.2816764Z\"\r\n },\r\n \"currentDedicatedNodes\": 0,\r\n \"currentLowPriorityNodes\": 0\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet6894/providers/Microsoft.Batch/batchAccounts/azsmnet1882/pools?api-version=2020-05-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2ODk0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0MTg4Mi9wb29scz9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestUri": "/subscriptions/677f962b-9abf-4423-a27b-0c2f4094dcec/resourceGroups/azsmnet1192/providers/Microsoft.Batch/batchAccounts/azsmnet5461/pools?api-version=2020-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjc3Zjk2MmItOWFiZi00NDIzLWEyN2ItMGMyZjQwOTRkY2VjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQxMTkyL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0NTQ2MS9wb29scz9hcGktdmVyc2lvbj0yMDIwLTA5LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "f1bdf806-eb0a-4af2-b70b-bcb03dbef503"
+ "270a936d-16b6-4840-a150-04db2cbb86a4"
],
- "accept-language": [
+ "Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.26614.01",
+ "FxVersion/4.6.29220.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Batch.BatchManagementClient/10.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Batch.BatchManagementClient/11.0.0.0"
]
},
"ResponseHeaders": {
"Cache-Control": [
"no-cache"
],
- "Date": [
- "Fri, 29 May 2020 16:24:25 GMT"
- ],
"Pragma": [
"no-cache"
],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ],
"x-ms-ratelimit-remaining-subscription-reads": [
"11998"
],
"x-ms-request-id": [
- "5d8e77f5-c63d-4001-92a8-dd838de2039c"
+ "2218a7a3-3bf1-4f3c-b3a1-cfe1b499154d"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -455,14 +449,20 @@
"X-Content-Type-Options": [
"nosniff"
],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
"x-ms-correlation-request-id": [
- "cb19d612-6b6d-4341-b126-3dc804d500f5"
+ "56a4b7f1-bfc7-4a26-b644-0f8b1e84a44f"
],
"x-ms-routing-request-id": [
- "WESTUS:20200529T162426Z:cb19d612-6b6d-4341-b126-3dc804d500f5"
+ "WESTUS:20200928T195007Z:56a4b7f1-bfc7-4a26-b644-0f8b1e84a44f"
+ ],
+ "Date": [
+ "Mon, 28 Sep 2020 19:50:06 GMT"
],
"Content-Length": [
- "2884"
+ "2881"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -471,49 +471,43 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet6894/providers/Microsoft.Batch/batchAccounts/azsmnet1882/pools/test_iaas_pool\",\r\n \"name\": \"test_iaas_pool\",\r\n \"type\": \"Microsoft.Batch/batchAccounts/pools\",\r\n \"etag\": \"W/\\\"0x8D803ECC11BF0CB\\\"\",\r\n \"properties\": {\r\n \"displayName\": \"test_pool\",\r\n \"lastModified\": \"2020-05-29T16:24:25.9924171Z\",\r\n \"creationTime\": \"2020-05-29T16:24:25.9924171Z\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"provisioningStateTransitionTime\": \"2020-05-29T16:24:25.9924171Z\",\r\n \"allocationState\": \"Resizing\",\r\n \"allocationStateTransitionTime\": \"2020-05-29T16:24:25.9924171Z\",\r\n \"vmSize\": \"STANDARD_A1\",\r\n \"interNodeCommunication\": \"Disabled\",\r\n \"maxTasksPerNode\": 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 \"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\": \"2020-05-29T16:24:25.9924171Z\"\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/azsmnet6894/providers/Microsoft.Batch/batchAccounts/azsmnet1882/pools/test_paas_pool\",\r\n \"name\": \"test_paas_pool\",\r\n \"type\": \"Microsoft.Batch/batchAccounts/pools\",\r\n \"etag\": \"W/\\\"0x8D803ECC0DA798E\\\"\",\r\n \"properties\": {\r\n \"displayName\": \"test_pool\",\r\n \"lastModified\": \"2020-05-29T16:24:25.5633806Z\",\r\n \"creationTime\": \"2020-05-29T16:24:25.5633806Z\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"provisioningStateTransitionTime\": \"2020-05-29T16:24:25.5633806Z\",\r\n \"allocationState\": \"Resizing\",\r\n \"allocationStateTransitionTime\": \"2020-05-29T16:24:25.5633806Z\",\r\n \"vmSize\": \"Small\",\r\n \"interNodeCommunication\": \"Disabled\",\r\n \"maxTasksPerNode\": 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 }\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\": \"2020-05-29T16:24:25.5633806Z\"\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/677f962b-9abf-4423-a27b-0c2f4094dcec/resourceGroups/azsmnet1192/providers/Microsoft.Batch/batchAccounts/azsmnet5461/pools/test_iaas_pool\",\r\n \"name\": \"test_iaas_pool\",\r\n \"type\": \"Microsoft.Batch/batchAccounts/pools\",\r\n \"etag\": \"W/\\\"0x8D863E7B37CBC7C\\\"\",\r\n \"properties\": {\r\n \"displayName\": \"test_pool\",\r\n \"lastModified\": \"2020-09-28T19:50:07.2816764Z\",\r\n \"creationTime\": \"2020-09-28T19:50:07.2816764Z\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"provisioningStateTransitionTime\": \"2020-09-28T19:50:07.2816764Z\",\r\n \"allocationState\": \"Resizing\",\r\n \"allocationStateTransitionTime\": \"2020-09-28T19:50:07.2816764Z\",\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 \"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\": \"2020-09-28T19:50:07.2816764Z\"\r\n },\r\n \"currentDedicatedNodes\": 0,\r\n \"currentLowPriorityNodes\": 0\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/677f962b-9abf-4423-a27b-0c2f4094dcec/resourceGroups/azsmnet1192/providers/Microsoft.Batch/batchAccounts/azsmnet5461/pools/test_paas_pool\",\r\n \"name\": \"test_paas_pool\",\r\n \"type\": \"Microsoft.Batch/batchAccounts/pools\",\r\n \"etag\": \"W/\\\"0x8D863E7B34D481C\\\"\",\r\n \"properties\": {\r\n \"displayName\": \"test_pool\",\r\n \"lastModified\": \"2020-09-28T19:50:06.970678Z\",\r\n \"creationTime\": \"2020-09-28T19:50:06.970678Z\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"provisioningStateTransitionTime\": \"2020-09-28T19:50:06.970678Z\",\r\n \"allocationState\": \"Resizing\",\r\n \"allocationStateTransitionTime\": \"2020-09-28T19:50:06.970678Z\",\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 }\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\": \"2020-09-28T19:50:06.970678Z\"\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/azsmnet6894/providers/Microsoft.Batch/batchAccounts/azsmnet1882/pools/test_iaas_pool?api-version=2020-05-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2ODk0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0MTg4Mi9wb29scy90ZXN0X2lhYXNfcG9vbD9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestUri": "/subscriptions/677f962b-9abf-4423-a27b-0c2f4094dcec/resourceGroups/azsmnet1192/providers/Microsoft.Batch/batchAccounts/azsmnet5461/pools/test_iaas_pool?api-version=2020-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjc3Zjk2MmItOWFiZi00NDIzLWEyN2ItMGMyZjQwOTRkY2VjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQxMTkyL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0NTQ2MS9wb29scy90ZXN0X2lhYXNfcG9vbD9hcGktdmVyc2lvbj0yMDIwLTA5LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "2475efd6-65c0-4d9a-af91-e6c9134acf20"
+ "eef566a3-6d35-451f-8047-44b157ee0237"
],
- "accept-language": [
+ "Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.26614.01",
+ "FxVersion/4.6.29220.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Batch.BatchManagementClient/10.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Batch.BatchManagementClient/11.0.0.0"
]
},
"ResponseHeaders": {
"Cache-Control": [
"no-cache"
],
- "Date": [
- "Fri, 29 May 2020 16:24:26 GMT"
- ],
"Pragma": [
"no-cache"
],
"ETag": [
- "W/\"0x8D803ECC11BF0CB\""
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
+ "W/\"0x8D863E7B37CBC7C\""
],
"x-ms-ratelimit-remaining-subscription-reads": [
"11997"
],
"x-ms-request-id": [
- "9c104069-fd79-4d55-9fdd-840b68cf88bd"
+ "120979a1-6866-452a-bc90-a03f0059e12f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -521,14 +515,20 @@
"X-Content-Type-Options": [
"nosniff"
],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
"x-ms-correlation-request-id": [
- "99f91195-9d5f-41e9-837d-fdd1f1c0f7a1"
+ "84e82c04-1874-4688-92d4-b513afcf9ff2"
],
"x-ms-routing-request-id": [
- "WESTUS:20200529T162426Z:99f91195-9d5f-41e9-837d-fdd1f1c0f7a1"
+ "WESTUS:20200928T195007Z:84e82c04-1874-4688-92d4-b513afcf9ff2"
+ ],
+ "Date": [
+ "Mon, 28 Sep 2020 19:50:06 GMT"
],
"Content-Length": [
- "1320"
+ "1321"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -537,52 +537,46 @@
"-1"
],
"Last-Modified": [
- "Fri, 29 May 2020 16:24:25 GMT"
+ "Mon, 28 Sep 2020 19:50:07 GMT"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet6894/providers/Microsoft.Batch/batchAccounts/azsmnet1882/pools/test_iaas_pool\",\r\n \"name\": \"test_iaas_pool\",\r\n \"type\": \"Microsoft.Batch/batchAccounts/pools\",\r\n \"etag\": \"W/\\\"0x8D803ECC11BF0CB\\\"\",\r\n \"properties\": {\r\n \"displayName\": \"test_pool\",\r\n \"lastModified\": \"2020-05-29T16:24:25.9924171Z\",\r\n \"creationTime\": \"2020-05-29T16:24:25.9924171Z\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"provisioningStateTransitionTime\": \"2020-05-29T16:24:25.9924171Z\",\r\n \"allocationState\": \"Resizing\",\r\n \"allocationStateTransitionTime\": \"2020-05-29T16:24:25.9924171Z\",\r\n \"vmSize\": \"STANDARD_A1\",\r\n \"interNodeCommunication\": \"Disabled\",\r\n \"maxTasksPerNode\": 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 \"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\": \"2020-05-29T16:24:25.9924171Z\"\r\n },\r\n \"currentDedicatedNodes\": 0,\r\n \"currentLowPriorityNodes\": 0\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/677f962b-9abf-4423-a27b-0c2f4094dcec/resourceGroups/azsmnet1192/providers/Microsoft.Batch/batchAccounts/azsmnet5461/pools/test_iaas_pool\",\r\n \"name\": \"test_iaas_pool\",\r\n \"type\": \"Microsoft.Batch/batchAccounts/pools\",\r\n \"etag\": \"W/\\\"0x8D863E7B37CBC7C\\\"\",\r\n \"properties\": {\r\n \"displayName\": \"test_pool\",\r\n \"lastModified\": \"2020-09-28T19:50:07.2816764Z\",\r\n \"creationTime\": \"2020-09-28T19:50:07.2816764Z\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"provisioningStateTransitionTime\": \"2020-09-28T19:50:07.2816764Z\",\r\n \"allocationState\": \"Resizing\",\r\n \"allocationStateTransitionTime\": \"2020-09-28T19:50:07.2816764Z\",\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 \"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\": \"2020-09-28T19:50:07.2816764Z\"\r\n },\r\n \"currentDedicatedNodes\": 0,\r\n \"currentLowPriorityNodes\": 0\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet6894/providers/Microsoft.Batch/batchAccounts/azsmnet1882/pools/test_iaas_pool/stopResize?api-version=2020-05-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2ODk0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0MTg4Mi9wb29scy90ZXN0X2lhYXNfcG9vbC9zdG9wUmVzaXplP2FwaS12ZXJzaW9uPTIwMjAtMDUtMDE=",
+ "RequestUri": "/subscriptions/677f962b-9abf-4423-a27b-0c2f4094dcec/resourceGroups/azsmnet1192/providers/Microsoft.Batch/batchAccounts/azsmnet5461/pools/test_iaas_pool/stopResize?api-version=2020-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjc3Zjk2MmItOWFiZi00NDIzLWEyN2ItMGMyZjQwOTRkY2VjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQxMTkyL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0NTQ2MS9wb29scy90ZXN0X2lhYXNfcG9vbC9zdG9wUmVzaXplP2FwaS12ZXJzaW9uPTIwMjAtMDktMDE=",
"RequestMethod": "POST",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "ffba8196-c134-488a-a687-83ce622983ae"
+ "95756211-a5ef-4629-89ce-aa12996482a0"
],
- "accept-language": [
+ "Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.26614.01",
+ "FxVersion/4.6.29220.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Batch.BatchManagementClient/10.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Batch.BatchManagementClient/11.0.0.0"
]
},
"ResponseHeaders": {
"Cache-Control": [
"no-cache"
],
- "Date": [
- "Fri, 29 May 2020 16:24:28 GMT"
- ],
"Pragma": [
"no-cache"
],
"ETag": [
- "W/\"0x8D803ECC11BF0CB\""
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
+ "W/\"0x8D863E7B37CBC7C\""
],
"x-ms-ratelimit-remaining-subscription-writes": [
"1199"
],
"x-ms-request-id": [
- "31ff06bc-0ba6-4e3a-9916-21f502e2bbf5"
+ "6d716fcf-edc1-4b16-aa34-00fa07a9640b"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -590,14 +584,20 @@
"X-Content-Type-Options": [
"nosniff"
],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
"x-ms-correlation-request-id": [
- "e16a460e-c9d0-434c-87ea-f53d86e83138"
+ "0e61def3-9a9f-4773-9e7f-15c8f213abea"
],
"x-ms-routing-request-id": [
- "WESTUS:20200529T162429Z:e16a460e-c9d0-434c-87ea-f53d86e83138"
+ "WESTUS:20200928T195010Z:0e61def3-9a9f-4773-9e7f-15c8f213abea"
+ ],
+ "Date": [
+ "Mon, 28 Sep 2020 19:50:09 GMT"
],
"Content-Length": [
- "1317"
+ "1318"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -606,52 +606,46 @@
"-1"
],
"Last-Modified": [
- "Fri, 29 May 2020 16:24:25 GMT"
+ "Mon, 28 Sep 2020 19:50:07 GMT"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet6894/providers/Microsoft.Batch/batchAccounts/azsmnet1882/pools/test_iaas_pool\",\r\n \"name\": \"test_iaas_pool\",\r\n \"type\": \"Microsoft.Batch/batchAccounts/pools\",\r\n \"etag\": \"W/\\\"0x8D803ECC11BF0CB\\\"\",\r\n \"properties\": {\r\n \"displayName\": \"test_pool\",\r\n \"lastModified\": \"2020-05-29T16:24:25.9924171Z\",\r\n \"creationTime\": \"2020-05-29T16:24:25.9924171Z\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"provisioningStateTransitionTime\": \"2020-05-29T16:24:25.9924171Z\",\r\n \"allocationState\": \"Steady\",\r\n \"allocationStateTransitionTime\": \"2020-05-29T16:24:29.131294Z\",\r\n \"vmSize\": \"STANDARD_A1\",\r\n \"interNodeCommunication\": \"Disabled\",\r\n \"maxTasksPerNode\": 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 \"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\": \"2020-05-29T16:24:25.9924171Z\"\r\n },\r\n \"currentDedicatedNodes\": 0,\r\n \"currentLowPriorityNodes\": 0\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/677f962b-9abf-4423-a27b-0c2f4094dcec/resourceGroups/azsmnet1192/providers/Microsoft.Batch/batchAccounts/azsmnet5461/pools/test_iaas_pool\",\r\n \"name\": \"test_iaas_pool\",\r\n \"type\": \"Microsoft.Batch/batchAccounts/pools\",\r\n \"etag\": \"W/\\\"0x8D863E7B37CBC7C\\\"\",\r\n \"properties\": {\r\n \"displayName\": \"test_pool\",\r\n \"lastModified\": \"2020-09-28T19:50:07.2816764Z\",\r\n \"creationTime\": \"2020-09-28T19:50:07.2816764Z\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"provisioningStateTransitionTime\": \"2020-09-28T19:50:07.2816764Z\",\r\n \"allocationState\": \"Steady\",\r\n \"allocationStateTransitionTime\": \"2020-09-28T19:50:10.083709Z\",\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 \"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\": \"2020-09-28T19:50:07.2816764Z\"\r\n },\r\n \"currentDedicatedNodes\": 0,\r\n \"currentLowPriorityNodes\": 0\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet6894/providers/Microsoft.Batch/batchAccounts/azsmnet1882/pools/test_iaas_pool/disableAutoScale?api-version=2020-05-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2ODk0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0MTg4Mi9wb29scy90ZXN0X2lhYXNfcG9vbC9kaXNhYmxlQXV0b1NjYWxlP2FwaS12ZXJzaW9uPTIwMjAtMDUtMDE=",
+ "RequestUri": "/subscriptions/677f962b-9abf-4423-a27b-0c2f4094dcec/resourceGroups/azsmnet1192/providers/Microsoft.Batch/batchAccounts/azsmnet5461/pools/test_iaas_pool/disableAutoScale?api-version=2020-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjc3Zjk2MmItOWFiZi00NDIzLWEyN2ItMGMyZjQwOTRkY2VjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQxMTkyL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0NTQ2MS9wb29scy90ZXN0X2lhYXNfcG9vbC9kaXNhYmxlQXV0b1NjYWxlP2FwaS12ZXJzaW9uPTIwMjAtMDktMDE=",
"RequestMethod": "POST",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "36eff610-2b08-4314-b247-b700e5c881f9"
+ "319f20ca-a2f7-4fb2-9d32-27512b9f7090"
],
- "accept-language": [
+ "Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.26614.01",
+ "FxVersion/4.6.29220.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Batch.BatchManagementClient/10.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Batch.BatchManagementClient/11.0.0.0"
]
},
"ResponseHeaders": {
"Cache-Control": [
"no-cache"
],
- "Date": [
- "Fri, 29 May 2020 16:24:28 GMT"
- ],
"Pragma": [
"no-cache"
],
"ETag": [
- "W/\"0x8D803ECC31B6C43\""
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
+ "W/\"0x8D863E7B53ECDEF\""
],
"x-ms-ratelimit-remaining-subscription-writes": [
"1198"
],
"x-ms-request-id": [
- "8d315a67-d064-4620-8afd-7932f716624a"
+ "ad203f00-3d4a-4d22-9204-ff2465ebe85e"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -659,14 +653,20 @@
"X-Content-Type-Options": [
"nosniff"
],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
"x-ms-correlation-request-id": [
- "eb63798b-4ac4-4556-aeaa-7eeeb6dca385"
+ "09c59e16-7038-4db3-a7bc-6e92558d0b47"
],
"x-ms-routing-request-id": [
- "WESTUS:20200529T162429Z:eb63798b-4ac4-4556-aeaa-7eeeb6dca385"
+ "WESTUS:20200928T195010Z:09c59e16-7038-4db3-a7bc-6e92558d0b47"
+ ],
+ "Date": [
+ "Mon, 28 Sep 2020 19:50:09 GMT"
],
"Content-Length": [
- "1167"
+ "1168"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -675,52 +675,46 @@
"-1"
],
"Last-Modified": [
- "Fri, 29 May 2020 16:24:29 GMT"
+ "Mon, 28 Sep 2020 19:50:10 GMT"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet6894/providers/Microsoft.Batch/batchAccounts/azsmnet1882/pools/test_iaas_pool\",\r\n \"name\": \"test_iaas_pool\",\r\n \"type\": \"Microsoft.Batch/batchAccounts/pools\",\r\n \"etag\": \"W/\\\"0x8D803ECC31B6C43\\\"\",\r\n \"properties\": {\r\n \"displayName\": \"test_pool\",\r\n \"lastModified\": \"2020-05-29T16:24:29.3444675Z\",\r\n \"creationTime\": \"2020-05-29T16:24:25.9924171Z\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"provisioningStateTransitionTime\": \"2020-05-29T16:24:25.9924171Z\",\r\n \"allocationState\": \"Resizing\",\r\n \"allocationStateTransitionTime\": \"2020-05-29T16:24:29.3444675Z\",\r\n \"vmSize\": \"STANDARD_A1\",\r\n \"interNodeCommunication\": \"Disabled\",\r\n \"maxTasksPerNode\": 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 \"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/677f962b-9abf-4423-a27b-0c2f4094dcec/resourceGroups/azsmnet1192/providers/Microsoft.Batch/batchAccounts/azsmnet5461/pools/test_iaas_pool\",\r\n \"name\": \"test_iaas_pool\",\r\n \"type\": \"Microsoft.Batch/batchAccounts/pools\",\r\n \"etag\": \"W/\\\"0x8D863E7B53ECDEF\\\"\",\r\n \"properties\": {\r\n \"displayName\": \"test_pool\",\r\n \"lastModified\": \"2020-09-28T19:50:10.2312431Z\",\r\n \"creationTime\": \"2020-09-28T19:50:07.2816764Z\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"provisioningStateTransitionTime\": \"2020-09-28T19:50:07.2816764Z\",\r\n \"allocationState\": \"Resizing\",\r\n \"allocationStateTransitionTime\": \"2020-09-28T19:50:10.2312431Z\",\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 \"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/azsmnet6894/providers/Microsoft.Batch/batchAccounts/azsmnet1882/pools/test_paas_pool?api-version=2020-05-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2ODk0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0MTg4Mi9wb29scy90ZXN0X3BhYXNfcG9vbD9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestUri": "/subscriptions/677f962b-9abf-4423-a27b-0c2f4094dcec/resourceGroups/azsmnet1192/providers/Microsoft.Batch/batchAccounts/azsmnet5461/pools/test_paas_pool?api-version=2020-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjc3Zjk2MmItOWFiZi00NDIzLWEyN2ItMGMyZjQwOTRkY2VjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQxMTkyL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0NTQ2MS9wb29scy90ZXN0X3BhYXNfcG9vbD9hcGktdmVyc2lvbj0yMDIwLTA5LTAx",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "9680a337-86af-4a92-bef9-09d3f869a151"
+ "ac4bbded-4365-4c18-b2bf-0dbf2297dc65"
],
- "accept-language": [
+ "Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.26614.01",
+ "FxVersion/4.6.29220.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Batch.BatchManagementClient/10.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Batch.BatchManagementClient/11.0.0.0"
]
},
"ResponseHeaders": {
"Cache-Control": [
"no-cache"
],
- "Date": [
- "Fri, 29 May 2020 16:24:29 GMT"
- ],
"Pragma": [
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet6894/providers/Microsoft.Batch/batchAccounts/azsmnet1882/poolOperationResults/delete-test_paas_pool?api-version=2020-05-01"
+ "https://management.azure.com/subscriptions/677f962b-9abf-4423-a27b-0c2f4094dcec/resourceGroups/azsmnet1192/providers/Microsoft.Batch/batchAccounts/azsmnet5461/poolOperationResults/delete-test_paas_pool?api-version=2020-09-01"
],
"Retry-After": [
"15"
],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ],
"x-ms-request-id": [
- "f8151f21-4507-4550-abcb-83b59ef0bc52"
+ "1c19c34b-c0db-43d7-98f3-1f5402f66523"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -728,53 +722,53 @@
"X-Content-Type-Options": [
"nosniff"
],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
"x-ms-ratelimit-remaining-subscription-deletes": [
"14999"
],
"x-ms-correlation-request-id": [
- "6879247e-7bc1-49f1-a3d3-94bb5e32b3ed"
+ "c1112727-a56c-418a-a7f9-ff8603ec50c9"
],
"x-ms-routing-request-id": [
- "WESTUS:20200529T162429Z:6879247e-7bc1-49f1-a3d3-94bb5e32b3ed"
+ "WESTUS:20200928T195010Z:c1112727-a56c-418a-a7f9-ff8603ec50c9"
],
- "Content-Length": [
- "0"
+ "Date": [
+ "Mon, 28 Sep 2020 19:50:09 GMT"
],
"Expires": [
"-1"
+ ],
+ "Content-Length": [
+ "0"
]
},
"ResponseBody": "",
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet6894/providers/Microsoft.Batch/batchAccounts/azsmnet1882/poolOperationResults/delete-test_paas_pool?api-version=2020-05-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2ODk0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0MTg4Mi9wb29sT3BlcmF0aW9uUmVzdWx0cy9kZWxldGUtdGVzdF9wYWFzX3Bvb2w/YXBpLXZlcnNpb249MjAyMC0wNS0wMQ==",
+ "RequestUri": "/subscriptions/677f962b-9abf-4423-a27b-0c2f4094dcec/resourceGroups/azsmnet1192/providers/Microsoft.Batch/batchAccounts/azsmnet5461/poolOperationResults/delete-test_paas_pool?api-version=2020-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjc3Zjk2MmItOWFiZi00NDIzLWEyN2ItMGMyZjQwOTRkY2VjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQxMTkyL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0NTQ2MS9wb29sT3BlcmF0aW9uUmVzdWx0cy9kZWxldGUtdGVzdF9wYWFzX3Bvb2w/YXBpLXZlcnNpb249MjAyMC0wOS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.26614.01",
+ "FxVersion/4.6.29220.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Batch.BatchManagementClient/10.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Batch.BatchManagementClient/11.0.0.0"
]
},
"ResponseHeaders": {
"Cache-Control": [
"no-cache"
],
- "Date": [
- "Fri, 29 May 2020 16:24:44 GMT"
- ],
"Pragma": [
"no-cache"
],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ],
"x-ms-request-id": [
- "b12cac6f-cb02-4a70-87f9-c4f23938dd42"
+ "fd69ee59-91e2-463f-9fbb-722680d75cf3"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -782,53 +776,53 @@
"X-Content-Type-Options": [
"nosniff"
],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
"x-ms-ratelimit-remaining-subscription-reads": [
"11996"
],
"x-ms-correlation-request-id": [
- "ac5d4b83-3135-4e51-a917-a4460ee6be4e"
+ "3d4f915d-0525-4458-9986-ac4e1681c924"
],
"x-ms-routing-request-id": [
- "WESTUS:20200529T162445Z:ac5d4b83-3135-4e51-a917-a4460ee6be4e"
+ "WESTUS:20200928T195025Z:3d4f915d-0525-4458-9986-ac4e1681c924"
],
- "Content-Length": [
- "0"
+ "Date": [
+ "Mon, 28 Sep 2020 19:50:24 GMT"
],
"Expires": [
"-1"
+ ],
+ "Content-Length": [
+ "0"
]
},
"ResponseBody": "",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet6894/providers/Microsoft.Batch/batchAccounts/azsmnet1882/poolOperationResults/delete-test_paas_pool?api-version=2020-05-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2ODk0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0MTg4Mi9wb29sT3BlcmF0aW9uUmVzdWx0cy9kZWxldGUtdGVzdF9wYWFzX3Bvb2w/YXBpLXZlcnNpb249MjAyMC0wNS0wMQ==",
+ "RequestUri": "/subscriptions/677f962b-9abf-4423-a27b-0c2f4094dcec/resourceGroups/azsmnet1192/providers/Microsoft.Batch/batchAccounts/azsmnet5461/poolOperationResults/delete-test_paas_pool?api-version=2020-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjc3Zjk2MmItOWFiZi00NDIzLWEyN2ItMGMyZjQwOTRkY2VjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQxMTkyL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0NTQ2MS9wb29sT3BlcmF0aW9uUmVzdWx0cy9kZWxldGUtdGVzdF9wYWFzX3Bvb2w/YXBpLXZlcnNpb249MjAyMC0wOS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.26614.01",
+ "FxVersion/4.6.29220.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Batch.BatchManagementClient/10.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Batch.BatchManagementClient/11.0.0.0"
]
},
"ResponseHeaders": {
"Cache-Control": [
"no-cache"
],
- "Date": [
- "Fri, 29 May 2020 16:24:44 GMT"
- ],
"Pragma": [
"no-cache"
],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ],
"x-ms-request-id": [
- "994f361c-9d3c-45b0-8620-1914befaa6ec"
+ "ea1dc7df-415a-4261-b239-503551300841"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -836,65 +830,65 @@
"X-Content-Type-Options": [
"nosniff"
],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
"x-ms-ratelimit-remaining-subscription-reads": [
"11995"
],
"x-ms-correlation-request-id": [
- "4961a240-8a0a-4e63-a747-faa70fc602e0"
+ "f1d034a9-b8e3-4e4b-86f6-be9c086b0b0a"
],
"x-ms-routing-request-id": [
- "WESTUS:20200529T162445Z:4961a240-8a0a-4e63-a747-faa70fc602e0"
+ "WESTUS:20200928T195025Z:f1d034a9-b8e3-4e4b-86f6-be9c086b0b0a"
],
- "Content-Length": [
- "0"
+ "Date": [
+ "Mon, 28 Sep 2020 19:50:24 GMT"
],
"Expires": [
"-1"
+ ],
+ "Content-Length": [
+ "0"
]
},
"ResponseBody": "",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet6894/providers/Microsoft.Batch/batchAccounts/azsmnet1882/pools/test_iaas_pool?api-version=2020-05-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2ODk0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0MTg4Mi9wb29scy90ZXN0X2lhYXNfcG9vbD9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestUri": "/subscriptions/677f962b-9abf-4423-a27b-0c2f4094dcec/resourceGroups/azsmnet1192/providers/Microsoft.Batch/batchAccounts/azsmnet5461/pools/test_iaas_pool?api-version=2020-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjc3Zjk2MmItOWFiZi00NDIzLWEyN2ItMGMyZjQwOTRkY2VjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQxMTkyL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0NTQ2MS9wb29scy90ZXN0X2lhYXNfcG9vbD9hcGktdmVyc2lvbj0yMDIwLTA5LTAx",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "6ef94f52-7b83-432f-b333-a10e831b31e6"
+ "24321a43-f0ac-43fe-a648-31278b821c1f"
],
- "accept-language": [
+ "Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.26614.01",
+ "FxVersion/4.6.29220.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Batch.BatchManagementClient/10.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Batch.BatchManagementClient/11.0.0.0"
]
},
"ResponseHeaders": {
"Cache-Control": [
"no-cache"
],
- "Date": [
- "Fri, 29 May 2020 16:24:44 GMT"
- ],
"Pragma": [
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet6894/providers/Microsoft.Batch/batchAccounts/azsmnet1882/poolOperationResults/delete-test_iaas_pool?api-version=2020-05-01"
+ "https://management.azure.com/subscriptions/677f962b-9abf-4423-a27b-0c2f4094dcec/resourceGroups/azsmnet1192/providers/Microsoft.Batch/batchAccounts/azsmnet5461/poolOperationResults/delete-test_iaas_pool?api-version=2020-09-01"
],
"Retry-After": [
"15"
],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ],
"x-ms-request-id": [
- "f2d4af87-602e-4c08-a786-31bda3b59c4c"
+ "ee63623a-b90c-48fb-b90d-1e1cf9d9b6cf"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -902,53 +896,53 @@
"X-Content-Type-Options": [
"nosniff"
],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
"x-ms-ratelimit-remaining-subscription-deletes": [
"14998"
],
"x-ms-correlation-request-id": [
- "6fdc96e4-9d91-4dfd-833f-e72ed2f0e6b4"
+ "2824bfcb-d94f-403b-a188-6dfa28309af9"
],
"x-ms-routing-request-id": [
- "WESTUS:20200529T162445Z:6fdc96e4-9d91-4dfd-833f-e72ed2f0e6b4"
+ "WESTUS:20200928T195026Z:2824bfcb-d94f-403b-a188-6dfa28309af9"
],
- "Content-Length": [
- "0"
+ "Date": [
+ "Mon, 28 Sep 2020 19:50:25 GMT"
],
"Expires": [
"-1"
+ ],
+ "Content-Length": [
+ "0"
]
},
"ResponseBody": "",
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet6894/providers/Microsoft.Batch/batchAccounts/azsmnet1882/poolOperationResults/delete-test_iaas_pool?api-version=2020-05-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2ODk0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0MTg4Mi9wb29sT3BlcmF0aW9uUmVzdWx0cy9kZWxldGUtdGVzdF9pYWFzX3Bvb2w/YXBpLXZlcnNpb249MjAyMC0wNS0wMQ==",
+ "RequestUri": "/subscriptions/677f962b-9abf-4423-a27b-0c2f4094dcec/resourceGroups/azsmnet1192/providers/Microsoft.Batch/batchAccounts/azsmnet5461/poolOperationResults/delete-test_iaas_pool?api-version=2020-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjc3Zjk2MmItOWFiZi00NDIzLWEyN2ItMGMyZjQwOTRkY2VjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQxMTkyL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0NTQ2MS9wb29sT3BlcmF0aW9uUmVzdWx0cy9kZWxldGUtdGVzdF9pYWFzX3Bvb2w/YXBpLXZlcnNpb249MjAyMC0wOS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.26614.01",
+ "FxVersion/4.6.29220.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Batch.BatchManagementClient/10.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Batch.BatchManagementClient/11.0.0.0"
]
},
"ResponseHeaders": {
"Cache-Control": [
"no-cache"
],
- "Date": [
- "Fri, 29 May 2020 16:24:59 GMT"
- ],
"Pragma": [
"no-cache"
],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ],
"x-ms-request-id": [
- "05e14b12-2aa6-493c-b3c4-81974dbc2429"
+ "720b77fb-b8d0-45ef-865b-a1faeb50665c"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -956,53 +950,53 @@
"X-Content-Type-Options": [
"nosniff"
],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
"x-ms-ratelimit-remaining-subscription-reads": [
"11994"
],
"x-ms-correlation-request-id": [
- "d34edc05-7253-45e7-9310-d7baeee3b815"
+ "37ff4c7d-9201-40ae-9dc5-b6c8685f7c39"
],
"x-ms-routing-request-id": [
- "WESTUS:20200529T162500Z:d34edc05-7253-45e7-9310-d7baeee3b815"
+ "WESTUS:20200928T195041Z:37ff4c7d-9201-40ae-9dc5-b6c8685f7c39"
],
- "Content-Length": [
- "0"
+ "Date": [
+ "Mon, 28 Sep 2020 19:50:40 GMT"
],
"Expires": [
"-1"
+ ],
+ "Content-Length": [
+ "0"
]
},
"ResponseBody": "",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet6894/providers/Microsoft.Batch/batchAccounts/azsmnet1882/poolOperationResults/delete-test_iaas_pool?api-version=2020-05-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2ODk0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0MTg4Mi9wb29sT3BlcmF0aW9uUmVzdWx0cy9kZWxldGUtdGVzdF9pYWFzX3Bvb2w/YXBpLXZlcnNpb249MjAyMC0wNS0wMQ==",
+ "RequestUri": "/subscriptions/677f962b-9abf-4423-a27b-0c2f4094dcec/resourceGroups/azsmnet1192/providers/Microsoft.Batch/batchAccounts/azsmnet5461/poolOperationResults/delete-test_iaas_pool?api-version=2020-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjc3Zjk2MmItOWFiZi00NDIzLWEyN2ItMGMyZjQwOTRkY2VjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQxMTkyL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0NTQ2MS9wb29sT3BlcmF0aW9uUmVzdWx0cy9kZWxldGUtdGVzdF9pYWFzX3Bvb2w/YXBpLXZlcnNpb249MjAyMC0wOS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.26614.01",
+ "FxVersion/4.6.29220.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Batch.BatchManagementClient/10.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Batch.BatchManagementClient/11.0.0.0"
]
},
"ResponseHeaders": {
"Cache-Control": [
"no-cache"
],
- "Date": [
- "Fri, 29 May 2020 16:24:59 GMT"
- ],
"Pragma": [
"no-cache"
],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ],
"x-ms-request-id": [
- "aa523d5f-2be3-47e3-8b07-2cf436e3687d"
+ "ad3cc5c3-070f-4962-b711-3742bbec5f96"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1010,62 +1004,62 @@
"X-Content-Type-Options": [
"nosniff"
],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
"x-ms-ratelimit-remaining-subscription-reads": [
"11993"
],
"x-ms-correlation-request-id": [
- "4b58893c-c3a5-4222-9bf1-e2da38d39241"
+ "d7f1cd9b-9c60-4ce3-8e5b-c2b3ef7f51ba"
],
"x-ms-routing-request-id": [
- "WESTUS:20200529T162500Z:4b58893c-c3a5-4222-9bf1-e2da38d39241"
+ "WESTUS:20200928T195041Z:d7f1cd9b-9c60-4ce3-8e5b-c2b3ef7f51ba"
],
- "Content-Length": [
- "0"
+ "Date": [
+ "Mon, 28 Sep 2020 19:50:40 GMT"
],
"Expires": [
"-1"
+ ],
+ "Content-Length": [
+ "0"
]
},
"ResponseBody": "",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet6894/providers/Microsoft.Batch/batchAccounts/azsmnet1882/pools/test_paas_pool?api-version=2020-05-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2ODk0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0MTg4Mi9wb29scy90ZXN0X3BhYXNfcG9vbD9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestUri": "/subscriptions/677f962b-9abf-4423-a27b-0c2f4094dcec/resourceGroups/azsmnet1192/providers/Microsoft.Batch/batchAccounts/azsmnet5461/pools/test_paas_pool?api-version=2020-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjc3Zjk2MmItOWFiZi00NDIzLWEyN2ItMGMyZjQwOTRkY2VjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQxMTkyL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0NTQ2MS9wb29scy90ZXN0X3BhYXNfcG9vbD9hcGktdmVyc2lvbj0yMDIwLTA5LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "be86cfff-5eb7-4798-80fd-f132d719c3cc"
+ "b5b11841-7811-4233-a752-ade9bb8534d8"
],
- "accept-language": [
+ "Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.26614.01",
+ "FxVersion/4.6.29220.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Batch.BatchManagementClient/10.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Batch.BatchManagementClient/11.0.0.0"
]
},
"ResponseHeaders": {
"Cache-Control": [
"no-cache"
],
- "Date": [
- "Fri, 29 May 2020 16:25:00 GMT"
- ],
"Pragma": [
"no-cache"
],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ],
"x-ms-ratelimit-remaining-subscription-reads": [
"11992"
],
"x-ms-request-id": [
- "46082740-3597-477e-8c13-1e1ef1d9fc8b"
+ "19294a40-8bb5-4d2d-93c5-59d65dea8075"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1073,11 +1067,17 @@
"X-Content-Type-Options": [
"nosniff"
],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
"x-ms-correlation-request-id": [
- "d81a17fc-af17-4239-9fee-8a41b66f3669"
+ "8d8384c3-21de-4b09-971f-b67003869bb3"
],
"x-ms-routing-request-id": [
- "WESTUS:20200529T162500Z:d81a17fc-af17-4239-9fee-8a41b66f3669"
+ "WESTUS:20200928T195041Z:8d8384c3-21de-4b09-971f-b67003869bb3"
+ ],
+ "Date": [
+ "Mon, 28 Sep 2020 19:50:40 GMT"
],
"Content-Length": [
"187"
@@ -1089,49 +1089,43 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"PoolNotFound\",\r\n \"message\": \"The specified pool does not exist.\\nRequestId:46082740-3597-477e-8c13-1e1ef1d9fc8b\\nTime:2020-05-29T16:25:00.8029002Z\",\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:19294a40-8bb5-4d2d-93c5-59d65dea8075\\nTime:2020-09-28T19:50:41.2420970Z\",\r\n \"target\": \"BatchAccount\"\r\n }\r\n}",
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet6894/providers/Microsoft.Batch/batchAccounts/azsmnet1882?api-version=2020-05-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2ODk0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0MTg4Mj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestUri": "/subscriptions/677f962b-9abf-4423-a27b-0c2f4094dcec/resourceGroups/azsmnet1192/providers/Microsoft.Batch/batchAccounts/azsmnet5461?api-version=2020-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjc3Zjk2MmItOWFiZi00NDIzLWEyN2ItMGMyZjQwOTRkY2VjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQxMTkyL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0NTQ2MT9hcGktdmVyc2lvbj0yMDIwLTA5LTAx",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "3c743943-ec5e-456b-b702-bba50b6635fb"
+ "93a6bcb8-96ef-4b1d-9f4a-03613734d3c2"
],
- "accept-language": [
+ "Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.26614.01",
+ "FxVersion/4.6.29220.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Batch.BatchManagementClient/10.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Batch.BatchManagementClient/11.0.0.0"
]
},
"ResponseHeaders": {
"Cache-Control": [
"no-cache"
],
- "Date": [
- "Fri, 29 May 2020 16:25:00 GMT"
- ],
"Pragma": [
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet1882-cf9de990-f5ff-4056-8645-32476ebe669c?api-version=2020-05-01"
+ "https://management.azure.com/subscriptions/677f962b-9abf-4423-a27b-0c2f4094dcec/providers/Microsoft.Batch/locations/westcentralus/accountOperationResults/azsmnet5461-b92fbc20-492a-4fc2-9e49-a1cf90e0dc65?api-version=2020-09-01"
],
"Retry-After": [
"15"
],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ],
"x-ms-request-id": [
- "cf9de990-f5ff-4056-8645-32476ebe669c"
+ "b92fbc20-492a-4fc2-9e49-a1cf90e0dc65"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1139,59 +1133,59 @@
"X-Content-Type-Options": [
"nosniff"
],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
"x-ms-ratelimit-remaining-subscription-deletes": [
"14997"
],
"x-ms-correlation-request-id": [
- "43842c9b-7049-464c-9304-c08a67342dfb"
+ "08536021-ea3b-4dc6-b043-d0f3de74ec57"
],
"x-ms-routing-request-id": [
- "WESTUS:20200529T162501Z:43842c9b-7049-464c-9304-c08a67342dfb"
+ "WESTUS:20200928T195041Z:08536021-ea3b-4dc6-b043-d0f3de74ec57"
],
- "Content-Length": [
- "0"
+ "Date": [
+ "Mon, 28 Sep 2020 19:50:40 GMT"
],
"Expires": [
"-1"
+ ],
+ "Content-Length": [
+ "0"
]
},
"ResponseBody": "",
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet1882-cf9de990-f5ff-4056-8645-32476ebe669c?api-version=2020-05-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0MTg4Mi1jZjlkZTk5MC1mNWZmLTQwNTYtODY0NS0zMjQ3NmViZTY2OWM/YXBpLXZlcnNpb249MjAyMC0wNS0wMQ==",
+ "RequestUri": "/subscriptions/677f962b-9abf-4423-a27b-0c2f4094dcec/providers/Microsoft.Batch/locations/westcentralus/accountOperationResults/azsmnet5461-b92fbc20-492a-4fc2-9e49-a1cf90e0dc65?api-version=2020-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjc3Zjk2MmItOWFiZi00NDIzLWEyN2ItMGMyZjQwOTRkY2VjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL3dlc3RjZW50cmFsdXMvYWNjb3VudE9wZXJhdGlvblJlc3VsdHMvYXpzbW5ldDU0NjEtYjkyZmJjMjAtNDkyYS00ZmMyLTllNDktYTFjZjkwZTBkYzY1P2FwaS12ZXJzaW9uPTIwMjAtMDktMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.26614.01",
+ "FxVersion/4.6.29220.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Batch.BatchManagementClient/10.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Batch.BatchManagementClient/11.0.0.0"
]
},
"ResponseHeaders": {
"Cache-Control": [
"no-cache"
],
- "Date": [
- "Fri, 29 May 2020 16:25:15 GMT"
- ],
"Pragma": [
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet1882-cf9de990-f5ff-4056-8645-32476ebe669c?api-version=2020-05-01"
+ "https://management.azure.com/subscriptions/677f962b-9abf-4423-a27b-0c2f4094dcec/providers/Microsoft.Batch/locations/westcentralus/accountOperationResults/azsmnet5461-b92fbc20-492a-4fc2-9e49-a1cf90e0dc65?api-version=2020-09-01"
],
"Retry-After": [
"15"
],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ],
"x-ms-request-id": [
- "63d6244f-2098-4303-a87e-e4f5a5c9d137"
+ "5c6c19d3-ad1b-4f77-abcf-14fe45cfc3ec"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1199,59 +1193,59 @@
"X-Content-Type-Options": [
"nosniff"
],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
"x-ms-ratelimit-remaining-subscription-reads": [
"11991"
],
"x-ms-correlation-request-id": [
- "684ddaed-a789-4e74-a259-b1be26b8a923"
+ "c9fd9385-3ba2-4f33-86d7-0f713a46e2aa"
],
"x-ms-routing-request-id": [
- "WESTUS:20200529T162516Z:684ddaed-a789-4e74-a259-b1be26b8a923"
+ "WESTUS:20200928T195056Z:c9fd9385-3ba2-4f33-86d7-0f713a46e2aa"
],
- "Content-Length": [
- "0"
+ "Date": [
+ "Mon, 28 Sep 2020 19:50:56 GMT"
],
"Expires": [
"-1"
+ ],
+ "Content-Length": [
+ "0"
]
},
"ResponseBody": "",
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet1882-cf9de990-f5ff-4056-8645-32476ebe669c?api-version=2020-05-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0MTg4Mi1jZjlkZTk5MC1mNWZmLTQwNTYtODY0NS0zMjQ3NmViZTY2OWM/YXBpLXZlcnNpb249MjAyMC0wNS0wMQ==",
+ "RequestUri": "/subscriptions/677f962b-9abf-4423-a27b-0c2f4094dcec/providers/Microsoft.Batch/locations/westcentralus/accountOperationResults/azsmnet5461-b92fbc20-492a-4fc2-9e49-a1cf90e0dc65?api-version=2020-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjc3Zjk2MmItOWFiZi00NDIzLWEyN2ItMGMyZjQwOTRkY2VjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL3dlc3RjZW50cmFsdXMvYWNjb3VudE9wZXJhdGlvblJlc3VsdHMvYXpzbW5ldDU0NjEtYjkyZmJjMjAtNDkyYS00ZmMyLTllNDktYTFjZjkwZTBkYzY1P2FwaS12ZXJzaW9uPTIwMjAtMDktMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.26614.01",
+ "FxVersion/4.6.29220.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Batch.BatchManagementClient/10.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Batch.BatchManagementClient/11.0.0.0"
]
},
"ResponseHeaders": {
"Cache-Control": [
"no-cache"
],
- "Date": [
- "Fri, 29 May 2020 16:25:30 GMT"
- ],
"Pragma": [
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet1882-cf9de990-f5ff-4056-8645-32476ebe669c?api-version=2020-05-01"
+ "https://management.azure.com/subscriptions/677f962b-9abf-4423-a27b-0c2f4094dcec/providers/Microsoft.Batch/locations/westcentralus/accountOperationResults/azsmnet5461-b92fbc20-492a-4fc2-9e49-a1cf90e0dc65?api-version=2020-09-01"
],
"Retry-After": [
"15"
],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ],
"x-ms-request-id": [
- "50462f63-9394-4910-9f35-12ada1404a6a"
+ "d18ed4d9-f90c-431d-a534-c50fc9d43916"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1259,59 +1253,59 @@
"X-Content-Type-Options": [
"nosniff"
],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
"x-ms-ratelimit-remaining-subscription-reads": [
"11990"
],
"x-ms-correlation-request-id": [
- "4e5bb6db-7fac-4a8e-bf88-8ea0c81b2eb4"
+ "d029f862-7db3-4386-9274-fb82731b444f"
],
"x-ms-routing-request-id": [
- "WESTUS:20200529T162531Z:4e5bb6db-7fac-4a8e-bf88-8ea0c81b2eb4"
+ "WESTUS:20200928T195112Z:d029f862-7db3-4386-9274-fb82731b444f"
],
- "Content-Length": [
- "0"
+ "Date": [
+ "Mon, 28 Sep 2020 19:51:11 GMT"
],
"Expires": [
"-1"
+ ],
+ "Content-Length": [
+ "0"
]
},
"ResponseBody": "",
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet1882-cf9de990-f5ff-4056-8645-32476ebe669c?api-version=2020-05-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0MTg4Mi1jZjlkZTk5MC1mNWZmLTQwNTYtODY0NS0zMjQ3NmViZTY2OWM/YXBpLXZlcnNpb249MjAyMC0wNS0wMQ==",
+ "RequestUri": "/subscriptions/677f962b-9abf-4423-a27b-0c2f4094dcec/providers/Microsoft.Batch/locations/westcentralus/accountOperationResults/azsmnet5461-b92fbc20-492a-4fc2-9e49-a1cf90e0dc65?api-version=2020-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjc3Zjk2MmItOWFiZi00NDIzLWEyN2ItMGMyZjQwOTRkY2VjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL3dlc3RjZW50cmFsdXMvYWNjb3VudE9wZXJhdGlvblJlc3VsdHMvYXpzbW5ldDU0NjEtYjkyZmJjMjAtNDkyYS00ZmMyLTllNDktYTFjZjkwZTBkYzY1P2FwaS12ZXJzaW9uPTIwMjAtMDktMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.26614.01",
+ "FxVersion/4.6.29220.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Batch.BatchManagementClient/10.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Batch.BatchManagementClient/11.0.0.0"
]
},
"ResponseHeaders": {
"Cache-Control": [
"no-cache"
],
- "Date": [
- "Fri, 29 May 2020 16:25:46 GMT"
- ],
"Pragma": [
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet1882-cf9de990-f5ff-4056-8645-32476ebe669c?api-version=2020-05-01"
+ "https://management.azure.com/subscriptions/677f962b-9abf-4423-a27b-0c2f4094dcec/providers/Microsoft.Batch/locations/westcentralus/accountOperationResults/azsmnet5461-b92fbc20-492a-4fc2-9e49-a1cf90e0dc65?api-version=2020-09-01"
],
"Retry-After": [
"15"
],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ],
"x-ms-request-id": [
- "0875ec8e-a197-447b-affb-d80ec5045464"
+ "178cf797-573a-451d-a20d-eef4518dccbc"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1319,59 +1313,59 @@
"X-Content-Type-Options": [
"nosniff"
],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
"x-ms-ratelimit-remaining-subscription-reads": [
"11989"
],
"x-ms-correlation-request-id": [
- "0e1ac14d-723b-4b5c-a897-d6f175d0f468"
+ "7221bc09-ab14-4a99-a455-c636e9f508f9"
],
"x-ms-routing-request-id": [
- "WESTUS:20200529T162546Z:0e1ac14d-723b-4b5c-a897-d6f175d0f468"
+ "WESTUS:20200928T195127Z:7221bc09-ab14-4a99-a455-c636e9f508f9"
],
- "Content-Length": [
- "0"
+ "Date": [
+ "Mon, 28 Sep 2020 19:51:26 GMT"
],
"Expires": [
"-1"
+ ],
+ "Content-Length": [
+ "0"
]
},
"ResponseBody": "",
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet1882-cf9de990-f5ff-4056-8645-32476ebe669c?api-version=2020-05-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0MTg4Mi1jZjlkZTk5MC1mNWZmLTQwNTYtODY0NS0zMjQ3NmViZTY2OWM/YXBpLXZlcnNpb249MjAyMC0wNS0wMQ==",
+ "RequestUri": "/subscriptions/677f962b-9abf-4423-a27b-0c2f4094dcec/providers/Microsoft.Batch/locations/westcentralus/accountOperationResults/azsmnet5461-b92fbc20-492a-4fc2-9e49-a1cf90e0dc65?api-version=2020-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjc3Zjk2MmItOWFiZi00NDIzLWEyN2ItMGMyZjQwOTRkY2VjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL3dlc3RjZW50cmFsdXMvYWNjb3VudE9wZXJhdGlvblJlc3VsdHMvYXpzbW5ldDU0NjEtYjkyZmJjMjAtNDkyYS00ZmMyLTllNDktYTFjZjkwZTBkYzY1P2FwaS12ZXJzaW9uPTIwMjAtMDktMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.26614.01",
+ "FxVersion/4.6.29220.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Batch.BatchManagementClient/10.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Batch.BatchManagementClient/11.0.0.0"
]
},
"ResponseHeaders": {
"Cache-Control": [
"no-cache"
],
- "Date": [
- "Fri, 29 May 2020 16:26:01 GMT"
- ],
"Pragma": [
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet1882-cf9de990-f5ff-4056-8645-32476ebe669c?api-version=2020-05-01"
+ "https://management.azure.com/subscriptions/677f962b-9abf-4423-a27b-0c2f4094dcec/providers/Microsoft.Batch/locations/westcentralus/accountOperationResults/azsmnet5461-b92fbc20-492a-4fc2-9e49-a1cf90e0dc65?api-version=2020-09-01"
],
"Retry-After": [
"15"
],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ],
"x-ms-request-id": [
- "210a8313-2fa1-4df3-9752-9e3b46ae031b"
+ "e099d203-21ec-4185-87ac-e26bd1bf25e0"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1379,59 +1373,59 @@
"X-Content-Type-Options": [
"nosniff"
],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
"x-ms-ratelimit-remaining-subscription-reads": [
"11988"
],
"x-ms-correlation-request-id": [
- "10dbedca-c9e2-4d49-b34c-dc9f669617bb"
+ "eaca8434-37f0-4b11-8a5c-7767e24b803f"
],
"x-ms-routing-request-id": [
- "WESTUS:20200529T162601Z:10dbedca-c9e2-4d49-b34c-dc9f669617bb"
+ "WESTUS:20200928T195142Z:eaca8434-37f0-4b11-8a5c-7767e24b803f"
],
- "Content-Length": [
- "0"
+ "Date": [
+ "Mon, 28 Sep 2020 19:51:41 GMT"
],
"Expires": [
"-1"
- ]
+ ],
+ "Content-Length": [
+ "0"
+ ]
},
"ResponseBody": "",
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet1882-cf9de990-f5ff-4056-8645-32476ebe669c?api-version=2020-05-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0MTg4Mi1jZjlkZTk5MC1mNWZmLTQwNTYtODY0NS0zMjQ3NmViZTY2OWM/YXBpLXZlcnNpb249MjAyMC0wNS0wMQ==",
+ "RequestUri": "/subscriptions/677f962b-9abf-4423-a27b-0c2f4094dcec/providers/Microsoft.Batch/locations/westcentralus/accountOperationResults/azsmnet5461-b92fbc20-492a-4fc2-9e49-a1cf90e0dc65?api-version=2020-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjc3Zjk2MmItOWFiZi00NDIzLWEyN2ItMGMyZjQwOTRkY2VjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL3dlc3RjZW50cmFsdXMvYWNjb3VudE9wZXJhdGlvblJlc3VsdHMvYXpzbW5ldDU0NjEtYjkyZmJjMjAtNDkyYS00ZmMyLTllNDktYTFjZjkwZTBkYzY1P2FwaS12ZXJzaW9uPTIwMjAtMDktMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.26614.01",
+ "FxVersion/4.6.29220.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Batch.BatchManagementClient/10.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Batch.BatchManagementClient/11.0.0.0"
]
},
"ResponseHeaders": {
"Cache-Control": [
"no-cache"
],
- "Date": [
- "Fri, 29 May 2020 16:26:16 GMT"
- ],
"Pragma": [
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet1882-cf9de990-f5ff-4056-8645-32476ebe669c?api-version=2020-05-01"
+ "https://management.azure.com/subscriptions/677f962b-9abf-4423-a27b-0c2f4094dcec/providers/Microsoft.Batch/locations/westcentralus/accountOperationResults/azsmnet5461-b92fbc20-492a-4fc2-9e49-a1cf90e0dc65?api-version=2020-09-01"
],
"Retry-After": [
"15"
],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ],
"x-ms-request-id": [
- "ca73ae9f-4b85-4f33-a02d-fcfe548c9ceb"
+ "f4aad822-3a6c-4098-bfce-4e192ce275db"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1439,59 +1433,59 @@
"X-Content-Type-Options": [
"nosniff"
],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
"x-ms-ratelimit-remaining-subscription-reads": [
"11987"
],
"x-ms-correlation-request-id": [
- "5c3868ca-6817-4a78-ac85-51142792269d"
+ "35249dcc-276f-4e5a-9dd3-3d9472308045"
],
"x-ms-routing-request-id": [
- "WESTUS:20200529T162617Z:5c3868ca-6817-4a78-ac85-51142792269d"
+ "WESTUS:20200928T195157Z:35249dcc-276f-4e5a-9dd3-3d9472308045"
],
- "Content-Length": [
- "0"
+ "Date": [
+ "Mon, 28 Sep 2020 19:51:56 GMT"
],
"Expires": [
"-1"
+ ],
+ "Content-Length": [
+ "0"
]
},
"ResponseBody": "",
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet1882-cf9de990-f5ff-4056-8645-32476ebe669c?api-version=2020-05-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0MTg4Mi1jZjlkZTk5MC1mNWZmLTQwNTYtODY0NS0zMjQ3NmViZTY2OWM/YXBpLXZlcnNpb249MjAyMC0wNS0wMQ==",
+ "RequestUri": "/subscriptions/677f962b-9abf-4423-a27b-0c2f4094dcec/providers/Microsoft.Batch/locations/westcentralus/accountOperationResults/azsmnet5461-b92fbc20-492a-4fc2-9e49-a1cf90e0dc65?api-version=2020-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjc3Zjk2MmItOWFiZi00NDIzLWEyN2ItMGMyZjQwOTRkY2VjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL3dlc3RjZW50cmFsdXMvYWNjb3VudE9wZXJhdGlvblJlc3VsdHMvYXpzbW5ldDU0NjEtYjkyZmJjMjAtNDkyYS00ZmMyLTllNDktYTFjZjkwZTBkYzY1P2FwaS12ZXJzaW9uPTIwMjAtMDktMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.26614.01",
+ "FxVersion/4.6.29220.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Batch.BatchManagementClient/10.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Batch.BatchManagementClient/11.0.0.0"
]
},
"ResponseHeaders": {
"Cache-Control": [
"no-cache"
],
- "Date": [
- "Fri, 29 May 2020 16:26:31 GMT"
- ],
"Pragma": [
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet1882-cf9de990-f5ff-4056-8645-32476ebe669c?api-version=2020-05-01"
+ "https://management.azure.com/subscriptions/677f962b-9abf-4423-a27b-0c2f4094dcec/providers/Microsoft.Batch/locations/westcentralus/accountOperationResults/azsmnet5461-b92fbc20-492a-4fc2-9e49-a1cf90e0dc65?api-version=2020-09-01"
],
"Retry-After": [
"15"
],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ],
"x-ms-request-id": [
- "c2d730f2-19ea-4992-8f77-7120b65006b8"
+ "237f2223-5746-44a0-9cad-36c01d810628"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1499,59 +1493,59 @@
"X-Content-Type-Options": [
"nosniff"
],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
"x-ms-ratelimit-remaining-subscription-reads": [
"11986"
],
"x-ms-correlation-request-id": [
- "4cf5d88b-5191-4211-b862-764b0d1d9a85"
+ "99959c84-e046-47c1-a84a-f01aebf056be"
],
"x-ms-routing-request-id": [
- "WESTUS:20200529T162632Z:4cf5d88b-5191-4211-b862-764b0d1d9a85"
+ "WESTUS:20200928T195212Z:99959c84-e046-47c1-a84a-f01aebf056be"
],
- "Content-Length": [
- "0"
+ "Date": [
+ "Mon, 28 Sep 2020 19:52:11 GMT"
],
"Expires": [
"-1"
+ ],
+ "Content-Length": [
+ "0"
]
},
"ResponseBody": "",
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet1882-cf9de990-f5ff-4056-8645-32476ebe669c?api-version=2020-05-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0MTg4Mi1jZjlkZTk5MC1mNWZmLTQwNTYtODY0NS0zMjQ3NmViZTY2OWM/YXBpLXZlcnNpb249MjAyMC0wNS0wMQ==",
+ "RequestUri": "/subscriptions/677f962b-9abf-4423-a27b-0c2f4094dcec/providers/Microsoft.Batch/locations/westcentralus/accountOperationResults/azsmnet5461-b92fbc20-492a-4fc2-9e49-a1cf90e0dc65?api-version=2020-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjc3Zjk2MmItOWFiZi00NDIzLWEyN2ItMGMyZjQwOTRkY2VjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL3dlc3RjZW50cmFsdXMvYWNjb3VudE9wZXJhdGlvblJlc3VsdHMvYXpzbW5ldDU0NjEtYjkyZmJjMjAtNDkyYS00ZmMyLTllNDktYTFjZjkwZTBkYzY1P2FwaS12ZXJzaW9uPTIwMjAtMDktMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.26614.01",
+ "FxVersion/4.6.29220.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Batch.BatchManagementClient/10.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Batch.BatchManagementClient/11.0.0.0"
]
},
"ResponseHeaders": {
"Cache-Control": [
"no-cache"
],
- "Date": [
- "Fri, 29 May 2020 16:26:46 GMT"
- ],
"Pragma": [
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet1882-cf9de990-f5ff-4056-8645-32476ebe669c?api-version=2020-05-01"
+ "https://management.azure.com/subscriptions/677f962b-9abf-4423-a27b-0c2f4094dcec/providers/Microsoft.Batch/locations/westcentralus/accountOperationResults/azsmnet5461-b92fbc20-492a-4fc2-9e49-a1cf90e0dc65?api-version=2020-09-01"
],
"Retry-After": [
"15"
],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ],
"x-ms-request-id": [
- "f3bd807a-5c36-4034-b70b-8c376d4b6047"
+ "de37acff-f46d-4dd9-ab4f-176649a9e32a"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1559,59 +1553,59 @@
"X-Content-Type-Options": [
"nosniff"
],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
"x-ms-ratelimit-remaining-subscription-reads": [
"11985"
],
"x-ms-correlation-request-id": [
- "e712760f-04e6-4c78-91f0-b020ea5d965b"
+ "3a5ffcf3-b23f-41a3-b74a-0da66f3d53e5"
],
"x-ms-routing-request-id": [
- "WESTUS:20200529T162647Z:e712760f-04e6-4c78-91f0-b020ea5d965b"
+ "WESTUS:20200928T195227Z:3a5ffcf3-b23f-41a3-b74a-0da66f3d53e5"
],
- "Content-Length": [
- "0"
+ "Date": [
+ "Mon, 28 Sep 2020 19:52:26 GMT"
],
"Expires": [
"-1"
+ ],
+ "Content-Length": [
+ "0"
]
},
"ResponseBody": "",
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet1882-cf9de990-f5ff-4056-8645-32476ebe669c?api-version=2020-05-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0MTg4Mi1jZjlkZTk5MC1mNWZmLTQwNTYtODY0NS0zMjQ3NmViZTY2OWM/YXBpLXZlcnNpb249MjAyMC0wNS0wMQ==",
+ "RequestUri": "/subscriptions/677f962b-9abf-4423-a27b-0c2f4094dcec/providers/Microsoft.Batch/locations/westcentralus/accountOperationResults/azsmnet5461-b92fbc20-492a-4fc2-9e49-a1cf90e0dc65?api-version=2020-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjc3Zjk2MmItOWFiZi00NDIzLWEyN2ItMGMyZjQwOTRkY2VjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL3dlc3RjZW50cmFsdXMvYWNjb3VudE9wZXJhdGlvblJlc3VsdHMvYXpzbW5ldDU0NjEtYjkyZmJjMjAtNDkyYS00ZmMyLTllNDktYTFjZjkwZTBkYzY1P2FwaS12ZXJzaW9uPTIwMjAtMDktMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.26614.01",
+ "FxVersion/4.6.29220.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Batch.BatchManagementClient/10.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Batch.BatchManagementClient/11.0.0.0"
]
},
"ResponseHeaders": {
"Cache-Control": [
"no-cache"
],
- "Date": [
- "Fri, 29 May 2020 16:27:01 GMT"
- ],
"Pragma": [
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet1882-cf9de990-f5ff-4056-8645-32476ebe669c?api-version=2020-05-01"
+ "https://management.azure.com/subscriptions/677f962b-9abf-4423-a27b-0c2f4094dcec/providers/Microsoft.Batch/locations/westcentralus/accountOperationResults/azsmnet5461-b92fbc20-492a-4fc2-9e49-a1cf90e0dc65?api-version=2020-09-01"
],
"Retry-After": [
"15"
],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ],
"x-ms-request-id": [
- "47095f2f-6a53-4721-9571-a2df88c72eba"
+ "a80374b5-c4a4-4be8-987d-9b1bec5212e3"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1619,59 +1613,59 @@
"X-Content-Type-Options": [
"nosniff"
],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
"x-ms-ratelimit-remaining-subscription-reads": [
"11984"
],
"x-ms-correlation-request-id": [
- "dafaa20b-0297-42ab-a595-9857f05d81fb"
+ "051e9815-2144-4f46-b126-374f0fac9cda"
],
"x-ms-routing-request-id": [
- "WESTUS:20200529T162702Z:dafaa20b-0297-42ab-a595-9857f05d81fb"
+ "WESTUS:20200928T195242Z:051e9815-2144-4f46-b126-374f0fac9cda"
],
- "Content-Length": [
- "0"
+ "Date": [
+ "Mon, 28 Sep 2020 19:52:41 GMT"
],
"Expires": [
"-1"
+ ],
+ "Content-Length": [
+ "0"
]
},
"ResponseBody": "",
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet1882-cf9de990-f5ff-4056-8645-32476ebe669c?api-version=2020-05-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0MTg4Mi1jZjlkZTk5MC1mNWZmLTQwNTYtODY0NS0zMjQ3NmViZTY2OWM/YXBpLXZlcnNpb249MjAyMC0wNS0wMQ==",
+ "RequestUri": "/subscriptions/677f962b-9abf-4423-a27b-0c2f4094dcec/providers/Microsoft.Batch/locations/westcentralus/accountOperationResults/azsmnet5461-b92fbc20-492a-4fc2-9e49-a1cf90e0dc65?api-version=2020-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjc3Zjk2MmItOWFiZi00NDIzLWEyN2ItMGMyZjQwOTRkY2VjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL3dlc3RjZW50cmFsdXMvYWNjb3VudE9wZXJhdGlvblJlc3VsdHMvYXpzbW5ldDU0NjEtYjkyZmJjMjAtNDkyYS00ZmMyLTllNDktYTFjZjkwZTBkYzY1P2FwaS12ZXJzaW9uPTIwMjAtMDktMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.26614.01",
+ "FxVersion/4.6.29220.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Batch.BatchManagementClient/10.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Batch.BatchManagementClient/11.0.0.0"
]
},
"ResponseHeaders": {
"Cache-Control": [
"no-cache"
],
- "Date": [
- "Fri, 29 May 2020 16:27:16 GMT"
- ],
"Pragma": [
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet1882-cf9de990-f5ff-4056-8645-32476ebe669c?api-version=2020-05-01"
+ "https://management.azure.com/subscriptions/677f962b-9abf-4423-a27b-0c2f4094dcec/providers/Microsoft.Batch/locations/westcentralus/accountOperationResults/azsmnet5461-b92fbc20-492a-4fc2-9e49-a1cf90e0dc65?api-version=2020-09-01"
],
"Retry-After": [
"15"
],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ],
"x-ms-request-id": [
- "5551e832-5b08-4b19-89f7-5b1c27920cb2"
+ "4cbc1146-61f9-4db5-9c62-4e9f10e58bfa"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1679,59 +1673,59 @@
"X-Content-Type-Options": [
"nosniff"
],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
"x-ms-ratelimit-remaining-subscription-reads": [
"11983"
],
"x-ms-correlation-request-id": [
- "fb9cfa77-85a1-489d-b4a3-e8b81693df93"
+ "2c813b2f-0511-4f09-8b19-77b12bbd7cdc"
],
"x-ms-routing-request-id": [
- "WESTUS:20200529T162717Z:fb9cfa77-85a1-489d-b4a3-e8b81693df93"
+ "WESTUS:20200928T195257Z:2c813b2f-0511-4f09-8b19-77b12bbd7cdc"
],
- "Content-Length": [
- "0"
+ "Date": [
+ "Mon, 28 Sep 2020 19:52:56 GMT"
],
"Expires": [
"-1"
+ ],
+ "Content-Length": [
+ "0"
]
},
"ResponseBody": "",
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet1882-cf9de990-f5ff-4056-8645-32476ebe669c?api-version=2020-05-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0MTg4Mi1jZjlkZTk5MC1mNWZmLTQwNTYtODY0NS0zMjQ3NmViZTY2OWM/YXBpLXZlcnNpb249MjAyMC0wNS0wMQ==",
+ "RequestUri": "/subscriptions/677f962b-9abf-4423-a27b-0c2f4094dcec/providers/Microsoft.Batch/locations/westcentralus/accountOperationResults/azsmnet5461-b92fbc20-492a-4fc2-9e49-a1cf90e0dc65?api-version=2020-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjc3Zjk2MmItOWFiZi00NDIzLWEyN2ItMGMyZjQwOTRkY2VjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL3dlc3RjZW50cmFsdXMvYWNjb3VudE9wZXJhdGlvblJlc3VsdHMvYXpzbW5ldDU0NjEtYjkyZmJjMjAtNDkyYS00ZmMyLTllNDktYTFjZjkwZTBkYzY1P2FwaS12ZXJzaW9uPTIwMjAtMDktMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.26614.01",
+ "FxVersion/4.6.29220.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Batch.BatchManagementClient/10.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Batch.BatchManagementClient/11.0.0.0"
]
},
"ResponseHeaders": {
"Cache-Control": [
"no-cache"
],
- "Date": [
- "Fri, 29 May 2020 16:27:32 GMT"
- ],
"Pragma": [
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet1882-cf9de990-f5ff-4056-8645-32476ebe669c?api-version=2020-05-01"
+ "https://management.azure.com/subscriptions/677f962b-9abf-4423-a27b-0c2f4094dcec/providers/Microsoft.Batch/locations/westcentralus/accountOperationResults/azsmnet5461-b92fbc20-492a-4fc2-9e49-a1cf90e0dc65?api-version=2020-09-01"
],
"Retry-After": [
"15"
],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ],
"x-ms-request-id": [
- "357da888-0cf2-4115-8bc5-cb6989e82215"
+ "6f76336d-ead9-49c1-822e-53736a145e5d"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1739,59 +1733,59 @@
"X-Content-Type-Options": [
"nosniff"
],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
"x-ms-ratelimit-remaining-subscription-reads": [
"11982"
],
"x-ms-correlation-request-id": [
- "3c2c7991-601c-40c5-801e-5366502e283c"
+ "849f9980-9840-43c9-80c3-ea238dd04cf2"
],
"x-ms-routing-request-id": [
- "WESTUS:20200529T162732Z:3c2c7991-601c-40c5-801e-5366502e283c"
+ "WESTUS:20200928T195312Z:849f9980-9840-43c9-80c3-ea238dd04cf2"
],
- "Content-Length": [
- "0"
+ "Date": [
+ "Mon, 28 Sep 2020 19:53:12 GMT"
],
"Expires": [
"-1"
+ ],
+ "Content-Length": [
+ "0"
]
},
"ResponseBody": "",
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet1882-cf9de990-f5ff-4056-8645-32476ebe669c?api-version=2020-05-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0MTg4Mi1jZjlkZTk5MC1mNWZmLTQwNTYtODY0NS0zMjQ3NmViZTY2OWM/YXBpLXZlcnNpb249MjAyMC0wNS0wMQ==",
+ "RequestUri": "/subscriptions/677f962b-9abf-4423-a27b-0c2f4094dcec/providers/Microsoft.Batch/locations/westcentralus/accountOperationResults/azsmnet5461-b92fbc20-492a-4fc2-9e49-a1cf90e0dc65?api-version=2020-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjc3Zjk2MmItOWFiZi00NDIzLWEyN2ItMGMyZjQwOTRkY2VjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL3dlc3RjZW50cmFsdXMvYWNjb3VudE9wZXJhdGlvblJlc3VsdHMvYXpzbW5ldDU0NjEtYjkyZmJjMjAtNDkyYS00ZmMyLTllNDktYTFjZjkwZTBkYzY1P2FwaS12ZXJzaW9uPTIwMjAtMDktMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.26614.01",
+ "FxVersion/4.6.29220.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Batch.BatchManagementClient/10.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Batch.BatchManagementClient/11.0.0.0"
]
},
"ResponseHeaders": {
"Cache-Control": [
"no-cache"
],
- "Date": [
- "Fri, 29 May 2020 16:27:47 GMT"
- ],
"Pragma": [
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet1882-cf9de990-f5ff-4056-8645-32476ebe669c?api-version=2020-05-01"
+ "https://management.azure.com/subscriptions/677f962b-9abf-4423-a27b-0c2f4094dcec/providers/Microsoft.Batch/locations/westcentralus/accountOperationResults/azsmnet5461-b92fbc20-492a-4fc2-9e49-a1cf90e0dc65?api-version=2020-09-01"
],
"Retry-After": [
"15"
],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ],
"x-ms-request-id": [
- "d21e81fe-c91e-4b75-8503-d42ba96e3b63"
+ "5774abc5-3bf3-472e-ad70-b2b1969db702"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1799,59 +1793,59 @@
"X-Content-Type-Options": [
"nosniff"
],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
"x-ms-ratelimit-remaining-subscription-reads": [
"11981"
],
"x-ms-correlation-request-id": [
- "686e075c-8f53-4107-99c2-b1be3167853c"
+ "51e55b43-6a59-45f0-af56-5db4330a0c7e"
],
"x-ms-routing-request-id": [
- "WESTUS:20200529T162747Z:686e075c-8f53-4107-99c2-b1be3167853c"
+ "WESTUS:20200928T195327Z:51e55b43-6a59-45f0-af56-5db4330a0c7e"
],
- "Content-Length": [
- "0"
+ "Date": [
+ "Mon, 28 Sep 2020 19:53:27 GMT"
],
"Expires": [
"-1"
+ ],
+ "Content-Length": [
+ "0"
]
},
"ResponseBody": "",
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet1882-cf9de990-f5ff-4056-8645-32476ebe669c?api-version=2020-05-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0MTg4Mi1jZjlkZTk5MC1mNWZmLTQwNTYtODY0NS0zMjQ3NmViZTY2OWM/YXBpLXZlcnNpb249MjAyMC0wNS0wMQ==",
+ "RequestUri": "/subscriptions/677f962b-9abf-4423-a27b-0c2f4094dcec/providers/Microsoft.Batch/locations/westcentralus/accountOperationResults/azsmnet5461-b92fbc20-492a-4fc2-9e49-a1cf90e0dc65?api-version=2020-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjc3Zjk2MmItOWFiZi00NDIzLWEyN2ItMGMyZjQwOTRkY2VjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL3dlc3RjZW50cmFsdXMvYWNjb3VudE9wZXJhdGlvblJlc3VsdHMvYXpzbW5ldDU0NjEtYjkyZmJjMjAtNDkyYS00ZmMyLTllNDktYTFjZjkwZTBkYzY1P2FwaS12ZXJzaW9uPTIwMjAtMDktMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.26614.01",
+ "FxVersion/4.6.29220.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Batch.BatchManagementClient/10.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Batch.BatchManagementClient/11.0.0.0"
]
},
"ResponseHeaders": {
"Cache-Control": [
"no-cache"
],
- "Date": [
- "Fri, 29 May 2020 16:28:02 GMT"
- ],
"Pragma": [
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet1882-cf9de990-f5ff-4056-8645-32476ebe669c?api-version=2020-05-01"
+ "https://management.azure.com/subscriptions/677f962b-9abf-4423-a27b-0c2f4094dcec/providers/Microsoft.Batch/locations/westcentralus/accountOperationResults/azsmnet5461-b92fbc20-492a-4fc2-9e49-a1cf90e0dc65?api-version=2020-09-01"
],
"Retry-After": [
"15"
],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ],
"x-ms-request-id": [
- "7dd767a6-98c0-4eda-927f-416eeeb0a19b"
+ "13b02384-e0cc-451e-99f9-4ba915fd3369"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1859,59 +1853,59 @@
"X-Content-Type-Options": [
"nosniff"
],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
"x-ms-ratelimit-remaining-subscription-reads": [
"11980"
],
"x-ms-correlation-request-id": [
- "dc880d14-0f2c-4ac7-bff3-0ac989ecd2b1"
+ "a14f6759-1572-46ab-8724-c2bd85d4e941"
],
"x-ms-routing-request-id": [
- "WESTUS:20200529T162802Z:dc880d14-0f2c-4ac7-bff3-0ac989ecd2b1"
+ "WESTUS:20200928T195342Z:a14f6759-1572-46ab-8724-c2bd85d4e941"
],
- "Content-Length": [
- "0"
+ "Date": [
+ "Mon, 28 Sep 2020 19:53:42 GMT"
],
"Expires": [
"-1"
+ ],
+ "Content-Length": [
+ "0"
]
},
"ResponseBody": "",
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet1882-cf9de990-f5ff-4056-8645-32476ebe669c?api-version=2020-05-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0MTg4Mi1jZjlkZTk5MC1mNWZmLTQwNTYtODY0NS0zMjQ3NmViZTY2OWM/YXBpLXZlcnNpb249MjAyMC0wNS0wMQ==",
+ "RequestUri": "/subscriptions/677f962b-9abf-4423-a27b-0c2f4094dcec/providers/Microsoft.Batch/locations/westcentralus/accountOperationResults/azsmnet5461-b92fbc20-492a-4fc2-9e49-a1cf90e0dc65?api-version=2020-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjc3Zjk2MmItOWFiZi00NDIzLWEyN2ItMGMyZjQwOTRkY2VjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL3dlc3RjZW50cmFsdXMvYWNjb3VudE9wZXJhdGlvblJlc3VsdHMvYXpzbW5ldDU0NjEtYjkyZmJjMjAtNDkyYS00ZmMyLTllNDktYTFjZjkwZTBkYzY1P2FwaS12ZXJzaW9uPTIwMjAtMDktMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.26614.01",
+ "FxVersion/4.6.29220.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Batch.BatchManagementClient/10.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Batch.BatchManagementClient/11.0.0.0"
]
},
"ResponseHeaders": {
"Cache-Control": [
"no-cache"
],
- "Date": [
- "Fri, 29 May 2020 16:28:17 GMT"
- ],
"Pragma": [
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet1882-cf9de990-f5ff-4056-8645-32476ebe669c?api-version=2020-05-01"
+ "https://management.azure.com/subscriptions/677f962b-9abf-4423-a27b-0c2f4094dcec/providers/Microsoft.Batch/locations/westcentralus/accountOperationResults/azsmnet5461-b92fbc20-492a-4fc2-9e49-a1cf90e0dc65?api-version=2020-09-01"
],
"Retry-After": [
"15"
],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ],
"x-ms-request-id": [
- "2631f404-c760-463e-9bad-6e400cdf71b2"
+ "51b3445e-20a9-4c58-a20b-11b2e611b251"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1919,59 +1913,59 @@
"X-Content-Type-Options": [
"nosniff"
],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
"x-ms-ratelimit-remaining-subscription-reads": [
"11979"
],
"x-ms-correlation-request-id": [
- "07c656cb-d3b7-4c58-a7f5-3d1fa01f2e7c"
+ "98521a4e-3dc7-445e-b200-843fd2a8bcec"
],
"x-ms-routing-request-id": [
- "WESTUS:20200529T162818Z:07c656cb-d3b7-4c58-a7f5-3d1fa01f2e7c"
+ "WESTUS:20200928T195357Z:98521a4e-3dc7-445e-b200-843fd2a8bcec"
],
- "Content-Length": [
- "0"
+ "Date": [
+ "Mon, 28 Sep 2020 19:53:57 GMT"
],
"Expires": [
"-1"
+ ],
+ "Content-Length": [
+ "0"
]
},
"ResponseBody": "",
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet1882-cf9de990-f5ff-4056-8645-32476ebe669c?api-version=2020-05-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0MTg4Mi1jZjlkZTk5MC1mNWZmLTQwNTYtODY0NS0zMjQ3NmViZTY2OWM/YXBpLXZlcnNpb249MjAyMC0wNS0wMQ==",
+ "RequestUri": "/subscriptions/677f962b-9abf-4423-a27b-0c2f4094dcec/providers/Microsoft.Batch/locations/westcentralus/accountOperationResults/azsmnet5461-b92fbc20-492a-4fc2-9e49-a1cf90e0dc65?api-version=2020-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjc3Zjk2MmItOWFiZi00NDIzLWEyN2ItMGMyZjQwOTRkY2VjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL3dlc3RjZW50cmFsdXMvYWNjb3VudE9wZXJhdGlvblJlc3VsdHMvYXpzbW5ldDU0NjEtYjkyZmJjMjAtNDkyYS00ZmMyLTllNDktYTFjZjkwZTBkYzY1P2FwaS12ZXJzaW9uPTIwMjAtMDktMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.26614.01",
+ "FxVersion/4.6.29220.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Batch.BatchManagementClient/10.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Batch.BatchManagementClient/11.0.0.0"
]
},
"ResponseHeaders": {
"Cache-Control": [
"no-cache"
],
- "Date": [
- "Fri, 29 May 2020 16:28:32 GMT"
- ],
"Pragma": [
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet1882-cf9de990-f5ff-4056-8645-32476ebe669c?api-version=2020-05-01"
+ "https://management.azure.com/subscriptions/677f962b-9abf-4423-a27b-0c2f4094dcec/providers/Microsoft.Batch/locations/westcentralus/accountOperationResults/azsmnet5461-b92fbc20-492a-4fc2-9e49-a1cf90e0dc65?api-version=2020-09-01"
],
"Retry-After": [
"15"
],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ],
"x-ms-request-id": [
- "2d1ee261-6e90-43ca-b17e-c1785544d3c3"
+ "a7516a6d-a357-4a9b-bdc0-b2eb707fea81"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1979,59 +1973,59 @@
"X-Content-Type-Options": [
"nosniff"
],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
"x-ms-ratelimit-remaining-subscription-reads": [
"11978"
],
"x-ms-correlation-request-id": [
- "73be1790-c000-4c9d-9339-3414020fe577"
+ "0f58bc8a-4b6f-4635-9ceb-4bc8d00c861d"
],
"x-ms-routing-request-id": [
- "WESTUS:20200529T162833Z:73be1790-c000-4c9d-9339-3414020fe577"
+ "WESTUS:20200928T195413Z:0f58bc8a-4b6f-4635-9ceb-4bc8d00c861d"
],
- "Content-Length": [
- "0"
+ "Date": [
+ "Mon, 28 Sep 2020 19:54:12 GMT"
],
"Expires": [
"-1"
+ ],
+ "Content-Length": [
+ "0"
]
},
"ResponseBody": "",
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet1882-cf9de990-f5ff-4056-8645-32476ebe669c?api-version=2020-05-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0MTg4Mi1jZjlkZTk5MC1mNWZmLTQwNTYtODY0NS0zMjQ3NmViZTY2OWM/YXBpLXZlcnNpb249MjAyMC0wNS0wMQ==",
+ "RequestUri": "/subscriptions/677f962b-9abf-4423-a27b-0c2f4094dcec/providers/Microsoft.Batch/locations/westcentralus/accountOperationResults/azsmnet5461-b92fbc20-492a-4fc2-9e49-a1cf90e0dc65?api-version=2020-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjc3Zjk2MmItOWFiZi00NDIzLWEyN2ItMGMyZjQwOTRkY2VjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL3dlc3RjZW50cmFsdXMvYWNjb3VudE9wZXJhdGlvblJlc3VsdHMvYXpzbW5ldDU0NjEtYjkyZmJjMjAtNDkyYS00ZmMyLTllNDktYTFjZjkwZTBkYzY1P2FwaS12ZXJzaW9uPTIwMjAtMDktMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.26614.01",
+ "FxVersion/4.6.29220.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Batch.BatchManagementClient/10.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Batch.BatchManagementClient/11.0.0.0"
]
},
"ResponseHeaders": {
"Cache-Control": [
"no-cache"
],
- "Date": [
- "Fri, 29 May 2020 16:28:47 GMT"
- ],
"Pragma": [
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet1882-cf9de990-f5ff-4056-8645-32476ebe669c?api-version=2020-05-01"
+ "https://management.azure.com/subscriptions/677f962b-9abf-4423-a27b-0c2f4094dcec/providers/Microsoft.Batch/locations/westcentralus/accountOperationResults/azsmnet5461-b92fbc20-492a-4fc2-9e49-a1cf90e0dc65?api-version=2020-09-01"
],
"Retry-After": [
"15"
],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ],
"x-ms-request-id": [
- "e383429a-7523-4e38-bf86-bd77d693a590"
+ "feb0035e-9fb9-4b75-99bd-7d79d1359eb1"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2039,59 +2033,59 @@
"X-Content-Type-Options": [
"nosniff"
],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
"x-ms-ratelimit-remaining-subscription-reads": [
"11977"
],
"x-ms-correlation-request-id": [
- "2bdd093d-9aa8-4029-bbfe-efde113813bf"
+ "08f20435-3504-4dfd-ab80-d95f92304a51"
],
"x-ms-routing-request-id": [
- "WESTUS:20200529T162848Z:2bdd093d-9aa8-4029-bbfe-efde113813bf"
+ "WESTUS:20200928T195428Z:08f20435-3504-4dfd-ab80-d95f92304a51"
],
- "Content-Length": [
- "0"
+ "Date": [
+ "Mon, 28 Sep 2020 19:54:27 GMT"
],
"Expires": [
"-1"
+ ],
+ "Content-Length": [
+ "0"
]
},
"ResponseBody": "",
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet1882-cf9de990-f5ff-4056-8645-32476ebe669c?api-version=2020-05-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0MTg4Mi1jZjlkZTk5MC1mNWZmLTQwNTYtODY0NS0zMjQ3NmViZTY2OWM/YXBpLXZlcnNpb249MjAyMC0wNS0wMQ==",
+ "RequestUri": "/subscriptions/677f962b-9abf-4423-a27b-0c2f4094dcec/providers/Microsoft.Batch/locations/westcentralus/accountOperationResults/azsmnet5461-b92fbc20-492a-4fc2-9e49-a1cf90e0dc65?api-version=2020-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjc3Zjk2MmItOWFiZi00NDIzLWEyN2ItMGMyZjQwOTRkY2VjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL3dlc3RjZW50cmFsdXMvYWNjb3VudE9wZXJhdGlvblJlc3VsdHMvYXpzbW5ldDU0NjEtYjkyZmJjMjAtNDkyYS00ZmMyLTllNDktYTFjZjkwZTBkYzY1P2FwaS12ZXJzaW9uPTIwMjAtMDktMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.26614.01",
+ "FxVersion/4.6.29220.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Batch.BatchManagementClient/10.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Batch.BatchManagementClient/11.0.0.0"
]
},
"ResponseHeaders": {
"Cache-Control": [
"no-cache"
],
- "Date": [
- "Fri, 29 May 2020 16:29:03 GMT"
- ],
"Pragma": [
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet1882-cf9de990-f5ff-4056-8645-32476ebe669c?api-version=2020-05-01"
+ "https://management.azure.com/subscriptions/677f962b-9abf-4423-a27b-0c2f4094dcec/providers/Microsoft.Batch/locations/westcentralus/accountOperationResults/azsmnet5461-b92fbc20-492a-4fc2-9e49-a1cf90e0dc65?api-version=2020-09-01"
],
"Retry-After": [
"15"
],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ],
"x-ms-request-id": [
- "81960e45-ce8c-4244-a854-c75c22cdd098"
+ "0a4abefe-35b6-4519-8ff1-684e02568f68"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2099,59 +2093,59 @@
"X-Content-Type-Options": [
"nosniff"
],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
"x-ms-ratelimit-remaining-subscription-reads": [
"11976"
],
"x-ms-correlation-request-id": [
- "7a43ffec-df68-424b-b6b0-7b8440a904f1"
+ "d4eba902-b549-4f9a-9a36-4b20091e7219"
],
"x-ms-routing-request-id": [
- "WESTUS:20200529T162903Z:7a43ffec-df68-424b-b6b0-7b8440a904f1"
+ "WESTUS:20200928T195443Z:d4eba902-b549-4f9a-9a36-4b20091e7219"
],
- "Content-Length": [
- "0"
+ "Date": [
+ "Mon, 28 Sep 2020 19:54:42 GMT"
],
"Expires": [
"-1"
+ ],
+ "Content-Length": [
+ "0"
]
},
"ResponseBody": "",
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet1882-cf9de990-f5ff-4056-8645-32476ebe669c?api-version=2020-05-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0MTg4Mi1jZjlkZTk5MC1mNWZmLTQwNTYtODY0NS0zMjQ3NmViZTY2OWM/YXBpLXZlcnNpb249MjAyMC0wNS0wMQ==",
+ "RequestUri": "/subscriptions/677f962b-9abf-4423-a27b-0c2f4094dcec/providers/Microsoft.Batch/locations/westcentralus/accountOperationResults/azsmnet5461-b92fbc20-492a-4fc2-9e49-a1cf90e0dc65?api-version=2020-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjc3Zjk2MmItOWFiZi00NDIzLWEyN2ItMGMyZjQwOTRkY2VjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL3dlc3RjZW50cmFsdXMvYWNjb3VudE9wZXJhdGlvblJlc3VsdHMvYXpzbW5ldDU0NjEtYjkyZmJjMjAtNDkyYS00ZmMyLTllNDktYTFjZjkwZTBkYzY1P2FwaS12ZXJzaW9uPTIwMjAtMDktMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.26614.01",
+ "FxVersion/4.6.29220.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Batch.BatchManagementClient/10.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Batch.BatchManagementClient/11.0.0.0"
]
},
"ResponseHeaders": {
"Cache-Control": [
"no-cache"
],
- "Date": [
- "Fri, 29 May 2020 16:29:18 GMT"
- ],
"Pragma": [
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet1882-cf9de990-f5ff-4056-8645-32476ebe669c?api-version=2020-05-01"
+ "https://management.azure.com/subscriptions/677f962b-9abf-4423-a27b-0c2f4094dcec/providers/Microsoft.Batch/locations/westcentralus/accountOperationResults/azsmnet5461-b92fbc20-492a-4fc2-9e49-a1cf90e0dc65?api-version=2020-09-01"
],
"Retry-After": [
"15"
],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ],
"x-ms-request-id": [
- "d6c639e0-04fa-41bd-a213-c603cfae3fc3"
+ "a030aad5-18f4-40ce-b223-f2b3e118563d"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2159,59 +2153,59 @@
"X-Content-Type-Options": [
"nosniff"
],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
"x-ms-ratelimit-remaining-subscription-reads": [
"11975"
],
"x-ms-correlation-request-id": [
- "368fe9a3-b65b-4705-a96c-8c7a41fa9b8b"
+ "a5c08377-54b5-49f4-99a0-e1d9ad2037c7"
],
"x-ms-routing-request-id": [
- "WESTUS:20200529T162918Z:368fe9a3-b65b-4705-a96c-8c7a41fa9b8b"
+ "WESTUS:20200928T195458Z:a5c08377-54b5-49f4-99a0-e1d9ad2037c7"
],
- "Content-Length": [
- "0"
+ "Date": [
+ "Mon, 28 Sep 2020 19:54:57 GMT"
],
"Expires": [
"-1"
+ ],
+ "Content-Length": [
+ "0"
]
},
"ResponseBody": "",
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet1882-cf9de990-f5ff-4056-8645-32476ebe669c?api-version=2020-05-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0MTg4Mi1jZjlkZTk5MC1mNWZmLTQwNTYtODY0NS0zMjQ3NmViZTY2OWM/YXBpLXZlcnNpb249MjAyMC0wNS0wMQ==",
+ "RequestUri": "/subscriptions/677f962b-9abf-4423-a27b-0c2f4094dcec/providers/Microsoft.Batch/locations/westcentralus/accountOperationResults/azsmnet5461-b92fbc20-492a-4fc2-9e49-a1cf90e0dc65?api-version=2020-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjc3Zjk2MmItOWFiZi00NDIzLWEyN2ItMGMyZjQwOTRkY2VjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL3dlc3RjZW50cmFsdXMvYWNjb3VudE9wZXJhdGlvblJlc3VsdHMvYXpzbW5ldDU0NjEtYjkyZmJjMjAtNDkyYS00ZmMyLTllNDktYTFjZjkwZTBkYzY1P2FwaS12ZXJzaW9uPTIwMjAtMDktMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.26614.01",
+ "FxVersion/4.6.29220.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Batch.BatchManagementClient/10.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Batch.BatchManagementClient/11.0.0.0"
]
},
"ResponseHeaders": {
"Cache-Control": [
"no-cache"
],
- "Date": [
- "Fri, 29 May 2020 16:29:33 GMT"
- ],
"Pragma": [
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet1882-cf9de990-f5ff-4056-8645-32476ebe669c?api-version=2020-05-01"
+ "https://management.azure.com/subscriptions/677f962b-9abf-4423-a27b-0c2f4094dcec/providers/Microsoft.Batch/locations/westcentralus/accountOperationResults/azsmnet5461-b92fbc20-492a-4fc2-9e49-a1cf90e0dc65?api-version=2020-09-01"
],
"Retry-After": [
"15"
],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ],
"x-ms-request-id": [
- "7d5c72ba-4569-4fb3-bab4-5ab9bba8dada"
+ "b890a932-7c0e-4204-a559-a3ef5dd61eaa"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2219,59 +2213,59 @@
"X-Content-Type-Options": [
"nosniff"
],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
"x-ms-ratelimit-remaining-subscription-reads": [
"11974"
],
"x-ms-correlation-request-id": [
- "f411a742-5885-4e7d-88e2-b5f121712b82"
+ "d5ed838d-2a04-4153-a9f9-42f7ae09e06b"
],
"x-ms-routing-request-id": [
- "WESTUS:20200529T162933Z:f411a742-5885-4e7d-88e2-b5f121712b82"
+ "WESTUS:20200928T195513Z:d5ed838d-2a04-4153-a9f9-42f7ae09e06b"
],
- "Content-Length": [
- "0"
+ "Date": [
+ "Mon, 28 Sep 2020 19:55:13 GMT"
],
"Expires": [
"-1"
+ ],
+ "Content-Length": [
+ "0"
]
},
"ResponseBody": "",
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet1882-cf9de990-f5ff-4056-8645-32476ebe669c?api-version=2020-05-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0MTg4Mi1jZjlkZTk5MC1mNWZmLTQwNTYtODY0NS0zMjQ3NmViZTY2OWM/YXBpLXZlcnNpb249MjAyMC0wNS0wMQ==",
+ "RequestUri": "/subscriptions/677f962b-9abf-4423-a27b-0c2f4094dcec/providers/Microsoft.Batch/locations/westcentralus/accountOperationResults/azsmnet5461-b92fbc20-492a-4fc2-9e49-a1cf90e0dc65?api-version=2020-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjc3Zjk2MmItOWFiZi00NDIzLWEyN2ItMGMyZjQwOTRkY2VjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL3dlc3RjZW50cmFsdXMvYWNjb3VudE9wZXJhdGlvblJlc3VsdHMvYXpzbW5ldDU0NjEtYjkyZmJjMjAtNDkyYS00ZmMyLTllNDktYTFjZjkwZTBkYzY1P2FwaS12ZXJzaW9uPTIwMjAtMDktMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.26614.01",
+ "FxVersion/4.6.29220.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Batch.BatchManagementClient/10.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Batch.BatchManagementClient/11.0.0.0"
]
},
"ResponseHeaders": {
"Cache-Control": [
"no-cache"
],
- "Date": [
- "Fri, 29 May 2020 16:29:48 GMT"
- ],
"Pragma": [
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet1882-cf9de990-f5ff-4056-8645-32476ebe669c?api-version=2020-05-01"
+ "https://management.azure.com/subscriptions/677f962b-9abf-4423-a27b-0c2f4094dcec/providers/Microsoft.Batch/locations/westcentralus/accountOperationResults/azsmnet5461-b92fbc20-492a-4fc2-9e49-a1cf90e0dc65?api-version=2020-09-01"
],
"Retry-After": [
"15"
],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ],
"x-ms-request-id": [
- "4230fdf0-93bc-4bf7-bba9-aa01f9e27e14"
+ "c851cd4c-415f-4c62-9a91-8a5dad0c55b0"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2282,56 +2276,56 @@
"x-ms-ratelimit-remaining-subscription-reads": [
"11973"
],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
"x-ms-correlation-request-id": [
- "2d06d887-f53e-4220-b220-63d5dc5e4b65"
+ "ea7e447e-ec48-4371-9fac-6ab1f0bdd611"
],
"x-ms-routing-request-id": [
- "WESTUS:20200529T162949Z:2d06d887-f53e-4220-b220-63d5dc5e4b65"
+ "WESTUS:20200928T195528Z:ea7e447e-ec48-4371-9fac-6ab1f0bdd611"
],
- "Content-Length": [
- "0"
+ "Date": [
+ "Mon, 28 Sep 2020 19:55:28 GMT"
],
"Expires": [
"-1"
+ ],
+ "Content-Length": [
+ "0"
]
},
"ResponseBody": "",
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet1882-cf9de990-f5ff-4056-8645-32476ebe669c?api-version=2020-05-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0MTg4Mi1jZjlkZTk5MC1mNWZmLTQwNTYtODY0NS0zMjQ3NmViZTY2OWM/YXBpLXZlcnNpb249MjAyMC0wNS0wMQ==",
+ "RequestUri": "/subscriptions/677f962b-9abf-4423-a27b-0c2f4094dcec/providers/Microsoft.Batch/locations/westcentralus/accountOperationResults/azsmnet5461-b92fbc20-492a-4fc2-9e49-a1cf90e0dc65?api-version=2020-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjc3Zjk2MmItOWFiZi00NDIzLWEyN2ItMGMyZjQwOTRkY2VjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL3dlc3RjZW50cmFsdXMvYWNjb3VudE9wZXJhdGlvblJlc3VsdHMvYXpzbW5ldDU0NjEtYjkyZmJjMjAtNDkyYS00ZmMyLTllNDktYTFjZjkwZTBkYzY1P2FwaS12ZXJzaW9uPTIwMjAtMDktMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.26614.01",
+ "FxVersion/4.6.29220.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Batch.BatchManagementClient/10.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Batch.BatchManagementClient/11.0.0.0"
]
},
"ResponseHeaders": {
"Cache-Control": [
"no-cache"
],
- "Date": [
- "Fri, 29 May 2020 16:30:03 GMT"
- ],
"Pragma": [
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet1882-cf9de990-f5ff-4056-8645-32476ebe669c?api-version=2020-05-01"
+ "https://management.azure.com/subscriptions/677f962b-9abf-4423-a27b-0c2f4094dcec/providers/Microsoft.Batch/locations/westcentralus/accountOperationResults/azsmnet5461-b92fbc20-492a-4fc2-9e49-a1cf90e0dc65?api-version=2020-09-01"
],
"Retry-After": [
"15"
],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ],
"x-ms-request-id": [
- "4cc2a26e-ca87-49e3-b40f-3f32d22a1e0e"
+ "60b5b447-bb11-49f1-b3e4-d4d0223169ef"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2339,59 +2333,59 @@
"X-Content-Type-Options": [
"nosniff"
],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
"x-ms-ratelimit-remaining-subscription-reads": [
"11972"
],
"x-ms-correlation-request-id": [
- "d665ede8-3f50-4938-8823-0f9e5dbe8866"
+ "b5cba7aa-d47b-47a8-bda8-875887d7abe0"
],
"x-ms-routing-request-id": [
- "WESTUS:20200529T163004Z:d665ede8-3f50-4938-8823-0f9e5dbe8866"
+ "WESTUS:20200928T195543Z:b5cba7aa-d47b-47a8-bda8-875887d7abe0"
],
- "Content-Length": [
- "0"
+ "Date": [
+ "Mon, 28 Sep 2020 19:55:43 GMT"
],
"Expires": [
"-1"
+ ],
+ "Content-Length": [
+ "0"
]
},
"ResponseBody": "",
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet1882-cf9de990-f5ff-4056-8645-32476ebe669c?api-version=2020-05-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0MTg4Mi1jZjlkZTk5MC1mNWZmLTQwNTYtODY0NS0zMjQ3NmViZTY2OWM/YXBpLXZlcnNpb249MjAyMC0wNS0wMQ==",
+ "RequestUri": "/subscriptions/677f962b-9abf-4423-a27b-0c2f4094dcec/providers/Microsoft.Batch/locations/westcentralus/accountOperationResults/azsmnet5461-b92fbc20-492a-4fc2-9e49-a1cf90e0dc65?api-version=2020-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjc3Zjk2MmItOWFiZi00NDIzLWEyN2ItMGMyZjQwOTRkY2VjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL3dlc3RjZW50cmFsdXMvYWNjb3VudE9wZXJhdGlvblJlc3VsdHMvYXpzbW5ldDU0NjEtYjkyZmJjMjAtNDkyYS00ZmMyLTllNDktYTFjZjkwZTBkYzY1P2FwaS12ZXJzaW9uPTIwMjAtMDktMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.26614.01",
+ "FxVersion/4.6.29220.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Batch.BatchManagementClient/10.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Batch.BatchManagementClient/11.0.0.0"
]
},
"ResponseHeaders": {
"Cache-Control": [
"no-cache"
],
- "Date": [
- "Fri, 29 May 2020 16:30:18 GMT"
- ],
"Pragma": [
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet1882-cf9de990-f5ff-4056-8645-32476ebe669c?api-version=2020-05-01"
+ "https://management.azure.com/subscriptions/677f962b-9abf-4423-a27b-0c2f4094dcec/providers/Microsoft.Batch/locations/westcentralus/accountOperationResults/azsmnet5461-b92fbc20-492a-4fc2-9e49-a1cf90e0dc65?api-version=2020-09-01"
],
"Retry-After": [
"15"
],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ],
"x-ms-request-id": [
- "5ea61a79-e543-45d9-987b-bc853883dfe0"
+ "a276c064-d119-4411-927c-df28bdc31852"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2399,53 +2393,53 @@
"X-Content-Type-Options": [
"nosniff"
],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
"x-ms-ratelimit-remaining-subscription-reads": [
"11971"
],
"x-ms-correlation-request-id": [
- "d8a8a019-08a1-4881-b863-83120b81e08a"
+ "547ca648-0cb1-4695-b1a9-5312f404f8cf"
],
"x-ms-routing-request-id": [
- "WESTUS:20200529T163019Z:d8a8a019-08a1-4881-b863-83120b81e08a"
+ "WESTUS:20200928T195558Z:547ca648-0cb1-4695-b1a9-5312f404f8cf"
],
- "Content-Length": [
- "0"
+ "Date": [
+ "Mon, 28 Sep 2020 19:55:58 GMT"
],
"Expires": [
"-1"
+ ],
+ "Content-Length": [
+ "0"
]
},
"ResponseBody": "",
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet1882-cf9de990-f5ff-4056-8645-32476ebe669c?api-version=2020-05-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0MTg4Mi1jZjlkZTk5MC1mNWZmLTQwNTYtODY0NS0zMjQ3NmViZTY2OWM/YXBpLXZlcnNpb249MjAyMC0wNS0wMQ==",
+ "RequestUri": "/subscriptions/677f962b-9abf-4423-a27b-0c2f4094dcec/providers/Microsoft.Batch/locations/westcentralus/accountOperationResults/azsmnet5461-b92fbc20-492a-4fc2-9e49-a1cf90e0dc65?api-version=2020-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjc3Zjk2MmItOWFiZi00NDIzLWEyN2ItMGMyZjQwOTRkY2VjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL3dlc3RjZW50cmFsdXMvYWNjb3VudE9wZXJhdGlvblJlc3VsdHMvYXpzbW5ldDU0NjEtYjkyZmJjMjAtNDkyYS00ZmMyLTllNDktYTFjZjkwZTBkYzY1P2FwaS12ZXJzaW9uPTIwMjAtMDktMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.26614.01",
+ "FxVersion/4.6.29220.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Batch.BatchManagementClient/10.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Batch.BatchManagementClient/11.0.0.0"
]
},
"ResponseHeaders": {
"Cache-Control": [
"no-cache"
],
- "Date": [
- "Fri, 29 May 2020 16:30:33 GMT"
- ],
"Pragma": [
"no-cache"
],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ],
"x-ms-request-id": [
- "f7b66477-246f-46cc-83e9-234b3f5e1e04"
+ "0e1912c9-09bc-45ab-bc4e-9821f3911d53"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2453,53 +2447,53 @@
"X-Content-Type-Options": [
"nosniff"
],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
"x-ms-ratelimit-remaining-subscription-reads": [
"11970"
],
"x-ms-correlation-request-id": [
- "73893411-a3d7-444d-99cc-68cf0fb1aac6"
+ "c3db50b3-019a-423c-9f42-587213267662"
],
"x-ms-routing-request-id": [
- "WESTUS:20200529T163034Z:73893411-a3d7-444d-99cc-68cf0fb1aac6"
+ "WESTUS:20200928T195613Z:c3db50b3-019a-423c-9f42-587213267662"
],
- "Content-Length": [
- "0"
+ "Date": [
+ "Mon, 28 Sep 2020 19:56:13 GMT"
],
"Expires": [
"-1"
+ ],
+ "Content-Length": [
+ "0"
]
},
"ResponseBody": "",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet1882-cf9de990-f5ff-4056-8645-32476ebe669c?api-version=2020-05-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0MTg4Mi1jZjlkZTk5MC1mNWZmLTQwNTYtODY0NS0zMjQ3NmViZTY2OWM/YXBpLXZlcnNpb249MjAyMC0wNS0wMQ==",
+ "RequestUri": "/subscriptions/677f962b-9abf-4423-a27b-0c2f4094dcec/providers/Microsoft.Batch/locations/westcentralus/accountOperationResults/azsmnet5461-b92fbc20-492a-4fc2-9e49-a1cf90e0dc65?api-version=2020-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjc3Zjk2MmItOWFiZi00NDIzLWEyN2ItMGMyZjQwOTRkY2VjL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL3dlc3RjZW50cmFsdXMvYWNjb3VudE9wZXJhdGlvblJlc3VsdHMvYXpzbW5ldDU0NjEtYjkyZmJjMjAtNDkyYS00ZmMyLTllNDktYTFjZjkwZTBkYzY1P2FwaS12ZXJzaW9uPTIwMjAtMDktMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.26614.01",
+ "FxVersion/4.6.29220.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Batch.BatchManagementClient/10.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.Batch.BatchManagementClient/11.0.0.0"
]
},
"ResponseHeaders": {
"Cache-Control": [
"no-cache"
],
- "Date": [
- "Fri, 29 May 2020 16:30:33 GMT"
- ],
"Pragma": [
"no-cache"
],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ],
"x-ms-request-id": [
- "df4a42dc-407c-43b2-a7c5-36cf212670f7"
+ "d96fab06-9bb7-422f-ac4b-d7c9deb30448"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2507,41 +2501,47 @@
"X-Content-Type-Options": [
"nosniff"
],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
"x-ms-ratelimit-remaining-subscription-reads": [
"11969"
],
"x-ms-correlation-request-id": [
- "dfc25eda-b2e3-4013-ab3b-75c52c67d993"
+ "9993a263-cded-49ac-9784-b54e316599d8"
],
"x-ms-routing-request-id": [
- "WESTUS:20200529T163034Z:dfc25eda-b2e3-4013-ab3b-75c52c67d993"
+ "WESTUS:20200928T195614Z:9993a263-cded-49ac-9784-b54e316599d8"
],
- "Content-Length": [
- "0"
+ "Date": [
+ "Mon, 28 Sep 2020 19:56:13 GMT"
],
"Expires": [
"-1"
+ ],
+ "Content-Length": [
+ "0"
]
},
"ResponseBody": "",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourcegroups/azsmnet6894?api-version=2017-05-10",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQ2ODk0P2FwaS12ZXJzaW9uPTIwMTctMDUtMTA=",
+ "RequestUri": "/subscriptions/677f962b-9abf-4423-a27b-0c2f4094dcec/resourcegroups/azsmnet1192?api-version=2017-05-10",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjc3Zjk2MmItOWFiZi00NDIzLWEyN2ItMGMyZjQwOTRkY2VjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQxMTkyP2FwaS12ZXJzaW9uPTIwMTctMDUtMTA=",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "c77de29c-ae96-4121-9979-1a4b779ea7bd"
+ "254d27d7-55c1-4651-a39a-3739b39f0de4"
],
- "accept-language": [
+ "Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.26614.01",
+ "FxVersion/4.6.29220.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
"Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0"
]
},
@@ -2549,14 +2549,11 @@
"Cache-Control": [
"no-cache"
],
- "Date": [
- "Fri, 29 May 2020 16:30:36 GMT"
- ],
"Pragma": [
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUNjg5NC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2017-05-10"
+ "https://management.azure.com/subscriptions/677f962b-9abf-4423-a27b-0c2f4094dcec/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUMTE5Mi1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2017-05-10"
],
"Retry-After": [
"15"
@@ -2565,13 +2562,13 @@
"14999"
],
"x-ms-request-id": [
- "53c9a7cd-e45a-46ae-a524-99397b53f676"
+ "018d09fa-9106-45ec-a09d-df733b9cb73c"
],
"x-ms-correlation-request-id": [
- "53c9a7cd-e45a-46ae-a524-99397b53f676"
+ "018d09fa-9106-45ec-a09d-df733b9cb73c"
],
"x-ms-routing-request-id": [
- "WESTUS:20200529T163036Z:53c9a7cd-e45a-46ae-a524-99397b53f676"
+ "WESTUS:20200928T195614Z:018d09fa-9106-45ec-a09d-df733b9cb73c"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2579,26 +2576,29 @@
"X-Content-Type-Options": [
"nosniff"
],
- "Content-Length": [
- "0"
+ "Date": [
+ "Mon, 28 Sep 2020 19:56:14 GMT"
],
"Expires": [
"-1"
+ ],
+ "Content-Length": [
+ "0"
]
},
"ResponseBody": "",
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUNjg5NC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2017-05-10",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xOTlRrVlVOamc1TkMxRlFWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==",
+ "RequestUri": "/subscriptions/677f962b-9abf-4423-a27b-0c2f4094dcec/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUMTE5Mi1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2017-05-10",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjc3Zjk2MmItOWFiZi00NDIzLWEyN2ItMGMyZjQwOTRkY2VjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xOTlRrVlVNVEU1TWkxWFJWTlVRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wWTJWdWRISmhiSFZ6SW4wP2FwaS12ZXJzaW9uPTIwMTctMDUtMTA=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.26614.01",
+ "FxVersion/4.6.29220.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
"Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0"
]
},
@@ -2606,14 +2606,11 @@
"Cache-Control": [
"no-cache"
],
- "Date": [
- "Fri, 29 May 2020 16:30:51 GMT"
- ],
"Pragma": [
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUNjg5NC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2017-05-10"
+ "https://management.azure.com/subscriptions/677f962b-9abf-4423-a27b-0c2f4094dcec/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUMTE5Mi1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2017-05-10"
],
"Retry-After": [
"15"
@@ -2622,13 +2619,13 @@
"11999"
],
"x-ms-request-id": [
- "d1ece2d7-2beb-4588-8ccb-cd9e8aac80ee"
+ "0f7406cd-971d-4cae-9382-464e16b5d6ec"
],
"x-ms-correlation-request-id": [
- "d1ece2d7-2beb-4588-8ccb-cd9e8aac80ee"
+ "0f7406cd-971d-4cae-9382-464e16b5d6ec"
],
"x-ms-routing-request-id": [
- "WESTUS:20200529T163051Z:d1ece2d7-2beb-4588-8ccb-cd9e8aac80ee"
+ "WESTUS:20200928T195630Z:0f7406cd-971d-4cae-9382-464e16b5d6ec"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2636,26 +2633,29 @@
"X-Content-Type-Options": [
"nosniff"
],
- "Content-Length": [
- "0"
+ "Date": [
+ "Mon, 28 Sep 2020 19:56:29 GMT"
],
"Expires": [
"-1"
+ ],
+ "Content-Length": [
+ "0"
]
},
"ResponseBody": "",
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUNjg5NC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2017-05-10",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xOTlRrVlVOamc1TkMxRlFWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==",
+ "RequestUri": "/subscriptions/677f962b-9abf-4423-a27b-0c2f4094dcec/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUMTE5Mi1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2017-05-10",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjc3Zjk2MmItOWFiZi00NDIzLWEyN2ItMGMyZjQwOTRkY2VjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xOTlRrVlVNVEU1TWkxWFJWTlVRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wWTJWdWRISmhiSFZ6SW4wP2FwaS12ZXJzaW9uPTIwMTctMDUtMTA=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.26614.01",
+ "FxVersion/4.6.29220.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
"Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0"
]
},
@@ -2663,23 +2663,26 @@
"Cache-Control": [
"no-cache"
],
- "Date": [
- "Fri, 29 May 2020 16:31:06 GMT"
- ],
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/677f962b-9abf-4423-a27b-0c2f4094dcec/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUMTE5Mi1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2017-05-10"
+ ],
+ "Retry-After": [
+ "15"
+ ],
"x-ms-ratelimit-remaining-subscription-reads": [
"11998"
],
"x-ms-request-id": [
- "4eeaab98-7a8a-457d-91c2-d24655978d37"
+ "ff68c73c-bbb8-4c39-9623-58456e222b7b"
],
"x-ms-correlation-request-id": [
- "4eeaab98-7a8a-457d-91c2-d24655978d37"
+ "ff68c73c-bbb8-4c39-9623-58456e222b7b"
],
"x-ms-routing-request-id": [
- "WESTUS:20200529T163106Z:4eeaab98-7a8a-457d-91c2-d24655978d37"
+ "WESTUS:20200928T195645Z:ff68c73c-bbb8-4c39-9623-58456e222b7b"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2687,26 +2690,29 @@
"X-Content-Type-Options": [
"nosniff"
],
- "Content-Length": [
- "0"
+ "Date": [
+ "Mon, 28 Sep 2020 19:56:44 GMT"
],
"Expires": [
"-1"
+ ],
+ "Content-Length": [
+ "0"
]
},
"ResponseBody": "",
- "StatusCode": 200
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUNjg5NC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2017-05-10",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xOTlRrVlVOamc1TkMxRlFWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==",
+ "RequestUri": "/subscriptions/677f962b-9abf-4423-a27b-0c2f4094dcec/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUMTE5Mi1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2017-05-10",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjc3Zjk2MmItOWFiZi00NDIzLWEyN2ItMGMyZjQwOTRkY2VjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xOTlRrVlVNVEU1TWkxWFJWTlVRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wWTJWdWRISmhiSFZ6SW4wP2FwaS12ZXJzaW9uPTIwMTctMDUtMTA=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.26614.01",
+ "FxVersion/4.6.29220.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
"Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0"
]
},
@@ -2714,9 +2720,6 @@
"Cache-Control": [
"no-cache"
],
- "Date": [
- "Fri, 29 May 2020 16:31:06 GMT"
- ],
"Pragma": [
"no-cache"
],
@@ -2724,13 +2727,13 @@
"11997"
],
"x-ms-request-id": [
- "f68668fa-78e0-4d8b-9121-a9235fd09b43"
+ "8160007c-8390-4f0d-99d0-72bb41b5f24c"
],
"x-ms-correlation-request-id": [
- "f68668fa-78e0-4d8b-9121-a9235fd09b43"
+ "8160007c-8390-4f0d-99d0-72bb41b5f24c"
],
"x-ms-routing-request-id": [
- "WESTUS:20200529T163107Z:f68668fa-78e0-4d8b-9121-a9235fd09b43"
+ "WESTUS:20200928T195700Z:8160007c-8390-4f0d-99d0-72bb41b5f24c"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2738,11 +2741,65 @@
"X-Content-Type-Options": [
"nosniff"
],
+ "Date": [
+ "Mon, 28 Sep 2020 19:56:59 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
"Content-Length": [
"0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/677f962b-9abf-4423-a27b-0c2f4094dcec/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUMTE5Mi1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2017-05-10",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjc3Zjk2MmItOWFiZi00NDIzLWEyN2ItMGMyZjQwOTRkY2VjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xOTlRrVlVNVEU1TWkxWFJWTlVRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wWTJWdWRISmhiSFZ6SW4wP2FwaS12ZXJzaW9uPTIwMTctMDUtMTA=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.29220.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19041.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11996"
+ ],
+ "x-ms-request-id": [
+ "9fc9ed1c-c326-4719-bf19-f2f40204681f"
+ ],
+ "x-ms-correlation-request-id": [
+ "9fc9ed1c-c326-4719-bf19-f2f40204681f"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200928T195700Z:9fc9ed1c-c326-4719-bf19-f2f40204681f"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Mon, 28 Sep 2020 19:56:59 GMT"
],
"Expires": [
"-1"
+ ],
+ "Content-Length": [
+ "0"
]
},
"ResponseBody": "",
@@ -2751,11 +2808,11 @@
],
"Names": {
"BatchPoolEndToEndAsync": [
- "azsmnet6894",
- "azsmnet1882"
+ "azsmnet1192",
+ "azsmnet5461"
]
},
"Variables": {
- "SubscriptionId": "21abd678-18c5-4660-9fdd-8c5ba6b6fe1f"
+ "SubscriptionId": "677f962b-9abf-4423-a27b-0c2f4094dcec"
}
}
\ No newline at end of file