diff --git a/src/Resources/ResourceManager/Implementation/ResourceGroupDeployments/GetAzureResourceGroupDeploymentOperationCmdlet.cs b/src/Resources/ResourceManager/Implementation/ResourceGroupDeployments/GetAzureResourceGroupDeploymentOperationCmdlet.cs
index 0a05b38972a7..cf65b796ca50 100644
--- a/src/Resources/ResourceManager/Implementation/ResourceGroupDeployments/GetAzureResourceGroupDeploymentOperationCmdlet.cs
+++ b/src/Resources/ResourceManager/Implementation/ResourceGroupDeployments/GetAzureResourceGroupDeploymentOperationCmdlet.cs
@@ -14,16 +14,20 @@
namespace Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation
{
+ using Commands.Common.Authentication.Abstractions;
using Common.ArgumentCompleters;
+ using Microsoft.Azure.Commands.ResourceManager.Cmdlets.Components;
+ using Microsoft.Azure.Commands.ResourceManager.Cmdlets.Extensions;
+ using Microsoft.Azure.Commands.ResourceManager.Common;
+ using Newtonsoft.Json.Linq;
using System;
using System.Management.Automation;
- using Microsoft.WindowsAzure.Commands.Common.CustomAttributes;
- using Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels;
+ using System.Threading.Tasks;
///
/// Gets the deployment operation.
///
- [Cmdlet("Get", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "ResourceGroupDeploymentOperation"), OutputType(typeof(PSDeploymentOperation))]
+ [Cmdlet("Get", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "ResourceGroupDeploymentOperation"), OutputType(typeof(PSObject))]
public class GetAzureResourceGroupDeploymentOperationCmdlet : ResourceManagerCmdletBase
{
///
@@ -37,7 +41,6 @@ public class GetAzureResourceGroupDeploymentOperationCmdlet : ResourceManagerCmd
///
/// Gets or sets the subscription id parameter.
///
- [CmdletParameterBreakingChange("SubscriptionId", ChangeDescription = "Parameter is deprecated and is a no-op parameter. It will be retired in a future release")]
[Parameter(Mandatory = false, ValueFromPipeline = true, ValueFromPipelineByPropertyName = true, HelpMessage = "The subscription to use.")]
[ValidateNotNullOrEmpty]
public Guid? SubscriptionId { get; set; }
@@ -55,11 +58,68 @@ public class GetAzureResourceGroupDeploymentOperationCmdlet : ResourceManagerCmd
///
protected override void OnProcessRecord()
{
- var deploymentOperations = ResourceManagerSdkClient.ListDeploymentOperationsAtResourceGroup(
- ResourceGroupName, DeploymentName);
+ base.OnProcessRecord();
- WriteObject(deploymentOperations, true);
+ if (this.SubscriptionId == null)
+ {
+ this.SubscriptionId = DefaultContext.Subscription.GetId();
+ }
+
+ this.RunCmdlet();
+ }
+
+ ///
+ /// Contains the cmdlet's execution logic.
+ ///
+ private void RunCmdlet()
+ {
+ PaginatedResponseHelper.ForEach(
+ getFirstPage: () => this.GetResources(),
+ getNextPage: nextLink => this.GetNextLink(nextLink),
+ cancellationToken: this.CancellationToken,
+ action: resources => this.WriteObject(sendToPipeline: resources.CoalesceEnumerable().SelectArray(resource =>
+ resource.ToPsObject("System.Management.Automation.PSCustomObject#DeploymentOperation")), enumerateCollection: true));
+ }
+
+ ///
+ /// Queries the ARM cache and returns the cached resource that match the query specified.
+ ///
+ private async Task> GetResources()
+ {
+ var resourceId = this.GetResourceId();
+
+ var apiVersion = string.IsNullOrWhiteSpace(this.ApiVersion) ? Constants.DeploymentOperationApiVersion : this.ApiVersion;
+
+ return await this
+ .GetResourcesClient()
+ .ListObjectColleciton(
+ resourceCollectionId: resourceId,
+ apiVersion: apiVersion,
+ cancellationToken: this.CancellationToken.Value)
+ .ConfigureAwait(continueOnCapturedContext: false);
}
+ ///
+ /// Gets the next set of resources using the
+ ///
+ /// The next link.
+ private Task> GetNextLink(string nextLink)
+ {
+ return this
+ .GetResourcesClient()
+ .ListNextBatch(nextLink: nextLink, cancellationToken: this.CancellationToken.Value);
+ }
+
+ ///
+ /// Gets the resource Id from the supplied PowerShell parameters.
+ ///
+ protected string GetResourceId()
+ {
+ return ResourceIdUtility.GetResourceId(
+ subscriptionId: this.SubscriptionId,
+ resourceGroupName: this.ResourceGroupName,
+ resourceType: Constants.MicrosoftResourcesDeploymentOperationsType,
+ resourceName: this.DeploymentName);
+ }
}
-}
+}
\ No newline at end of file
diff --git a/src/Resources/Resources.Test/SessionRecords/Microsoft.Azure.Commands.Resources.Test.ScenarioTests.DeploymentScopeTests/ResourceGroupDeploymentEndToEnd.json b/src/Resources/Resources.Test/SessionRecords/Microsoft.Azure.Commands.Resources.Test.ScenarioTests.DeploymentScopeTests/ResourceGroupDeploymentEndToEnd.json
index e288114b207e..6b86fb263dcd 100644
--- a/src/Resources/Resources.Test/SessionRecords/Microsoft.Azure.Commands.Resources.Test.ScenarioTests.DeploymentScopeTests/ResourceGroupDeploymentEndToEnd.json
+++ b/src/Resources/Resources.Test/SessionRecords/Microsoft.Azure.Commands.Resources.Test.ScenarioTests.DeploymentScopeTests/ResourceGroupDeploymentEndToEnd.json
@@ -1,13 +1,13 @@
{
"Entries": [
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2509?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjUwOT9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4672?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDY3Mj9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "HEAD",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "dc23913f-0385-4ffe-87a8-38e27ef8d022"
+ "70fa594c-e0e1-4d6a-aef1-5d1e59ea91e5"
],
"Accept-Language": [
"en-US"
@@ -33,13 +33,13 @@
"11999"
],
"x-ms-request-id": [
- "a3c3b954-06b7-4b14-aaf1-12b05e1e1bf4"
+ "83adf12f-5c57-4e58-9088-28ccb226617e"
],
"x-ms-correlation-request-id": [
- "a3c3b954-06b7-4b14-aaf1-12b05e1e1bf4"
+ "83adf12f-5c57-4e58-9088-28ccb226617e"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200612T213910Z:a3c3b954-06b7-4b14-aaf1-12b05e1e1bf4"
+ "NORTHCENTRALUS:20200624T211950Z:83adf12f-5c57-4e58-9088-28ccb226617e"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -48,7 +48,7 @@
"nosniff"
],
"Date": [
- "Fri, 12 Jun 2020 21:39:10 GMT"
+ "Wed, 24 Jun 2020 21:19:50 GMT"
],
"Content-Length": [
"98"
@@ -67,13 +67,13 @@
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2509?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjUwOT9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4672?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDY3Mj9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "HEAD",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "c02a097c-a14f-4ec2-8ac2-34191777ab66"
+ "04ac4982-5779-4abd-bdee-93f8ba8f4541"
],
"Accept-Language": [
"en-US"
@@ -93,16 +93,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11876"
+ "11881"
],
"x-ms-request-id": [
- "74d80e94-faa5-4764-8e19-e01b81ef8b0b"
+ "f1fd01e9-8f88-419c-b541-07a81391918a"
],
"x-ms-correlation-request-id": [
- "74d80e94-faa5-4764-8e19-e01b81ef8b0b"
+ "f1fd01e9-8f88-419c-b541-07a81391918a"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200612T214012Z:74d80e94-faa5-4764-8e19-e01b81ef8b0b"
+ "NORTHCENTRALUS:20200624T212053Z:f1fd01e9-8f88-419c-b541-07a81391918a"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -111,7 +111,7 @@
"nosniff"
],
"Date": [
- "Fri, 12 Jun 2020 21:40:12 GMT"
+ "Wed, 24 Jun 2020 21:20:53 GMT"
],
"Content-Length": [
"0"
@@ -127,13 +127,13 @@
"StatusCode": 204
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2509?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjUwOT9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4672?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDY3Mj9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "PUT",
"RequestBody": "{\r\n \"location\": \"WestUS\"\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a11df187-c793-4287-8f35-03152d42796b"
+ "0176a6f6-b05e-4e1e-a7fb-427514a15623"
],
"Accept-Language": [
"en-US"
@@ -162,13 +162,13 @@
"1199"
],
"x-ms-request-id": [
- "b0a7a369-1fa6-4425-8f34-e9ff01f32362"
+ "67217a56-949c-4dd0-89ef-616a00872b33"
],
"x-ms-correlation-request-id": [
- "b0a7a369-1fa6-4425-8f34-e9ff01f32362"
+ "67217a56-949c-4dd0-89ef-616a00872b33"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200612T213911Z:b0a7a369-1fa6-4425-8f34-e9ff01f32362"
+ "NORTHCENTRALUS:20200624T211951Z:67217a56-949c-4dd0-89ef-616a00872b33"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -177,7 +177,7 @@
"nosniff"
],
"Date": [
- "Fri, 12 Jun 2020 21:39:11 GMT"
+ "Wed, 24 Jun 2020 21:19:51 GMT"
],
"Content-Length": [
"209"
@@ -192,17 +192,17 @@
"0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2509\",\r\n \"name\": \"ps2509\",\r\n \"type\": \"Microsoft.Resources/resourceGroups\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4672\",\r\n \"name\": \"ps4672\",\r\n \"type\": \"Microsoft.Resources/resourceGroups\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2509/providers/Microsoft.Resources/deployments/ps296/validate?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjUwOS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczI5Ni92YWxpZGF0ZT9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4672/providers/Microsoft.Resources/deployments/ps7490/validate?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDY3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczc0OTAvdmFsaWRhdGU/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
"RequestMethod": "POST",
- "RequestBody": "{\r\n \"properties\": {\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\"\r\n },\r\n \"storageAccountType\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"Standard_LRS\",\r\n \"allowedValues\": [\r\n \"Standard_LRS\",\r\n \"Standard_GRS\",\r\n \"Standard_ZRS\"\r\n ]\r\n },\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"defaultValue\": \"East US\",\r\n \"allowedValues\": [\r\n \"West US\",\r\n \"East US\"\r\n ]\r\n }\r\n },\r\n \"resources\": [\r\n {\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"name\": \"[parameters('StorageAccountName')]\",\r\n \"apiVersion\": \"2015-06-15\",\r\n \"location\": \"[parameters('location')]\",\r\n \"properties\": {\r\n \"accountType\": \"[parameters('storageAccountType')]\"\r\n }\r\n }\r\n ],\r\n \"outputs\": {\r\n \"storageAccountInfo\": {\r\n \"value\": \"[reference(concat('Microsoft.Storage/storageAccounts/', parameters('StorageAccountName')),providers('Microsoft.Storage', 'storageAccounts').apiVersions[0])]\",\r\n \"type\": \"object\"\r\n }\r\n }\r\n },\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"value\": \"ps4924\"\r\n }\r\n },\r\n \"mode\": \"Incremental\"\r\n },\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n }\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\"\r\n },\r\n \"storageAccountType\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"Standard_LRS\",\r\n \"allowedValues\": [\r\n \"Standard_LRS\",\r\n \"Standard_GRS\",\r\n \"Standard_ZRS\"\r\n ]\r\n },\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"defaultValue\": \"East US\",\r\n \"allowedValues\": [\r\n \"West US\",\r\n \"East US\"\r\n ]\r\n }\r\n },\r\n \"resources\": [\r\n {\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"name\": \"[parameters('StorageAccountName')]\",\r\n \"apiVersion\": \"2015-06-15\",\r\n \"location\": \"[parameters('location')]\",\r\n \"properties\": {\r\n \"accountType\": \"[parameters('storageAccountType')]\"\r\n }\r\n }\r\n ],\r\n \"outputs\": {\r\n \"storageAccountInfo\": {\r\n \"value\": \"[reference(concat('Microsoft.Storage/storageAccounts/', parameters('StorageAccountName')),providers('Microsoft.Storage', 'storageAccounts').apiVersions[0])]\",\r\n \"type\": \"object\"\r\n }\r\n }\r\n },\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"value\": \"ps6072\"\r\n }\r\n },\r\n \"mode\": \"Incremental\"\r\n },\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "887c8036-32aa-49e7-a3a2-c6b6a1ce2370"
+ "b058a4ef-1eb1-4dec-bb36-c3a41f106501"
],
"Accept-Language": [
"en-US"
@@ -231,13 +231,13 @@
"1199"
],
"x-ms-request-id": [
- "e2ca3dd1-12e6-45f9-8a3d-5b724cd84b8f"
+ "8cea095d-d185-40ca-9e70-91d7b29491a8"
],
"x-ms-correlation-request-id": [
- "e2ca3dd1-12e6-45f9-8a3d-5b724cd84b8f"
+ "8cea095d-d185-40ca-9e70-91d7b29491a8"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200612T213913Z:e2ca3dd1-12e6-45f9-8a3d-5b724cd84b8f"
+ "NORTHCENTRALUS:20200624T211953Z:8cea095d-d185-40ca-9e70-91d7b29491a8"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -246,10 +246,10 @@
"nosniff"
],
"Date": [
- "Fri, 12 Jun 2020 21:39:13 GMT"
+ "Wed, 24 Jun 2020 21:19:53 GMT"
],
"Content-Length": [
- "928"
+ "930"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -261,17 +261,17 @@
"0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2509/providers/Microsoft.Resources/deployments/ps296\",\r\n \"name\": \"ps296\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps4924\"\r\n },\r\n \"storageAccountType\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n },\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"East US\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2020-06-12T21:39:13.0259553Z\",\r\n \"duration\": \"PT0S\",\r\n \"correlationId\": \"e2ca3dd1-12e6-45f9-8a3d-5b724cd84b8f\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [],\r\n \"validatedResources\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2509/providers/Microsoft.Storage/storageAccounts/ps4924\"\r\n }\r\n ]\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4672/providers/Microsoft.Resources/deployments/ps7490\",\r\n \"name\": \"ps7490\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps6072\"\r\n },\r\n \"storageAccountType\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n },\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"East US\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2020-06-24T21:19:52.6900949Z\",\r\n \"duration\": \"PT0S\",\r\n \"correlationId\": \"8cea095d-d185-40ca-9e70-91d7b29491a8\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [],\r\n \"validatedResources\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4672/providers/Microsoft.Storage/storageAccounts/ps6072\"\r\n }\r\n ]\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2509/providers/Microsoft.Resources/deployments/ps296?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjUwOS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczI5Nj9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4672/providers/Microsoft.Resources/deployments/ps7490?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDY3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczc0OTA/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\"\r\n },\r\n \"storageAccountType\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"Standard_LRS\",\r\n \"allowedValues\": [\r\n \"Standard_LRS\",\r\n \"Standard_GRS\",\r\n \"Standard_ZRS\"\r\n ]\r\n },\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"defaultValue\": \"East US\",\r\n \"allowedValues\": [\r\n \"West US\",\r\n \"East US\"\r\n ]\r\n }\r\n },\r\n \"resources\": [\r\n {\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"name\": \"[parameters('StorageAccountName')]\",\r\n \"apiVersion\": \"2015-06-15\",\r\n \"location\": \"[parameters('location')]\",\r\n \"properties\": {\r\n \"accountType\": \"[parameters('storageAccountType')]\"\r\n }\r\n }\r\n ],\r\n \"outputs\": {\r\n \"storageAccountInfo\": {\r\n \"value\": \"[reference(concat('Microsoft.Storage/storageAccounts/', parameters('StorageAccountName')),providers('Microsoft.Storage', 'storageAccounts').apiVersions[0])]\",\r\n \"type\": \"object\"\r\n }\r\n }\r\n },\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"value\": \"ps4924\"\r\n }\r\n },\r\n \"mode\": \"Incremental\"\r\n },\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n }\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\"\r\n },\r\n \"storageAccountType\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"Standard_LRS\",\r\n \"allowedValues\": [\r\n \"Standard_LRS\",\r\n \"Standard_GRS\",\r\n \"Standard_ZRS\"\r\n ]\r\n },\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"defaultValue\": \"East US\",\r\n \"allowedValues\": [\r\n \"West US\",\r\n \"East US\"\r\n ]\r\n }\r\n },\r\n \"resources\": [\r\n {\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"name\": \"[parameters('StorageAccountName')]\",\r\n \"apiVersion\": \"2015-06-15\",\r\n \"location\": \"[parameters('location')]\",\r\n \"properties\": {\r\n \"accountType\": \"[parameters('storageAccountType')]\"\r\n }\r\n }\r\n ],\r\n \"outputs\": {\r\n \"storageAccountInfo\": {\r\n \"value\": \"[reference(concat('Microsoft.Storage/storageAccounts/', parameters('StorageAccountName')),providers('Microsoft.Storage', 'storageAccounts').apiVersions[0])]\",\r\n \"type\": \"object\"\r\n }\r\n }\r\n },\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"value\": \"ps6072\"\r\n }\r\n },\r\n \"mode\": \"Incremental\"\r\n },\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "17716870-d404-4a27-96a2-f7dbf69125ff"
+ "3c40313d-e3c5-413b-9322-b13a2a400af1"
],
"Accept-Language": [
"en-US"
@@ -297,19 +297,19 @@
"no-cache"
],
"Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2509/providers/Microsoft.Resources/deployments/ps296/operationStatuses/08586096089309966057?api-version=2019-10-01"
+ "https://management.azure.com/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4672/providers/Microsoft.Resources/deployments/ps7490/operationStatuses/08586085732912846726?api-version=2019-10-01"
],
"x-ms-ratelimit-remaining-subscription-writes": [
"1198"
],
"x-ms-request-id": [
- "6e296f26-2639-41f3-9c97-bb57b5e5459a"
+ "495b55ab-e5a8-438a-9e1b-14f9d5c91e78"
],
"x-ms-correlation-request-id": [
- "6e296f26-2639-41f3-9c97-bb57b5e5459a"
+ "495b55ab-e5a8-438a-9e1b-14f9d5c91e78"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200612T213916Z:6e296f26-2639-41f3-9c97-bb57b5e5459a"
+ "NORTHCENTRALUS:20200624T211955Z:495b55ab-e5a8-438a-9e1b-14f9d5c91e78"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -318,10 +318,10 @@
"nosniff"
],
"Date": [
- "Fri, 12 Jun 2020 21:39:15 GMT"
+ "Wed, 24 Jun 2020 21:19:55 GMT"
],
"Content-Length": [
- "778"
+ "780"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -333,17 +333,17 @@
"0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2509/providers/Microsoft.Resources/deployments/ps296\",\r\n \"name\": \"ps296\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps4924\"\r\n },\r\n \"storageAccountType\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n },\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"East US\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2020-06-12T21:39:15.2632485Z\",\r\n \"duration\": \"PT0.7822443S\",\r\n \"correlationId\": \"6e296f26-2639-41f3-9c97-bb57b5e5459a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4672/providers/Microsoft.Resources/deployments/ps7490\",\r\n \"name\": \"ps7490\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps6072\"\r\n },\r\n \"storageAccountType\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n },\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"East US\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2020-06-24T21:19:55.0391246Z\",\r\n \"duration\": \"PT0.8461838S\",\r\n \"correlationId\": \"495b55ab-e5a8-438a-9e1b-14f9d5c91e78\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2509/deployments/ps296/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjUwOS9kZXBsb3ltZW50cy9wczI5Ni9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4672/deployments/ps7490/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDY3Mi9kZXBsb3ltZW50cy9wczc0OTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "d687f6b6-d084-4693-a372-a56a2decded2"
+ "3b784a72-004a-4bca-90e6-f5a91f31321f"
],
"Accept-Language": [
"en-US"
@@ -366,13 +366,13 @@
"11998"
],
"x-ms-request-id": [
- "002eab36-8606-411c-93f2-1650448875b2"
+ "704f6557-bc0d-4d18-b924-773c2c576830"
],
"x-ms-correlation-request-id": [
- "002eab36-8606-411c-93f2-1650448875b2"
+ "704f6557-bc0d-4d18-b924-773c2c576830"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200612T213916Z:002eab36-8606-411c-93f2-1650448875b2"
+ "NORTHCENTRALUS:20200624T211956Z:704f6557-bc0d-4d18-b924-773c2c576830"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -381,7 +381,7 @@
"nosniff"
],
"Date": [
- "Fri, 12 Jun 2020 21:39:16 GMT"
+ "Wed, 24 Jun 2020 21:19:56 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -400,13 +400,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2509/deployments/ps296/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjUwOS9kZXBsb3ltZW50cy9wczI5Ni9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4672/deployments/ps7490/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDY3Mi9kZXBsb3ltZW50cy9wczc0OTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a12e09d7-9e6f-4510-b7bc-d79ffc93f422"
+ "21324268-13bc-4227-81d7-f8f313303f2a"
],
"Accept-Language": [
"en-US"
@@ -429,13 +429,13 @@
"11996"
],
"x-ms-request-id": [
- "607db96a-7fa3-4dda-89f2-ffa6e7c52382"
+ "59fee705-6155-4913-a706-20f5be57704f"
],
"x-ms-correlation-request-id": [
- "607db96a-7fa3-4dda-89f2-ffa6e7c52382"
+ "59fee705-6155-4913-a706-20f5be57704f"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200612T213916Z:607db96a-7fa3-4dda-89f2-ffa6e7c52382"
+ "NORTHCENTRALUS:20200624T211957Z:59fee705-6155-4913-a706-20f5be57704f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -444,7 +444,7 @@
"nosniff"
],
"Date": [
- "Fri, 12 Jun 2020 21:39:16 GMT"
+ "Wed, 24 Jun 2020 21:19:56 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -463,13 +463,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2509/deployments/ps296/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjUwOS9kZXBsb3ltZW50cy9wczI5Ni9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4672/deployments/ps7490/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDY3Mi9kZXBsb3ltZW50cy9wczc0OTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a80a9503-5a34-4744-888c-0cc68f8e005f"
+ "dd023fb0-a6fb-4d3f-9f57-d04dadde5232"
],
"Accept-Language": [
"en-US"
@@ -492,13 +492,13 @@
"11994"
],
"x-ms-request-id": [
- "e783ff96-2a51-467b-95f5-ab82da733fb2"
+ "ec5953c7-fedb-4153-99c5-703a0a0e52ef"
],
"x-ms-correlation-request-id": [
- "e783ff96-2a51-467b-95f5-ab82da733fb2"
+ "ec5953c7-fedb-4153-99c5-703a0a0e52ef"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200612T213917Z:e783ff96-2a51-467b-95f5-ab82da733fb2"
+ "NORTHCENTRALUS:20200624T211957Z:ec5953c7-fedb-4153-99c5-703a0a0e52ef"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -507,7 +507,7 @@
"nosniff"
],
"Date": [
- "Fri, 12 Jun 2020 21:39:16 GMT"
+ "Wed, 24 Jun 2020 21:19:57 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -526,13 +526,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2509/deployments/ps296/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjUwOS9kZXBsb3ltZW50cy9wczI5Ni9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4672/deployments/ps7490/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDY3Mi9kZXBsb3ltZW50cy9wczc0OTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "13951cab-9e1a-4f08-8742-7d9e0821ccef"
+ "55ae5b6a-7707-43a0-85d4-9f3462dead07"
],
"Accept-Language": [
"en-US"
@@ -555,13 +555,13 @@
"11992"
],
"x-ms-request-id": [
- "d17c49ad-914f-49d2-9db2-cb004602c26e"
+ "bd56f653-2a4f-4be8-8bd5-130ecba88436"
],
"x-ms-correlation-request-id": [
- "d17c49ad-914f-49d2-9db2-cb004602c26e"
+ "bd56f653-2a4f-4be8-8bd5-130ecba88436"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200612T213917Z:d17c49ad-914f-49d2-9db2-cb004602c26e"
+ "NORTHCENTRALUS:20200624T211958Z:bd56f653-2a4f-4be8-8bd5-130ecba88436"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -570,7 +570,7 @@
"nosniff"
],
"Date": [
- "Fri, 12 Jun 2020 21:39:17 GMT"
+ "Wed, 24 Jun 2020 21:19:57 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -589,13 +589,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2509/deployments/ps296/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjUwOS9kZXBsb3ltZW50cy9wczI5Ni9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4672/deployments/ps7490/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDY3Mi9kZXBsb3ltZW50cy9wczc0OTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "4aba0d0c-7762-49c8-a428-dfddfc75b591"
+ "e5636403-1041-41fc-9660-c39c5d27c660"
],
"Accept-Language": [
"en-US"
@@ -618,13 +618,13 @@
"11990"
],
"x-ms-request-id": [
- "cf4b5905-2961-402c-ae65-80f983d3ec79"
+ "be4385a1-f97b-4fd6-b379-363adede51b6"
],
"x-ms-correlation-request-id": [
- "cf4b5905-2961-402c-ae65-80f983d3ec79"
+ "be4385a1-f97b-4fd6-b379-363adede51b6"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200612T213918Z:cf4b5905-2961-402c-ae65-80f983d3ec79"
+ "NORTHCENTRALUS:20200624T211958Z:be4385a1-f97b-4fd6-b379-363adede51b6"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -633,7 +633,7 @@
"nosniff"
],
"Date": [
- "Fri, 12 Jun 2020 21:39:17 GMT"
+ "Wed, 24 Jun 2020 21:19:58 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -652,13 +652,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2509/deployments/ps296/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjUwOS9kZXBsb3ltZW50cy9wczI5Ni9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4672/deployments/ps7490/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDY3Mi9kZXBsb3ltZW50cy9wczc0OTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "4b07e78e-876c-4c77-a047-3cbb2212af17"
+ "a0b06f9b-17c4-4e33-80fd-9e3da12431ba"
],
"Accept-Language": [
"en-US"
@@ -681,13 +681,13 @@
"11988"
],
"x-ms-request-id": [
- "fda907b6-0d1b-44e4-b1bd-581dd2216090"
+ "65ff51dc-1e61-41cf-99d5-e5b99c2d4b66"
],
"x-ms-correlation-request-id": [
- "fda907b6-0d1b-44e4-b1bd-581dd2216090"
+ "65ff51dc-1e61-41cf-99d5-e5b99c2d4b66"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200612T213918Z:fda907b6-0d1b-44e4-b1bd-581dd2216090"
+ "NORTHCENTRALUS:20200624T211958Z:65ff51dc-1e61-41cf-99d5-e5b99c2d4b66"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -696,7 +696,7 @@
"nosniff"
],
"Date": [
- "Fri, 12 Jun 2020 21:39:18 GMT"
+ "Wed, 24 Jun 2020 21:19:58 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -715,13 +715,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2509/deployments/ps296/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjUwOS9kZXBsb3ltZW50cy9wczI5Ni9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4672/deployments/ps7490/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDY3Mi9kZXBsb3ltZW50cy9wczc0OTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "ee89e80f-7476-4b85-a234-3af7b4ada214"
+ "0c6b3afb-b8e9-4c75-a86c-c6e5ce617025"
],
"Accept-Language": [
"en-US"
@@ -744,13 +744,13 @@
"11986"
],
"x-ms-request-id": [
- "b7717da0-c380-4cb1-b25c-2ce9a404c3c7"
+ "e23d704b-1f98-43b3-99a5-306202fd9b30"
],
"x-ms-correlation-request-id": [
- "b7717da0-c380-4cb1-b25c-2ce9a404c3c7"
+ "e23d704b-1f98-43b3-99a5-306202fd9b30"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200612T213918Z:b7717da0-c380-4cb1-b25c-2ce9a404c3c7"
+ "NORTHCENTRALUS:20200624T211959Z:e23d704b-1f98-43b3-99a5-306202fd9b30"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -759,7 +759,7 @@
"nosniff"
],
"Date": [
- "Fri, 12 Jun 2020 21:39:18 GMT"
+ "Wed, 24 Jun 2020 21:19:58 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -778,13 +778,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2509/deployments/ps296/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjUwOS9kZXBsb3ltZW50cy9wczI5Ni9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4672/deployments/ps7490/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDY3Mi9kZXBsb3ltZW50cy9wczc0OTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "48fa4a6f-1c8e-4496-b878-cdbd83408800"
+ "12d1af15-dfca-4bc2-acc5-4863d33fe3be"
],
"Accept-Language": [
"en-US"
@@ -807,13 +807,13 @@
"11984"
],
"x-ms-request-id": [
- "d9fde0e9-41f7-4c4d-be43-08ba7e628f6c"
+ "a18ad4f0-b790-417d-9cf0-f2478d7b4027"
],
"x-ms-correlation-request-id": [
- "d9fde0e9-41f7-4c4d-be43-08ba7e628f6c"
+ "a18ad4f0-b790-417d-9cf0-f2478d7b4027"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200612T213919Z:d9fde0e9-41f7-4c4d-be43-08ba7e628f6c"
+ "NORTHCENTRALUS:20200624T211959Z:a18ad4f0-b790-417d-9cf0-f2478d7b4027"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -822,7 +822,7 @@
"nosniff"
],
"Date": [
- "Fri, 12 Jun 2020 21:39:18 GMT"
+ "Wed, 24 Jun 2020 21:19:59 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -841,13 +841,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2509/deployments/ps296/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjUwOS9kZXBsb3ltZW50cy9wczI5Ni9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4672/deployments/ps7490/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDY3Mi9kZXBsb3ltZW50cy9wczc0OTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "f2a62d2f-26a5-4a8f-b057-c9bce2277dcf"
+ "064ecf18-4723-45ed-80d2-8100954c3c9a"
],
"Accept-Language": [
"en-US"
@@ -870,13 +870,13 @@
"11982"
],
"x-ms-request-id": [
- "b7a3dd02-29c7-4cd9-85fa-0c63f7556493"
+ "922bd373-49ce-444b-a5ec-e9258f77c592"
],
"x-ms-correlation-request-id": [
- "b7a3dd02-29c7-4cd9-85fa-0c63f7556493"
+ "922bd373-49ce-444b-a5ec-e9258f77c592"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200612T213919Z:b7a3dd02-29c7-4cd9-85fa-0c63f7556493"
+ "NORTHCENTRALUS:20200624T212000Z:922bd373-49ce-444b-a5ec-e9258f77c592"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -885,7 +885,7 @@
"nosniff"
],
"Date": [
- "Fri, 12 Jun 2020 21:39:19 GMT"
+ "Wed, 24 Jun 2020 21:19:59 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -894,23 +894,23 @@
"-1"
],
"Content-Length": [
- "710"
+ "12"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2509/providers/Microsoft.Resources/deployments/ps296/operations/DBA470C2D7C0EDAC\",\r\n \"operationId\": \"DBA470C2D7C0EDAC\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-06-12T21:39:19.4287701Z\",\r\n \"duration\": \"PT2.9654116S\",\r\n \"trackingId\": \"d2d519e0-3aaa-4af3-9727-00518ba9e109\",\r\n \"serviceRequestId\": \"a64aecdb-986c-4e12-ba0c-e75d1cee6429\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2509/providers/Microsoft.Storage/storageAccounts/ps4924\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps4924\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": []\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2509/deployments/ps296/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjUwOS9kZXBsb3ltZW50cy9wczI5Ni9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4672/deployments/ps7490/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDY3Mi9kZXBsb3ltZW50cy9wczc0OTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "2e5dbb0b-171b-419b-8ea3-792551d0e0af"
+ "e13d600c-42ec-436c-9dce-4cbf09618272"
],
"Accept-Language": [
"en-US"
@@ -933,13 +933,13 @@
"11980"
],
"x-ms-request-id": [
- "171998da-92db-4399-9fc5-6015ff0a3b53"
+ "3e9c4249-d618-41c5-866b-c90c0ce5f3f7"
],
"x-ms-correlation-request-id": [
- "171998da-92db-4399-9fc5-6015ff0a3b53"
+ "3e9c4249-d618-41c5-866b-c90c0ce5f3f7"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200612T213920Z:171998da-92db-4399-9fc5-6015ff0a3b53"
+ "NORTHCENTRALUS:20200624T212000Z:3e9c4249-d618-41c5-866b-c90c0ce5f3f7"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -948,7 +948,7 @@
"nosniff"
],
"Date": [
- "Fri, 12 Jun 2020 21:39:19 GMT"
+ "Wed, 24 Jun 2020 21:20:00 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -957,23 +957,23 @@
"-1"
],
"Content-Length": [
- "710"
+ "12"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2509/providers/Microsoft.Resources/deployments/ps296/operations/DBA470C2D7C0EDAC\",\r\n \"operationId\": \"DBA470C2D7C0EDAC\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-06-12T21:39:19.4287701Z\",\r\n \"duration\": \"PT2.9654116S\",\r\n \"trackingId\": \"d2d519e0-3aaa-4af3-9727-00518ba9e109\",\r\n \"serviceRequestId\": \"a64aecdb-986c-4e12-ba0c-e75d1cee6429\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2509/providers/Microsoft.Storage/storageAccounts/ps4924\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps4924\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": []\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2509/deployments/ps296/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjUwOS9kZXBsb3ltZW50cy9wczI5Ni9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4672/deployments/ps7490/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDY3Mi9kZXBsb3ltZW50cy9wczc0OTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "efc0be7e-03a2-4f14-b7f9-4e5c1bbb77de"
+ "28fc34a5-21f2-4452-ac96-25f2259efe70"
],
"Accept-Language": [
"en-US"
@@ -996,13 +996,13 @@
"11978"
],
"x-ms-request-id": [
- "00b714c6-d852-42c7-9069-760ccb8a3bab"
+ "846c4a5d-4fb0-4c07-b6c8-1596c15166df"
],
"x-ms-correlation-request-id": [
- "00b714c6-d852-42c7-9069-760ccb8a3bab"
+ "846c4a5d-4fb0-4c07-b6c8-1596c15166df"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200612T213920Z:00b714c6-d852-42c7-9069-760ccb8a3bab"
+ "NORTHCENTRALUS:20200624T212001Z:846c4a5d-4fb0-4c07-b6c8-1596c15166df"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1011,7 +1011,7 @@
"nosniff"
],
"Date": [
- "Fri, 12 Jun 2020 21:39:20 GMT"
+ "Wed, 24 Jun 2020 21:20:00 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1020,23 +1020,23 @@
"-1"
],
"Content-Length": [
- "710"
+ "711"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2509/providers/Microsoft.Resources/deployments/ps296/operations/DBA470C2D7C0EDAC\",\r\n \"operationId\": \"DBA470C2D7C0EDAC\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-06-12T21:39:19.4287701Z\",\r\n \"duration\": \"PT2.9654116S\",\r\n \"trackingId\": \"d2d519e0-3aaa-4af3-9727-00518ba9e109\",\r\n \"serviceRequestId\": \"a64aecdb-986c-4e12-ba0c-e75d1cee6429\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2509/providers/Microsoft.Storage/storageAccounts/ps4924\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps4924\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4672/providers/Microsoft.Resources/deployments/ps7490/operations/03F80EF18983F6CE\",\r\n \"operationId\": \"03F80EF18983F6CE\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-06-24T21:20:00.9007309Z\",\r\n \"duration\": \"PT4.0100449S\",\r\n \"trackingId\": \"8cbe0a13-f0bf-4bc3-a8cc-3b37a5a3adcc\",\r\n \"serviceRequestId\": \"b9c7648f-788f-4af3-a8e6-d51964801504\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4672/providers/Microsoft.Storage/storageAccounts/ps6072\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps6072\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2509/deployments/ps296/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjUwOS9kZXBsb3ltZW50cy9wczI5Ni9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4672/deployments/ps7490/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDY3Mi9kZXBsb3ltZW50cy9wczc0OTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "08aea369-1a5f-4efe-85db-3976b7c30db0"
+ "ba5a640f-85cd-46af-8745-aa18dbbe048a"
],
"Accept-Language": [
"en-US"
@@ -1059,13 +1059,13 @@
"11976"
],
"x-ms-request-id": [
- "f398d5a3-1935-4043-8ae6-9afbd2dd1775"
+ "564990f7-bda2-495c-a3fc-915b348aa213"
],
"x-ms-correlation-request-id": [
- "f398d5a3-1935-4043-8ae6-9afbd2dd1775"
+ "564990f7-bda2-495c-a3fc-915b348aa213"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200612T213920Z:f398d5a3-1935-4043-8ae6-9afbd2dd1775"
+ "NORTHCENTRALUS:20200624T212001Z:564990f7-bda2-495c-a3fc-915b348aa213"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1074,7 +1074,7 @@
"nosniff"
],
"Date": [
- "Fri, 12 Jun 2020 21:39:20 GMT"
+ "Wed, 24 Jun 2020 21:20:01 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1083,23 +1083,23 @@
"-1"
],
"Content-Length": [
- "710"
+ "711"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2509/providers/Microsoft.Resources/deployments/ps296/operations/DBA470C2D7C0EDAC\",\r\n \"operationId\": \"DBA470C2D7C0EDAC\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-06-12T21:39:19.4287701Z\",\r\n \"duration\": \"PT2.9654116S\",\r\n \"trackingId\": \"d2d519e0-3aaa-4af3-9727-00518ba9e109\",\r\n \"serviceRequestId\": \"a64aecdb-986c-4e12-ba0c-e75d1cee6429\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2509/providers/Microsoft.Storage/storageAccounts/ps4924\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps4924\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4672/providers/Microsoft.Resources/deployments/ps7490/operations/03F80EF18983F6CE\",\r\n \"operationId\": \"03F80EF18983F6CE\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-06-24T21:20:00.9007309Z\",\r\n \"duration\": \"PT4.0100449S\",\r\n \"trackingId\": \"8cbe0a13-f0bf-4bc3-a8cc-3b37a5a3adcc\",\r\n \"serviceRequestId\": \"b9c7648f-788f-4af3-a8e6-d51964801504\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4672/providers/Microsoft.Storage/storageAccounts/ps6072\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps6072\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2509/deployments/ps296/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjUwOS9kZXBsb3ltZW50cy9wczI5Ni9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4672/deployments/ps7490/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDY3Mi9kZXBsb3ltZW50cy9wczc0OTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "ed65d18b-efef-4991-b4a4-dae3ea7a1944"
+ "7d190158-1df4-41a2-b0fa-bc11bcd92bf3"
],
"Accept-Language": [
"en-US"
@@ -1122,13 +1122,13 @@
"11974"
],
"x-ms-request-id": [
- "93af9c3a-1022-485c-89ac-529078a2f46f"
+ "25549ffe-7a57-4c3b-8c39-0690bce1916d"
],
"x-ms-correlation-request-id": [
- "93af9c3a-1022-485c-89ac-529078a2f46f"
+ "25549ffe-7a57-4c3b-8c39-0690bce1916d"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200612T213921Z:93af9c3a-1022-485c-89ac-529078a2f46f"
+ "NORTHCENTRALUS:20200624T212001Z:25549ffe-7a57-4c3b-8c39-0690bce1916d"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1137,7 +1137,7 @@
"nosniff"
],
"Date": [
- "Fri, 12 Jun 2020 21:39:20 GMT"
+ "Wed, 24 Jun 2020 21:20:01 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1146,23 +1146,23 @@
"-1"
],
"Content-Length": [
- "710"
+ "711"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2509/providers/Microsoft.Resources/deployments/ps296/operations/DBA470C2D7C0EDAC\",\r\n \"operationId\": \"DBA470C2D7C0EDAC\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-06-12T21:39:19.4287701Z\",\r\n \"duration\": \"PT2.9654116S\",\r\n \"trackingId\": \"d2d519e0-3aaa-4af3-9727-00518ba9e109\",\r\n \"serviceRequestId\": \"a64aecdb-986c-4e12-ba0c-e75d1cee6429\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2509/providers/Microsoft.Storage/storageAccounts/ps4924\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps4924\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4672/providers/Microsoft.Resources/deployments/ps7490/operations/03F80EF18983F6CE\",\r\n \"operationId\": \"03F80EF18983F6CE\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-06-24T21:20:00.9007309Z\",\r\n \"duration\": \"PT4.0100449S\",\r\n \"trackingId\": \"8cbe0a13-f0bf-4bc3-a8cc-3b37a5a3adcc\",\r\n \"serviceRequestId\": \"b9c7648f-788f-4af3-a8e6-d51964801504\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4672/providers/Microsoft.Storage/storageAccounts/ps6072\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps6072\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2509/deployments/ps296/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjUwOS9kZXBsb3ltZW50cy9wczI5Ni9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4672/deployments/ps7490/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDY3Mi9kZXBsb3ltZW50cy9wczc0OTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "10aff805-6079-47d1-9f80-c11c8aeb3483"
+ "1548a4b4-78c5-4d44-83d1-9df452fb1114"
],
"Accept-Language": [
"en-US"
@@ -1185,13 +1185,13 @@
"11972"
],
"x-ms-request-id": [
- "9ddf2a4b-24d4-456d-82f1-24607c9dee68"
+ "720c5482-4bb4-4456-8148-c3f52ef82105"
],
"x-ms-correlation-request-id": [
- "9ddf2a4b-24d4-456d-82f1-24607c9dee68"
+ "720c5482-4bb4-4456-8148-c3f52ef82105"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200612T213921Z:9ddf2a4b-24d4-456d-82f1-24607c9dee68"
+ "NORTHCENTRALUS:20200624T212002Z:720c5482-4bb4-4456-8148-c3f52ef82105"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1200,7 +1200,7 @@
"nosniff"
],
"Date": [
- "Fri, 12 Jun 2020 21:39:21 GMT"
+ "Wed, 24 Jun 2020 21:20:01 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1209,23 +1209,23 @@
"-1"
],
"Content-Length": [
- "710"
+ "711"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2509/providers/Microsoft.Resources/deployments/ps296/operations/DBA470C2D7C0EDAC\",\r\n \"operationId\": \"DBA470C2D7C0EDAC\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-06-12T21:39:19.4287701Z\",\r\n \"duration\": \"PT2.9654116S\",\r\n \"trackingId\": \"d2d519e0-3aaa-4af3-9727-00518ba9e109\",\r\n \"serviceRequestId\": \"a64aecdb-986c-4e12-ba0c-e75d1cee6429\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2509/providers/Microsoft.Storage/storageAccounts/ps4924\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps4924\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4672/providers/Microsoft.Resources/deployments/ps7490/operations/03F80EF18983F6CE\",\r\n \"operationId\": \"03F80EF18983F6CE\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-06-24T21:20:00.9007309Z\",\r\n \"duration\": \"PT4.0100449S\",\r\n \"trackingId\": \"8cbe0a13-f0bf-4bc3-a8cc-3b37a5a3adcc\",\r\n \"serviceRequestId\": \"b9c7648f-788f-4af3-a8e6-d51964801504\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4672/providers/Microsoft.Storage/storageAccounts/ps6072\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps6072\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2509/deployments/ps296/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjUwOS9kZXBsb3ltZW50cy9wczI5Ni9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4672/deployments/ps7490/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDY3Mi9kZXBsb3ltZW50cy9wczc0OTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "1f506bf3-1b8d-4546-8223-c2a526326228"
+ "de03b592-90ba-4bdf-8f73-6cc041d08605"
],
"Accept-Language": [
"en-US"
@@ -1248,13 +1248,13 @@
"11970"
],
"x-ms-request-id": [
- "9a38cabb-0870-4d60-9d13-d098890bc812"
+ "323bbae7-fb5f-4af7-831a-8605f4734f2e"
],
"x-ms-correlation-request-id": [
- "9a38cabb-0870-4d60-9d13-d098890bc812"
+ "323bbae7-fb5f-4af7-831a-8605f4734f2e"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200612T213922Z:9a38cabb-0870-4d60-9d13-d098890bc812"
+ "NORTHCENTRALUS:20200624T212002Z:323bbae7-fb5f-4af7-831a-8605f4734f2e"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1263,7 +1263,7 @@
"nosniff"
],
"Date": [
- "Fri, 12 Jun 2020 21:39:21 GMT"
+ "Wed, 24 Jun 2020 21:20:02 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1272,23 +1272,23 @@
"-1"
],
"Content-Length": [
- "710"
+ "711"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2509/providers/Microsoft.Resources/deployments/ps296/operations/DBA470C2D7C0EDAC\",\r\n \"operationId\": \"DBA470C2D7C0EDAC\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-06-12T21:39:19.4287701Z\",\r\n \"duration\": \"PT2.9654116S\",\r\n \"trackingId\": \"d2d519e0-3aaa-4af3-9727-00518ba9e109\",\r\n \"serviceRequestId\": \"a64aecdb-986c-4e12-ba0c-e75d1cee6429\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2509/providers/Microsoft.Storage/storageAccounts/ps4924\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps4924\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4672/providers/Microsoft.Resources/deployments/ps7490/operations/03F80EF18983F6CE\",\r\n \"operationId\": \"03F80EF18983F6CE\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-06-24T21:20:00.9007309Z\",\r\n \"duration\": \"PT4.0100449S\",\r\n \"trackingId\": \"8cbe0a13-f0bf-4bc3-a8cc-3b37a5a3adcc\",\r\n \"serviceRequestId\": \"b9c7648f-788f-4af3-a8e6-d51964801504\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4672/providers/Microsoft.Storage/storageAccounts/ps6072\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps6072\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2509/deployments/ps296/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjUwOS9kZXBsb3ltZW50cy9wczI5Ni9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4672/deployments/ps7490/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDY3Mi9kZXBsb3ltZW50cy9wczc0OTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "0fc3380b-e32f-4e47-8524-9d1db44e8e43"
+ "7efa45be-affc-4407-9e10-7a9945762946"
],
"Accept-Language": [
"en-US"
@@ -1311,13 +1311,13 @@
"11968"
],
"x-ms-request-id": [
- "1baba80e-be7c-43c0-af72-e59038c152f3"
+ "a45ef42b-4256-490f-893d-136a7c6bbeef"
],
"x-ms-correlation-request-id": [
- "1baba80e-be7c-43c0-af72-e59038c152f3"
+ "a45ef42b-4256-490f-893d-136a7c6bbeef"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200612T213922Z:1baba80e-be7c-43c0-af72-e59038c152f3"
+ "NORTHCENTRALUS:20200624T212003Z:a45ef42b-4256-490f-893d-136a7c6bbeef"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1326,7 +1326,7 @@
"nosniff"
],
"Date": [
- "Fri, 12 Jun 2020 21:39:22 GMT"
+ "Wed, 24 Jun 2020 21:20:02 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1335,23 +1335,23 @@
"-1"
],
"Content-Length": [
- "710"
+ "711"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2509/providers/Microsoft.Resources/deployments/ps296/operations/DBA470C2D7C0EDAC\",\r\n \"operationId\": \"DBA470C2D7C0EDAC\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-06-12T21:39:19.4287701Z\",\r\n \"duration\": \"PT2.9654116S\",\r\n \"trackingId\": \"d2d519e0-3aaa-4af3-9727-00518ba9e109\",\r\n \"serviceRequestId\": \"a64aecdb-986c-4e12-ba0c-e75d1cee6429\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2509/providers/Microsoft.Storage/storageAccounts/ps4924\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps4924\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4672/providers/Microsoft.Resources/deployments/ps7490/operations/03F80EF18983F6CE\",\r\n \"operationId\": \"03F80EF18983F6CE\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-06-24T21:20:00.9007309Z\",\r\n \"duration\": \"PT4.0100449S\",\r\n \"trackingId\": \"8cbe0a13-f0bf-4bc3-a8cc-3b37a5a3adcc\",\r\n \"serviceRequestId\": \"b9c7648f-788f-4af3-a8e6-d51964801504\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4672/providers/Microsoft.Storage/storageAccounts/ps6072\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps6072\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2509/deployments/ps296/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjUwOS9kZXBsb3ltZW50cy9wczI5Ni9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4672/deployments/ps7490/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDY3Mi9kZXBsb3ltZW50cy9wczc0OTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "55d79167-1d12-43fa-92b0-85e1db2169b5"
+ "3f7c7e57-c2b3-4ebf-82e6-7fbb8b02ffea"
],
"Accept-Language": [
"en-US"
@@ -1374,13 +1374,13 @@
"11966"
],
"x-ms-request-id": [
- "8d9db10e-b2c3-473d-a64e-a8ee736d181e"
+ "b89d2329-82c7-4f4d-86a0-75945b25b8d6"
],
"x-ms-correlation-request-id": [
- "8d9db10e-b2c3-473d-a64e-a8ee736d181e"
+ "b89d2329-82c7-4f4d-86a0-75945b25b8d6"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200612T213922Z:8d9db10e-b2c3-473d-a64e-a8ee736d181e"
+ "NORTHCENTRALUS:20200624T212003Z:b89d2329-82c7-4f4d-86a0-75945b25b8d6"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1389,7 +1389,7 @@
"nosniff"
],
"Date": [
- "Fri, 12 Jun 2020 21:39:22 GMT"
+ "Wed, 24 Jun 2020 21:20:03 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1398,23 +1398,23 @@
"-1"
],
"Content-Length": [
- "710"
+ "711"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2509/providers/Microsoft.Resources/deployments/ps296/operations/DBA470C2D7C0EDAC\",\r\n \"operationId\": \"DBA470C2D7C0EDAC\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-06-12T21:39:19.4287701Z\",\r\n \"duration\": \"PT2.9654116S\",\r\n \"trackingId\": \"d2d519e0-3aaa-4af3-9727-00518ba9e109\",\r\n \"serviceRequestId\": \"a64aecdb-986c-4e12-ba0c-e75d1cee6429\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2509/providers/Microsoft.Storage/storageAccounts/ps4924\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps4924\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4672/providers/Microsoft.Resources/deployments/ps7490/operations/03F80EF18983F6CE\",\r\n \"operationId\": \"03F80EF18983F6CE\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-06-24T21:20:00.9007309Z\",\r\n \"duration\": \"PT4.0100449S\",\r\n \"trackingId\": \"8cbe0a13-f0bf-4bc3-a8cc-3b37a5a3adcc\",\r\n \"serviceRequestId\": \"b9c7648f-788f-4af3-a8e6-d51964801504\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4672/providers/Microsoft.Storage/storageAccounts/ps6072\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps6072\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2509/deployments/ps296/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjUwOS9kZXBsb3ltZW50cy9wczI5Ni9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4672/deployments/ps7490/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDY3Mi9kZXBsb3ltZW50cy9wczc0OTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "15194dc4-89d1-4daa-b538-5399840e4dc1"
+ "2d160468-eed0-4457-aff3-eb93d66d1aba"
],
"Accept-Language": [
"en-US"
@@ -1437,13 +1437,13 @@
"11964"
],
"x-ms-request-id": [
- "eaa09285-2cec-4093-afbf-98075b5c2eeb"
+ "6d7d83d6-e93a-48cb-8801-4e22bf1101a7"
],
"x-ms-correlation-request-id": [
- "eaa09285-2cec-4093-afbf-98075b5c2eeb"
+ "6d7d83d6-e93a-48cb-8801-4e22bf1101a7"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200612T213923Z:eaa09285-2cec-4093-afbf-98075b5c2eeb"
+ "NORTHCENTRALUS:20200624T212004Z:6d7d83d6-e93a-48cb-8801-4e22bf1101a7"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1452,7 +1452,7 @@
"nosniff"
],
"Date": [
- "Fri, 12 Jun 2020 21:39:22 GMT"
+ "Wed, 24 Jun 2020 21:20:03 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1461,23 +1461,23 @@
"-1"
],
"Content-Length": [
- "710"
+ "711"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2509/providers/Microsoft.Resources/deployments/ps296/operations/DBA470C2D7C0EDAC\",\r\n \"operationId\": \"DBA470C2D7C0EDAC\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-06-12T21:39:19.4287701Z\",\r\n \"duration\": \"PT2.9654116S\",\r\n \"trackingId\": \"d2d519e0-3aaa-4af3-9727-00518ba9e109\",\r\n \"serviceRequestId\": \"a64aecdb-986c-4e12-ba0c-e75d1cee6429\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2509/providers/Microsoft.Storage/storageAccounts/ps4924\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps4924\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4672/providers/Microsoft.Resources/deployments/ps7490/operations/03F80EF18983F6CE\",\r\n \"operationId\": \"03F80EF18983F6CE\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-06-24T21:20:00.9007309Z\",\r\n \"duration\": \"PT4.0100449S\",\r\n \"trackingId\": \"8cbe0a13-f0bf-4bc3-a8cc-3b37a5a3adcc\",\r\n \"serviceRequestId\": \"b9c7648f-788f-4af3-a8e6-d51964801504\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4672/providers/Microsoft.Storage/storageAccounts/ps6072\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps6072\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2509/deployments/ps296/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjUwOS9kZXBsb3ltZW50cy9wczI5Ni9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4672/deployments/ps7490/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDY3Mi9kZXBsb3ltZW50cy9wczc0OTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "0eb815c4-19af-4c6a-adaa-b322ff4f2ec8"
+ "ebccb59b-3d89-409d-a5f2-3634848561a0"
],
"Accept-Language": [
"en-US"
@@ -1500,13 +1500,13 @@
"11962"
],
"x-ms-request-id": [
- "a24d5e8b-157c-4cb2-8e7f-f941e3a8d8b4"
+ "4e214b0e-0c3b-47fd-80a4-1081cff501d7"
],
"x-ms-correlation-request-id": [
- "a24d5e8b-157c-4cb2-8e7f-f941e3a8d8b4"
+ "4e214b0e-0c3b-47fd-80a4-1081cff501d7"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200612T213923Z:a24d5e8b-157c-4cb2-8e7f-f941e3a8d8b4"
+ "NORTHCENTRALUS:20200624T212004Z:4e214b0e-0c3b-47fd-80a4-1081cff501d7"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1515,7 +1515,7 @@
"nosniff"
],
"Date": [
- "Fri, 12 Jun 2020 21:39:23 GMT"
+ "Wed, 24 Jun 2020 21:20:04 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1524,23 +1524,23 @@
"-1"
],
"Content-Length": [
- "710"
+ "711"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2509/providers/Microsoft.Resources/deployments/ps296/operations/DBA470C2D7C0EDAC\",\r\n \"operationId\": \"DBA470C2D7C0EDAC\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-06-12T21:39:19.4287701Z\",\r\n \"duration\": \"PT2.9654116S\",\r\n \"trackingId\": \"d2d519e0-3aaa-4af3-9727-00518ba9e109\",\r\n \"serviceRequestId\": \"a64aecdb-986c-4e12-ba0c-e75d1cee6429\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2509/providers/Microsoft.Storage/storageAccounts/ps4924\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps4924\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4672/providers/Microsoft.Resources/deployments/ps7490/operations/03F80EF18983F6CE\",\r\n \"operationId\": \"03F80EF18983F6CE\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-06-24T21:20:00.9007309Z\",\r\n \"duration\": \"PT4.0100449S\",\r\n \"trackingId\": \"8cbe0a13-f0bf-4bc3-a8cc-3b37a5a3adcc\",\r\n \"serviceRequestId\": \"b9c7648f-788f-4af3-a8e6-d51964801504\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4672/providers/Microsoft.Storage/storageAccounts/ps6072\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps6072\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2509/deployments/ps296/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjUwOS9kZXBsb3ltZW50cy9wczI5Ni9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4672/deployments/ps7490/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDY3Mi9kZXBsb3ltZW50cy9wczc0OTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "e1192b0c-39ab-4a64-8bf1-c636f2df4522"
+ "d3a6d115-d9a2-4182-aff3-51048febbd00"
],
"Accept-Language": [
"en-US"
@@ -1563,13 +1563,13 @@
"11960"
],
"x-ms-request-id": [
- "ed993dd0-a971-454c-be7d-9ad4c351aad6"
+ "e394dea0-d78e-45c5-8650-27c22622fc6f"
],
"x-ms-correlation-request-id": [
- "ed993dd0-a971-454c-be7d-9ad4c351aad6"
+ "e394dea0-d78e-45c5-8650-27c22622fc6f"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200612T213924Z:ed993dd0-a971-454c-be7d-9ad4c351aad6"
+ "NORTHCENTRALUS:20200624T212004Z:e394dea0-d78e-45c5-8650-27c22622fc6f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1578,7 +1578,7 @@
"nosniff"
],
"Date": [
- "Fri, 12 Jun 2020 21:39:23 GMT"
+ "Wed, 24 Jun 2020 21:20:04 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1587,23 +1587,23 @@
"-1"
],
"Content-Length": [
- "710"
+ "711"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2509/providers/Microsoft.Resources/deployments/ps296/operations/DBA470C2D7C0EDAC\",\r\n \"operationId\": \"DBA470C2D7C0EDAC\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-06-12T21:39:19.4287701Z\",\r\n \"duration\": \"PT2.9654116S\",\r\n \"trackingId\": \"d2d519e0-3aaa-4af3-9727-00518ba9e109\",\r\n \"serviceRequestId\": \"a64aecdb-986c-4e12-ba0c-e75d1cee6429\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2509/providers/Microsoft.Storage/storageAccounts/ps4924\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps4924\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4672/providers/Microsoft.Resources/deployments/ps7490/operations/03F80EF18983F6CE\",\r\n \"operationId\": \"03F80EF18983F6CE\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-06-24T21:20:00.9007309Z\",\r\n \"duration\": \"PT4.0100449S\",\r\n \"trackingId\": \"8cbe0a13-f0bf-4bc3-a8cc-3b37a5a3adcc\",\r\n \"serviceRequestId\": \"b9c7648f-788f-4af3-a8e6-d51964801504\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4672/providers/Microsoft.Storage/storageAccounts/ps6072\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps6072\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2509/deployments/ps296/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjUwOS9kZXBsb3ltZW50cy9wczI5Ni9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4672/deployments/ps7490/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDY3Mi9kZXBsb3ltZW50cy9wczc0OTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "31cdc1ee-4340-4efe-afe9-5fabcd48cf3a"
+ "69ab9864-1d17-4c1e-ac9e-b8c108bf2212"
],
"Accept-Language": [
"en-US"
@@ -1626,13 +1626,13 @@
"11958"
],
"x-ms-request-id": [
- "ded3a6e3-6b57-4dd8-9b47-6e442260bd89"
+ "99dc7d43-8800-4cdf-a5cf-aae177ed4497"
],
"x-ms-correlation-request-id": [
- "ded3a6e3-6b57-4dd8-9b47-6e442260bd89"
+ "99dc7d43-8800-4cdf-a5cf-aae177ed4497"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200612T213924Z:ded3a6e3-6b57-4dd8-9b47-6e442260bd89"
+ "NORTHCENTRALUS:20200624T212005Z:99dc7d43-8800-4cdf-a5cf-aae177ed4497"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1641,7 +1641,7 @@
"nosniff"
],
"Date": [
- "Fri, 12 Jun 2020 21:39:24 GMT"
+ "Wed, 24 Jun 2020 21:20:04 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1650,23 +1650,23 @@
"-1"
],
"Content-Length": [
- "710"
+ "711"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2509/providers/Microsoft.Resources/deployments/ps296/operations/DBA470C2D7C0EDAC\",\r\n \"operationId\": \"DBA470C2D7C0EDAC\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-06-12T21:39:19.4287701Z\",\r\n \"duration\": \"PT2.9654116S\",\r\n \"trackingId\": \"d2d519e0-3aaa-4af3-9727-00518ba9e109\",\r\n \"serviceRequestId\": \"a64aecdb-986c-4e12-ba0c-e75d1cee6429\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2509/providers/Microsoft.Storage/storageAccounts/ps4924\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps4924\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4672/providers/Microsoft.Resources/deployments/ps7490/operations/03F80EF18983F6CE\",\r\n \"operationId\": \"03F80EF18983F6CE\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-06-24T21:20:00.9007309Z\",\r\n \"duration\": \"PT4.0100449S\",\r\n \"trackingId\": \"8cbe0a13-f0bf-4bc3-a8cc-3b37a5a3adcc\",\r\n \"serviceRequestId\": \"b9c7648f-788f-4af3-a8e6-d51964801504\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4672/providers/Microsoft.Storage/storageAccounts/ps6072\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps6072\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2509/deployments/ps296/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjUwOS9kZXBsb3ltZW50cy9wczI5Ni9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4672/deployments/ps7490/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDY3Mi9kZXBsb3ltZW50cy9wczc0OTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "cbc7dfcf-27f9-4901-99f7-1200263b2c80"
+ "069a1c51-191f-4f97-b6ab-c3e0d4b17786"
],
"Accept-Language": [
"en-US"
@@ -1689,13 +1689,13 @@
"11956"
],
"x-ms-request-id": [
- "c2c81b5e-ee45-4493-a228-76ca49b25d39"
+ "8d0edc41-0180-43c7-b3f5-39db293fac3c"
],
"x-ms-correlation-request-id": [
- "c2c81b5e-ee45-4493-a228-76ca49b25d39"
+ "8d0edc41-0180-43c7-b3f5-39db293fac3c"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200612T213925Z:c2c81b5e-ee45-4493-a228-76ca49b25d39"
+ "NORTHCENTRALUS:20200624T212005Z:8d0edc41-0180-43c7-b3f5-39db293fac3c"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1704,7 +1704,7 @@
"nosniff"
],
"Date": [
- "Fri, 12 Jun 2020 21:39:24 GMT"
+ "Wed, 24 Jun 2020 21:20:05 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1713,23 +1713,23 @@
"-1"
],
"Content-Length": [
- "710"
+ "711"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2509/providers/Microsoft.Resources/deployments/ps296/operations/DBA470C2D7C0EDAC\",\r\n \"operationId\": \"DBA470C2D7C0EDAC\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-06-12T21:39:19.4287701Z\",\r\n \"duration\": \"PT2.9654116S\",\r\n \"trackingId\": \"d2d519e0-3aaa-4af3-9727-00518ba9e109\",\r\n \"serviceRequestId\": \"a64aecdb-986c-4e12-ba0c-e75d1cee6429\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2509/providers/Microsoft.Storage/storageAccounts/ps4924\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps4924\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4672/providers/Microsoft.Resources/deployments/ps7490/operations/03F80EF18983F6CE\",\r\n \"operationId\": \"03F80EF18983F6CE\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-06-24T21:20:00.9007309Z\",\r\n \"duration\": \"PT4.0100449S\",\r\n \"trackingId\": \"8cbe0a13-f0bf-4bc3-a8cc-3b37a5a3adcc\",\r\n \"serviceRequestId\": \"b9c7648f-788f-4af3-a8e6-d51964801504\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4672/providers/Microsoft.Storage/storageAccounts/ps6072\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps6072\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2509/deployments/ps296/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjUwOS9kZXBsb3ltZW50cy9wczI5Ni9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4672/deployments/ps7490/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDY3Mi9kZXBsb3ltZW50cy9wczc0OTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "466d5683-3ea4-4c90-a0dd-581a45b955bf"
+ "27dc9b45-33db-4e12-976d-7d70115bd985"
],
"Accept-Language": [
"en-US"
@@ -1752,13 +1752,13 @@
"11954"
],
"x-ms-request-id": [
- "4280117b-c3e9-4f6f-b8e1-f90e2b768dea"
+ "7abfe7bb-dc4d-45ca-9b0f-05d0964059ad"
],
"x-ms-correlation-request-id": [
- "4280117b-c3e9-4f6f-b8e1-f90e2b768dea"
+ "7abfe7bb-dc4d-45ca-9b0f-05d0964059ad"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200612T213925Z:4280117b-c3e9-4f6f-b8e1-f90e2b768dea"
+ "NORTHCENTRALUS:20200624T212006Z:7abfe7bb-dc4d-45ca-9b0f-05d0964059ad"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1767,7 +1767,7 @@
"nosniff"
],
"Date": [
- "Fri, 12 Jun 2020 21:39:24 GMT"
+ "Wed, 24 Jun 2020 21:20:05 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1776,23 +1776,23 @@
"-1"
],
"Content-Length": [
- "710"
+ "711"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2509/providers/Microsoft.Resources/deployments/ps296/operations/DBA470C2D7C0EDAC\",\r\n \"operationId\": \"DBA470C2D7C0EDAC\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-06-12T21:39:19.4287701Z\",\r\n \"duration\": \"PT2.9654116S\",\r\n \"trackingId\": \"d2d519e0-3aaa-4af3-9727-00518ba9e109\",\r\n \"serviceRequestId\": \"a64aecdb-986c-4e12-ba0c-e75d1cee6429\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2509/providers/Microsoft.Storage/storageAccounts/ps4924\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps4924\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4672/providers/Microsoft.Resources/deployments/ps7490/operations/03F80EF18983F6CE\",\r\n \"operationId\": \"03F80EF18983F6CE\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-06-24T21:20:00.9007309Z\",\r\n \"duration\": \"PT4.0100449S\",\r\n \"trackingId\": \"8cbe0a13-f0bf-4bc3-a8cc-3b37a5a3adcc\",\r\n \"serviceRequestId\": \"b9c7648f-788f-4af3-a8e6-d51964801504\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4672/providers/Microsoft.Storage/storageAccounts/ps6072\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps6072\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2509/deployments/ps296/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjUwOS9kZXBsb3ltZW50cy9wczI5Ni9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4672/deployments/ps7490/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDY3Mi9kZXBsb3ltZW50cy9wczc0OTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "1dc69eb3-5596-4fd2-ae06-61490fce73a1"
+ "93989cc5-dfdf-4d95-9986-b4db4f33ee7b"
],
"Accept-Language": [
"en-US"
@@ -1815,13 +1815,13 @@
"11952"
],
"x-ms-request-id": [
- "a5b478ed-08d1-480d-8278-c37408935fb0"
+ "b0f48065-295a-439f-9265-7747458d583b"
],
"x-ms-correlation-request-id": [
- "a5b478ed-08d1-480d-8278-c37408935fb0"
+ "b0f48065-295a-439f-9265-7747458d583b"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200612T213925Z:a5b478ed-08d1-480d-8278-c37408935fb0"
+ "NORTHCENTRALUS:20200624T212006Z:b0f48065-295a-439f-9265-7747458d583b"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1830,7 +1830,7 @@
"nosniff"
],
"Date": [
- "Fri, 12 Jun 2020 21:39:25 GMT"
+ "Wed, 24 Jun 2020 21:20:06 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1839,23 +1839,23 @@
"-1"
],
"Content-Length": [
- "710"
+ "711"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2509/providers/Microsoft.Resources/deployments/ps296/operations/DBA470C2D7C0EDAC\",\r\n \"operationId\": \"DBA470C2D7C0EDAC\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-06-12T21:39:19.4287701Z\",\r\n \"duration\": \"PT2.9654116S\",\r\n \"trackingId\": \"d2d519e0-3aaa-4af3-9727-00518ba9e109\",\r\n \"serviceRequestId\": \"a64aecdb-986c-4e12-ba0c-e75d1cee6429\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2509/providers/Microsoft.Storage/storageAccounts/ps4924\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps4924\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4672/providers/Microsoft.Resources/deployments/ps7490/operations/03F80EF18983F6CE\",\r\n \"operationId\": \"03F80EF18983F6CE\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-06-24T21:20:00.9007309Z\",\r\n \"duration\": \"PT4.0100449S\",\r\n \"trackingId\": \"8cbe0a13-f0bf-4bc3-a8cc-3b37a5a3adcc\",\r\n \"serviceRequestId\": \"b9c7648f-788f-4af3-a8e6-d51964801504\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4672/providers/Microsoft.Storage/storageAccounts/ps6072\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps6072\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2509/deployments/ps296/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjUwOS9kZXBsb3ltZW50cy9wczI5Ni9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4672/deployments/ps7490/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDY3Mi9kZXBsb3ltZW50cy9wczc0OTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "4b968daf-d197-4c6a-8a49-c461cdae621d"
+ "bb6068af-d4d8-4d42-a952-1e1d3aa297e8"
],
"Accept-Language": [
"en-US"
@@ -1878,13 +1878,13 @@
"11950"
],
"x-ms-request-id": [
- "f880f0ea-540e-43d1-97a0-39b29813e256"
+ "db422a21-d863-436f-8279-40de539e746f"
],
"x-ms-correlation-request-id": [
- "f880f0ea-540e-43d1-97a0-39b29813e256"
+ "db422a21-d863-436f-8279-40de539e746f"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200612T213926Z:f880f0ea-540e-43d1-97a0-39b29813e256"
+ "NORTHCENTRALUS:20200624T212006Z:db422a21-d863-436f-8279-40de539e746f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1893,7 +1893,7 @@
"nosniff"
],
"Date": [
- "Fri, 12 Jun 2020 21:39:25 GMT"
+ "Wed, 24 Jun 2020 21:20:06 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1902,23 +1902,23 @@
"-1"
],
"Content-Length": [
- "710"
+ "711"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2509/providers/Microsoft.Resources/deployments/ps296/operations/DBA470C2D7C0EDAC\",\r\n \"operationId\": \"DBA470C2D7C0EDAC\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-06-12T21:39:19.4287701Z\",\r\n \"duration\": \"PT2.9654116S\",\r\n \"trackingId\": \"d2d519e0-3aaa-4af3-9727-00518ba9e109\",\r\n \"serviceRequestId\": \"a64aecdb-986c-4e12-ba0c-e75d1cee6429\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2509/providers/Microsoft.Storage/storageAccounts/ps4924\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps4924\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4672/providers/Microsoft.Resources/deployments/ps7490/operations/03F80EF18983F6CE\",\r\n \"operationId\": \"03F80EF18983F6CE\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-06-24T21:20:00.9007309Z\",\r\n \"duration\": \"PT4.0100449S\",\r\n \"trackingId\": \"8cbe0a13-f0bf-4bc3-a8cc-3b37a5a3adcc\",\r\n \"serviceRequestId\": \"b9c7648f-788f-4af3-a8e6-d51964801504\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4672/providers/Microsoft.Storage/storageAccounts/ps6072\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps6072\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2509/deployments/ps296/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjUwOS9kZXBsb3ltZW50cy9wczI5Ni9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4672/deployments/ps7490/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDY3Mi9kZXBsb3ltZW50cy9wczc0OTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "dee50651-5d57-49e9-bbd6-59b0cd64f660"
+ "08f93e4b-6e6b-4a92-a358-37fb799d3d4c"
],
"Accept-Language": [
"en-US"
@@ -1941,13 +1941,13 @@
"11948"
],
"x-ms-request-id": [
- "2594ce58-7e1a-489e-8257-aefa20921afb"
+ "ab8a8042-e9e4-43b0-b69b-2f3b9bc6da65"
],
"x-ms-correlation-request-id": [
- "2594ce58-7e1a-489e-8257-aefa20921afb"
+ "ab8a8042-e9e4-43b0-b69b-2f3b9bc6da65"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200612T213926Z:2594ce58-7e1a-489e-8257-aefa20921afb"
+ "NORTHCENTRALUS:20200624T212007Z:ab8a8042-e9e4-43b0-b69b-2f3b9bc6da65"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1956,7 +1956,7 @@
"nosniff"
],
"Date": [
- "Fri, 12 Jun 2020 21:39:26 GMT"
+ "Wed, 24 Jun 2020 21:20:06 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1965,23 +1965,23 @@
"-1"
],
"Content-Length": [
- "710"
+ "711"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2509/providers/Microsoft.Resources/deployments/ps296/operations/DBA470C2D7C0EDAC\",\r\n \"operationId\": \"DBA470C2D7C0EDAC\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-06-12T21:39:19.4287701Z\",\r\n \"duration\": \"PT2.9654116S\",\r\n \"trackingId\": \"d2d519e0-3aaa-4af3-9727-00518ba9e109\",\r\n \"serviceRequestId\": \"a64aecdb-986c-4e12-ba0c-e75d1cee6429\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2509/providers/Microsoft.Storage/storageAccounts/ps4924\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps4924\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4672/providers/Microsoft.Resources/deployments/ps7490/operations/03F80EF18983F6CE\",\r\n \"operationId\": \"03F80EF18983F6CE\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-06-24T21:20:00.9007309Z\",\r\n \"duration\": \"PT4.0100449S\",\r\n \"trackingId\": \"8cbe0a13-f0bf-4bc3-a8cc-3b37a5a3adcc\",\r\n \"serviceRequestId\": \"b9c7648f-788f-4af3-a8e6-d51964801504\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4672/providers/Microsoft.Storage/storageAccounts/ps6072\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps6072\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2509/deployments/ps296/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjUwOS9kZXBsb3ltZW50cy9wczI5Ni9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4672/deployments/ps7490/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDY3Mi9kZXBsb3ltZW50cy9wczc0OTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "ef7c21fb-7eac-406b-a666-f982ef299a24"
+ "29b67a68-b79e-4083-8740-10d9f1226806"
],
"Accept-Language": [
"en-US"
@@ -2004,13 +2004,13 @@
"11946"
],
"x-ms-request-id": [
- "b9798b9a-c70b-4e14-bbc0-9855a5b4b0c2"
+ "d2e319fb-1863-4d6a-a0fc-4ea7f42fa5fa"
],
"x-ms-correlation-request-id": [
- "b9798b9a-c70b-4e14-bbc0-9855a5b4b0c2"
+ "d2e319fb-1863-4d6a-a0fc-4ea7f42fa5fa"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200612T213927Z:b9798b9a-c70b-4e14-bbc0-9855a5b4b0c2"
+ "NORTHCENTRALUS:20200624T212007Z:d2e319fb-1863-4d6a-a0fc-4ea7f42fa5fa"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2019,7 +2019,7 @@
"nosniff"
],
"Date": [
- "Fri, 12 Jun 2020 21:39:26 GMT"
+ "Wed, 24 Jun 2020 21:20:07 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -2028,23 +2028,23 @@
"-1"
],
"Content-Length": [
- "710"
+ "711"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2509/providers/Microsoft.Resources/deployments/ps296/operations/DBA470C2D7C0EDAC\",\r\n \"operationId\": \"DBA470C2D7C0EDAC\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-06-12T21:39:19.4287701Z\",\r\n \"duration\": \"PT2.9654116S\",\r\n \"trackingId\": \"d2d519e0-3aaa-4af3-9727-00518ba9e109\",\r\n \"serviceRequestId\": \"a64aecdb-986c-4e12-ba0c-e75d1cee6429\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2509/providers/Microsoft.Storage/storageAccounts/ps4924\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps4924\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4672/providers/Microsoft.Resources/deployments/ps7490/operations/03F80EF18983F6CE\",\r\n \"operationId\": \"03F80EF18983F6CE\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-06-24T21:20:00.9007309Z\",\r\n \"duration\": \"PT4.0100449S\",\r\n \"trackingId\": \"8cbe0a13-f0bf-4bc3-a8cc-3b37a5a3adcc\",\r\n \"serviceRequestId\": \"b9c7648f-788f-4af3-a8e6-d51964801504\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4672/providers/Microsoft.Storage/storageAccounts/ps6072\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps6072\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2509/deployments/ps296/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjUwOS9kZXBsb3ltZW50cy9wczI5Ni9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4672/deployments/ps7490/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDY3Mi9kZXBsb3ltZW50cy9wczc0OTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "006bb0ee-33c7-4c75-a796-f1503868a4fa"
+ "941abd4b-3226-4e01-9b60-7efb9fedc11b"
],
"Accept-Language": [
"en-US"
@@ -2067,13 +2067,13 @@
"11944"
],
"x-ms-request-id": [
- "7c4b3440-78c6-4aa5-bca1-3cefdc4f2712"
+ "f41cafc6-cfb7-4b7f-8045-2ea36599791d"
],
"x-ms-correlation-request-id": [
- "7c4b3440-78c6-4aa5-bca1-3cefdc4f2712"
+ "f41cafc6-cfb7-4b7f-8045-2ea36599791d"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200612T213927Z:7c4b3440-78c6-4aa5-bca1-3cefdc4f2712"
+ "NORTHCENTRALUS:20200624T212008Z:f41cafc6-cfb7-4b7f-8045-2ea36599791d"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2082,7 +2082,7 @@
"nosniff"
],
"Date": [
- "Fri, 12 Jun 2020 21:39:26 GMT"
+ "Wed, 24 Jun 2020 21:20:07 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -2091,23 +2091,23 @@
"-1"
],
"Content-Length": [
- "710"
+ "711"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2509/providers/Microsoft.Resources/deployments/ps296/operations/DBA470C2D7C0EDAC\",\r\n \"operationId\": \"DBA470C2D7C0EDAC\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-06-12T21:39:19.4287701Z\",\r\n \"duration\": \"PT2.9654116S\",\r\n \"trackingId\": \"d2d519e0-3aaa-4af3-9727-00518ba9e109\",\r\n \"serviceRequestId\": \"a64aecdb-986c-4e12-ba0c-e75d1cee6429\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2509/providers/Microsoft.Storage/storageAccounts/ps4924\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps4924\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4672/providers/Microsoft.Resources/deployments/ps7490/operations/03F80EF18983F6CE\",\r\n \"operationId\": \"03F80EF18983F6CE\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-06-24T21:20:00.9007309Z\",\r\n \"duration\": \"PT4.0100449S\",\r\n \"trackingId\": \"8cbe0a13-f0bf-4bc3-a8cc-3b37a5a3adcc\",\r\n \"serviceRequestId\": \"b9c7648f-788f-4af3-a8e6-d51964801504\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4672/providers/Microsoft.Storage/storageAccounts/ps6072\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps6072\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2509/deployments/ps296/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjUwOS9kZXBsb3ltZW50cy9wczI5Ni9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4672/deployments/ps7490/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDY3Mi9kZXBsb3ltZW50cy9wczc0OTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "4673fb46-aafe-440f-8004-f4f7c5ebabf4"
+ "6cb696a1-0a1f-4bbd-bc26-0c0715912e08"
],
"Accept-Language": [
"en-US"
@@ -2130,13 +2130,13 @@
"11942"
],
"x-ms-request-id": [
- "a943a2ab-1207-4e27-94db-735b2e1db0be"
+ "41a9cd06-fc09-4df1-8191-e7911b98e239"
],
"x-ms-correlation-request-id": [
- "a943a2ab-1207-4e27-94db-735b2e1db0be"
+ "41a9cd06-fc09-4df1-8191-e7911b98e239"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200612T213927Z:a943a2ab-1207-4e27-94db-735b2e1db0be"
+ "NORTHCENTRALUS:20200624T212008Z:41a9cd06-fc09-4df1-8191-e7911b98e239"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2145,7 +2145,7 @@
"nosniff"
],
"Date": [
- "Fri, 12 Jun 2020 21:39:27 GMT"
+ "Wed, 24 Jun 2020 21:20:08 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -2154,23 +2154,23 @@
"-1"
],
"Content-Length": [
- "710"
+ "711"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2509/providers/Microsoft.Resources/deployments/ps296/operations/DBA470C2D7C0EDAC\",\r\n \"operationId\": \"DBA470C2D7C0EDAC\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-06-12T21:39:19.4287701Z\",\r\n \"duration\": \"PT2.9654116S\",\r\n \"trackingId\": \"d2d519e0-3aaa-4af3-9727-00518ba9e109\",\r\n \"serviceRequestId\": \"a64aecdb-986c-4e12-ba0c-e75d1cee6429\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2509/providers/Microsoft.Storage/storageAccounts/ps4924\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps4924\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4672/providers/Microsoft.Resources/deployments/ps7490/operations/03F80EF18983F6CE\",\r\n \"operationId\": \"03F80EF18983F6CE\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-06-24T21:20:00.9007309Z\",\r\n \"duration\": \"PT4.0100449S\",\r\n \"trackingId\": \"8cbe0a13-f0bf-4bc3-a8cc-3b37a5a3adcc\",\r\n \"serviceRequestId\": \"b9c7648f-788f-4af3-a8e6-d51964801504\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4672/providers/Microsoft.Storage/storageAccounts/ps6072\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps6072\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2509/deployments/ps296/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjUwOS9kZXBsb3ltZW50cy9wczI5Ni9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4672/deployments/ps7490/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDY3Mi9kZXBsb3ltZW50cy9wczc0OTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "1f7cb457-8cc9-4084-ba93-e915220a35db"
+ "5b6c44cd-2522-42bd-a0b0-b018755a0a41"
],
"Accept-Language": [
"en-US"
@@ -2193,13 +2193,13 @@
"11940"
],
"x-ms-request-id": [
- "a674443a-4929-4106-9bc6-ff66fda498c3"
+ "2c072a0c-ea10-4b3a-8027-5258d1d4feb8"
],
"x-ms-correlation-request-id": [
- "a674443a-4929-4106-9bc6-ff66fda498c3"
+ "2c072a0c-ea10-4b3a-8027-5258d1d4feb8"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200612T213928Z:a674443a-4929-4106-9bc6-ff66fda498c3"
+ "NORTHCENTRALUS:20200624T212009Z:2c072a0c-ea10-4b3a-8027-5258d1d4feb8"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2208,7 +2208,7 @@
"nosniff"
],
"Date": [
- "Fri, 12 Jun 2020 21:39:27 GMT"
+ "Wed, 24 Jun 2020 21:20:08 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -2217,23 +2217,23 @@
"-1"
],
"Content-Length": [
- "710"
+ "711"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2509/providers/Microsoft.Resources/deployments/ps296/operations/DBA470C2D7C0EDAC\",\r\n \"operationId\": \"DBA470C2D7C0EDAC\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-06-12T21:39:19.4287701Z\",\r\n \"duration\": \"PT2.9654116S\",\r\n \"trackingId\": \"d2d519e0-3aaa-4af3-9727-00518ba9e109\",\r\n \"serviceRequestId\": \"a64aecdb-986c-4e12-ba0c-e75d1cee6429\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2509/providers/Microsoft.Storage/storageAccounts/ps4924\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps4924\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4672/providers/Microsoft.Resources/deployments/ps7490/operations/03F80EF18983F6CE\",\r\n \"operationId\": \"03F80EF18983F6CE\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-06-24T21:20:00.9007309Z\",\r\n \"duration\": \"PT4.0100449S\",\r\n \"trackingId\": \"8cbe0a13-f0bf-4bc3-a8cc-3b37a5a3adcc\",\r\n \"serviceRequestId\": \"b9c7648f-788f-4af3-a8e6-d51964801504\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4672/providers/Microsoft.Storage/storageAccounts/ps6072\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps6072\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2509/deployments/ps296/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjUwOS9kZXBsb3ltZW50cy9wczI5Ni9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4672/deployments/ps7490/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDY3Mi9kZXBsb3ltZW50cy9wczc0OTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "e2bd75c9-96a5-4dbf-bbc7-9672412682e1"
+ "3d65068d-8a4d-4794-a9ba-18ced59ece44"
],
"Accept-Language": [
"en-US"
@@ -2256,13 +2256,13 @@
"11938"
],
"x-ms-request-id": [
- "ac9d3dca-b01d-454e-9e32-a0616b28e679"
+ "03a780cb-bb94-4457-92df-1f05a8253863"
],
"x-ms-correlation-request-id": [
- "ac9d3dca-b01d-454e-9e32-a0616b28e679"
+ "03a780cb-bb94-4457-92df-1f05a8253863"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200612T213928Z:ac9d3dca-b01d-454e-9e32-a0616b28e679"
+ "NORTHCENTRALUS:20200624T212009Z:03a780cb-bb94-4457-92df-1f05a8253863"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2271,7 +2271,7 @@
"nosniff"
],
"Date": [
- "Fri, 12 Jun 2020 21:39:28 GMT"
+ "Wed, 24 Jun 2020 21:20:08 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -2280,23 +2280,23 @@
"-1"
],
"Content-Length": [
- "710"
+ "711"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2509/providers/Microsoft.Resources/deployments/ps296/operations/DBA470C2D7C0EDAC\",\r\n \"operationId\": \"DBA470C2D7C0EDAC\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-06-12T21:39:19.4287701Z\",\r\n \"duration\": \"PT2.9654116S\",\r\n \"trackingId\": \"d2d519e0-3aaa-4af3-9727-00518ba9e109\",\r\n \"serviceRequestId\": \"a64aecdb-986c-4e12-ba0c-e75d1cee6429\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2509/providers/Microsoft.Storage/storageAccounts/ps4924\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps4924\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4672/providers/Microsoft.Resources/deployments/ps7490/operations/03F80EF18983F6CE\",\r\n \"operationId\": \"03F80EF18983F6CE\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-06-24T21:20:00.9007309Z\",\r\n \"duration\": \"PT4.0100449S\",\r\n \"trackingId\": \"8cbe0a13-f0bf-4bc3-a8cc-3b37a5a3adcc\",\r\n \"serviceRequestId\": \"b9c7648f-788f-4af3-a8e6-d51964801504\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4672/providers/Microsoft.Storage/storageAccounts/ps6072\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps6072\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2509/deployments/ps296/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjUwOS9kZXBsb3ltZW50cy9wczI5Ni9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4672/deployments/ps7490/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDY3Mi9kZXBsb3ltZW50cy9wczc0OTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "f45581b0-3e65-49c6-a354-50162f7a69ad"
+ "628f3c96-4ead-41eb-b716-9d1fd1e579e5"
],
"Accept-Language": [
"en-US"
@@ -2319,13 +2319,13 @@
"11936"
],
"x-ms-request-id": [
- "c699afcb-8569-4d68-b370-3d2eda4605e0"
+ "0bb33a23-7edb-478e-b080-2fb068e571a3"
],
"x-ms-correlation-request-id": [
- "c699afcb-8569-4d68-b370-3d2eda4605e0"
+ "0bb33a23-7edb-478e-b080-2fb068e571a3"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200612T213929Z:c699afcb-8569-4d68-b370-3d2eda4605e0"
+ "NORTHCENTRALUS:20200624T212009Z:0bb33a23-7edb-478e-b080-2fb068e571a3"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2334,7 +2334,7 @@
"nosniff"
],
"Date": [
- "Fri, 12 Jun 2020 21:39:28 GMT"
+ "Wed, 24 Jun 2020 21:20:09 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -2343,23 +2343,23 @@
"-1"
],
"Content-Length": [
- "710"
+ "711"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2509/providers/Microsoft.Resources/deployments/ps296/operations/DBA470C2D7C0EDAC\",\r\n \"operationId\": \"DBA470C2D7C0EDAC\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-06-12T21:39:19.4287701Z\",\r\n \"duration\": \"PT2.9654116S\",\r\n \"trackingId\": \"d2d519e0-3aaa-4af3-9727-00518ba9e109\",\r\n \"serviceRequestId\": \"a64aecdb-986c-4e12-ba0c-e75d1cee6429\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2509/providers/Microsoft.Storage/storageAccounts/ps4924\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps4924\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4672/providers/Microsoft.Resources/deployments/ps7490/operations/03F80EF18983F6CE\",\r\n \"operationId\": \"03F80EF18983F6CE\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-06-24T21:20:00.9007309Z\",\r\n \"duration\": \"PT4.0100449S\",\r\n \"trackingId\": \"8cbe0a13-f0bf-4bc3-a8cc-3b37a5a3adcc\",\r\n \"serviceRequestId\": \"b9c7648f-788f-4af3-a8e6-d51964801504\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4672/providers/Microsoft.Storage/storageAccounts/ps6072\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps6072\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2509/deployments/ps296/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjUwOS9kZXBsb3ltZW50cy9wczI5Ni9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4672/deployments/ps7490/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDY3Mi9kZXBsb3ltZW50cy9wczc0OTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "372b82c6-84a3-4227-8430-9bdc3c7983d6"
+ "dfdb5a2b-6121-4c49-b85c-bcd077f865c0"
],
"Accept-Language": [
"en-US"
@@ -2382,13 +2382,13 @@
"11934"
],
"x-ms-request-id": [
- "174aa851-cb11-49ee-a6e5-ecc26fbd8ee8"
+ "1153c007-7339-4072-97bf-f8a2b37d95bd"
],
"x-ms-correlation-request-id": [
- "174aa851-cb11-49ee-a6e5-ecc26fbd8ee8"
+ "1153c007-7339-4072-97bf-f8a2b37d95bd"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200612T213929Z:174aa851-cb11-49ee-a6e5-ecc26fbd8ee8"
+ "NORTHCENTRALUS:20200624T212010Z:1153c007-7339-4072-97bf-f8a2b37d95bd"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2397,7 +2397,7 @@
"nosniff"
],
"Date": [
- "Fri, 12 Jun 2020 21:39:28 GMT"
+ "Wed, 24 Jun 2020 21:20:09 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -2406,23 +2406,23 @@
"-1"
],
"Content-Length": [
- "710"
+ "711"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2509/providers/Microsoft.Resources/deployments/ps296/operations/DBA470C2D7C0EDAC\",\r\n \"operationId\": \"DBA470C2D7C0EDAC\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-06-12T21:39:19.4287701Z\",\r\n \"duration\": \"PT2.9654116S\",\r\n \"trackingId\": \"d2d519e0-3aaa-4af3-9727-00518ba9e109\",\r\n \"serviceRequestId\": \"a64aecdb-986c-4e12-ba0c-e75d1cee6429\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2509/providers/Microsoft.Storage/storageAccounts/ps4924\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps4924\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4672/providers/Microsoft.Resources/deployments/ps7490/operations/03F80EF18983F6CE\",\r\n \"operationId\": \"03F80EF18983F6CE\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-06-24T21:20:00.9007309Z\",\r\n \"duration\": \"PT4.0100449S\",\r\n \"trackingId\": \"8cbe0a13-f0bf-4bc3-a8cc-3b37a5a3adcc\",\r\n \"serviceRequestId\": \"b9c7648f-788f-4af3-a8e6-d51964801504\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4672/providers/Microsoft.Storage/storageAccounts/ps6072\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps6072\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2509/deployments/ps296/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjUwOS9kZXBsb3ltZW50cy9wczI5Ni9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4672/deployments/ps7490/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDY3Mi9kZXBsb3ltZW50cy9wczc0OTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "105251ea-5f62-4c90-87c4-7e9c8a862f35"
+ "2fcba254-a9e6-4698-9588-a8652daf1c8b"
],
"Accept-Language": [
"en-US"
@@ -2445,13 +2445,13 @@
"11932"
],
"x-ms-request-id": [
- "32a554a7-0cce-4b74-b84f-d27ee80e2d8b"
+ "338cc273-d17a-479c-8e59-a45a648324ed"
],
"x-ms-correlation-request-id": [
- "32a554a7-0cce-4b74-b84f-d27ee80e2d8b"
+ "338cc273-d17a-479c-8e59-a45a648324ed"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200612T213929Z:32a554a7-0cce-4b74-b84f-d27ee80e2d8b"
+ "NORTHCENTRALUS:20200624T212010Z:338cc273-d17a-479c-8e59-a45a648324ed"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2460,7 +2460,7 @@
"nosniff"
],
"Date": [
- "Fri, 12 Jun 2020 21:39:29 GMT"
+ "Wed, 24 Jun 2020 21:20:10 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -2469,23 +2469,23 @@
"-1"
],
"Content-Length": [
- "710"
+ "711"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2509/providers/Microsoft.Resources/deployments/ps296/operations/DBA470C2D7C0EDAC\",\r\n \"operationId\": \"DBA470C2D7C0EDAC\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-06-12T21:39:19.4287701Z\",\r\n \"duration\": \"PT2.9654116S\",\r\n \"trackingId\": \"d2d519e0-3aaa-4af3-9727-00518ba9e109\",\r\n \"serviceRequestId\": \"a64aecdb-986c-4e12-ba0c-e75d1cee6429\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2509/providers/Microsoft.Storage/storageAccounts/ps4924\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps4924\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4672/providers/Microsoft.Resources/deployments/ps7490/operations/03F80EF18983F6CE\",\r\n \"operationId\": \"03F80EF18983F6CE\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-06-24T21:20:00.9007309Z\",\r\n \"duration\": \"PT4.0100449S\",\r\n \"trackingId\": \"8cbe0a13-f0bf-4bc3-a8cc-3b37a5a3adcc\",\r\n \"serviceRequestId\": \"b9c7648f-788f-4af3-a8e6-d51964801504\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4672/providers/Microsoft.Storage/storageAccounts/ps6072\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps6072\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2509/deployments/ps296/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjUwOS9kZXBsb3ltZW50cy9wczI5Ni9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4672/deployments/ps7490/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDY3Mi9kZXBsb3ltZW50cy9wczc0OTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "7b357a56-adb5-40be-991b-8fa237d16c1a"
+ "aa36fd19-3726-4ac1-940b-34bf1bd3b180"
],
"Accept-Language": [
"en-US"
@@ -2508,13 +2508,13 @@
"11930"
],
"x-ms-request-id": [
- "76feba63-c1dd-4171-b0be-320d43b3fdcf"
+ "f92e36bd-e21b-46ea-befb-426d7705f34c"
],
"x-ms-correlation-request-id": [
- "76feba63-c1dd-4171-b0be-320d43b3fdcf"
+ "f92e36bd-e21b-46ea-befb-426d7705f34c"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200612T213930Z:76feba63-c1dd-4171-b0be-320d43b3fdcf"
+ "NORTHCENTRALUS:20200624T212011Z:f92e36bd-e21b-46ea-befb-426d7705f34c"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2523,7 +2523,7 @@
"nosniff"
],
"Date": [
- "Fri, 12 Jun 2020 21:39:29 GMT"
+ "Wed, 24 Jun 2020 21:20:10 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -2532,23 +2532,23 @@
"-1"
],
"Content-Length": [
- "710"
+ "711"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2509/providers/Microsoft.Resources/deployments/ps296/operations/DBA470C2D7C0EDAC\",\r\n \"operationId\": \"DBA470C2D7C0EDAC\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-06-12T21:39:19.4287701Z\",\r\n \"duration\": \"PT2.9654116S\",\r\n \"trackingId\": \"d2d519e0-3aaa-4af3-9727-00518ba9e109\",\r\n \"serviceRequestId\": \"a64aecdb-986c-4e12-ba0c-e75d1cee6429\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2509/providers/Microsoft.Storage/storageAccounts/ps4924\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps4924\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4672/providers/Microsoft.Resources/deployments/ps7490/operations/03F80EF18983F6CE\",\r\n \"operationId\": \"03F80EF18983F6CE\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-06-24T21:20:00.9007309Z\",\r\n \"duration\": \"PT4.0100449S\",\r\n \"trackingId\": \"8cbe0a13-f0bf-4bc3-a8cc-3b37a5a3adcc\",\r\n \"serviceRequestId\": \"b9c7648f-788f-4af3-a8e6-d51964801504\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4672/providers/Microsoft.Storage/storageAccounts/ps6072\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps6072\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2509/deployments/ps296/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjUwOS9kZXBsb3ltZW50cy9wczI5Ni9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4672/deployments/ps7490/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDY3Mi9kZXBsb3ltZW50cy9wczc0OTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "7872b1c8-ce9a-4cde-9cbf-d064cb466b1f"
+ "2dc863f2-8028-46ee-b43b-ad4a7bb612f1"
],
"Accept-Language": [
"en-US"
@@ -2571,13 +2571,13 @@
"11928"
],
"x-ms-request-id": [
- "0e64d4c1-4d87-4f17-9a65-666f9198c538"
+ "a21f24b6-61b1-4d8e-829a-074b416040b0"
],
"x-ms-correlation-request-id": [
- "0e64d4c1-4d87-4f17-9a65-666f9198c538"
+ "a21f24b6-61b1-4d8e-829a-074b416040b0"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200612T213930Z:0e64d4c1-4d87-4f17-9a65-666f9198c538"
+ "NORTHCENTRALUS:20200624T212011Z:a21f24b6-61b1-4d8e-829a-074b416040b0"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2586,7 +2586,7 @@
"nosniff"
],
"Date": [
- "Fri, 12 Jun 2020 21:39:30 GMT"
+ "Wed, 24 Jun 2020 21:20:10 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -2595,23 +2595,23 @@
"-1"
],
"Content-Length": [
- "710"
+ "711"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2509/providers/Microsoft.Resources/deployments/ps296/operations/DBA470C2D7C0EDAC\",\r\n \"operationId\": \"DBA470C2D7C0EDAC\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-06-12T21:39:19.4287701Z\",\r\n \"duration\": \"PT2.9654116S\",\r\n \"trackingId\": \"d2d519e0-3aaa-4af3-9727-00518ba9e109\",\r\n \"serviceRequestId\": \"a64aecdb-986c-4e12-ba0c-e75d1cee6429\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2509/providers/Microsoft.Storage/storageAccounts/ps4924\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps4924\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4672/providers/Microsoft.Resources/deployments/ps7490/operations/03F80EF18983F6CE\",\r\n \"operationId\": \"03F80EF18983F6CE\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-06-24T21:20:00.9007309Z\",\r\n \"duration\": \"PT4.0100449S\",\r\n \"trackingId\": \"8cbe0a13-f0bf-4bc3-a8cc-3b37a5a3adcc\",\r\n \"serviceRequestId\": \"b9c7648f-788f-4af3-a8e6-d51964801504\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4672/providers/Microsoft.Storage/storageAccounts/ps6072\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps6072\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2509/deployments/ps296/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjUwOS9kZXBsb3ltZW50cy9wczI5Ni9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4672/deployments/ps7490/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDY3Mi9kZXBsb3ltZW50cy9wczc0OTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "dfbbe1df-fb98-4eb5-924b-8ed062cb3645"
+ "a90e1a58-e584-461e-9871-dad4122e6fbe"
],
"Accept-Language": [
"en-US"
@@ -2634,13 +2634,13 @@
"11926"
],
"x-ms-request-id": [
- "8454186f-cd85-4799-b5e2-e43ff3bf83ba"
+ "8f03e3d2-d12c-4cfa-a866-e9fdd46e411b"
],
"x-ms-correlation-request-id": [
- "8454186f-cd85-4799-b5e2-e43ff3bf83ba"
+ "8f03e3d2-d12c-4cfa-a866-e9fdd46e411b"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200612T213931Z:8454186f-cd85-4799-b5e2-e43ff3bf83ba"
+ "NORTHCENTRALUS:20200624T212011Z:8f03e3d2-d12c-4cfa-a866-e9fdd46e411b"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2649,7 +2649,7 @@
"nosniff"
],
"Date": [
- "Fri, 12 Jun 2020 21:39:30 GMT"
+ "Wed, 24 Jun 2020 21:20:11 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -2658,23 +2658,23 @@
"-1"
],
"Content-Length": [
- "710"
+ "711"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2509/providers/Microsoft.Resources/deployments/ps296/operations/DBA470C2D7C0EDAC\",\r\n \"operationId\": \"DBA470C2D7C0EDAC\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-06-12T21:39:19.4287701Z\",\r\n \"duration\": \"PT2.9654116S\",\r\n \"trackingId\": \"d2d519e0-3aaa-4af3-9727-00518ba9e109\",\r\n \"serviceRequestId\": \"a64aecdb-986c-4e12-ba0c-e75d1cee6429\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2509/providers/Microsoft.Storage/storageAccounts/ps4924\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps4924\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4672/providers/Microsoft.Resources/deployments/ps7490/operations/03F80EF18983F6CE\",\r\n \"operationId\": \"03F80EF18983F6CE\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-06-24T21:20:00.9007309Z\",\r\n \"duration\": \"PT4.0100449S\",\r\n \"trackingId\": \"8cbe0a13-f0bf-4bc3-a8cc-3b37a5a3adcc\",\r\n \"serviceRequestId\": \"b9c7648f-788f-4af3-a8e6-d51964801504\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4672/providers/Microsoft.Storage/storageAccounts/ps6072\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps6072\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2509/deployments/ps296/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjUwOS9kZXBsb3ltZW50cy9wczI5Ni9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4672/deployments/ps7490/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDY3Mi9kZXBsb3ltZW50cy9wczc0OTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "8438befb-0097-4afe-91fc-4ded78d007e5"
+ "bd2ba38d-bd95-4451-9898-866a04754995"
],
"Accept-Language": [
"en-US"
@@ -2697,13 +2697,13 @@
"11924"
],
"x-ms-request-id": [
- "42ac6348-408a-487d-a3fa-be344e214cfa"
+ "db04b8fa-8912-4d2a-89f6-ad42bb635690"
],
"x-ms-correlation-request-id": [
- "42ac6348-408a-487d-a3fa-be344e214cfa"
+ "db04b8fa-8912-4d2a-89f6-ad42bb635690"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200612T213931Z:42ac6348-408a-487d-a3fa-be344e214cfa"
+ "NORTHCENTRALUS:20200624T212012Z:db04b8fa-8912-4d2a-89f6-ad42bb635690"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2712,7 +2712,7 @@
"nosniff"
],
"Date": [
- "Fri, 12 Jun 2020 21:39:30 GMT"
+ "Wed, 24 Jun 2020 21:20:11 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -2721,23 +2721,23 @@
"-1"
],
"Content-Length": [
- "710"
+ "711"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2509/providers/Microsoft.Resources/deployments/ps296/operations/DBA470C2D7C0EDAC\",\r\n \"operationId\": \"DBA470C2D7C0EDAC\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-06-12T21:39:19.4287701Z\",\r\n \"duration\": \"PT2.9654116S\",\r\n \"trackingId\": \"d2d519e0-3aaa-4af3-9727-00518ba9e109\",\r\n \"serviceRequestId\": \"a64aecdb-986c-4e12-ba0c-e75d1cee6429\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2509/providers/Microsoft.Storage/storageAccounts/ps4924\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps4924\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4672/providers/Microsoft.Resources/deployments/ps7490/operations/03F80EF18983F6CE\",\r\n \"operationId\": \"03F80EF18983F6CE\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-06-24T21:20:00.9007309Z\",\r\n \"duration\": \"PT4.0100449S\",\r\n \"trackingId\": \"8cbe0a13-f0bf-4bc3-a8cc-3b37a5a3adcc\",\r\n \"serviceRequestId\": \"b9c7648f-788f-4af3-a8e6-d51964801504\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4672/providers/Microsoft.Storage/storageAccounts/ps6072\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps6072\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2509/deployments/ps296/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjUwOS9kZXBsb3ltZW50cy9wczI5Ni9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4672/deployments/ps7490/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDY3Mi9kZXBsb3ltZW50cy9wczc0OTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "beb5f17d-701b-417a-ad9c-f01979b56d2d"
+ "35519a22-3c5a-48a7-a27f-84b8678c8577"
],
"Accept-Language": [
"en-US"
@@ -2760,13 +2760,13 @@
"11922"
],
"x-ms-request-id": [
- "d5c78ba4-bf3f-4405-bf87-96d62921a76d"
+ "df58ba12-df03-45c4-ba61-082f189092bc"
],
"x-ms-correlation-request-id": [
- "d5c78ba4-bf3f-4405-bf87-96d62921a76d"
+ "df58ba12-df03-45c4-ba61-082f189092bc"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200612T213931Z:d5c78ba4-bf3f-4405-bf87-96d62921a76d"
+ "NORTHCENTRALUS:20200624T212012Z:df58ba12-df03-45c4-ba61-082f189092bc"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2775,7 +2775,7 @@
"nosniff"
],
"Date": [
- "Fri, 12 Jun 2020 21:39:31 GMT"
+ "Wed, 24 Jun 2020 21:20:12 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -2784,23 +2784,23 @@
"-1"
],
"Content-Length": [
- "710"
+ "711"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2509/providers/Microsoft.Resources/deployments/ps296/operations/DBA470C2D7C0EDAC\",\r\n \"operationId\": \"DBA470C2D7C0EDAC\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-06-12T21:39:19.4287701Z\",\r\n \"duration\": \"PT2.9654116S\",\r\n \"trackingId\": \"d2d519e0-3aaa-4af3-9727-00518ba9e109\",\r\n \"serviceRequestId\": \"a64aecdb-986c-4e12-ba0c-e75d1cee6429\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2509/providers/Microsoft.Storage/storageAccounts/ps4924\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps4924\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4672/providers/Microsoft.Resources/deployments/ps7490/operations/03F80EF18983F6CE\",\r\n \"operationId\": \"03F80EF18983F6CE\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-06-24T21:20:00.9007309Z\",\r\n \"duration\": \"PT4.0100449S\",\r\n \"trackingId\": \"8cbe0a13-f0bf-4bc3-a8cc-3b37a5a3adcc\",\r\n \"serviceRequestId\": \"b9c7648f-788f-4af3-a8e6-d51964801504\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4672/providers/Microsoft.Storage/storageAccounts/ps6072\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps6072\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2509/deployments/ps296/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjUwOS9kZXBsb3ltZW50cy9wczI5Ni9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4672/deployments/ps7490/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDY3Mi9kZXBsb3ltZW50cy9wczc0OTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "2d4f20ed-4a87-4790-b158-8ec2b1aa98be"
+ "c957b95e-4768-4035-97ed-68d22042a160"
],
"Accept-Language": [
"en-US"
@@ -2823,13 +2823,13 @@
"11920"
],
"x-ms-request-id": [
- "75c44d38-849c-41f4-94fa-511b6fb8c0c1"
+ "8723fc47-d094-4f94-aced-456a74a3f717"
],
"x-ms-correlation-request-id": [
- "75c44d38-849c-41f4-94fa-511b6fb8c0c1"
+ "8723fc47-d094-4f94-aced-456a74a3f717"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200612T213932Z:75c44d38-849c-41f4-94fa-511b6fb8c0c1"
+ "NORTHCENTRALUS:20200624T212013Z:8723fc47-d094-4f94-aced-456a74a3f717"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2838,7 +2838,7 @@
"nosniff"
],
"Date": [
- "Fri, 12 Jun 2020 21:39:31 GMT"
+ "Wed, 24 Jun 2020 21:20:12 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -2847,23 +2847,23 @@
"-1"
],
"Content-Length": [
- "710"
+ "711"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2509/providers/Microsoft.Resources/deployments/ps296/operations/DBA470C2D7C0EDAC\",\r\n \"operationId\": \"DBA470C2D7C0EDAC\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-06-12T21:39:19.4287701Z\",\r\n \"duration\": \"PT2.9654116S\",\r\n \"trackingId\": \"d2d519e0-3aaa-4af3-9727-00518ba9e109\",\r\n \"serviceRequestId\": \"a64aecdb-986c-4e12-ba0c-e75d1cee6429\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2509/providers/Microsoft.Storage/storageAccounts/ps4924\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps4924\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4672/providers/Microsoft.Resources/deployments/ps7490/operations/03F80EF18983F6CE\",\r\n \"operationId\": \"03F80EF18983F6CE\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-06-24T21:20:00.9007309Z\",\r\n \"duration\": \"PT4.0100449S\",\r\n \"trackingId\": \"8cbe0a13-f0bf-4bc3-a8cc-3b37a5a3adcc\",\r\n \"serviceRequestId\": \"b9c7648f-788f-4af3-a8e6-d51964801504\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4672/providers/Microsoft.Storage/storageAccounts/ps6072\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps6072\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2509/deployments/ps296/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjUwOS9kZXBsb3ltZW50cy9wczI5Ni9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4672/deployments/ps7490/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDY3Mi9kZXBsb3ltZW50cy9wczc0OTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "1c66d63a-2297-424b-a957-9c0cf09e913d"
+ "0a4de37b-7aee-4884-b959-a531100aa412"
],
"Accept-Language": [
"en-US"
@@ -2886,13 +2886,13 @@
"11918"
],
"x-ms-request-id": [
- "bd3b8f21-91f3-4222-b745-c96c1079c0a7"
+ "87194f51-b3bb-4883-b6d6-9fdf7330533f"
],
"x-ms-correlation-request-id": [
- "bd3b8f21-91f3-4222-b745-c96c1079c0a7"
+ "87194f51-b3bb-4883-b6d6-9fdf7330533f"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200612T213932Z:bd3b8f21-91f3-4222-b745-c96c1079c0a7"
+ "NORTHCENTRALUS:20200624T212013Z:87194f51-b3bb-4883-b6d6-9fdf7330533f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2901,7 +2901,7 @@
"nosniff"
],
"Date": [
- "Fri, 12 Jun 2020 21:39:32 GMT"
+ "Wed, 24 Jun 2020 21:20:12 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -2910,23 +2910,23 @@
"-1"
],
"Content-Length": [
- "710"
+ "711"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2509/providers/Microsoft.Resources/deployments/ps296/operations/DBA470C2D7C0EDAC\",\r\n \"operationId\": \"DBA470C2D7C0EDAC\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-06-12T21:39:19.4287701Z\",\r\n \"duration\": \"PT2.9654116S\",\r\n \"trackingId\": \"d2d519e0-3aaa-4af3-9727-00518ba9e109\",\r\n \"serviceRequestId\": \"a64aecdb-986c-4e12-ba0c-e75d1cee6429\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2509/providers/Microsoft.Storage/storageAccounts/ps4924\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps4924\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4672/providers/Microsoft.Resources/deployments/ps7490/operations/03F80EF18983F6CE\",\r\n \"operationId\": \"03F80EF18983F6CE\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-06-24T21:20:00.9007309Z\",\r\n \"duration\": \"PT4.0100449S\",\r\n \"trackingId\": \"8cbe0a13-f0bf-4bc3-a8cc-3b37a5a3adcc\",\r\n \"serviceRequestId\": \"b9c7648f-788f-4af3-a8e6-d51964801504\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4672/providers/Microsoft.Storage/storageAccounts/ps6072\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps6072\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2509/deployments/ps296/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjUwOS9kZXBsb3ltZW50cy9wczI5Ni9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4672/deployments/ps7490/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDY3Mi9kZXBsb3ltZW50cy9wczc0OTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "84f4d72d-d869-4ad9-a347-8e4eba48d4d9"
+ "e910b163-a380-4a97-87ea-dde07d80367d"
],
"Accept-Language": [
"en-US"
@@ -2949,13 +2949,13 @@
"11916"
],
"x-ms-request-id": [
- "abbf8d2d-da48-4f13-9e3a-740788ae1196"
+ "c50a3f9e-1f38-419c-9cc1-2480edca190e"
],
"x-ms-correlation-request-id": [
- "abbf8d2d-da48-4f13-9e3a-740788ae1196"
+ "c50a3f9e-1f38-419c-9cc1-2480edca190e"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200612T213933Z:abbf8d2d-da48-4f13-9e3a-740788ae1196"
+ "NORTHCENTRALUS:20200624T212014Z:c50a3f9e-1f38-419c-9cc1-2480edca190e"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2964,7 +2964,7 @@
"nosniff"
],
"Date": [
- "Fri, 12 Jun 2020 21:39:32 GMT"
+ "Wed, 24 Jun 2020 21:20:13 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -2973,23 +2973,23 @@
"-1"
],
"Content-Length": [
- "710"
+ "711"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2509/providers/Microsoft.Resources/deployments/ps296/operations/DBA470C2D7C0EDAC\",\r\n \"operationId\": \"DBA470C2D7C0EDAC\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-06-12T21:39:19.4287701Z\",\r\n \"duration\": \"PT2.9654116S\",\r\n \"trackingId\": \"d2d519e0-3aaa-4af3-9727-00518ba9e109\",\r\n \"serviceRequestId\": \"a64aecdb-986c-4e12-ba0c-e75d1cee6429\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2509/providers/Microsoft.Storage/storageAccounts/ps4924\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps4924\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4672/providers/Microsoft.Resources/deployments/ps7490/operations/03F80EF18983F6CE\",\r\n \"operationId\": \"03F80EF18983F6CE\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-06-24T21:20:00.9007309Z\",\r\n \"duration\": \"PT4.0100449S\",\r\n \"trackingId\": \"8cbe0a13-f0bf-4bc3-a8cc-3b37a5a3adcc\",\r\n \"serviceRequestId\": \"b9c7648f-788f-4af3-a8e6-d51964801504\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4672/providers/Microsoft.Storage/storageAccounts/ps6072\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps6072\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2509/deployments/ps296/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjUwOS9kZXBsb3ltZW50cy9wczI5Ni9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4672/deployments/ps7490/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDY3Mi9kZXBsb3ltZW50cy9wczc0OTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "83963fbe-9188-4092-b445-8678814d5542"
+ "2e72d732-92eb-43b9-8047-c16f814a0412"
],
"Accept-Language": [
"en-US"
@@ -3012,13 +3012,13 @@
"11914"
],
"x-ms-request-id": [
- "bd61bf05-7101-4c24-987d-cebf4a087395"
+ "e40e061c-0d2a-4b2c-a839-77dfe5a708ef"
],
"x-ms-correlation-request-id": [
- "bd61bf05-7101-4c24-987d-cebf4a087395"
+ "e40e061c-0d2a-4b2c-a839-77dfe5a708ef"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200612T213933Z:bd61bf05-7101-4c24-987d-cebf4a087395"
+ "NORTHCENTRALUS:20200624T212014Z:e40e061c-0d2a-4b2c-a839-77dfe5a708ef"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -3027,7 +3027,7 @@
"nosniff"
],
"Date": [
- "Fri, 12 Jun 2020 21:39:32 GMT"
+ "Wed, 24 Jun 2020 21:20:13 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -3036,23 +3036,23 @@
"-1"
],
"Content-Length": [
- "710"
+ "711"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2509/providers/Microsoft.Resources/deployments/ps296/operations/DBA470C2D7C0EDAC\",\r\n \"operationId\": \"DBA470C2D7C0EDAC\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-06-12T21:39:19.4287701Z\",\r\n \"duration\": \"PT2.9654116S\",\r\n \"trackingId\": \"d2d519e0-3aaa-4af3-9727-00518ba9e109\",\r\n \"serviceRequestId\": \"a64aecdb-986c-4e12-ba0c-e75d1cee6429\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2509/providers/Microsoft.Storage/storageAccounts/ps4924\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps4924\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4672/providers/Microsoft.Resources/deployments/ps7490/operations/03F80EF18983F6CE\",\r\n \"operationId\": \"03F80EF18983F6CE\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-06-24T21:20:00.9007309Z\",\r\n \"duration\": \"PT4.0100449S\",\r\n \"trackingId\": \"8cbe0a13-f0bf-4bc3-a8cc-3b37a5a3adcc\",\r\n \"serviceRequestId\": \"b9c7648f-788f-4af3-a8e6-d51964801504\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4672/providers/Microsoft.Storage/storageAccounts/ps6072\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps6072\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2509/deployments/ps296/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjUwOS9kZXBsb3ltZW50cy9wczI5Ni9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4672/deployments/ps7490/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDY3Mi9kZXBsb3ltZW50cy9wczc0OTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "afe1b47d-1acb-4f06-8e48-071d2e319f23"
+ "b9f65298-ae0c-4d4a-88fc-c563e784b47b"
],
"Accept-Language": [
"en-US"
@@ -3075,13 +3075,13 @@
"11912"
],
"x-ms-request-id": [
- "29e453ac-96e6-4323-84e0-9921784acdce"
+ "b05462ef-2634-4456-8c57-fcd043bd8121"
],
"x-ms-correlation-request-id": [
- "29e453ac-96e6-4323-84e0-9921784acdce"
+ "b05462ef-2634-4456-8c57-fcd043bd8121"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200612T213933Z:29e453ac-96e6-4323-84e0-9921784acdce"
+ "NORTHCENTRALUS:20200624T212014Z:b05462ef-2634-4456-8c57-fcd043bd8121"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -3090,7 +3090,7 @@
"nosniff"
],
"Date": [
- "Fri, 12 Jun 2020 21:39:33 GMT"
+ "Wed, 24 Jun 2020 21:20:14 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -3099,23 +3099,23 @@
"-1"
],
"Content-Length": [
- "710"
+ "711"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2509/providers/Microsoft.Resources/deployments/ps296/operations/DBA470C2D7C0EDAC\",\r\n \"operationId\": \"DBA470C2D7C0EDAC\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-06-12T21:39:19.4287701Z\",\r\n \"duration\": \"PT2.9654116S\",\r\n \"trackingId\": \"d2d519e0-3aaa-4af3-9727-00518ba9e109\",\r\n \"serviceRequestId\": \"a64aecdb-986c-4e12-ba0c-e75d1cee6429\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2509/providers/Microsoft.Storage/storageAccounts/ps4924\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps4924\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4672/providers/Microsoft.Resources/deployments/ps7490/operations/03F80EF18983F6CE\",\r\n \"operationId\": \"03F80EF18983F6CE\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-06-24T21:20:00.9007309Z\",\r\n \"duration\": \"PT4.0100449S\",\r\n \"trackingId\": \"8cbe0a13-f0bf-4bc3-a8cc-3b37a5a3adcc\",\r\n \"serviceRequestId\": \"b9c7648f-788f-4af3-a8e6-d51964801504\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4672/providers/Microsoft.Storage/storageAccounts/ps6072\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps6072\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2509/deployments/ps296/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjUwOS9kZXBsb3ltZW50cy9wczI5Ni9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4672/deployments/ps7490/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDY3Mi9kZXBsb3ltZW50cy9wczc0OTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "66a6ddd6-19f0-4e32-8e16-5777fde8ea05"
+ "df748bf7-2c06-4e4d-a83b-87593eb02de0"
],
"Accept-Language": [
"en-US"
@@ -3138,13 +3138,13 @@
"11910"
],
"x-ms-request-id": [
- "f003fbe4-45d7-43df-99f5-7ed5097f744d"
+ "72708873-2171-4041-a5b3-e69325a066df"
],
"x-ms-correlation-request-id": [
- "f003fbe4-45d7-43df-99f5-7ed5097f744d"
+ "72708873-2171-4041-a5b3-e69325a066df"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200612T213934Z:f003fbe4-45d7-43df-99f5-7ed5097f744d"
+ "NORTHCENTRALUS:20200624T212015Z:72708873-2171-4041-a5b3-e69325a066df"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -3153,7 +3153,7 @@
"nosniff"
],
"Date": [
- "Fri, 12 Jun 2020 21:39:33 GMT"
+ "Wed, 24 Jun 2020 21:20:14 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -3162,23 +3162,23 @@
"-1"
],
"Content-Length": [
- "710"
+ "711"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2509/providers/Microsoft.Resources/deployments/ps296/operations/DBA470C2D7C0EDAC\",\r\n \"operationId\": \"DBA470C2D7C0EDAC\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-06-12T21:39:19.4287701Z\",\r\n \"duration\": \"PT2.9654116S\",\r\n \"trackingId\": \"d2d519e0-3aaa-4af3-9727-00518ba9e109\",\r\n \"serviceRequestId\": \"a64aecdb-986c-4e12-ba0c-e75d1cee6429\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2509/providers/Microsoft.Storage/storageAccounts/ps4924\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps4924\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4672/providers/Microsoft.Resources/deployments/ps7490/operations/03F80EF18983F6CE\",\r\n \"operationId\": \"03F80EF18983F6CE\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-06-24T21:20:00.9007309Z\",\r\n \"duration\": \"PT4.0100449S\",\r\n \"trackingId\": \"8cbe0a13-f0bf-4bc3-a8cc-3b37a5a3adcc\",\r\n \"serviceRequestId\": \"b9c7648f-788f-4af3-a8e6-d51964801504\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4672/providers/Microsoft.Storage/storageAccounts/ps6072\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps6072\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2509/deployments/ps296/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjUwOS9kZXBsb3ltZW50cy9wczI5Ni9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4672/deployments/ps7490/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDY3Mi9kZXBsb3ltZW50cy9wczc0OTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "1abd77e5-ce4e-49c2-a994-bdda83c9047a"
+ "75a77fc4-b901-44f5-ad0c-efa40a2cfa79"
],
"Accept-Language": [
"en-US"
@@ -3201,13 +3201,13 @@
"11908"
],
"x-ms-request-id": [
- "66ad4cfe-60e4-473f-a678-36fad85547ab"
+ "1d491088-9902-466f-ab34-7abe0c61396a"
],
"x-ms-correlation-request-id": [
- "66ad4cfe-60e4-473f-a678-36fad85547ab"
+ "1d491088-9902-466f-ab34-7abe0c61396a"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200612T213934Z:66ad4cfe-60e4-473f-a678-36fad85547ab"
+ "NORTHCENTRALUS:20200624T212015Z:1d491088-9902-466f-ab34-7abe0c61396a"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -3216,7 +3216,7 @@
"nosniff"
],
"Date": [
- "Fri, 12 Jun 2020 21:39:34 GMT"
+ "Wed, 24 Jun 2020 21:20:14 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -3225,23 +3225,23 @@
"-1"
],
"Content-Length": [
- "710"
+ "711"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2509/providers/Microsoft.Resources/deployments/ps296/operations/DBA470C2D7C0EDAC\",\r\n \"operationId\": \"DBA470C2D7C0EDAC\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-06-12T21:39:19.4287701Z\",\r\n \"duration\": \"PT2.9654116S\",\r\n \"trackingId\": \"d2d519e0-3aaa-4af3-9727-00518ba9e109\",\r\n \"serviceRequestId\": \"a64aecdb-986c-4e12-ba0c-e75d1cee6429\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2509/providers/Microsoft.Storage/storageAccounts/ps4924\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps4924\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4672/providers/Microsoft.Resources/deployments/ps7490/operations/03F80EF18983F6CE\",\r\n \"operationId\": \"03F80EF18983F6CE\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-06-24T21:20:00.9007309Z\",\r\n \"duration\": \"PT4.0100449S\",\r\n \"trackingId\": \"8cbe0a13-f0bf-4bc3-a8cc-3b37a5a3adcc\",\r\n \"serviceRequestId\": \"b9c7648f-788f-4af3-a8e6-d51964801504\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4672/providers/Microsoft.Storage/storageAccounts/ps6072\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps6072\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2509/deployments/ps296/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjUwOS9kZXBsb3ltZW50cy9wczI5Ni9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4672/deployments/ps7490/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDY3Mi9kZXBsb3ltZW50cy9wczc0OTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b90b66de-20c6-47bd-b149-5f67c65d56eb"
+ "b89c3e67-ea86-438b-a419-91c3ff77cdbe"
],
"Accept-Language": [
"en-US"
@@ -3264,13 +3264,13 @@
"11906"
],
"x-ms-request-id": [
- "d1f041c6-d04d-40e4-ba99-8fc5f94a032f"
+ "073301ed-d54d-4052-bbb8-65543d0b390d"
],
"x-ms-correlation-request-id": [
- "d1f041c6-d04d-40e4-ba99-8fc5f94a032f"
+ "073301ed-d54d-4052-bbb8-65543d0b390d"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200612T213935Z:d1f041c6-d04d-40e4-ba99-8fc5f94a032f"
+ "NORTHCENTRALUS:20200624T212016Z:073301ed-d54d-4052-bbb8-65543d0b390d"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -3279,7 +3279,7 @@
"nosniff"
],
"Date": [
- "Fri, 12 Jun 2020 21:39:34 GMT"
+ "Wed, 24 Jun 2020 21:20:15 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -3288,23 +3288,23 @@
"-1"
],
"Content-Length": [
- "710"
+ "711"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2509/providers/Microsoft.Resources/deployments/ps296/operations/DBA470C2D7C0EDAC\",\r\n \"operationId\": \"DBA470C2D7C0EDAC\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-06-12T21:39:19.4287701Z\",\r\n \"duration\": \"PT2.9654116S\",\r\n \"trackingId\": \"d2d519e0-3aaa-4af3-9727-00518ba9e109\",\r\n \"serviceRequestId\": \"a64aecdb-986c-4e12-ba0c-e75d1cee6429\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2509/providers/Microsoft.Storage/storageAccounts/ps4924\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps4924\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4672/providers/Microsoft.Resources/deployments/ps7490/operations/03F80EF18983F6CE\",\r\n \"operationId\": \"03F80EF18983F6CE\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-06-24T21:20:00.9007309Z\",\r\n \"duration\": \"PT4.0100449S\",\r\n \"trackingId\": \"8cbe0a13-f0bf-4bc3-a8cc-3b37a5a3adcc\",\r\n \"serviceRequestId\": \"b9c7648f-788f-4af3-a8e6-d51964801504\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4672/providers/Microsoft.Storage/storageAccounts/ps6072\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps6072\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2509/deployments/ps296/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjUwOS9kZXBsb3ltZW50cy9wczI5Ni9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4672/deployments/ps7490/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDY3Mi9kZXBsb3ltZW50cy9wczc0OTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "2ea399cb-f22d-4242-9056-31d5fe1120fa"
+ "f092ade6-db5b-4950-953b-6df321f7cf83"
],
"Accept-Language": [
"en-US"
@@ -3327,13 +3327,13 @@
"11904"
],
"x-ms-request-id": [
- "c606358e-b6ce-448d-8ab3-c3943a5564a3"
+ "00474614-96a8-4f3b-98ad-4ba519f4478e"
],
"x-ms-correlation-request-id": [
- "c606358e-b6ce-448d-8ab3-c3943a5564a3"
+ "00474614-96a8-4f3b-98ad-4ba519f4478e"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200612T213935Z:c606358e-b6ce-448d-8ab3-c3943a5564a3"
+ "NORTHCENTRALUS:20200624T212016Z:00474614-96a8-4f3b-98ad-4ba519f4478e"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -3342,7 +3342,7 @@
"nosniff"
],
"Date": [
- "Fri, 12 Jun 2020 21:39:34 GMT"
+ "Wed, 24 Jun 2020 21:20:15 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -3351,23 +3351,23 @@
"-1"
],
"Content-Length": [
- "710"
+ "711"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2509/providers/Microsoft.Resources/deployments/ps296/operations/DBA470C2D7C0EDAC\",\r\n \"operationId\": \"DBA470C2D7C0EDAC\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-06-12T21:39:19.4287701Z\",\r\n \"duration\": \"PT2.9654116S\",\r\n \"trackingId\": \"d2d519e0-3aaa-4af3-9727-00518ba9e109\",\r\n \"serviceRequestId\": \"a64aecdb-986c-4e12-ba0c-e75d1cee6429\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2509/providers/Microsoft.Storage/storageAccounts/ps4924\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps4924\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4672/providers/Microsoft.Resources/deployments/ps7490/operations/03F80EF18983F6CE\",\r\n \"operationId\": \"03F80EF18983F6CE\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-06-24T21:20:00.9007309Z\",\r\n \"duration\": \"PT4.0100449S\",\r\n \"trackingId\": \"8cbe0a13-f0bf-4bc3-a8cc-3b37a5a3adcc\",\r\n \"serviceRequestId\": \"b9c7648f-788f-4af3-a8e6-d51964801504\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4672/providers/Microsoft.Storage/storageAccounts/ps6072\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps6072\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2509/deployments/ps296/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjUwOS9kZXBsb3ltZW50cy9wczI5Ni9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4672/deployments/ps7490/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDY3Mi9kZXBsb3ltZW50cy9wczc0OTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "50618d7f-951c-42c0-a49d-0232b17abac2"
+ "92343b92-0537-4d37-8dd1-275137961dfa"
],
"Accept-Language": [
"en-US"
@@ -3390,13 +3390,13 @@
"11902"
],
"x-ms-request-id": [
- "0df6bb34-cc9a-4fda-867f-efb2c7f9521a"
+ "8288c7f9-b795-42ee-a688-9e1afd1d93be"
],
"x-ms-correlation-request-id": [
- "0df6bb34-cc9a-4fda-867f-efb2c7f9521a"
+ "8288c7f9-b795-42ee-a688-9e1afd1d93be"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200612T213935Z:0df6bb34-cc9a-4fda-867f-efb2c7f9521a"
+ "NORTHCENTRALUS:20200624T212016Z:8288c7f9-b795-42ee-a688-9e1afd1d93be"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -3405,7 +3405,7 @@
"nosniff"
],
"Date": [
- "Fri, 12 Jun 2020 21:39:35 GMT"
+ "Wed, 24 Jun 2020 21:20:16 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -3414,23 +3414,23 @@
"-1"
],
"Content-Length": [
- "710"
+ "711"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2509/providers/Microsoft.Resources/deployments/ps296/operations/DBA470C2D7C0EDAC\",\r\n \"operationId\": \"DBA470C2D7C0EDAC\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-06-12T21:39:19.4287701Z\",\r\n \"duration\": \"PT2.9654116S\",\r\n \"trackingId\": \"d2d519e0-3aaa-4af3-9727-00518ba9e109\",\r\n \"serviceRequestId\": \"a64aecdb-986c-4e12-ba0c-e75d1cee6429\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2509/providers/Microsoft.Storage/storageAccounts/ps4924\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps4924\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4672/providers/Microsoft.Resources/deployments/ps7490/operations/03F80EF18983F6CE\",\r\n \"operationId\": \"03F80EF18983F6CE\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-06-24T21:20:00.9007309Z\",\r\n \"duration\": \"PT4.0100449S\",\r\n \"trackingId\": \"8cbe0a13-f0bf-4bc3-a8cc-3b37a5a3adcc\",\r\n \"serviceRequestId\": \"b9c7648f-788f-4af3-a8e6-d51964801504\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4672/providers/Microsoft.Storage/storageAccounts/ps6072\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps6072\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2509/deployments/ps296/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjUwOS9kZXBsb3ltZW50cy9wczI5Ni9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4672/deployments/ps7490/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDY3Mi9kZXBsb3ltZW50cy9wczc0OTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "ed7658ac-81cd-4738-8b13-8aacc420e702"
+ "5920cd05-cdaf-49a0-bf9f-64edf12b2e8d"
],
"Accept-Language": [
"en-US"
@@ -3453,13 +3453,13 @@
"11900"
],
"x-ms-request-id": [
- "35a99f37-b29b-4dfe-a438-4eac5b22e9a0"
+ "9ce0c10c-1313-412f-bb1a-c1ad3eddfd32"
],
"x-ms-correlation-request-id": [
- "35a99f37-b29b-4dfe-a438-4eac5b22e9a0"
+ "9ce0c10c-1313-412f-bb1a-c1ad3eddfd32"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200612T213936Z:35a99f37-b29b-4dfe-a438-4eac5b22e9a0"
+ "NORTHCENTRALUS:20200624T212017Z:9ce0c10c-1313-412f-bb1a-c1ad3eddfd32"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -3468,7 +3468,7 @@
"nosniff"
],
"Date": [
- "Fri, 12 Jun 2020 21:39:35 GMT"
+ "Wed, 24 Jun 2020 21:20:16 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -3477,23 +3477,23 @@
"-1"
],
"Content-Length": [
- "710"
+ "711"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2509/providers/Microsoft.Resources/deployments/ps296/operations/DBA470C2D7C0EDAC\",\r\n \"operationId\": \"DBA470C2D7C0EDAC\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-06-12T21:39:19.4287701Z\",\r\n \"duration\": \"PT2.9654116S\",\r\n \"trackingId\": \"d2d519e0-3aaa-4af3-9727-00518ba9e109\",\r\n \"serviceRequestId\": \"a64aecdb-986c-4e12-ba0c-e75d1cee6429\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2509/providers/Microsoft.Storage/storageAccounts/ps4924\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps4924\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4672/providers/Microsoft.Resources/deployments/ps7490/operations/03F80EF18983F6CE\",\r\n \"operationId\": \"03F80EF18983F6CE\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-06-24T21:20:00.9007309Z\",\r\n \"duration\": \"PT4.0100449S\",\r\n \"trackingId\": \"8cbe0a13-f0bf-4bc3-a8cc-3b37a5a3adcc\",\r\n \"serviceRequestId\": \"b9c7648f-788f-4af3-a8e6-d51964801504\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4672/providers/Microsoft.Storage/storageAccounts/ps6072\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps6072\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2509/deployments/ps296/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjUwOS9kZXBsb3ltZW50cy9wczI5Ni9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4672/deployments/ps7490/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDY3Mi9kZXBsb3ltZW50cy9wczc0OTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "19414252-3e39-4857-bfd2-bc2dbd1b937c"
+ "3d961b76-198f-4023-9b3f-4730d714f94b"
],
"Accept-Language": [
"en-US"
@@ -3516,13 +3516,13 @@
"11898"
],
"x-ms-request-id": [
- "557775e6-f044-4019-a15e-e3ef57fb7e75"
+ "1e3619a5-f294-4565-a4e6-ac230debd250"
],
"x-ms-correlation-request-id": [
- "557775e6-f044-4019-a15e-e3ef57fb7e75"
+ "1e3619a5-f294-4565-a4e6-ac230debd250"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200612T213936Z:557775e6-f044-4019-a15e-e3ef57fb7e75"
+ "NORTHCENTRALUS:20200624T212017Z:1e3619a5-f294-4565-a4e6-ac230debd250"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -3531,7 +3531,7 @@
"nosniff"
],
"Date": [
- "Fri, 12 Jun 2020 21:39:36 GMT"
+ "Wed, 24 Jun 2020 21:20:16 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -3540,23 +3540,23 @@
"-1"
],
"Content-Length": [
- "710"
+ "711"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2509/providers/Microsoft.Resources/deployments/ps296/operations/DBA470C2D7C0EDAC\",\r\n \"operationId\": \"DBA470C2D7C0EDAC\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-06-12T21:39:19.4287701Z\",\r\n \"duration\": \"PT2.9654116S\",\r\n \"trackingId\": \"d2d519e0-3aaa-4af3-9727-00518ba9e109\",\r\n \"serviceRequestId\": \"a64aecdb-986c-4e12-ba0c-e75d1cee6429\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2509/providers/Microsoft.Storage/storageAccounts/ps4924\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps4924\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4672/providers/Microsoft.Resources/deployments/ps7490/operations/03F80EF18983F6CE\",\r\n \"operationId\": \"03F80EF18983F6CE\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-06-24T21:20:00.9007309Z\",\r\n \"duration\": \"PT4.0100449S\",\r\n \"trackingId\": \"8cbe0a13-f0bf-4bc3-a8cc-3b37a5a3adcc\",\r\n \"serviceRequestId\": \"b9c7648f-788f-4af3-a8e6-d51964801504\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4672/providers/Microsoft.Storage/storageAccounts/ps6072\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps6072\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2509/deployments/ps296/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjUwOS9kZXBsb3ltZW50cy9wczI5Ni9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4672/deployments/ps7490/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDY3Mi9kZXBsb3ltZW50cy9wczc0OTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "2e75b10c-e62f-4b13-9ee1-41f7af6605c3"
+ "04715adb-bcf7-4451-a54c-f687818440cf"
],
"Accept-Language": [
"en-US"
@@ -3579,13 +3579,13 @@
"11896"
],
"x-ms-request-id": [
- "6b94ebbb-f821-43e8-a575-a7d6680d2085"
+ "596258fc-793b-45ec-8b3e-6b27def884fa"
],
"x-ms-correlation-request-id": [
- "6b94ebbb-f821-43e8-a575-a7d6680d2085"
+ "596258fc-793b-45ec-8b3e-6b27def884fa"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200612T213937Z:6b94ebbb-f821-43e8-a575-a7d6680d2085"
+ "NORTHCENTRALUS:20200624T212018Z:596258fc-793b-45ec-8b3e-6b27def884fa"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -3594,7 +3594,7 @@
"nosniff"
],
"Date": [
- "Fri, 12 Jun 2020 21:39:36 GMT"
+ "Wed, 24 Jun 2020 21:20:17 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -3603,23 +3603,23 @@
"-1"
],
"Content-Length": [
- "710"
+ "711"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2509/providers/Microsoft.Resources/deployments/ps296/operations/DBA470C2D7C0EDAC\",\r\n \"operationId\": \"DBA470C2D7C0EDAC\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-06-12T21:39:19.4287701Z\",\r\n \"duration\": \"PT2.9654116S\",\r\n \"trackingId\": \"d2d519e0-3aaa-4af3-9727-00518ba9e109\",\r\n \"serviceRequestId\": \"a64aecdb-986c-4e12-ba0c-e75d1cee6429\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2509/providers/Microsoft.Storage/storageAccounts/ps4924\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps4924\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4672/providers/Microsoft.Resources/deployments/ps7490/operations/03F80EF18983F6CE\",\r\n \"operationId\": \"03F80EF18983F6CE\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-06-24T21:20:00.9007309Z\",\r\n \"duration\": \"PT4.0100449S\",\r\n \"trackingId\": \"8cbe0a13-f0bf-4bc3-a8cc-3b37a5a3adcc\",\r\n \"serviceRequestId\": \"b9c7648f-788f-4af3-a8e6-d51964801504\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4672/providers/Microsoft.Storage/storageAccounts/ps6072\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps6072\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2509/deployments/ps296/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjUwOS9kZXBsb3ltZW50cy9wczI5Ni9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4672/deployments/ps7490/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDY3Mi9kZXBsb3ltZW50cy9wczc0OTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "4ed558e1-d234-4bdf-8945-955c09b4b56a"
+ "8f2d36bd-9942-4471-828d-286b24eb1ff9"
],
"Accept-Language": [
"en-US"
@@ -3642,13 +3642,13 @@
"11894"
],
"x-ms-request-id": [
- "fa0d8cdb-01ea-4880-acb4-f3053af346ce"
+ "6b9f1ca7-62e2-4306-8915-4f136c6be5d2"
],
"x-ms-correlation-request-id": [
- "fa0d8cdb-01ea-4880-acb4-f3053af346ce"
+ "6b9f1ca7-62e2-4306-8915-4f136c6be5d2"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200612T213937Z:fa0d8cdb-01ea-4880-acb4-f3053af346ce"
+ "NORTHCENTRALUS:20200624T212018Z:6b9f1ca7-62e2-4306-8915-4f136c6be5d2"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -3657,7 +3657,7 @@
"nosniff"
],
"Date": [
- "Fri, 12 Jun 2020 21:39:36 GMT"
+ "Wed, 24 Jun 2020 21:20:17 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -3666,23 +3666,23 @@
"-1"
],
"Content-Length": [
- "710"
+ "711"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2509/providers/Microsoft.Resources/deployments/ps296/operations/DBA470C2D7C0EDAC\",\r\n \"operationId\": \"DBA470C2D7C0EDAC\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-06-12T21:39:19.4287701Z\",\r\n \"duration\": \"PT2.9654116S\",\r\n \"trackingId\": \"d2d519e0-3aaa-4af3-9727-00518ba9e109\",\r\n \"serviceRequestId\": \"a64aecdb-986c-4e12-ba0c-e75d1cee6429\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2509/providers/Microsoft.Storage/storageAccounts/ps4924\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps4924\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4672/providers/Microsoft.Resources/deployments/ps7490/operations/03F80EF18983F6CE\",\r\n \"operationId\": \"03F80EF18983F6CE\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-06-24T21:20:00.9007309Z\",\r\n \"duration\": \"PT4.0100449S\",\r\n \"trackingId\": \"8cbe0a13-f0bf-4bc3-a8cc-3b37a5a3adcc\",\r\n \"serviceRequestId\": \"b9c7648f-788f-4af3-a8e6-d51964801504\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4672/providers/Microsoft.Storage/storageAccounts/ps6072\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps6072\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2509/deployments/ps296/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjUwOS9kZXBsb3ltZW50cy9wczI5Ni9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4672/deployments/ps7490/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDY3Mi9kZXBsb3ltZW50cy9wczc0OTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "863609d7-0c58-4776-82d9-3ce50a8dc76a"
+ "fe210465-91b0-42b6-b30c-e73ac6a7ce84"
],
"Accept-Language": [
"en-US"
@@ -3705,13 +3705,13 @@
"11892"
],
"x-ms-request-id": [
- "783d46b7-7f69-416b-8545-d6a5e96b70db"
+ "051712b0-d60e-4613-9401-40434290b613"
],
"x-ms-correlation-request-id": [
- "783d46b7-7f69-416b-8545-d6a5e96b70db"
+ "051712b0-d60e-4613-9401-40434290b613"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200612T213938Z:783d46b7-7f69-416b-8545-d6a5e96b70db"
+ "NORTHCENTRALUS:20200624T212019Z:051712b0-d60e-4613-9401-40434290b613"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -3720,7 +3720,7 @@
"nosniff"
],
"Date": [
- "Fri, 12 Jun 2020 21:39:37 GMT"
+ "Wed, 24 Jun 2020 21:20:18 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -3729,23 +3729,23 @@
"-1"
],
"Content-Length": [
- "710"
+ "711"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2509/providers/Microsoft.Resources/deployments/ps296/operations/DBA470C2D7C0EDAC\",\r\n \"operationId\": \"DBA470C2D7C0EDAC\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-06-12T21:39:19.4287701Z\",\r\n \"duration\": \"PT2.9654116S\",\r\n \"trackingId\": \"d2d519e0-3aaa-4af3-9727-00518ba9e109\",\r\n \"serviceRequestId\": \"a64aecdb-986c-4e12-ba0c-e75d1cee6429\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2509/providers/Microsoft.Storage/storageAccounts/ps4924\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps4924\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4672/providers/Microsoft.Resources/deployments/ps7490/operations/03F80EF18983F6CE\",\r\n \"operationId\": \"03F80EF18983F6CE\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-06-24T21:20:00.9007309Z\",\r\n \"duration\": \"PT4.0100449S\",\r\n \"trackingId\": \"8cbe0a13-f0bf-4bc3-a8cc-3b37a5a3adcc\",\r\n \"serviceRequestId\": \"b9c7648f-788f-4af3-a8e6-d51964801504\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4672/providers/Microsoft.Storage/storageAccounts/ps6072\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps6072\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2509/deployments/ps296/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjUwOS9kZXBsb3ltZW50cy9wczI5Ni9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4672/deployments/ps7490/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDY3Mi9kZXBsb3ltZW50cy9wczc0OTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "6408190c-34ab-4944-a912-9d5797fe4133"
+ "c6b288b2-ba2f-4a86-9571-6ef61c6e568c"
],
"Accept-Language": [
"en-US"
@@ -3768,13 +3768,13 @@
"11890"
],
"x-ms-request-id": [
- "fcd5516d-253d-47c9-9782-0cab8abcb4bd"
+ "f35536a5-29e4-471c-809d-f0a47328fafd"
],
"x-ms-correlation-request-id": [
- "fcd5516d-253d-47c9-9782-0cab8abcb4bd"
+ "f35536a5-29e4-471c-809d-f0a47328fafd"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200612T213938Z:fcd5516d-253d-47c9-9782-0cab8abcb4bd"
+ "NORTHCENTRALUS:20200624T212019Z:f35536a5-29e4-471c-809d-f0a47328fafd"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -3783,7 +3783,7 @@
"nosniff"
],
"Date": [
- "Fri, 12 Jun 2020 21:39:37 GMT"
+ "Wed, 24 Jun 2020 21:20:18 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -3792,23 +3792,23 @@
"-1"
],
"Content-Length": [
- "710"
+ "1370"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2509/providers/Microsoft.Resources/deployments/ps296/operations/DBA470C2D7C0EDAC\",\r\n \"operationId\": \"DBA470C2D7C0EDAC\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-06-12T21:39:19.4287701Z\",\r\n \"duration\": \"PT2.9654116S\",\r\n \"trackingId\": \"d2d519e0-3aaa-4af3-9727-00518ba9e109\",\r\n \"serviceRequestId\": \"a64aecdb-986c-4e12-ba0c-e75d1cee6429\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2509/providers/Microsoft.Storage/storageAccounts/ps4924\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps4924\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4672/providers/Microsoft.Resources/deployments/ps7490/operations/8DD7552FEEF7CBA0\",\r\n \"operationId\": \"8DD7552FEEF7CBA0\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Read\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2020-06-24T21:20:19.3443629Z\",\r\n \"duration\": \"PT0.2129808S\",\r\n \"trackingId\": \"0e3d5057-28e7-4076-912f-f1f1b6652ee3\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4672/providers/Microsoft.Storage/storageAccounts/ps6072\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps6072\",\r\n \"apiVersion\": \"2019-06-01\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4672/providers/Microsoft.Resources/deployments/ps7490/operations/03F80EF18983F6CE\",\r\n \"operationId\": \"03F80EF18983F6CE\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2020-06-24T21:20:19.0679145Z\",\r\n \"duration\": \"PT22.1772285S\",\r\n \"trackingId\": \"83012f47-876a-4a56-9872-218b126168aa\",\r\n \"serviceRequestId\": \"b9c7648f-788f-4af3-a8e6-d51964801504\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4672/providers/Microsoft.Storage/storageAccounts/ps6072\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps6072\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2509/deployments/ps296/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjUwOS9kZXBsb3ltZW50cy9wczI5Ni9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4672/deployments/ps7490/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDY3Mi9kZXBsb3ltZW50cy9wczc0OTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "7212cc3c-c004-4753-9c80-49b09e72837b"
+ "8df8730f-c493-47da-aafa-669c0392afbe"
],
"Accept-Language": [
"en-US"
@@ -3831,202 +3831,13 @@
"11888"
],
"x-ms-request-id": [
- "ff850eae-835e-48b0-81a9-79650c11286d"
- ],
- "x-ms-correlation-request-id": [
- "ff850eae-835e-48b0-81a9-79650c11286d"
- ],
- "x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200612T213938Z:ff850eae-835e-48b0-81a9-79650c11286d"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Fri, 12 Jun 2020 21:39:38 GMT"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "710"
- ],
- "Retry-After": [
- "0"
- ]
- },
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2509/providers/Microsoft.Resources/deployments/ps296/operations/DBA470C2D7C0EDAC\",\r\n \"operationId\": \"DBA470C2D7C0EDAC\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-06-12T21:39:19.4287701Z\",\r\n \"duration\": \"PT2.9654116S\",\r\n \"trackingId\": \"d2d519e0-3aaa-4af3-9727-00518ba9e109\",\r\n \"serviceRequestId\": \"a64aecdb-986c-4e12-ba0c-e75d1cee6429\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2509/providers/Microsoft.Storage/storageAccounts/ps4924\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps4924\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2509/deployments/ps296/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjUwOS9kZXBsb3ltZW50cy9wczI5Ni9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "62a8f5df-f462-4f4a-8f56-663b17c6a176"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.28207.03",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11886"
- ],
- "x-ms-request-id": [
- "e53efe30-48f8-418a-96c2-d0f76c49e2e5"
- ],
- "x-ms-correlation-request-id": [
- "e53efe30-48f8-418a-96c2-d0f76c49e2e5"
- ],
- "x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200612T213939Z:e53efe30-48f8-418a-96c2-d0f76c49e2e5"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Fri, 12 Jun 2020 21:39:38 GMT"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "707"
- ],
- "Retry-After": [
- "0"
- ]
- },
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2509/providers/Microsoft.Resources/deployments/ps296/operations/DBA470C2D7C0EDAC\",\r\n \"operationId\": \"DBA470C2D7C0EDAC\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2020-06-12T21:39:39.0791606Z\",\r\n \"duration\": \"PT22.6158021S\",\r\n \"trackingId\": \"d8751602-0434-4c69-bd9f-5562451d350a\",\r\n \"serviceRequestId\": \"a64aecdb-986c-4e12-ba0c-e75d1cee6429\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2509/providers/Microsoft.Storage/storageAccounts/ps4924\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps4924\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2509/deployments/ps296/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjUwOS9kZXBsb3ltZW50cy9wczI5Ni9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "f2506152-50ca-46b6-ace2-90787c2f3bbe"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.28207.03",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11884"
- ],
- "x-ms-request-id": [
- "db731748-375f-4716-b0d3-4ba69850c0cd"
- ],
- "x-ms-correlation-request-id": [
- "db731748-375f-4716-b0d3-4ba69850c0cd"
- ],
- "x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200612T213939Z:db731748-375f-4716-b0d3-4ba69850c0cd"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Fri, 12 Jun 2020 21:39:38 GMT"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "1826"
- ],
- "Retry-After": [
- "0"
- ]
- },
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2509/providers/Microsoft.Resources/deployments/ps296/operations/98F9B35C0BE43115\",\r\n \"operationId\": \"98F9B35C0BE43115\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Read\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2020-06-12T21:39:39.3190186Z\",\r\n \"duration\": \"PT0.1950994S\",\r\n \"trackingId\": \"4afffa59-df2d-4cbb-b6e7-209556df769e\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2509/providers/Microsoft.Storage/storageAccounts/ps4924\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps4924\",\r\n \"apiVersion\": \"2019-06-01\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2509/providers/Microsoft.Resources/deployments/ps296/operations/DBA470C2D7C0EDAC\",\r\n \"operationId\": \"DBA470C2D7C0EDAC\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2020-06-12T21:39:39.0791606Z\",\r\n \"duration\": \"PT22.6158021S\",\r\n \"trackingId\": \"d8751602-0434-4c69-bd9f-5562451d350a\",\r\n \"serviceRequestId\": \"a64aecdb-986c-4e12-ba0c-e75d1cee6429\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2509/providers/Microsoft.Storage/storageAccounts/ps4924\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps4924\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2509/providers/Microsoft.Resources/deployments/ps296/operations/08586096089309966057\",\r\n \"operationId\": \"08586096089309966057\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"EvaluateDeploymentOutput\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2020-06-12T21:39:39.4404657Z\",\r\n \"duration\": \"PT0.0874309S\",\r\n \"trackingId\": \"60c0fb55-8136-4b6c-9aab-2fdf3d30d8b0\",\r\n \"statusCode\": \"OK\",\r\n \"statusMessage\": null\r\n }\r\n }\r\n ]\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2509/deployments/ps296/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjUwOS9kZXBsb3ltZW50cy9wczI5Ni9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "fd3b9026-e009-40d3-ae38-9626a0bbf557"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.28207.03",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11881"
- ],
- "x-ms-request-id": [
- "b609c003-876f-48f8-bb48-5a9de1696c41"
+ "edadeb66-26ef-40e2-8868-226cb149fc41"
],
"x-ms-correlation-request-id": [
- "b609c003-876f-48f8-bb48-5a9de1696c41"
+ "edadeb66-26ef-40e2-8868-226cb149fc41"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200612T213940Z:b609c003-876f-48f8-bb48-5a9de1696c41"
+ "NORTHCENTRALUS:20200624T212019Z:edadeb66-26ef-40e2-8868-226cb149fc41"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -4035,7 +3846,7 @@
"nosniff"
],
"Date": [
- "Fri, 12 Jun 2020 21:39:40 GMT"
+ "Wed, 24 Jun 2020 21:20:19 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -4044,23 +3855,23 @@
"-1"
],
"Content-Length": [
- "1826"
+ "1828"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2509/providers/Microsoft.Resources/deployments/ps296/operations/98F9B35C0BE43115\",\r\n \"operationId\": \"98F9B35C0BE43115\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Read\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2020-06-12T21:39:39.3190186Z\",\r\n \"duration\": \"PT0.1950994S\",\r\n \"trackingId\": \"4afffa59-df2d-4cbb-b6e7-209556df769e\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2509/providers/Microsoft.Storage/storageAccounts/ps4924\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps4924\",\r\n \"apiVersion\": \"2019-06-01\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2509/providers/Microsoft.Resources/deployments/ps296/operations/DBA470C2D7C0EDAC\",\r\n \"operationId\": \"DBA470C2D7C0EDAC\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2020-06-12T21:39:39.0791606Z\",\r\n \"duration\": \"PT22.6158021S\",\r\n \"trackingId\": \"d8751602-0434-4c69-bd9f-5562451d350a\",\r\n \"serviceRequestId\": \"a64aecdb-986c-4e12-ba0c-e75d1cee6429\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2509/providers/Microsoft.Storage/storageAccounts/ps4924\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps4924\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2509/providers/Microsoft.Resources/deployments/ps296/operations/08586096089309966057\",\r\n \"operationId\": \"08586096089309966057\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"EvaluateDeploymentOutput\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2020-06-12T21:39:39.4404657Z\",\r\n \"duration\": \"PT0.0874309S\",\r\n \"trackingId\": \"60c0fb55-8136-4b6c-9aab-2fdf3d30d8b0\",\r\n \"statusCode\": \"OK\",\r\n \"statusMessage\": null\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4672/providers/Microsoft.Resources/deployments/ps7490/operations/8DD7552FEEF7CBA0\",\r\n \"operationId\": \"8DD7552FEEF7CBA0\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Read\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2020-06-24T21:20:19.3443629Z\",\r\n \"duration\": \"PT0.2129808S\",\r\n \"trackingId\": \"0e3d5057-28e7-4076-912f-f1f1b6652ee3\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4672/providers/Microsoft.Storage/storageAccounts/ps6072\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps6072\",\r\n \"apiVersion\": \"2019-06-01\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4672/providers/Microsoft.Resources/deployments/ps7490/operations/03F80EF18983F6CE\",\r\n \"operationId\": \"03F80EF18983F6CE\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2020-06-24T21:20:19.0679145Z\",\r\n \"duration\": \"PT22.1772285S\",\r\n \"trackingId\": \"83012f47-876a-4a56-9872-218b126168aa\",\r\n \"serviceRequestId\": \"b9c7648f-788f-4af3-a8e6-d51964801504\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4672/providers/Microsoft.Storage/storageAccounts/ps6072\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps6072\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4672/providers/Microsoft.Resources/deployments/ps7490/operations/08586085732912846726\",\r\n \"operationId\": \"08586085732912846726\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"EvaluateDeploymentOutput\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2020-06-24T21:20:19.6583073Z\",\r\n \"duration\": \"PT0.281523S\",\r\n \"trackingId\": \"26bc8c25-695b-47b3-88b5-6d1c645fb0f0\",\r\n \"statusCode\": \"OK\",\r\n \"statusMessage\": null\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2509/providers/Microsoft.Resources/deployments/ps296?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjUwOS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczI5Nj9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4672/providers/Microsoft.Resources/deployments/ps7490?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDY3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczc0OTA/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "8c33d75d-578c-4076-8a56-ebb7a27da461"
+ "d2002fc7-9432-48b0-a223-ee05ec1e1fb6"
],
"Accept-Language": [
"en-US"
@@ -4086,13 +3897,13 @@
"11997"
],
"x-ms-request-id": [
- "701f354b-bf33-4602-8d7a-9f58a9f3da97"
+ "24e7ef39-68d3-4b25-9be7-04921cd96d08"
],
"x-ms-correlation-request-id": [
- "701f354b-bf33-4602-8d7a-9f58a9f3da97"
+ "24e7ef39-68d3-4b25-9be7-04921cd96d08"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200612T213916Z:701f354b-bf33-4602-8d7a-9f58a9f3da97"
+ "NORTHCENTRALUS:20200624T211956Z:24e7ef39-68d3-4b25-9be7-04921cd96d08"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -4101,7 +3912,7 @@
"nosniff"
],
"Date": [
- "Fri, 12 Jun 2020 21:39:16 GMT"
+ "Wed, 24 Jun 2020 21:19:56 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -4110,20 +3921,20 @@
"-1"
],
"Content-Length": [
- "777"
+ "779"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2509/providers/Microsoft.Resources/deployments/ps296\",\r\n \"name\": \"ps296\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps4924\"\r\n },\r\n \"storageAccountType\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n },\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"East US\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-06-12T21:39:16.3785624Z\",\r\n \"duration\": \"PT1.8975582S\",\r\n \"correlationId\": \"6e296f26-2639-41f3-9c97-bb57b5e5459a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4672/providers/Microsoft.Resources/deployments/ps7490\",\r\n \"name\": \"ps7490\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps6072\"\r\n },\r\n \"storageAccountType\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n },\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"East US\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-06-24T21:19:56.4259173Z\",\r\n \"duration\": \"PT2.2329765S\",\r\n \"correlationId\": \"495b55ab-e5a8-438a-9e1b-14f9d5c91e78\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2509/providers/Microsoft.Resources/deployments/ps296?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjUwOS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczI5Nj9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4672/providers/Microsoft.Resources/deployments/ps7490?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDY3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczc0OTA/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "c272fae9-48fc-47cc-bd70-562d3f52bb70"
+ "a1161118-9ef5-4540-afb5-418583cbe9bd"
],
"Accept-Language": [
"en-US"
@@ -4149,13 +3960,13 @@
"11995"
],
"x-ms-request-id": [
- "1022635b-70a6-406d-9963-f5b5a59c7085"
+ "94e630a4-a31e-4cd8-bfb9-a17b1ffa9f04"
],
"x-ms-correlation-request-id": [
- "1022635b-70a6-406d-9963-f5b5a59c7085"
+ "94e630a4-a31e-4cd8-bfb9-a17b1ffa9f04"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200612T213917Z:1022635b-70a6-406d-9963-f5b5a59c7085"
+ "NORTHCENTRALUS:20200624T211957Z:94e630a4-a31e-4cd8-bfb9-a17b1ffa9f04"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -4164,7 +3975,7 @@
"nosniff"
],
"Date": [
- "Fri, 12 Jun 2020 21:39:16 GMT"
+ "Wed, 24 Jun 2020 21:19:57 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -4173,20 +3984,20 @@
"-1"
],
"Content-Length": [
- "777"
+ "779"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2509/providers/Microsoft.Resources/deployments/ps296\",\r\n \"name\": \"ps296\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps4924\"\r\n },\r\n \"storageAccountType\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n },\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"East US\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-06-12T21:39:16.3785624Z\",\r\n \"duration\": \"PT1.8975582S\",\r\n \"correlationId\": \"6e296f26-2639-41f3-9c97-bb57b5e5459a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4672/providers/Microsoft.Resources/deployments/ps7490\",\r\n \"name\": \"ps7490\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps6072\"\r\n },\r\n \"storageAccountType\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n },\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"East US\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-06-24T21:19:56.4259173Z\",\r\n \"duration\": \"PT2.2329765S\",\r\n \"correlationId\": \"495b55ab-e5a8-438a-9e1b-14f9d5c91e78\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2509/providers/Microsoft.Resources/deployments/ps296?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjUwOS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczI5Nj9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4672/providers/Microsoft.Resources/deployments/ps7490?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDY3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczc0OTA/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "e710851d-3092-4fad-a95a-990729925880"
+ "3569f763-ba69-48c2-823c-a1a227b03385"
],
"Accept-Language": [
"en-US"
@@ -4212,13 +4023,13 @@
"11993"
],
"x-ms-request-id": [
- "ac2a70c1-a397-4656-ac62-ec68fcd934f0"
+ "defa8bec-558c-4da0-9257-bde417aeebcd"
],
"x-ms-correlation-request-id": [
- "ac2a70c1-a397-4656-ac62-ec68fcd934f0"
+ "defa8bec-558c-4da0-9257-bde417aeebcd"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200612T213917Z:ac2a70c1-a397-4656-ac62-ec68fcd934f0"
+ "NORTHCENTRALUS:20200624T211957Z:defa8bec-558c-4da0-9257-bde417aeebcd"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -4227,7 +4038,7 @@
"nosniff"
],
"Date": [
- "Fri, 12 Jun 2020 21:39:17 GMT"
+ "Wed, 24 Jun 2020 21:19:57 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -4236,20 +4047,20 @@
"-1"
],
"Content-Length": [
- "777"
+ "779"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2509/providers/Microsoft.Resources/deployments/ps296\",\r\n \"name\": \"ps296\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps4924\"\r\n },\r\n \"storageAccountType\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n },\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"East US\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-06-12T21:39:16.3785624Z\",\r\n \"duration\": \"PT1.8975582S\",\r\n \"correlationId\": \"6e296f26-2639-41f3-9c97-bb57b5e5459a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4672/providers/Microsoft.Resources/deployments/ps7490\",\r\n \"name\": \"ps7490\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps6072\"\r\n },\r\n \"storageAccountType\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n },\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"East US\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-06-24T21:19:56.4259173Z\",\r\n \"duration\": \"PT2.2329765S\",\r\n \"correlationId\": \"495b55ab-e5a8-438a-9e1b-14f9d5c91e78\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2509/providers/Microsoft.Resources/deployments/ps296?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjUwOS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczI5Nj9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4672/providers/Microsoft.Resources/deployments/ps7490?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDY3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczc0OTA/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "c1ae6c9f-f3e3-4df1-92ea-5036f996c4a1"
+ "ff138ac2-d672-4cf8-b4d3-a8696ea009ee"
],
"Accept-Language": [
"en-US"
@@ -4275,13 +4086,13 @@
"11991"
],
"x-ms-request-id": [
- "10bec509-7efe-4eb8-8b63-d1917b49d6ba"
+ "7df5e2d2-c663-4dec-81fe-ad1dbb0e3219"
],
"x-ms-correlation-request-id": [
- "10bec509-7efe-4eb8-8b63-d1917b49d6ba"
+ "7df5e2d2-c663-4dec-81fe-ad1dbb0e3219"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200612T213917Z:10bec509-7efe-4eb8-8b63-d1917b49d6ba"
+ "NORTHCENTRALUS:20200624T211958Z:7df5e2d2-c663-4dec-81fe-ad1dbb0e3219"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -4290,7 +4101,7 @@
"nosniff"
],
"Date": [
- "Fri, 12 Jun 2020 21:39:17 GMT"
+ "Wed, 24 Jun 2020 21:19:57 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -4299,20 +4110,20 @@
"-1"
],
"Content-Length": [
- "777"
+ "779"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2509/providers/Microsoft.Resources/deployments/ps296\",\r\n \"name\": \"ps296\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps4924\"\r\n },\r\n \"storageAccountType\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n },\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"East US\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-06-12T21:39:16.3785624Z\",\r\n \"duration\": \"PT1.8975582S\",\r\n \"correlationId\": \"6e296f26-2639-41f3-9c97-bb57b5e5459a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4672/providers/Microsoft.Resources/deployments/ps7490\",\r\n \"name\": \"ps7490\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps6072\"\r\n },\r\n \"storageAccountType\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n },\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"East US\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-06-24T21:19:56.4259173Z\",\r\n \"duration\": \"PT2.2329765S\",\r\n \"correlationId\": \"495b55ab-e5a8-438a-9e1b-14f9d5c91e78\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2509/providers/Microsoft.Resources/deployments/ps296?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjUwOS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczI5Nj9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4672/providers/Microsoft.Resources/deployments/ps7490?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDY3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczc0OTA/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "72c9e6e3-a1bd-4fd1-931d-6135332d1bea"
+ "d6514780-7823-4f15-9677-590e2e9dbf6f"
],
"Accept-Language": [
"en-US"
@@ -4338,13 +4149,13 @@
"11989"
],
"x-ms-request-id": [
- "02d24c4e-166a-4620-9d92-7578f7c8b6f1"
+ "cdee9f81-7450-4cbe-8474-eb459056e390"
],
"x-ms-correlation-request-id": [
- "02d24c4e-166a-4620-9d92-7578f7c8b6f1"
+ "cdee9f81-7450-4cbe-8474-eb459056e390"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200612T213918Z:02d24c4e-166a-4620-9d92-7578f7c8b6f1"
+ "NORTHCENTRALUS:20200624T211958Z:cdee9f81-7450-4cbe-8474-eb459056e390"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -4353,7 +4164,7 @@
"nosniff"
],
"Date": [
- "Fri, 12 Jun 2020 21:39:17 GMT"
+ "Wed, 24 Jun 2020 21:19:58 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -4362,20 +4173,20 @@
"-1"
],
"Content-Length": [
- "777"
+ "779"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2509/providers/Microsoft.Resources/deployments/ps296\",\r\n \"name\": \"ps296\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps4924\"\r\n },\r\n \"storageAccountType\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n },\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"East US\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-06-12T21:39:16.3785624Z\",\r\n \"duration\": \"PT1.8975582S\",\r\n \"correlationId\": \"6e296f26-2639-41f3-9c97-bb57b5e5459a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4672/providers/Microsoft.Resources/deployments/ps7490\",\r\n \"name\": \"ps7490\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps6072\"\r\n },\r\n \"storageAccountType\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n },\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"East US\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-06-24T21:19:56.4259173Z\",\r\n \"duration\": \"PT2.2329765S\",\r\n \"correlationId\": \"495b55ab-e5a8-438a-9e1b-14f9d5c91e78\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2509/providers/Microsoft.Resources/deployments/ps296?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjUwOS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczI5Nj9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4672/providers/Microsoft.Resources/deployments/ps7490?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDY3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczc0OTA/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "6a6a217f-cd66-462d-a17c-41a115771fdf"
+ "fb4e3cd4-9202-4457-aefd-314131839899"
],
"Accept-Language": [
"en-US"
@@ -4401,13 +4212,13 @@
"11987"
],
"x-ms-request-id": [
- "60b79989-5b05-47ec-a548-8fb4e41d21b9"
+ "a8fcdca1-5eb7-44e9-9c39-4905a0e865d9"
],
"x-ms-correlation-request-id": [
- "60b79989-5b05-47ec-a548-8fb4e41d21b9"
+ "a8fcdca1-5eb7-44e9-9c39-4905a0e865d9"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200612T213918Z:60b79989-5b05-47ec-a548-8fb4e41d21b9"
+ "NORTHCENTRALUS:20200624T211959Z:a8fcdca1-5eb7-44e9-9c39-4905a0e865d9"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -4416,7 +4227,7 @@
"nosniff"
],
"Date": [
- "Fri, 12 Jun 2020 21:39:18 GMT"
+ "Wed, 24 Jun 2020 21:19:58 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -4425,20 +4236,20 @@
"-1"
],
"Content-Length": [
- "777"
+ "779"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2509/providers/Microsoft.Resources/deployments/ps296\",\r\n \"name\": \"ps296\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps4924\"\r\n },\r\n \"storageAccountType\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n },\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"East US\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-06-12T21:39:16.3785624Z\",\r\n \"duration\": \"PT1.8975582S\",\r\n \"correlationId\": \"6e296f26-2639-41f3-9c97-bb57b5e5459a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4672/providers/Microsoft.Resources/deployments/ps7490\",\r\n \"name\": \"ps7490\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps6072\"\r\n },\r\n \"storageAccountType\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n },\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"East US\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-06-24T21:19:56.4259173Z\",\r\n \"duration\": \"PT2.2329765S\",\r\n \"correlationId\": \"495b55ab-e5a8-438a-9e1b-14f9d5c91e78\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2509/providers/Microsoft.Resources/deployments/ps296?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjUwOS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczI5Nj9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4672/providers/Microsoft.Resources/deployments/ps7490?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDY3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczc0OTA/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b46e0ac7-4e00-489f-bacc-0b0dc5b8632c"
+ "ae039641-015c-410f-ac64-5fe72f9f236f"
],
"Accept-Language": [
"en-US"
@@ -4464,13 +4275,13 @@
"11985"
],
"x-ms-request-id": [
- "4a7a1fbf-172d-49f7-b52e-f39bbf1b1a08"
+ "8b11b779-3aca-4b7f-86f2-c5601e07e749"
],
"x-ms-correlation-request-id": [
- "4a7a1fbf-172d-49f7-b52e-f39bbf1b1a08"
+ "8b11b779-3aca-4b7f-86f2-c5601e07e749"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200612T213919Z:4a7a1fbf-172d-49f7-b52e-f39bbf1b1a08"
+ "NORTHCENTRALUS:20200624T211959Z:8b11b779-3aca-4b7f-86f2-c5601e07e749"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -4479,7 +4290,7 @@
"nosniff"
],
"Date": [
- "Fri, 12 Jun 2020 21:39:18 GMT"
+ "Wed, 24 Jun 2020 21:19:59 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -4488,20 +4299,20 @@
"-1"
],
"Content-Length": [
- "777"
+ "779"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2509/providers/Microsoft.Resources/deployments/ps296\",\r\n \"name\": \"ps296\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps4924\"\r\n },\r\n \"storageAccountType\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n },\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"East US\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-06-12T21:39:16.3785624Z\",\r\n \"duration\": \"PT1.8975582S\",\r\n \"correlationId\": \"6e296f26-2639-41f3-9c97-bb57b5e5459a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4672/providers/Microsoft.Resources/deployments/ps7490\",\r\n \"name\": \"ps7490\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps6072\"\r\n },\r\n \"storageAccountType\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n },\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"East US\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-06-24T21:19:56.4259173Z\",\r\n \"duration\": \"PT2.2329765S\",\r\n \"correlationId\": \"495b55ab-e5a8-438a-9e1b-14f9d5c91e78\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2509/providers/Microsoft.Resources/deployments/ps296?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjUwOS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczI5Nj9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4672/providers/Microsoft.Resources/deployments/ps7490?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDY3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczc0OTA/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b31665bc-0c6e-443a-94da-10f350354165"
+ "d1d481eb-8dd3-4f4b-a6f2-2e5689057acb"
],
"Accept-Language": [
"en-US"
@@ -4527,13 +4338,13 @@
"11983"
],
"x-ms-request-id": [
- "80db4fa4-dcb9-467b-94d7-00f1bd0d8808"
+ "7ce5bcd6-2933-4ecb-bf32-ccb981d20e79"
],
"x-ms-correlation-request-id": [
- "80db4fa4-dcb9-467b-94d7-00f1bd0d8808"
+ "7ce5bcd6-2933-4ecb-bf32-ccb981d20e79"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200612T213919Z:80db4fa4-dcb9-467b-94d7-00f1bd0d8808"
+ "NORTHCENTRALUS:20200624T211959Z:7ce5bcd6-2933-4ecb-bf32-ccb981d20e79"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -4542,7 +4353,7 @@
"nosniff"
],
"Date": [
- "Fri, 12 Jun 2020 21:39:19 GMT"
+ "Wed, 24 Jun 2020 21:19:59 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -4551,20 +4362,20 @@
"-1"
],
"Content-Length": [
- "777"
+ "779"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2509/providers/Microsoft.Resources/deployments/ps296\",\r\n \"name\": \"ps296\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps4924\"\r\n },\r\n \"storageAccountType\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n },\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"East US\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-06-12T21:39:16.3785624Z\",\r\n \"duration\": \"PT1.8975582S\",\r\n \"correlationId\": \"6e296f26-2639-41f3-9c97-bb57b5e5459a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4672/providers/Microsoft.Resources/deployments/ps7490\",\r\n \"name\": \"ps7490\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps6072\"\r\n },\r\n \"storageAccountType\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n },\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"East US\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-06-24T21:19:56.4259173Z\",\r\n \"duration\": \"PT2.2329765S\",\r\n \"correlationId\": \"495b55ab-e5a8-438a-9e1b-14f9d5c91e78\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2509/providers/Microsoft.Resources/deployments/ps296?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjUwOS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczI5Nj9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4672/providers/Microsoft.Resources/deployments/ps7490?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDY3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczc0OTA/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "20f19594-aaed-47dd-84b9-37525683f9a2"
+ "0e8e1f43-2fcd-471b-a94d-17f4977af8fa"
],
"Accept-Language": [
"en-US"
@@ -4590,13 +4401,13 @@
"11981"
],
"x-ms-request-id": [
- "72669833-fbc9-4314-a068-d268d1dbbef6"
+ "39af014c-0476-4cc2-a718-3fe408c2419c"
],
"x-ms-correlation-request-id": [
- "72669833-fbc9-4314-a068-d268d1dbbef6"
+ "39af014c-0476-4cc2-a718-3fe408c2419c"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200612T213919Z:72669833-fbc9-4314-a068-d268d1dbbef6"
+ "NORTHCENTRALUS:20200624T212000Z:39af014c-0476-4cc2-a718-3fe408c2419c"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -4605,7 +4416,7 @@
"nosniff"
],
"Date": [
- "Fri, 12 Jun 2020 21:39:19 GMT"
+ "Wed, 24 Jun 2020 21:20:00 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -4614,20 +4425,20 @@
"-1"
],
"Content-Length": [
- "777"
+ "779"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2509/providers/Microsoft.Resources/deployments/ps296\",\r\n \"name\": \"ps296\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps4924\"\r\n },\r\n \"storageAccountType\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n },\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"East US\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-06-12T21:39:19.3168019Z\",\r\n \"duration\": \"PT4.8357977S\",\r\n \"correlationId\": \"6e296f26-2639-41f3-9c97-bb57b5e5459a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4672/providers/Microsoft.Resources/deployments/ps7490\",\r\n \"name\": \"ps7490\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps6072\"\r\n },\r\n \"storageAccountType\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n },\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"East US\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-06-24T21:19:56.4259173Z\",\r\n \"duration\": \"PT2.2329765S\",\r\n \"correlationId\": \"495b55ab-e5a8-438a-9e1b-14f9d5c91e78\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2509/providers/Microsoft.Resources/deployments/ps296?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjUwOS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczI5Nj9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4672/providers/Microsoft.Resources/deployments/ps7490?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDY3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczc0OTA/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "ddbfc6e8-52b1-4593-b209-edfba2d2fed1"
+ "7bf96227-15f8-4c54-ab59-3234f0686625"
],
"Accept-Language": [
"en-US"
@@ -4653,13 +4464,13 @@
"11979"
],
"x-ms-request-id": [
- "18a2d6ee-5645-4bd1-90ba-1d857421e682"
+ "0474069b-482a-424b-8ed6-27ca7133ef25"
],
"x-ms-correlation-request-id": [
- "18a2d6ee-5645-4bd1-90ba-1d857421e682"
+ "0474069b-482a-424b-8ed6-27ca7133ef25"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200612T213920Z:18a2d6ee-5645-4bd1-90ba-1d857421e682"
+ "NORTHCENTRALUS:20200624T212000Z:0474069b-482a-424b-8ed6-27ca7133ef25"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -4668,7 +4479,7 @@
"nosniff"
],
"Date": [
- "Fri, 12 Jun 2020 21:39:19 GMT"
+ "Wed, 24 Jun 2020 21:20:00 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -4677,20 +4488,20 @@
"-1"
],
"Content-Length": [
- "777"
+ "779"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2509/providers/Microsoft.Resources/deployments/ps296\",\r\n \"name\": \"ps296\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps4924\"\r\n },\r\n \"storageAccountType\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n },\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"East US\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-06-12T21:39:19.3168019Z\",\r\n \"duration\": \"PT4.8357977S\",\r\n \"correlationId\": \"6e296f26-2639-41f3-9c97-bb57b5e5459a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4672/providers/Microsoft.Resources/deployments/ps7490\",\r\n \"name\": \"ps7490\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps6072\"\r\n },\r\n \"storageAccountType\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n },\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"East US\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-06-24T21:20:00.4738567Z\",\r\n \"duration\": \"PT6.2809159S\",\r\n \"correlationId\": \"495b55ab-e5a8-438a-9e1b-14f9d5c91e78\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2509/providers/Microsoft.Resources/deployments/ps296?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjUwOS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczI5Nj9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4672/providers/Microsoft.Resources/deployments/ps7490?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDY3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczc0OTA/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "428ec829-def0-4912-92ec-573b94438dcf"
+ "8a84566f-0dce-4ac6-90fb-13edf2b6812b"
],
"Accept-Language": [
"en-US"
@@ -4716,13 +4527,13 @@
"11977"
],
"x-ms-request-id": [
- "5828d1a0-0bbe-436d-9c48-c654a0c179c3"
+ "10f2e98d-6f7d-498d-a4ea-38e76bd901fb"
],
"x-ms-correlation-request-id": [
- "5828d1a0-0bbe-436d-9c48-c654a0c179c3"
+ "10f2e98d-6f7d-498d-a4ea-38e76bd901fb"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200612T213920Z:5828d1a0-0bbe-436d-9c48-c654a0c179c3"
+ "NORTHCENTRALUS:20200624T212001Z:10f2e98d-6f7d-498d-a4ea-38e76bd901fb"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -4731,7 +4542,7 @@
"nosniff"
],
"Date": [
- "Fri, 12 Jun 2020 21:39:20 GMT"
+ "Wed, 24 Jun 2020 21:20:00 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -4740,20 +4551,20 @@
"-1"
],
"Content-Length": [
- "777"
+ "779"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2509/providers/Microsoft.Resources/deployments/ps296\",\r\n \"name\": \"ps296\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps4924\"\r\n },\r\n \"storageAccountType\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n },\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"East US\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-06-12T21:39:19.3168019Z\",\r\n \"duration\": \"PT4.8357977S\",\r\n \"correlationId\": \"6e296f26-2639-41f3-9c97-bb57b5e5459a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4672/providers/Microsoft.Resources/deployments/ps7490\",\r\n \"name\": \"ps7490\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps6072\"\r\n },\r\n \"storageAccountType\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n },\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"East US\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-06-24T21:20:00.4738567Z\",\r\n \"duration\": \"PT6.2809159S\",\r\n \"correlationId\": \"495b55ab-e5a8-438a-9e1b-14f9d5c91e78\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2509/providers/Microsoft.Resources/deployments/ps296?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjUwOS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczI5Nj9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4672/providers/Microsoft.Resources/deployments/ps7490?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDY3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczc0OTA/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "16cf8d1c-2220-4b51-9db8-2f224bc8184d"
+ "e895ca76-c49a-4ba9-b0e1-40968f0cb8f0"
],
"Accept-Language": [
"en-US"
@@ -4779,13 +4590,13 @@
"11975"
],
"x-ms-request-id": [
- "e4c08539-8361-4b4f-9825-4b62ba3c36c7"
+ "930ad133-adfc-4f88-8a5f-c583cdd22029"
],
"x-ms-correlation-request-id": [
- "e4c08539-8361-4b4f-9825-4b62ba3c36c7"
+ "930ad133-adfc-4f88-8a5f-c583cdd22029"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200612T213921Z:e4c08539-8361-4b4f-9825-4b62ba3c36c7"
+ "NORTHCENTRALUS:20200624T212001Z:930ad133-adfc-4f88-8a5f-c583cdd22029"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -4794,7 +4605,7 @@
"nosniff"
],
"Date": [
- "Fri, 12 Jun 2020 21:39:20 GMT"
+ "Wed, 24 Jun 2020 21:20:01 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -4803,20 +4614,20 @@
"-1"
],
"Content-Length": [
- "777"
+ "779"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2509/providers/Microsoft.Resources/deployments/ps296\",\r\n \"name\": \"ps296\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps4924\"\r\n },\r\n \"storageAccountType\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n },\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"East US\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-06-12T21:39:19.3168019Z\",\r\n \"duration\": \"PT4.8357977S\",\r\n \"correlationId\": \"6e296f26-2639-41f3-9c97-bb57b5e5459a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4672/providers/Microsoft.Resources/deployments/ps7490\",\r\n \"name\": \"ps7490\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps6072\"\r\n },\r\n \"storageAccountType\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n },\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"East US\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-06-24T21:20:00.4738567Z\",\r\n \"duration\": \"PT6.2809159S\",\r\n \"correlationId\": \"495b55ab-e5a8-438a-9e1b-14f9d5c91e78\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2509/providers/Microsoft.Resources/deployments/ps296?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjUwOS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczI5Nj9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4672/providers/Microsoft.Resources/deployments/ps7490?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDY3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczc0OTA/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "0898b7b2-3e90-4db5-921f-5d6ddfc8fed6"
+ "ba9f3a7e-567e-4af0-8821-4f66f9b0e611"
],
"Accept-Language": [
"en-US"
@@ -4842,13 +4653,13 @@
"11973"
],
"x-ms-request-id": [
- "a44a444b-782f-4311-ada4-e972bfa7fd6f"
+ "92303df7-4e0f-463e-99c5-5b8c29531c41"
],
"x-ms-correlation-request-id": [
- "a44a444b-782f-4311-ada4-e972bfa7fd6f"
+ "92303df7-4e0f-463e-99c5-5b8c29531c41"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200612T213921Z:a44a444b-782f-4311-ada4-e972bfa7fd6f"
+ "NORTHCENTRALUS:20200624T212002Z:92303df7-4e0f-463e-99c5-5b8c29531c41"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -4857,7 +4668,7 @@
"nosniff"
],
"Date": [
- "Fri, 12 Jun 2020 21:39:21 GMT"
+ "Wed, 24 Jun 2020 21:20:01 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -4866,20 +4677,20 @@
"-1"
],
"Content-Length": [
- "777"
+ "779"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2509/providers/Microsoft.Resources/deployments/ps296\",\r\n \"name\": \"ps296\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps4924\"\r\n },\r\n \"storageAccountType\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n },\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"East US\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-06-12T21:39:19.3168019Z\",\r\n \"duration\": \"PT4.8357977S\",\r\n \"correlationId\": \"6e296f26-2639-41f3-9c97-bb57b5e5459a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4672/providers/Microsoft.Resources/deployments/ps7490\",\r\n \"name\": \"ps7490\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps6072\"\r\n },\r\n \"storageAccountType\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n },\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"East US\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-06-24T21:20:00.4738567Z\",\r\n \"duration\": \"PT6.2809159S\",\r\n \"correlationId\": \"495b55ab-e5a8-438a-9e1b-14f9d5c91e78\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2509/providers/Microsoft.Resources/deployments/ps296?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjUwOS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczI5Nj9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4672/providers/Microsoft.Resources/deployments/ps7490?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDY3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczc0OTA/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "1a5a1090-d5d2-4237-a0c2-1dcff280953a"
+ "33bdca88-2c04-4e32-93ee-6e3095ea6918"
],
"Accept-Language": [
"en-US"
@@ -4905,13 +4716,13 @@
"11971"
],
"x-ms-request-id": [
- "bc631872-9a15-465b-95dc-7e87f47f30d6"
+ "11f4071a-9253-429e-9866-9818bd6e55c9"
],
"x-ms-correlation-request-id": [
- "bc631872-9a15-465b-95dc-7e87f47f30d6"
+ "11f4071a-9253-429e-9866-9818bd6e55c9"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200612T213921Z:bc631872-9a15-465b-95dc-7e87f47f30d6"
+ "NORTHCENTRALUS:20200624T212002Z:11f4071a-9253-429e-9866-9818bd6e55c9"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -4920,7 +4731,7 @@
"nosniff"
],
"Date": [
- "Fri, 12 Jun 2020 21:39:21 GMT"
+ "Wed, 24 Jun 2020 21:20:02 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -4929,20 +4740,20 @@
"-1"
],
"Content-Length": [
- "777"
+ "779"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2509/providers/Microsoft.Resources/deployments/ps296\",\r\n \"name\": \"ps296\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps4924\"\r\n },\r\n \"storageAccountType\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n },\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"East US\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-06-12T21:39:19.3168019Z\",\r\n \"duration\": \"PT4.8357977S\",\r\n \"correlationId\": \"6e296f26-2639-41f3-9c97-bb57b5e5459a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4672/providers/Microsoft.Resources/deployments/ps7490\",\r\n \"name\": \"ps7490\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps6072\"\r\n },\r\n \"storageAccountType\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n },\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"East US\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-06-24T21:20:00.4738567Z\",\r\n \"duration\": \"PT6.2809159S\",\r\n \"correlationId\": \"495b55ab-e5a8-438a-9e1b-14f9d5c91e78\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2509/providers/Microsoft.Resources/deployments/ps296?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjUwOS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczI5Nj9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4672/providers/Microsoft.Resources/deployments/ps7490?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDY3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczc0OTA/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "c439d7de-909e-415f-9a0a-b897f49ba313"
+ "d0739ff9-f409-448c-a725-4adc20ceb3d0"
],
"Accept-Language": [
"en-US"
@@ -4968,13 +4779,13 @@
"11969"
],
"x-ms-request-id": [
- "16709400-72e7-44ac-aac2-f13d7e5a8470"
+ "3ddd46a8-5412-42dc-ab96-1577e2279be9"
],
"x-ms-correlation-request-id": [
- "16709400-72e7-44ac-aac2-f13d7e5a8470"
+ "3ddd46a8-5412-42dc-ab96-1577e2279be9"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200612T213922Z:16709400-72e7-44ac-aac2-f13d7e5a8470"
+ "NORTHCENTRALUS:20200624T212002Z:3ddd46a8-5412-42dc-ab96-1577e2279be9"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -4983,7 +4794,7 @@
"nosniff"
],
"Date": [
- "Fri, 12 Jun 2020 21:39:21 GMT"
+ "Wed, 24 Jun 2020 21:20:02 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -4992,20 +4803,20 @@
"-1"
],
"Content-Length": [
- "777"
+ "779"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2509/providers/Microsoft.Resources/deployments/ps296\",\r\n \"name\": \"ps296\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps4924\"\r\n },\r\n \"storageAccountType\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n },\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"East US\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-06-12T21:39:19.3168019Z\",\r\n \"duration\": \"PT4.8357977S\",\r\n \"correlationId\": \"6e296f26-2639-41f3-9c97-bb57b5e5459a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4672/providers/Microsoft.Resources/deployments/ps7490\",\r\n \"name\": \"ps7490\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps6072\"\r\n },\r\n \"storageAccountType\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n },\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"East US\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-06-24T21:20:00.4738567Z\",\r\n \"duration\": \"PT6.2809159S\",\r\n \"correlationId\": \"495b55ab-e5a8-438a-9e1b-14f9d5c91e78\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2509/providers/Microsoft.Resources/deployments/ps296?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjUwOS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczI5Nj9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4672/providers/Microsoft.Resources/deployments/ps7490?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDY3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczc0OTA/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "9915563d-deaa-426b-98b5-5abefb0fd21f"
+ "14d831d0-55d7-4115-be9d-e662f175bc74"
],
"Accept-Language": [
"en-US"
@@ -5031,13 +4842,13 @@
"11967"
],
"x-ms-request-id": [
- "84065764-9d30-456e-8655-9d6c937eaa6a"
+ "0abf4a13-2211-4c5c-b3ed-418661cd244f"
],
"x-ms-correlation-request-id": [
- "84065764-9d30-456e-8655-9d6c937eaa6a"
+ "0abf4a13-2211-4c5c-b3ed-418661cd244f"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200612T213922Z:84065764-9d30-456e-8655-9d6c937eaa6a"
+ "NORTHCENTRALUS:20200624T212003Z:0abf4a13-2211-4c5c-b3ed-418661cd244f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -5046,7 +4857,7 @@
"nosniff"
],
"Date": [
- "Fri, 12 Jun 2020 21:39:22 GMT"
+ "Wed, 24 Jun 2020 21:20:02 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -5055,20 +4866,20 @@
"-1"
],
"Content-Length": [
- "777"
+ "779"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2509/providers/Microsoft.Resources/deployments/ps296\",\r\n \"name\": \"ps296\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps4924\"\r\n },\r\n \"storageAccountType\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n },\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"East US\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-06-12T21:39:19.3168019Z\",\r\n \"duration\": \"PT4.8357977S\",\r\n \"correlationId\": \"6e296f26-2639-41f3-9c97-bb57b5e5459a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4672/providers/Microsoft.Resources/deployments/ps7490\",\r\n \"name\": \"ps7490\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps6072\"\r\n },\r\n \"storageAccountType\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n },\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"East US\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-06-24T21:20:00.4738567Z\",\r\n \"duration\": \"PT6.2809159S\",\r\n \"correlationId\": \"495b55ab-e5a8-438a-9e1b-14f9d5c91e78\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2509/providers/Microsoft.Resources/deployments/ps296?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjUwOS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczI5Nj9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4672/providers/Microsoft.Resources/deployments/ps7490?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDY3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczc0OTA/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "15808994-4ef0-45f3-a0f7-7b71fc93cadf"
+ "e5c8659c-a08c-488d-9a11-a7ca90447ddf"
],
"Accept-Language": [
"en-US"
@@ -5094,13 +4905,13 @@
"11965"
],
"x-ms-request-id": [
- "98903463-d71c-4022-aceb-651f7910c857"
+ "b9a9690a-4cc7-404c-89ea-fc53cc864d15"
],
"x-ms-correlation-request-id": [
- "98903463-d71c-4022-aceb-651f7910c857"
+ "b9a9690a-4cc7-404c-89ea-fc53cc864d15"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200612T213923Z:98903463-d71c-4022-aceb-651f7910c857"
+ "NORTHCENTRALUS:20200624T212003Z:b9a9690a-4cc7-404c-89ea-fc53cc864d15"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -5109,7 +4920,7 @@
"nosniff"
],
"Date": [
- "Fri, 12 Jun 2020 21:39:22 GMT"
+ "Wed, 24 Jun 2020 21:20:03 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -5118,20 +4929,20 @@
"-1"
],
"Content-Length": [
- "777"
+ "779"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2509/providers/Microsoft.Resources/deployments/ps296\",\r\n \"name\": \"ps296\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps4924\"\r\n },\r\n \"storageAccountType\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n },\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"East US\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-06-12T21:39:19.3168019Z\",\r\n \"duration\": \"PT4.8357977S\",\r\n \"correlationId\": \"6e296f26-2639-41f3-9c97-bb57b5e5459a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4672/providers/Microsoft.Resources/deployments/ps7490\",\r\n \"name\": \"ps7490\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps6072\"\r\n },\r\n \"storageAccountType\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n },\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"East US\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-06-24T21:20:00.4738567Z\",\r\n \"duration\": \"PT6.2809159S\",\r\n \"correlationId\": \"495b55ab-e5a8-438a-9e1b-14f9d5c91e78\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2509/providers/Microsoft.Resources/deployments/ps296?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjUwOS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczI5Nj9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4672/providers/Microsoft.Resources/deployments/ps7490?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDY3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczc0OTA/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "734552b7-e43e-454f-8673-2098855445ac"
+ "64feec33-b73f-4d73-87eb-ea1e1b205ccd"
],
"Accept-Language": [
"en-US"
@@ -5157,13 +4968,13 @@
"11963"
],
"x-ms-request-id": [
- "1e42209c-2570-46ef-9abe-8e06994138f4"
+ "fd3cd04a-4a8c-4e8b-aecc-a79c7fc458ee"
],
"x-ms-correlation-request-id": [
- "1e42209c-2570-46ef-9abe-8e06994138f4"
+ "fd3cd04a-4a8c-4e8b-aecc-a79c7fc458ee"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200612T213923Z:1e42209c-2570-46ef-9abe-8e06994138f4"
+ "NORTHCENTRALUS:20200624T212004Z:fd3cd04a-4a8c-4e8b-aecc-a79c7fc458ee"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -5172,7 +4983,7 @@
"nosniff"
],
"Date": [
- "Fri, 12 Jun 2020 21:39:23 GMT"
+ "Wed, 24 Jun 2020 21:20:03 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -5181,20 +4992,20 @@
"-1"
],
"Content-Length": [
- "777"
+ "779"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2509/providers/Microsoft.Resources/deployments/ps296\",\r\n \"name\": \"ps296\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps4924\"\r\n },\r\n \"storageAccountType\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n },\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"East US\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-06-12T21:39:19.3168019Z\",\r\n \"duration\": \"PT4.8357977S\",\r\n \"correlationId\": \"6e296f26-2639-41f3-9c97-bb57b5e5459a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4672/providers/Microsoft.Resources/deployments/ps7490\",\r\n \"name\": \"ps7490\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps6072\"\r\n },\r\n \"storageAccountType\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n },\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"East US\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-06-24T21:20:00.4738567Z\",\r\n \"duration\": \"PT6.2809159S\",\r\n \"correlationId\": \"495b55ab-e5a8-438a-9e1b-14f9d5c91e78\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2509/providers/Microsoft.Resources/deployments/ps296?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjUwOS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczI5Nj9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4672/providers/Microsoft.Resources/deployments/ps7490?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDY3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczc0OTA/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "2e6a34a5-5bb0-4eef-99e6-d178911f1b1b"
+ "8f9aadaf-e5a7-4aa8-abab-935f15e86a0e"
],
"Accept-Language": [
"en-US"
@@ -5220,13 +5031,13 @@
"11961"
],
"x-ms-request-id": [
- "a6e91b09-6f3c-493e-9827-e3db715847d8"
+ "5b175a64-789f-4178-94a9-955683b263cc"
],
"x-ms-correlation-request-id": [
- "a6e91b09-6f3c-493e-9827-e3db715847d8"
+ "5b175a64-789f-4178-94a9-955683b263cc"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200612T213923Z:a6e91b09-6f3c-493e-9827-e3db715847d8"
+ "NORTHCENTRALUS:20200624T212004Z:5b175a64-789f-4178-94a9-955683b263cc"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -5235,7 +5046,7 @@
"nosniff"
],
"Date": [
- "Fri, 12 Jun 2020 21:39:23 GMT"
+ "Wed, 24 Jun 2020 21:20:04 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -5244,20 +5055,20 @@
"-1"
],
"Content-Length": [
- "777"
+ "779"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2509/providers/Microsoft.Resources/deployments/ps296\",\r\n \"name\": \"ps296\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps4924\"\r\n },\r\n \"storageAccountType\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n },\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"East US\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-06-12T21:39:19.3168019Z\",\r\n \"duration\": \"PT4.8357977S\",\r\n \"correlationId\": \"6e296f26-2639-41f3-9c97-bb57b5e5459a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4672/providers/Microsoft.Resources/deployments/ps7490\",\r\n \"name\": \"ps7490\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps6072\"\r\n },\r\n \"storageAccountType\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n },\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"East US\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-06-24T21:20:00.4738567Z\",\r\n \"duration\": \"PT6.2809159S\",\r\n \"correlationId\": \"495b55ab-e5a8-438a-9e1b-14f9d5c91e78\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2509/providers/Microsoft.Resources/deployments/ps296?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjUwOS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczI5Nj9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4672/providers/Microsoft.Resources/deployments/ps7490?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDY3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczc0OTA/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "5bfa73a5-9292-4c79-9eeb-01f393300ab6"
+ "5b18526f-76ae-493a-b1b0-43c8a81c742e"
],
"Accept-Language": [
"en-US"
@@ -5283,13 +5094,13 @@
"11959"
],
"x-ms-request-id": [
- "8f4772b7-db7e-4459-888a-0293af8cf9a9"
+ "8dd7f7ba-486d-4b8e-877d-2dea62ca3484"
],
"x-ms-correlation-request-id": [
- "8f4772b7-db7e-4459-888a-0293af8cf9a9"
+ "8dd7f7ba-486d-4b8e-877d-2dea62ca3484"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200612T213924Z:8f4772b7-db7e-4459-888a-0293af8cf9a9"
+ "NORTHCENTRALUS:20200624T212005Z:8dd7f7ba-486d-4b8e-877d-2dea62ca3484"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -5298,7 +5109,7 @@
"nosniff"
],
"Date": [
- "Fri, 12 Jun 2020 21:39:23 GMT"
+ "Wed, 24 Jun 2020 21:20:04 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -5307,20 +5118,20 @@
"-1"
],
"Content-Length": [
- "777"
+ "779"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2509/providers/Microsoft.Resources/deployments/ps296\",\r\n \"name\": \"ps296\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps4924\"\r\n },\r\n \"storageAccountType\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n },\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"East US\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-06-12T21:39:19.3168019Z\",\r\n \"duration\": \"PT4.8357977S\",\r\n \"correlationId\": \"6e296f26-2639-41f3-9c97-bb57b5e5459a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4672/providers/Microsoft.Resources/deployments/ps7490\",\r\n \"name\": \"ps7490\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps6072\"\r\n },\r\n \"storageAccountType\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n },\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"East US\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-06-24T21:20:00.4738567Z\",\r\n \"duration\": \"PT6.2809159S\",\r\n \"correlationId\": \"495b55ab-e5a8-438a-9e1b-14f9d5c91e78\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2509/providers/Microsoft.Resources/deployments/ps296?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjUwOS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczI5Nj9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4672/providers/Microsoft.Resources/deployments/ps7490?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDY3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczc0OTA/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "22135c84-90ec-45c4-99df-c77eba2daed5"
+ "501641af-a31e-459a-a7f4-4cfbc71a6d2f"
],
"Accept-Language": [
"en-US"
@@ -5346,13 +5157,13 @@
"11957"
],
"x-ms-request-id": [
- "c5b08c95-e2be-4c47-ba83-de142d2fd393"
+ "622472df-2d9a-4e13-a472-8bc51e3a64fe"
],
"x-ms-correlation-request-id": [
- "c5b08c95-e2be-4c47-ba83-de142d2fd393"
+ "622472df-2d9a-4e13-a472-8bc51e3a64fe"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200612T213924Z:c5b08c95-e2be-4c47-ba83-de142d2fd393"
+ "NORTHCENTRALUS:20200624T212005Z:622472df-2d9a-4e13-a472-8bc51e3a64fe"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -5361,7 +5172,7 @@
"nosniff"
],
"Date": [
- "Fri, 12 Jun 2020 21:39:24 GMT"
+ "Wed, 24 Jun 2020 21:20:04 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -5370,20 +5181,20 @@
"-1"
],
"Content-Length": [
- "777"
+ "779"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2509/providers/Microsoft.Resources/deployments/ps296\",\r\n \"name\": \"ps296\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps4924\"\r\n },\r\n \"storageAccountType\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n },\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"East US\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-06-12T21:39:19.3168019Z\",\r\n \"duration\": \"PT4.8357977S\",\r\n \"correlationId\": \"6e296f26-2639-41f3-9c97-bb57b5e5459a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4672/providers/Microsoft.Resources/deployments/ps7490\",\r\n \"name\": \"ps7490\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps6072\"\r\n },\r\n \"storageAccountType\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n },\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"East US\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-06-24T21:20:00.4738567Z\",\r\n \"duration\": \"PT6.2809159S\",\r\n \"correlationId\": \"495b55ab-e5a8-438a-9e1b-14f9d5c91e78\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2509/providers/Microsoft.Resources/deployments/ps296?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjUwOS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczI5Nj9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4672/providers/Microsoft.Resources/deployments/ps7490?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDY3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczc0OTA/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "c9711169-8a3a-4e2b-aad2-626f3ad83f08"
+ "779ef927-2b1e-481f-b215-08f36cb08823"
],
"Accept-Language": [
"en-US"
@@ -5409,13 +5220,13 @@
"11955"
],
"x-ms-request-id": [
- "8171517b-a0a3-49dd-920d-ffdadc8ba3a4"
+ "87067072-dab0-44fb-b651-20caf5ef4262"
],
"x-ms-correlation-request-id": [
- "8171517b-a0a3-49dd-920d-ffdadc8ba3a4"
+ "87067072-dab0-44fb-b651-20caf5ef4262"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200612T213925Z:8171517b-a0a3-49dd-920d-ffdadc8ba3a4"
+ "NORTHCENTRALUS:20200624T212005Z:87067072-dab0-44fb-b651-20caf5ef4262"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -5424,7 +5235,7 @@
"nosniff"
],
"Date": [
- "Fri, 12 Jun 2020 21:39:24 GMT"
+ "Wed, 24 Jun 2020 21:20:05 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -5433,20 +5244,20 @@
"-1"
],
"Content-Length": [
- "777"
+ "779"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2509/providers/Microsoft.Resources/deployments/ps296\",\r\n \"name\": \"ps296\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps4924\"\r\n },\r\n \"storageAccountType\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n },\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"East US\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-06-12T21:39:19.3168019Z\",\r\n \"duration\": \"PT4.8357977S\",\r\n \"correlationId\": \"6e296f26-2639-41f3-9c97-bb57b5e5459a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4672/providers/Microsoft.Resources/deployments/ps7490\",\r\n \"name\": \"ps7490\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps6072\"\r\n },\r\n \"storageAccountType\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n },\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"East US\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-06-24T21:20:00.4738567Z\",\r\n \"duration\": \"PT6.2809159S\",\r\n \"correlationId\": \"495b55ab-e5a8-438a-9e1b-14f9d5c91e78\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2509/providers/Microsoft.Resources/deployments/ps296?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjUwOS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczI5Nj9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4672/providers/Microsoft.Resources/deployments/ps7490?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDY3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczc0OTA/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "00fc4f34-128e-4ec5-8c66-80da56084953"
+ "0290d4e3-5ec2-4155-87ca-77907f4f114c"
],
"Accept-Language": [
"en-US"
@@ -5472,13 +5283,13 @@
"11953"
],
"x-ms-request-id": [
- "9fa56238-2aaa-4773-b941-319af778806e"
+ "bcf9e3cb-34e7-4cde-82b8-7efc6ce20de5"
],
"x-ms-correlation-request-id": [
- "9fa56238-2aaa-4773-b941-319af778806e"
+ "bcf9e3cb-34e7-4cde-82b8-7efc6ce20de5"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200612T213925Z:9fa56238-2aaa-4773-b941-319af778806e"
+ "NORTHCENTRALUS:20200624T212006Z:bcf9e3cb-34e7-4cde-82b8-7efc6ce20de5"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -5487,7 +5298,7 @@
"nosniff"
],
"Date": [
- "Fri, 12 Jun 2020 21:39:25 GMT"
+ "Wed, 24 Jun 2020 21:20:05 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -5496,20 +5307,20 @@
"-1"
],
"Content-Length": [
- "777"
+ "779"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2509/providers/Microsoft.Resources/deployments/ps296\",\r\n \"name\": \"ps296\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps4924\"\r\n },\r\n \"storageAccountType\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n },\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"East US\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-06-12T21:39:19.3168019Z\",\r\n \"duration\": \"PT4.8357977S\",\r\n \"correlationId\": \"6e296f26-2639-41f3-9c97-bb57b5e5459a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4672/providers/Microsoft.Resources/deployments/ps7490\",\r\n \"name\": \"ps7490\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps6072\"\r\n },\r\n \"storageAccountType\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n },\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"East US\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-06-24T21:20:00.4738567Z\",\r\n \"duration\": \"PT6.2809159S\",\r\n \"correlationId\": \"495b55ab-e5a8-438a-9e1b-14f9d5c91e78\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2509/providers/Microsoft.Resources/deployments/ps296?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjUwOS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczI5Nj9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4672/providers/Microsoft.Resources/deployments/ps7490?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDY3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczc0OTA/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "3c79334c-a31c-4f6a-bf9a-4a6e0fc8c9dd"
+ "a6af4165-f129-4124-ae6a-d1345bafba72"
],
"Accept-Language": [
"en-US"
@@ -5535,13 +5346,13 @@
"11951"
],
"x-ms-request-id": [
- "c135f451-be19-4368-ac83-85492616f9ff"
+ "0ca1abfb-35bc-4637-98d5-21ea3d78ba60"
],
"x-ms-correlation-request-id": [
- "c135f451-be19-4368-ac83-85492616f9ff"
+ "0ca1abfb-35bc-4637-98d5-21ea3d78ba60"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200612T213926Z:c135f451-be19-4368-ac83-85492616f9ff"
+ "NORTHCENTRALUS:20200624T212006Z:0ca1abfb-35bc-4637-98d5-21ea3d78ba60"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -5550,7 +5361,7 @@
"nosniff"
],
"Date": [
- "Fri, 12 Jun 2020 21:39:25 GMT"
+ "Wed, 24 Jun 2020 21:20:06 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -5559,20 +5370,20 @@
"-1"
],
"Content-Length": [
- "777"
+ "779"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2509/providers/Microsoft.Resources/deployments/ps296\",\r\n \"name\": \"ps296\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps4924\"\r\n },\r\n \"storageAccountType\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n },\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"East US\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-06-12T21:39:19.3168019Z\",\r\n \"duration\": \"PT4.8357977S\",\r\n \"correlationId\": \"6e296f26-2639-41f3-9c97-bb57b5e5459a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4672/providers/Microsoft.Resources/deployments/ps7490\",\r\n \"name\": \"ps7490\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps6072\"\r\n },\r\n \"storageAccountType\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n },\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"East US\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-06-24T21:20:00.4738567Z\",\r\n \"duration\": \"PT6.2809159S\",\r\n \"correlationId\": \"495b55ab-e5a8-438a-9e1b-14f9d5c91e78\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2509/providers/Microsoft.Resources/deployments/ps296?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjUwOS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczI5Nj9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4672/providers/Microsoft.Resources/deployments/ps7490?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDY3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczc0OTA/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "e36f30b7-f5b7-45c4-9166-44e744772375"
+ "192196c5-ccd9-4cee-8fe9-2037bdd9313a"
],
"Accept-Language": [
"en-US"
@@ -5598,13 +5409,13 @@
"11949"
],
"x-ms-request-id": [
- "13627178-5271-4c49-b69a-a0d5d39f3f09"
+ "ad62f89d-ffb9-481c-9e84-9b2434567018"
],
"x-ms-correlation-request-id": [
- "13627178-5271-4c49-b69a-a0d5d39f3f09"
+ "ad62f89d-ffb9-481c-9e84-9b2434567018"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200612T213926Z:13627178-5271-4c49-b69a-a0d5d39f3f09"
+ "NORTHCENTRALUS:20200624T212007Z:ad62f89d-ffb9-481c-9e84-9b2434567018"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -5613,7 +5424,7 @@
"nosniff"
],
"Date": [
- "Fri, 12 Jun 2020 21:39:25 GMT"
+ "Wed, 24 Jun 2020 21:20:06 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -5622,20 +5433,20 @@
"-1"
],
"Content-Length": [
- "777"
+ "779"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2509/providers/Microsoft.Resources/deployments/ps296\",\r\n \"name\": \"ps296\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps4924\"\r\n },\r\n \"storageAccountType\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n },\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"East US\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-06-12T21:39:19.3168019Z\",\r\n \"duration\": \"PT4.8357977S\",\r\n \"correlationId\": \"6e296f26-2639-41f3-9c97-bb57b5e5459a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4672/providers/Microsoft.Resources/deployments/ps7490\",\r\n \"name\": \"ps7490\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps6072\"\r\n },\r\n \"storageAccountType\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n },\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"East US\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-06-24T21:20:00.4738567Z\",\r\n \"duration\": \"PT6.2809159S\",\r\n \"correlationId\": \"495b55ab-e5a8-438a-9e1b-14f9d5c91e78\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2509/providers/Microsoft.Resources/deployments/ps296?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjUwOS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczI5Nj9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4672/providers/Microsoft.Resources/deployments/ps7490?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDY3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczc0OTA/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "0a895cb3-b46b-416d-88e6-f854513646d3"
+ "4d8a8f4b-14d8-4a0b-b72c-ae4d61839933"
],
"Accept-Language": [
"en-US"
@@ -5661,13 +5472,13 @@
"11947"
],
"x-ms-request-id": [
- "317ef2ab-f6e3-4912-a54a-5a7b470975d1"
+ "74074fe0-8283-4b86-9117-3a9e794f8820"
],
"x-ms-correlation-request-id": [
- "317ef2ab-f6e3-4912-a54a-5a7b470975d1"
+ "74074fe0-8283-4b86-9117-3a9e794f8820"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200612T213926Z:317ef2ab-f6e3-4912-a54a-5a7b470975d1"
+ "NORTHCENTRALUS:20200624T212007Z:74074fe0-8283-4b86-9117-3a9e794f8820"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -5676,7 +5487,7 @@
"nosniff"
],
"Date": [
- "Fri, 12 Jun 2020 21:39:26 GMT"
+ "Wed, 24 Jun 2020 21:20:07 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -5685,20 +5496,20 @@
"-1"
],
"Content-Length": [
- "777"
+ "779"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2509/providers/Microsoft.Resources/deployments/ps296\",\r\n \"name\": \"ps296\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps4924\"\r\n },\r\n \"storageAccountType\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n },\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"East US\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-06-12T21:39:19.3168019Z\",\r\n \"duration\": \"PT4.8357977S\",\r\n \"correlationId\": \"6e296f26-2639-41f3-9c97-bb57b5e5459a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4672/providers/Microsoft.Resources/deployments/ps7490\",\r\n \"name\": \"ps7490\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps6072\"\r\n },\r\n \"storageAccountType\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n },\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"East US\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-06-24T21:20:00.4738567Z\",\r\n \"duration\": \"PT6.2809159S\",\r\n \"correlationId\": \"495b55ab-e5a8-438a-9e1b-14f9d5c91e78\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2509/providers/Microsoft.Resources/deployments/ps296?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjUwOS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczI5Nj9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4672/providers/Microsoft.Resources/deployments/ps7490?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDY3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczc0OTA/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "af25289d-612c-47f6-8933-e6b15268ea72"
+ "cd260906-89b5-4780-bb22-6b772f3975e2"
],
"Accept-Language": [
"en-US"
@@ -5724,13 +5535,13 @@
"11945"
],
"x-ms-request-id": [
- "3973cc2b-4fc6-4172-87b8-b0f9161624d2"
+ "a46b45be-92f7-448b-82f8-94a8b0d1db9d"
],
"x-ms-correlation-request-id": [
- "3973cc2b-4fc6-4172-87b8-b0f9161624d2"
+ "a46b45be-92f7-448b-82f8-94a8b0d1db9d"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200612T213927Z:3973cc2b-4fc6-4172-87b8-b0f9161624d2"
+ "NORTHCENTRALUS:20200624T212007Z:a46b45be-92f7-448b-82f8-94a8b0d1db9d"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -5739,7 +5550,7 @@
"nosniff"
],
"Date": [
- "Fri, 12 Jun 2020 21:39:26 GMT"
+ "Wed, 24 Jun 2020 21:20:07 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -5748,20 +5559,20 @@
"-1"
],
"Content-Length": [
- "777"
+ "779"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2509/providers/Microsoft.Resources/deployments/ps296\",\r\n \"name\": \"ps296\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps4924\"\r\n },\r\n \"storageAccountType\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n },\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"East US\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-06-12T21:39:19.3168019Z\",\r\n \"duration\": \"PT4.8357977S\",\r\n \"correlationId\": \"6e296f26-2639-41f3-9c97-bb57b5e5459a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4672/providers/Microsoft.Resources/deployments/ps7490\",\r\n \"name\": \"ps7490\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps6072\"\r\n },\r\n \"storageAccountType\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n },\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"East US\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-06-24T21:20:00.4738567Z\",\r\n \"duration\": \"PT6.2809159S\",\r\n \"correlationId\": \"495b55ab-e5a8-438a-9e1b-14f9d5c91e78\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2509/providers/Microsoft.Resources/deployments/ps296?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjUwOS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczI5Nj9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4672/providers/Microsoft.Resources/deployments/ps7490?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDY3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczc0OTA/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "3e34e9f4-73d3-4483-9768-577c02fd263a"
+ "df4f3580-54af-46b7-a28d-ff835a010805"
],
"Accept-Language": [
"en-US"
@@ -5787,13 +5598,13 @@
"11943"
],
"x-ms-request-id": [
- "de6fefd8-4132-4926-ac65-bb8efcd6fb35"
+ "bab9c8f8-9986-4ef1-958f-2948865abb7e"
],
"x-ms-correlation-request-id": [
- "de6fefd8-4132-4926-ac65-bb8efcd6fb35"
+ "bab9c8f8-9986-4ef1-958f-2948865abb7e"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200612T213927Z:de6fefd8-4132-4926-ac65-bb8efcd6fb35"
+ "NORTHCENTRALUS:20200624T212008Z:bab9c8f8-9986-4ef1-958f-2948865abb7e"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -5802,7 +5613,7 @@
"nosniff"
],
"Date": [
- "Fri, 12 Jun 2020 21:39:27 GMT"
+ "Wed, 24 Jun 2020 21:20:07 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -5811,20 +5622,20 @@
"-1"
],
"Content-Length": [
- "777"
+ "779"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2509/providers/Microsoft.Resources/deployments/ps296\",\r\n \"name\": \"ps296\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps4924\"\r\n },\r\n \"storageAccountType\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n },\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"East US\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-06-12T21:39:19.3168019Z\",\r\n \"duration\": \"PT4.8357977S\",\r\n \"correlationId\": \"6e296f26-2639-41f3-9c97-bb57b5e5459a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4672/providers/Microsoft.Resources/deployments/ps7490\",\r\n \"name\": \"ps7490\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps6072\"\r\n },\r\n \"storageAccountType\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n },\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"East US\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-06-24T21:20:00.4738567Z\",\r\n \"duration\": \"PT6.2809159S\",\r\n \"correlationId\": \"495b55ab-e5a8-438a-9e1b-14f9d5c91e78\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2509/providers/Microsoft.Resources/deployments/ps296?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjUwOS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczI5Nj9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4672/providers/Microsoft.Resources/deployments/ps7490?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDY3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczc0OTA/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "45adcebc-6dd2-4f61-b692-394b6052cb51"
+ "14a1bfa9-38a8-401c-8d80-560e21bd4d57"
],
"Accept-Language": [
"en-US"
@@ -5850,13 +5661,13 @@
"11941"
],
"x-ms-request-id": [
- "aee05b90-291a-41b4-bf1d-bd0efcd6e5c4"
+ "38cef345-6155-410d-82eb-28803fda4909"
],
"x-ms-correlation-request-id": [
- "aee05b90-291a-41b4-bf1d-bd0efcd6e5c4"
+ "38cef345-6155-410d-82eb-28803fda4909"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200612T213928Z:aee05b90-291a-41b4-bf1d-bd0efcd6e5c4"
+ "NORTHCENTRALUS:20200624T212008Z:38cef345-6155-410d-82eb-28803fda4909"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -5865,7 +5676,7 @@
"nosniff"
],
"Date": [
- "Fri, 12 Jun 2020 21:39:27 GMT"
+ "Wed, 24 Jun 2020 21:20:08 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -5874,20 +5685,20 @@
"-1"
],
"Content-Length": [
- "777"
+ "779"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2509/providers/Microsoft.Resources/deployments/ps296\",\r\n \"name\": \"ps296\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps4924\"\r\n },\r\n \"storageAccountType\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n },\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"East US\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-06-12T21:39:19.3168019Z\",\r\n \"duration\": \"PT4.8357977S\",\r\n \"correlationId\": \"6e296f26-2639-41f3-9c97-bb57b5e5459a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4672/providers/Microsoft.Resources/deployments/ps7490\",\r\n \"name\": \"ps7490\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps6072\"\r\n },\r\n \"storageAccountType\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n },\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"East US\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-06-24T21:20:00.4738567Z\",\r\n \"duration\": \"PT6.2809159S\",\r\n \"correlationId\": \"495b55ab-e5a8-438a-9e1b-14f9d5c91e78\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2509/providers/Microsoft.Resources/deployments/ps296?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjUwOS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczI5Nj9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4672/providers/Microsoft.Resources/deployments/ps7490?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDY3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczc0OTA/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "15e4a29c-7423-45d2-9601-9518fa0950b1"
+ "3e11e110-061a-4369-8475-5dce1b4a1501"
],
"Accept-Language": [
"en-US"
@@ -5913,13 +5724,13 @@
"11939"
],
"x-ms-request-id": [
- "52826e51-267d-4d89-a1e7-1d8679b84bd8"
+ "3cf12583-c708-4fa9-99a2-37a999004ab5"
],
"x-ms-correlation-request-id": [
- "52826e51-267d-4d89-a1e7-1d8679b84bd8"
+ "3cf12583-c708-4fa9-99a2-37a999004ab5"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200612T213928Z:52826e51-267d-4d89-a1e7-1d8679b84bd8"
+ "NORTHCENTRALUS:20200624T212009Z:3cf12583-c708-4fa9-99a2-37a999004ab5"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -5928,7 +5739,7 @@
"nosniff"
],
"Date": [
- "Fri, 12 Jun 2020 21:39:27 GMT"
+ "Wed, 24 Jun 2020 21:20:08 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -5937,20 +5748,20 @@
"-1"
],
"Content-Length": [
- "777"
+ "779"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2509/providers/Microsoft.Resources/deployments/ps296\",\r\n \"name\": \"ps296\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps4924\"\r\n },\r\n \"storageAccountType\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n },\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"East US\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-06-12T21:39:19.3168019Z\",\r\n \"duration\": \"PT4.8357977S\",\r\n \"correlationId\": \"6e296f26-2639-41f3-9c97-bb57b5e5459a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4672/providers/Microsoft.Resources/deployments/ps7490\",\r\n \"name\": \"ps7490\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps6072\"\r\n },\r\n \"storageAccountType\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n },\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"East US\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-06-24T21:20:00.4738567Z\",\r\n \"duration\": \"PT6.2809159S\",\r\n \"correlationId\": \"495b55ab-e5a8-438a-9e1b-14f9d5c91e78\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2509/providers/Microsoft.Resources/deployments/ps296?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjUwOS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczI5Nj9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4672/providers/Microsoft.Resources/deployments/ps7490?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDY3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczc0OTA/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "7646d8c5-8d80-4bee-bb23-81594f07579c"
+ "35a3c945-68b8-4ad5-a3ea-8af79a5aaf21"
],
"Accept-Language": [
"en-US"
@@ -5976,13 +5787,13 @@
"11937"
],
"x-ms-request-id": [
- "cb481887-16f2-4056-8154-9686ece7be78"
+ "57b372cb-c8c5-4f45-bf55-ecb1eac187b2"
],
"x-ms-correlation-request-id": [
- "cb481887-16f2-4056-8154-9686ece7be78"
+ "57b372cb-c8c5-4f45-bf55-ecb1eac187b2"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200612T213928Z:cb481887-16f2-4056-8154-9686ece7be78"
+ "NORTHCENTRALUS:20200624T212009Z:57b372cb-c8c5-4f45-bf55-ecb1eac187b2"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -5991,7 +5802,7 @@
"nosniff"
],
"Date": [
- "Fri, 12 Jun 2020 21:39:28 GMT"
+ "Wed, 24 Jun 2020 21:20:09 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -6000,20 +5811,20 @@
"-1"
],
"Content-Length": [
- "777"
+ "779"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2509/providers/Microsoft.Resources/deployments/ps296\",\r\n \"name\": \"ps296\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps4924\"\r\n },\r\n \"storageAccountType\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n },\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"East US\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-06-12T21:39:19.3168019Z\",\r\n \"duration\": \"PT4.8357977S\",\r\n \"correlationId\": \"6e296f26-2639-41f3-9c97-bb57b5e5459a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4672/providers/Microsoft.Resources/deployments/ps7490\",\r\n \"name\": \"ps7490\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps6072\"\r\n },\r\n \"storageAccountType\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n },\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"East US\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-06-24T21:20:00.4738567Z\",\r\n \"duration\": \"PT6.2809159S\",\r\n \"correlationId\": \"495b55ab-e5a8-438a-9e1b-14f9d5c91e78\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2509/providers/Microsoft.Resources/deployments/ps296?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjUwOS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczI5Nj9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4672/providers/Microsoft.Resources/deployments/ps7490?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDY3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczc0OTA/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "5d72827d-4386-4358-8a57-61724def04ce"
+ "7c3de0d3-a5f5-45d9-9c2b-1bf5cadc0744"
],
"Accept-Language": [
"en-US"
@@ -6039,13 +5850,13 @@
"11935"
],
"x-ms-request-id": [
- "94faa454-806a-47e0-8555-97b305be0be8"
+ "b7c4a237-900c-4ebd-85ef-145a3e0052dc"
],
"x-ms-correlation-request-id": [
- "94faa454-806a-47e0-8555-97b305be0be8"
+ "b7c4a237-900c-4ebd-85ef-145a3e0052dc"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200612T213929Z:94faa454-806a-47e0-8555-97b305be0be8"
+ "NORTHCENTRALUS:20200624T212009Z:b7c4a237-900c-4ebd-85ef-145a3e0052dc"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -6054,7 +5865,7 @@
"nosniff"
],
"Date": [
- "Fri, 12 Jun 2020 21:39:28 GMT"
+ "Wed, 24 Jun 2020 21:20:09 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -6063,20 +5874,20 @@
"-1"
],
"Content-Length": [
- "777"
+ "779"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2509/providers/Microsoft.Resources/deployments/ps296\",\r\n \"name\": \"ps296\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps4924\"\r\n },\r\n \"storageAccountType\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n },\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"East US\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-06-12T21:39:19.3168019Z\",\r\n \"duration\": \"PT4.8357977S\",\r\n \"correlationId\": \"6e296f26-2639-41f3-9c97-bb57b5e5459a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4672/providers/Microsoft.Resources/deployments/ps7490\",\r\n \"name\": \"ps7490\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps6072\"\r\n },\r\n \"storageAccountType\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n },\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"East US\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-06-24T21:20:00.4738567Z\",\r\n \"duration\": \"PT6.2809159S\",\r\n \"correlationId\": \"495b55ab-e5a8-438a-9e1b-14f9d5c91e78\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2509/providers/Microsoft.Resources/deployments/ps296?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjUwOS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczI5Nj9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4672/providers/Microsoft.Resources/deployments/ps7490?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDY3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczc0OTA/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "24491212-bd03-4fde-b208-f2547fa19643"
+ "cb6139bb-7439-46e8-96d7-e89c3f9b198e"
],
"Accept-Language": [
"en-US"
@@ -6102,13 +5913,13 @@
"11933"
],
"x-ms-request-id": [
- "5c650251-b2c9-4ee0-a7ca-050a5af01833"
+ "19126a08-889b-405c-b8a7-65d6d4c75d4d"
],
"x-ms-correlation-request-id": [
- "5c650251-b2c9-4ee0-a7ca-050a5af01833"
+ "19126a08-889b-405c-b8a7-65d6d4c75d4d"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200612T213929Z:5c650251-b2c9-4ee0-a7ca-050a5af01833"
+ "NORTHCENTRALUS:20200624T212010Z:19126a08-889b-405c-b8a7-65d6d4c75d4d"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -6117,7 +5928,7 @@
"nosniff"
],
"Date": [
- "Fri, 12 Jun 2020 21:39:29 GMT"
+ "Wed, 24 Jun 2020 21:20:09 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -6126,20 +5937,20 @@
"-1"
],
"Content-Length": [
- "777"
+ "779"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2509/providers/Microsoft.Resources/deployments/ps296\",\r\n \"name\": \"ps296\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps4924\"\r\n },\r\n \"storageAccountType\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n },\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"East US\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-06-12T21:39:19.3168019Z\",\r\n \"duration\": \"PT4.8357977S\",\r\n \"correlationId\": \"6e296f26-2639-41f3-9c97-bb57b5e5459a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4672/providers/Microsoft.Resources/deployments/ps7490\",\r\n \"name\": \"ps7490\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps6072\"\r\n },\r\n \"storageAccountType\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n },\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"East US\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-06-24T21:20:00.4738567Z\",\r\n \"duration\": \"PT6.2809159S\",\r\n \"correlationId\": \"495b55ab-e5a8-438a-9e1b-14f9d5c91e78\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2509/providers/Microsoft.Resources/deployments/ps296?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjUwOS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczI5Nj9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4672/providers/Microsoft.Resources/deployments/ps7490?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDY3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczc0OTA/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "69e94366-7a60-44e5-b804-e12969dd3909"
+ "0686112f-135e-4a52-8b9a-91ebf44aa115"
],
"Accept-Language": [
"en-US"
@@ -6165,13 +5976,13 @@
"11931"
],
"x-ms-request-id": [
- "0f962d8b-cb4e-4f97-8c23-9680042175e0"
+ "616c1584-08fe-4d57-ba3d-4d34ac904863"
],
"x-ms-correlation-request-id": [
- "0f962d8b-cb4e-4f97-8c23-9680042175e0"
+ "616c1584-08fe-4d57-ba3d-4d34ac904863"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200612T213930Z:0f962d8b-cb4e-4f97-8c23-9680042175e0"
+ "NORTHCENTRALUS:20200624T212010Z:616c1584-08fe-4d57-ba3d-4d34ac904863"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -6180,7 +5991,7 @@
"nosniff"
],
"Date": [
- "Fri, 12 Jun 2020 21:39:29 GMT"
+ "Wed, 24 Jun 2020 21:20:10 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -6189,20 +6000,20 @@
"-1"
],
"Content-Length": [
- "777"
+ "779"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2509/providers/Microsoft.Resources/deployments/ps296\",\r\n \"name\": \"ps296\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps4924\"\r\n },\r\n \"storageAccountType\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n },\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"East US\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-06-12T21:39:19.3168019Z\",\r\n \"duration\": \"PT4.8357977S\",\r\n \"correlationId\": \"6e296f26-2639-41f3-9c97-bb57b5e5459a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4672/providers/Microsoft.Resources/deployments/ps7490\",\r\n \"name\": \"ps7490\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps6072\"\r\n },\r\n \"storageAccountType\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n },\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"East US\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-06-24T21:20:00.4738567Z\",\r\n \"duration\": \"PT6.2809159S\",\r\n \"correlationId\": \"495b55ab-e5a8-438a-9e1b-14f9d5c91e78\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2509/providers/Microsoft.Resources/deployments/ps296?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjUwOS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczI5Nj9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4672/providers/Microsoft.Resources/deployments/ps7490?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDY3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczc0OTA/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "0814d369-b064-45ed-81a8-e4b00d0c5622"
+ "62c8c70f-d3f2-4b34-9632-8d4ff29e51a4"
],
"Accept-Language": [
"en-US"
@@ -6228,13 +6039,13 @@
"11929"
],
"x-ms-request-id": [
- "2468ebbc-0910-41dc-a137-028f9f709c18"
+ "6feb9edf-6511-4bb0-9ef6-e7fe762c8dab"
],
"x-ms-correlation-request-id": [
- "2468ebbc-0910-41dc-a137-028f9f709c18"
+ "6feb9edf-6511-4bb0-9ef6-e7fe762c8dab"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200612T213930Z:2468ebbc-0910-41dc-a137-028f9f709c18"
+ "NORTHCENTRALUS:20200624T212011Z:6feb9edf-6511-4bb0-9ef6-e7fe762c8dab"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -6243,7 +6054,7 @@
"nosniff"
],
"Date": [
- "Fri, 12 Jun 2020 21:39:29 GMT"
+ "Wed, 24 Jun 2020 21:20:10 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -6252,20 +6063,20 @@
"-1"
],
"Content-Length": [
- "777"
+ "779"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2509/providers/Microsoft.Resources/deployments/ps296\",\r\n \"name\": \"ps296\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps4924\"\r\n },\r\n \"storageAccountType\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n },\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"East US\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-06-12T21:39:19.3168019Z\",\r\n \"duration\": \"PT4.8357977S\",\r\n \"correlationId\": \"6e296f26-2639-41f3-9c97-bb57b5e5459a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4672/providers/Microsoft.Resources/deployments/ps7490\",\r\n \"name\": \"ps7490\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps6072\"\r\n },\r\n \"storageAccountType\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n },\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"East US\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-06-24T21:20:00.4738567Z\",\r\n \"duration\": \"PT6.2809159S\",\r\n \"correlationId\": \"495b55ab-e5a8-438a-9e1b-14f9d5c91e78\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2509/providers/Microsoft.Resources/deployments/ps296?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjUwOS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczI5Nj9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4672/providers/Microsoft.Resources/deployments/ps7490?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDY3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczc0OTA/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "55d1c925-39e0-46ad-bd7a-7717c0399952"
+ "e6b1d79f-0668-4a39-b0a0-2b34d12bc8fc"
],
"Accept-Language": [
"en-US"
@@ -6291,13 +6102,13 @@
"11927"
],
"x-ms-request-id": [
- "25bb27fc-58e7-4ce3-80b5-ed85749fc26f"
+ "239cc89b-51f7-435e-812c-82e6e845cc1c"
],
"x-ms-correlation-request-id": [
- "25bb27fc-58e7-4ce3-80b5-ed85749fc26f"
+ "239cc89b-51f7-435e-812c-82e6e845cc1c"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200612T213930Z:25bb27fc-58e7-4ce3-80b5-ed85749fc26f"
+ "NORTHCENTRALUS:20200624T212011Z:239cc89b-51f7-435e-812c-82e6e845cc1c"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -6306,7 +6117,7 @@
"nosniff"
],
"Date": [
- "Fri, 12 Jun 2020 21:39:30 GMT"
+ "Wed, 24 Jun 2020 21:20:11 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -6315,20 +6126,20 @@
"-1"
],
"Content-Length": [
- "777"
+ "779"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2509/providers/Microsoft.Resources/deployments/ps296\",\r\n \"name\": \"ps296\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps4924\"\r\n },\r\n \"storageAccountType\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n },\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"East US\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-06-12T21:39:19.3168019Z\",\r\n \"duration\": \"PT4.8357977S\",\r\n \"correlationId\": \"6e296f26-2639-41f3-9c97-bb57b5e5459a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4672/providers/Microsoft.Resources/deployments/ps7490\",\r\n \"name\": \"ps7490\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps6072\"\r\n },\r\n \"storageAccountType\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n },\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"East US\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-06-24T21:20:00.4738567Z\",\r\n \"duration\": \"PT6.2809159S\",\r\n \"correlationId\": \"495b55ab-e5a8-438a-9e1b-14f9d5c91e78\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2509/providers/Microsoft.Resources/deployments/ps296?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjUwOS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczI5Nj9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4672/providers/Microsoft.Resources/deployments/ps7490?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDY3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczc0OTA/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "4b13227a-07eb-4c10-a7eb-919cf48e1efe"
+ "ff01a55b-8466-43d5-a2f8-41c78a25e92d"
],
"Accept-Language": [
"en-US"
@@ -6354,13 +6165,13 @@
"11925"
],
"x-ms-request-id": [
- "b5206b1e-ff42-4a0f-9056-62758646d25d"
+ "ae8ffc75-04f3-408c-a773-5d6b68d7e44c"
],
"x-ms-correlation-request-id": [
- "b5206b1e-ff42-4a0f-9056-62758646d25d"
+ "ae8ffc75-04f3-408c-a773-5d6b68d7e44c"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200612T213931Z:b5206b1e-ff42-4a0f-9056-62758646d25d"
+ "NORTHCENTRALUS:20200624T212012Z:ae8ffc75-04f3-408c-a773-5d6b68d7e44c"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -6369,7 +6180,7 @@
"nosniff"
],
"Date": [
- "Fri, 12 Jun 2020 21:39:30 GMT"
+ "Wed, 24 Jun 2020 21:20:11 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -6378,20 +6189,20 @@
"-1"
],
"Content-Length": [
- "777"
+ "779"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2509/providers/Microsoft.Resources/deployments/ps296\",\r\n \"name\": \"ps296\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps4924\"\r\n },\r\n \"storageAccountType\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n },\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"East US\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-06-12T21:39:19.3168019Z\",\r\n \"duration\": \"PT4.8357977S\",\r\n \"correlationId\": \"6e296f26-2639-41f3-9c97-bb57b5e5459a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4672/providers/Microsoft.Resources/deployments/ps7490\",\r\n \"name\": \"ps7490\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps6072\"\r\n },\r\n \"storageAccountType\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n },\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"East US\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-06-24T21:20:00.4738567Z\",\r\n \"duration\": \"PT6.2809159S\",\r\n \"correlationId\": \"495b55ab-e5a8-438a-9e1b-14f9d5c91e78\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2509/providers/Microsoft.Resources/deployments/ps296?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjUwOS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczI5Nj9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4672/providers/Microsoft.Resources/deployments/ps7490?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDY3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczc0OTA/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "13c0dd9e-12ae-4756-a717-16d682e2e67a"
+ "92cec3c2-40c3-46a7-8fdb-4c927b5c23fd"
],
"Accept-Language": [
"en-US"
@@ -6417,13 +6228,13 @@
"11923"
],
"x-ms-request-id": [
- "0d784a15-8b7b-4e18-9eb3-656b42fea42c"
+ "c7523353-4e94-4a6d-aed3-7bc0ea150624"
],
"x-ms-correlation-request-id": [
- "0d784a15-8b7b-4e18-9eb3-656b42fea42c"
+ "c7523353-4e94-4a6d-aed3-7bc0ea150624"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200612T213931Z:0d784a15-8b7b-4e18-9eb3-656b42fea42c"
+ "NORTHCENTRALUS:20200624T212012Z:c7523353-4e94-4a6d-aed3-7bc0ea150624"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -6432,7 +6243,7 @@
"nosniff"
],
"Date": [
- "Fri, 12 Jun 2020 21:39:31 GMT"
+ "Wed, 24 Jun 2020 21:20:11 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -6441,20 +6252,20 @@
"-1"
],
"Content-Length": [
- "777"
+ "779"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2509/providers/Microsoft.Resources/deployments/ps296\",\r\n \"name\": \"ps296\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps4924\"\r\n },\r\n \"storageAccountType\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n },\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"East US\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-06-12T21:39:19.3168019Z\",\r\n \"duration\": \"PT4.8357977S\",\r\n \"correlationId\": \"6e296f26-2639-41f3-9c97-bb57b5e5459a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4672/providers/Microsoft.Resources/deployments/ps7490\",\r\n \"name\": \"ps7490\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps6072\"\r\n },\r\n \"storageAccountType\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n },\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"East US\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-06-24T21:20:00.4738567Z\",\r\n \"duration\": \"PT6.2809159S\",\r\n \"correlationId\": \"495b55ab-e5a8-438a-9e1b-14f9d5c91e78\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2509/providers/Microsoft.Resources/deployments/ps296?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjUwOS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczI5Nj9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4672/providers/Microsoft.Resources/deployments/ps7490?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDY3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczc0OTA/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "bdffd3a1-eca7-4e2b-9317-6bf5708b5194"
+ "6008958f-4217-4b73-9058-cfdaaae684bb"
],
"Accept-Language": [
"en-US"
@@ -6480,13 +6291,13 @@
"11921"
],
"x-ms-request-id": [
- "f0bff221-4a27-45aa-8ec3-e18c507af7ec"
+ "6b064eab-37de-486a-912e-43c13a4986b6"
],
"x-ms-correlation-request-id": [
- "f0bff221-4a27-45aa-8ec3-e18c507af7ec"
+ "6b064eab-37de-486a-912e-43c13a4986b6"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200612T213932Z:f0bff221-4a27-45aa-8ec3-e18c507af7ec"
+ "NORTHCENTRALUS:20200624T212012Z:6b064eab-37de-486a-912e-43c13a4986b6"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -6495,7 +6306,7 @@
"nosniff"
],
"Date": [
- "Fri, 12 Jun 2020 21:39:31 GMT"
+ "Wed, 24 Jun 2020 21:20:12 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -6504,20 +6315,20 @@
"-1"
],
"Content-Length": [
- "777"
+ "779"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2509/providers/Microsoft.Resources/deployments/ps296\",\r\n \"name\": \"ps296\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps4924\"\r\n },\r\n \"storageAccountType\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n },\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"East US\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-06-12T21:39:19.3168019Z\",\r\n \"duration\": \"PT4.8357977S\",\r\n \"correlationId\": \"6e296f26-2639-41f3-9c97-bb57b5e5459a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4672/providers/Microsoft.Resources/deployments/ps7490\",\r\n \"name\": \"ps7490\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps6072\"\r\n },\r\n \"storageAccountType\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n },\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"East US\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-06-24T21:20:00.4738567Z\",\r\n \"duration\": \"PT6.2809159S\",\r\n \"correlationId\": \"495b55ab-e5a8-438a-9e1b-14f9d5c91e78\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2509/providers/Microsoft.Resources/deployments/ps296?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjUwOS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczI5Nj9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4672/providers/Microsoft.Resources/deployments/ps7490?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDY3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczc0OTA/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "88e23036-90fd-4e19-a97c-8c19838744d8"
+ "510630bb-dbe7-4e00-b95e-6f8a372db884"
],
"Accept-Language": [
"en-US"
@@ -6543,13 +6354,13 @@
"11919"
],
"x-ms-request-id": [
- "6bd5c09b-f73a-460a-aa4d-be674fd31c3f"
+ "c99deb79-0d14-4591-a8ee-a51df61f0ea9"
],
"x-ms-correlation-request-id": [
- "6bd5c09b-f73a-460a-aa4d-be674fd31c3f"
+ "c99deb79-0d14-4591-a8ee-a51df61f0ea9"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200612T213932Z:6bd5c09b-f73a-460a-aa4d-be674fd31c3f"
+ "NORTHCENTRALUS:20200624T212013Z:c99deb79-0d14-4591-a8ee-a51df61f0ea9"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -6558,7 +6369,7 @@
"nosniff"
],
"Date": [
- "Fri, 12 Jun 2020 21:39:31 GMT"
+ "Wed, 24 Jun 2020 21:20:12 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -6567,20 +6378,20 @@
"-1"
],
"Content-Length": [
- "777"
+ "779"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2509/providers/Microsoft.Resources/deployments/ps296\",\r\n \"name\": \"ps296\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps4924\"\r\n },\r\n \"storageAccountType\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n },\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"East US\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-06-12T21:39:19.3168019Z\",\r\n \"duration\": \"PT4.8357977S\",\r\n \"correlationId\": \"6e296f26-2639-41f3-9c97-bb57b5e5459a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4672/providers/Microsoft.Resources/deployments/ps7490\",\r\n \"name\": \"ps7490\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps6072\"\r\n },\r\n \"storageAccountType\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n },\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"East US\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-06-24T21:20:00.4738567Z\",\r\n \"duration\": \"PT6.2809159S\",\r\n \"correlationId\": \"495b55ab-e5a8-438a-9e1b-14f9d5c91e78\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2509/providers/Microsoft.Resources/deployments/ps296?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjUwOS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczI5Nj9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4672/providers/Microsoft.Resources/deployments/ps7490?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDY3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczc0OTA/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "3e9bba71-214c-44ea-8147-dc29d342619c"
+ "d88e75d2-bd1b-4725-b5ec-dcea2cfcc1fe"
],
"Accept-Language": [
"en-US"
@@ -6606,13 +6417,13 @@
"11917"
],
"x-ms-request-id": [
- "dde485d2-bcac-4baa-b09a-e96a0ab38c59"
+ "335128d0-f6ed-4797-93b0-6015f6b8677b"
],
"x-ms-correlation-request-id": [
- "dde485d2-bcac-4baa-b09a-e96a0ab38c59"
+ "335128d0-f6ed-4797-93b0-6015f6b8677b"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200612T213932Z:dde485d2-bcac-4baa-b09a-e96a0ab38c59"
+ "NORTHCENTRALUS:20200624T212013Z:335128d0-f6ed-4797-93b0-6015f6b8677b"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -6621,7 +6432,7 @@
"nosniff"
],
"Date": [
- "Fri, 12 Jun 2020 21:39:32 GMT"
+ "Wed, 24 Jun 2020 21:20:13 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -6630,20 +6441,20 @@
"-1"
],
"Content-Length": [
- "777"
+ "779"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2509/providers/Microsoft.Resources/deployments/ps296\",\r\n \"name\": \"ps296\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps4924\"\r\n },\r\n \"storageAccountType\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n },\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"East US\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-06-12T21:39:19.3168019Z\",\r\n \"duration\": \"PT4.8357977S\",\r\n \"correlationId\": \"6e296f26-2639-41f3-9c97-bb57b5e5459a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4672/providers/Microsoft.Resources/deployments/ps7490\",\r\n \"name\": \"ps7490\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps6072\"\r\n },\r\n \"storageAccountType\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n },\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"East US\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-06-24T21:20:00.4738567Z\",\r\n \"duration\": \"PT6.2809159S\",\r\n \"correlationId\": \"495b55ab-e5a8-438a-9e1b-14f9d5c91e78\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2509/providers/Microsoft.Resources/deployments/ps296?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjUwOS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczI5Nj9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4672/providers/Microsoft.Resources/deployments/ps7490?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDY3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczc0OTA/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "2df3aa57-93df-4a99-87ac-bf32564bcc55"
+ "37450e41-ee15-4dd5-91e0-873dfe749e41"
],
"Accept-Language": [
"en-US"
@@ -6669,13 +6480,13 @@
"11915"
],
"x-ms-request-id": [
- "8a8ba819-97b9-442e-b14a-9b6faf330191"
+ "dbcc0681-dada-4998-94d0-2958958f079c"
],
"x-ms-correlation-request-id": [
- "8a8ba819-97b9-442e-b14a-9b6faf330191"
+ "dbcc0681-dada-4998-94d0-2958958f079c"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200612T213933Z:8a8ba819-97b9-442e-b14a-9b6faf330191"
+ "NORTHCENTRALUS:20200624T212014Z:dbcc0681-dada-4998-94d0-2958958f079c"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -6684,7 +6495,7 @@
"nosniff"
],
"Date": [
- "Fri, 12 Jun 2020 21:39:32 GMT"
+ "Wed, 24 Jun 2020 21:20:13 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -6693,20 +6504,20 @@
"-1"
],
"Content-Length": [
- "777"
+ "779"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2509/providers/Microsoft.Resources/deployments/ps296\",\r\n \"name\": \"ps296\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps4924\"\r\n },\r\n \"storageAccountType\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n },\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"East US\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-06-12T21:39:19.3168019Z\",\r\n \"duration\": \"PT4.8357977S\",\r\n \"correlationId\": \"6e296f26-2639-41f3-9c97-bb57b5e5459a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4672/providers/Microsoft.Resources/deployments/ps7490\",\r\n \"name\": \"ps7490\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps6072\"\r\n },\r\n \"storageAccountType\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n },\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"East US\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-06-24T21:20:00.4738567Z\",\r\n \"duration\": \"PT6.2809159S\",\r\n \"correlationId\": \"495b55ab-e5a8-438a-9e1b-14f9d5c91e78\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2509/providers/Microsoft.Resources/deployments/ps296?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjUwOS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczI5Nj9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4672/providers/Microsoft.Resources/deployments/ps7490?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDY3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczc0OTA/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "faf3b0e2-463f-478b-9ed8-0e34fcdcdd63"
+ "98815501-e29a-41bf-afcd-44ff01681132"
],
"Accept-Language": [
"en-US"
@@ -6732,13 +6543,13 @@
"11913"
],
"x-ms-request-id": [
- "670c581c-d575-4e23-8dee-c40554af463c"
+ "002a51eb-4b08-40d9-9366-6dd320c0ea9c"
],
"x-ms-correlation-request-id": [
- "670c581c-d575-4e23-8dee-c40554af463c"
+ "002a51eb-4b08-40d9-9366-6dd320c0ea9c"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200612T213933Z:670c581c-d575-4e23-8dee-c40554af463c"
+ "NORTHCENTRALUS:20200624T212014Z:002a51eb-4b08-40d9-9366-6dd320c0ea9c"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -6747,7 +6558,7 @@
"nosniff"
],
"Date": [
- "Fri, 12 Jun 2020 21:39:33 GMT"
+ "Wed, 24 Jun 2020 21:20:13 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -6756,20 +6567,20 @@
"-1"
],
"Content-Length": [
- "777"
+ "779"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2509/providers/Microsoft.Resources/deployments/ps296\",\r\n \"name\": \"ps296\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps4924\"\r\n },\r\n \"storageAccountType\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n },\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"East US\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-06-12T21:39:19.3168019Z\",\r\n \"duration\": \"PT4.8357977S\",\r\n \"correlationId\": \"6e296f26-2639-41f3-9c97-bb57b5e5459a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4672/providers/Microsoft.Resources/deployments/ps7490\",\r\n \"name\": \"ps7490\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps6072\"\r\n },\r\n \"storageAccountType\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n },\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"East US\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-06-24T21:20:00.4738567Z\",\r\n \"duration\": \"PT6.2809159S\",\r\n \"correlationId\": \"495b55ab-e5a8-438a-9e1b-14f9d5c91e78\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2509/providers/Microsoft.Resources/deployments/ps296?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjUwOS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczI5Nj9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4672/providers/Microsoft.Resources/deployments/ps7490?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDY3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczc0OTA/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b27db740-c29e-4032-a4a0-3edff0bfde5b"
+ "00ac603b-1834-4a54-a409-04cb45d8b675"
],
"Accept-Language": [
"en-US"
@@ -6795,13 +6606,13 @@
"11911"
],
"x-ms-request-id": [
- "f8604586-c5fb-46dd-949c-5f9d5decbef3"
+ "0d5c8499-7271-4f21-a7da-76ecc9ab89e3"
],
"x-ms-correlation-request-id": [
- "f8604586-c5fb-46dd-949c-5f9d5decbef3"
+ "0d5c8499-7271-4f21-a7da-76ecc9ab89e3"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200612T213934Z:f8604586-c5fb-46dd-949c-5f9d5decbef3"
+ "NORTHCENTRALUS:20200624T212015Z:0d5c8499-7271-4f21-a7da-76ecc9ab89e3"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -6810,7 +6621,7 @@
"nosniff"
],
"Date": [
- "Fri, 12 Jun 2020 21:39:33 GMT"
+ "Wed, 24 Jun 2020 21:20:14 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -6819,20 +6630,20 @@
"-1"
],
"Content-Length": [
- "777"
+ "779"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2509/providers/Microsoft.Resources/deployments/ps296\",\r\n \"name\": \"ps296\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps4924\"\r\n },\r\n \"storageAccountType\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n },\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"East US\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-06-12T21:39:19.3168019Z\",\r\n \"duration\": \"PT4.8357977S\",\r\n \"correlationId\": \"6e296f26-2639-41f3-9c97-bb57b5e5459a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4672/providers/Microsoft.Resources/deployments/ps7490\",\r\n \"name\": \"ps7490\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps6072\"\r\n },\r\n \"storageAccountType\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n },\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"East US\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-06-24T21:20:00.4738567Z\",\r\n \"duration\": \"PT6.2809159S\",\r\n \"correlationId\": \"495b55ab-e5a8-438a-9e1b-14f9d5c91e78\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2509/providers/Microsoft.Resources/deployments/ps296?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjUwOS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczI5Nj9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4672/providers/Microsoft.Resources/deployments/ps7490?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDY3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczc0OTA/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "d61a3afc-eee9-45f1-afe2-21573538deed"
+ "1265275f-2d8b-4484-be5a-1cc5c08f7de0"
],
"Accept-Language": [
"en-US"
@@ -6858,13 +6669,13 @@
"11909"
],
"x-ms-request-id": [
- "99f1a98a-d344-4df4-ae33-15ec1e8ae342"
+ "b5f7c472-f669-4984-a853-b40c6df6e4be"
],
"x-ms-correlation-request-id": [
- "99f1a98a-d344-4df4-ae33-15ec1e8ae342"
+ "b5f7c472-f669-4984-a853-b40c6df6e4be"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200612T213934Z:99f1a98a-d344-4df4-ae33-15ec1e8ae342"
+ "NORTHCENTRALUS:20200624T212015Z:b5f7c472-f669-4984-a853-b40c6df6e4be"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -6873,7 +6684,7 @@
"nosniff"
],
"Date": [
- "Fri, 12 Jun 2020 21:39:33 GMT"
+ "Wed, 24 Jun 2020 21:20:14 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -6882,20 +6693,20 @@
"-1"
],
"Content-Length": [
- "777"
+ "779"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2509/providers/Microsoft.Resources/deployments/ps296\",\r\n \"name\": \"ps296\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps4924\"\r\n },\r\n \"storageAccountType\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n },\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"East US\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-06-12T21:39:19.3168019Z\",\r\n \"duration\": \"PT4.8357977S\",\r\n \"correlationId\": \"6e296f26-2639-41f3-9c97-bb57b5e5459a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4672/providers/Microsoft.Resources/deployments/ps7490\",\r\n \"name\": \"ps7490\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps6072\"\r\n },\r\n \"storageAccountType\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n },\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"East US\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-06-24T21:20:00.4738567Z\",\r\n \"duration\": \"PT6.2809159S\",\r\n \"correlationId\": \"495b55ab-e5a8-438a-9e1b-14f9d5c91e78\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2509/providers/Microsoft.Resources/deployments/ps296?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjUwOS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczI5Nj9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4672/providers/Microsoft.Resources/deployments/ps7490?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDY3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczc0OTA/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "8e825a8e-216d-437c-8a88-c607a848f850"
+ "bfe18a44-fe9d-4c41-ad7d-b8fbf2eb5828"
],
"Accept-Language": [
"en-US"
@@ -6921,13 +6732,13 @@
"11907"
],
"x-ms-request-id": [
- "f13b752c-d1ef-4841-92d5-aa07b23428a6"
+ "b8dd7818-e852-4c7e-8d83-5ef82d73a551"
],
"x-ms-correlation-request-id": [
- "f13b752c-d1ef-4841-92d5-aa07b23428a6"
+ "b8dd7818-e852-4c7e-8d83-5ef82d73a551"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200612T213934Z:f13b752c-d1ef-4841-92d5-aa07b23428a6"
+ "NORTHCENTRALUS:20200624T212015Z:b8dd7818-e852-4c7e-8d83-5ef82d73a551"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -6936,7 +6747,7 @@
"nosniff"
],
"Date": [
- "Fri, 12 Jun 2020 21:39:34 GMT"
+ "Wed, 24 Jun 2020 21:20:15 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -6945,20 +6756,20 @@
"-1"
],
"Content-Length": [
- "777"
+ "779"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2509/providers/Microsoft.Resources/deployments/ps296\",\r\n \"name\": \"ps296\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps4924\"\r\n },\r\n \"storageAccountType\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n },\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"East US\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-06-12T21:39:19.3168019Z\",\r\n \"duration\": \"PT4.8357977S\",\r\n \"correlationId\": \"6e296f26-2639-41f3-9c97-bb57b5e5459a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4672/providers/Microsoft.Resources/deployments/ps7490\",\r\n \"name\": \"ps7490\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps6072\"\r\n },\r\n \"storageAccountType\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n },\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"East US\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-06-24T21:20:00.4738567Z\",\r\n \"duration\": \"PT6.2809159S\",\r\n \"correlationId\": \"495b55ab-e5a8-438a-9e1b-14f9d5c91e78\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2509/providers/Microsoft.Resources/deployments/ps296?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjUwOS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczI5Nj9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4672/providers/Microsoft.Resources/deployments/ps7490?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDY3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczc0OTA/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "20b859a6-c76e-41c8-840a-eed117c512bd"
+ "aeeaf7bb-ec76-4c3b-918d-20050bff3ac7"
],
"Accept-Language": [
"en-US"
@@ -6984,13 +6795,13 @@
"11905"
],
"x-ms-request-id": [
- "3823fa1d-51d5-4372-a37f-975efc5ec50b"
+ "551155b1-107f-4aed-b418-c15194230587"
],
"x-ms-correlation-request-id": [
- "3823fa1d-51d5-4372-a37f-975efc5ec50b"
+ "551155b1-107f-4aed-b418-c15194230587"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200612T213935Z:3823fa1d-51d5-4372-a37f-975efc5ec50b"
+ "NORTHCENTRALUS:20200624T212016Z:551155b1-107f-4aed-b418-c15194230587"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -6999,7 +6810,7 @@
"nosniff"
],
"Date": [
- "Fri, 12 Jun 2020 21:39:34 GMT"
+ "Wed, 24 Jun 2020 21:20:15 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -7008,20 +6819,20 @@
"-1"
],
"Content-Length": [
- "777"
+ "779"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2509/providers/Microsoft.Resources/deployments/ps296\",\r\n \"name\": \"ps296\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps4924\"\r\n },\r\n \"storageAccountType\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n },\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"East US\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-06-12T21:39:19.3168019Z\",\r\n \"duration\": \"PT4.8357977S\",\r\n \"correlationId\": \"6e296f26-2639-41f3-9c97-bb57b5e5459a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4672/providers/Microsoft.Resources/deployments/ps7490\",\r\n \"name\": \"ps7490\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps6072\"\r\n },\r\n \"storageAccountType\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n },\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"East US\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-06-24T21:20:00.4738567Z\",\r\n \"duration\": \"PT6.2809159S\",\r\n \"correlationId\": \"495b55ab-e5a8-438a-9e1b-14f9d5c91e78\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2509/providers/Microsoft.Resources/deployments/ps296?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjUwOS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczI5Nj9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4672/providers/Microsoft.Resources/deployments/ps7490?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDY3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczc0OTA/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "3cc2e38e-549f-4a21-b5f9-3891cd03c88a"
+ "599a2c5d-7377-4afe-9b0f-6d10e3132bc0"
],
"Accept-Language": [
"en-US"
@@ -7047,13 +6858,13 @@
"11903"
],
"x-ms-request-id": [
- "5c914576-8dee-4e67-bb9e-04046c541106"
+ "1424b1ac-88b0-45e1-bc34-4646f054345b"
],
"x-ms-correlation-request-id": [
- "5c914576-8dee-4e67-bb9e-04046c541106"
+ "1424b1ac-88b0-45e1-bc34-4646f054345b"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200612T213935Z:5c914576-8dee-4e67-bb9e-04046c541106"
+ "NORTHCENTRALUS:20200624T212016Z:1424b1ac-88b0-45e1-bc34-4646f054345b"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -7062,7 +6873,7 @@
"nosniff"
],
"Date": [
- "Fri, 12 Jun 2020 21:39:35 GMT"
+ "Wed, 24 Jun 2020 21:20:15 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -7071,20 +6882,20 @@
"-1"
],
"Content-Length": [
- "777"
+ "779"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2509/providers/Microsoft.Resources/deployments/ps296\",\r\n \"name\": \"ps296\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps4924\"\r\n },\r\n \"storageAccountType\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n },\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"East US\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-06-12T21:39:19.3168019Z\",\r\n \"duration\": \"PT4.8357977S\",\r\n \"correlationId\": \"6e296f26-2639-41f3-9c97-bb57b5e5459a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4672/providers/Microsoft.Resources/deployments/ps7490\",\r\n \"name\": \"ps7490\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps6072\"\r\n },\r\n \"storageAccountType\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n },\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"East US\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-06-24T21:20:00.4738567Z\",\r\n \"duration\": \"PT6.2809159S\",\r\n \"correlationId\": \"495b55ab-e5a8-438a-9e1b-14f9d5c91e78\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2509/providers/Microsoft.Resources/deployments/ps296?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjUwOS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczI5Nj9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4672/providers/Microsoft.Resources/deployments/ps7490?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDY3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczc0OTA/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "8342b9dd-b164-4c21-a7d3-b2a023912b35"
+ "7bff8240-4683-433a-8e7d-6b0c860ac328"
],
"Accept-Language": [
"en-US"
@@ -7110,13 +6921,13 @@
"11901"
],
"x-ms-request-id": [
- "e16c8ba8-10db-47e7-84ca-72d73b5f91be"
+ "bad98047-62f0-444f-ab00-9bdf4283475d"
],
"x-ms-correlation-request-id": [
- "e16c8ba8-10db-47e7-84ca-72d73b5f91be"
+ "bad98047-62f0-444f-ab00-9bdf4283475d"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200612T213936Z:e16c8ba8-10db-47e7-84ca-72d73b5f91be"
+ "NORTHCENTRALUS:20200624T212017Z:bad98047-62f0-444f-ab00-9bdf4283475d"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -7125,7 +6936,7 @@
"nosniff"
],
"Date": [
- "Fri, 12 Jun 2020 21:39:35 GMT"
+ "Wed, 24 Jun 2020 21:20:16 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -7134,20 +6945,20 @@
"-1"
],
"Content-Length": [
- "777"
+ "779"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2509/providers/Microsoft.Resources/deployments/ps296\",\r\n \"name\": \"ps296\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps4924\"\r\n },\r\n \"storageAccountType\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n },\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"East US\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-06-12T21:39:19.3168019Z\",\r\n \"duration\": \"PT4.8357977S\",\r\n \"correlationId\": \"6e296f26-2639-41f3-9c97-bb57b5e5459a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4672/providers/Microsoft.Resources/deployments/ps7490\",\r\n \"name\": \"ps7490\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps6072\"\r\n },\r\n \"storageAccountType\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n },\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"East US\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-06-24T21:20:00.4738567Z\",\r\n \"duration\": \"PT6.2809159S\",\r\n \"correlationId\": \"495b55ab-e5a8-438a-9e1b-14f9d5c91e78\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2509/providers/Microsoft.Resources/deployments/ps296?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjUwOS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczI5Nj9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4672/providers/Microsoft.Resources/deployments/ps7490?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDY3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczc0OTA/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "8a235260-be5b-4ed5-8150-aa07014c9ddd"
+ "4d06ef72-ae87-4f77-9663-ea19d9e331c8"
],
"Accept-Language": [
"en-US"
@@ -7173,13 +6984,13 @@
"11899"
],
"x-ms-request-id": [
- "d124eff3-a1be-43d3-a70e-a8eba168bc9c"
+ "42740523-87b0-4da4-b5ed-e1f18eeddd01"
],
"x-ms-correlation-request-id": [
- "d124eff3-a1be-43d3-a70e-a8eba168bc9c"
+ "42740523-87b0-4da4-b5ed-e1f18eeddd01"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200612T213936Z:d124eff3-a1be-43d3-a70e-a8eba168bc9c"
+ "NORTHCENTRALUS:20200624T212017Z:42740523-87b0-4da4-b5ed-e1f18eeddd01"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -7188,7 +6999,7 @@
"nosniff"
],
"Date": [
- "Fri, 12 Jun 2020 21:39:35 GMT"
+ "Wed, 24 Jun 2020 21:20:16 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -7197,20 +7008,20 @@
"-1"
],
"Content-Length": [
- "777"
+ "779"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2509/providers/Microsoft.Resources/deployments/ps296\",\r\n \"name\": \"ps296\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps4924\"\r\n },\r\n \"storageAccountType\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n },\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"East US\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-06-12T21:39:19.3168019Z\",\r\n \"duration\": \"PT4.8357977S\",\r\n \"correlationId\": \"6e296f26-2639-41f3-9c97-bb57b5e5459a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4672/providers/Microsoft.Resources/deployments/ps7490\",\r\n \"name\": \"ps7490\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps6072\"\r\n },\r\n \"storageAccountType\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n },\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"East US\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-06-24T21:20:00.4738567Z\",\r\n \"duration\": \"PT6.2809159S\",\r\n \"correlationId\": \"495b55ab-e5a8-438a-9e1b-14f9d5c91e78\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2509/providers/Microsoft.Resources/deployments/ps296?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjUwOS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczI5Nj9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4672/providers/Microsoft.Resources/deployments/ps7490?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDY3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczc0OTA/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "1eba44ea-fc3e-4e72-af97-5be66202b52f"
+ "0d221f8b-92f0-47da-a202-12b36d857e50"
],
"Accept-Language": [
"en-US"
@@ -7236,13 +7047,13 @@
"11897"
],
"x-ms-request-id": [
- "44168905-52d9-4b0f-b9ab-cb6fa3102db3"
+ "012cab2b-b3ce-483a-b6ed-78f824bb15f5"
],
"x-ms-correlation-request-id": [
- "44168905-52d9-4b0f-b9ab-cb6fa3102db3"
+ "012cab2b-b3ce-483a-b6ed-78f824bb15f5"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200612T213936Z:44168905-52d9-4b0f-b9ab-cb6fa3102db3"
+ "NORTHCENTRALUS:20200624T212017Z:012cab2b-b3ce-483a-b6ed-78f824bb15f5"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -7251,7 +7062,7 @@
"nosniff"
],
"Date": [
- "Fri, 12 Jun 2020 21:39:36 GMT"
+ "Wed, 24 Jun 2020 21:20:17 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -7260,20 +7071,20 @@
"-1"
],
"Content-Length": [
- "777"
+ "779"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2509/providers/Microsoft.Resources/deployments/ps296\",\r\n \"name\": \"ps296\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps4924\"\r\n },\r\n \"storageAccountType\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n },\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"East US\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-06-12T21:39:19.3168019Z\",\r\n \"duration\": \"PT4.8357977S\",\r\n \"correlationId\": \"6e296f26-2639-41f3-9c97-bb57b5e5459a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4672/providers/Microsoft.Resources/deployments/ps7490\",\r\n \"name\": \"ps7490\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps6072\"\r\n },\r\n \"storageAccountType\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n },\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"East US\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-06-24T21:20:00.4738567Z\",\r\n \"duration\": \"PT6.2809159S\",\r\n \"correlationId\": \"495b55ab-e5a8-438a-9e1b-14f9d5c91e78\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2509/providers/Microsoft.Resources/deployments/ps296?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjUwOS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczI5Nj9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4672/providers/Microsoft.Resources/deployments/ps7490?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDY3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczc0OTA/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a5bfae9d-a3e9-4326-932d-9df7520286de"
+ "3d3b5167-ed5a-442b-856b-44379633d85c"
],
"Accept-Language": [
"en-US"
@@ -7299,13 +7110,13 @@
"11895"
],
"x-ms-request-id": [
- "9341c1d3-e1f1-4b2b-8748-758d03794afe"
+ "76eb67bb-60e9-425b-8fb6-43b0d520b034"
],
"x-ms-correlation-request-id": [
- "9341c1d3-e1f1-4b2b-8748-758d03794afe"
+ "76eb67bb-60e9-425b-8fb6-43b0d520b034"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200612T213937Z:9341c1d3-e1f1-4b2b-8748-758d03794afe"
+ "NORTHCENTRALUS:20200624T212018Z:76eb67bb-60e9-425b-8fb6-43b0d520b034"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -7314,7 +7125,7 @@
"nosniff"
],
"Date": [
- "Fri, 12 Jun 2020 21:39:36 GMT"
+ "Wed, 24 Jun 2020 21:20:17 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -7323,20 +7134,20 @@
"-1"
],
"Content-Length": [
- "777"
+ "779"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2509/providers/Microsoft.Resources/deployments/ps296\",\r\n \"name\": \"ps296\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps4924\"\r\n },\r\n \"storageAccountType\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n },\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"East US\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-06-12T21:39:19.3168019Z\",\r\n \"duration\": \"PT4.8357977S\",\r\n \"correlationId\": \"6e296f26-2639-41f3-9c97-bb57b5e5459a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4672/providers/Microsoft.Resources/deployments/ps7490\",\r\n \"name\": \"ps7490\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps6072\"\r\n },\r\n \"storageAccountType\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n },\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"East US\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-06-24T21:20:00.4738567Z\",\r\n \"duration\": \"PT6.2809159S\",\r\n \"correlationId\": \"495b55ab-e5a8-438a-9e1b-14f9d5c91e78\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2509/providers/Microsoft.Resources/deployments/ps296?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjUwOS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczI5Nj9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4672/providers/Microsoft.Resources/deployments/ps7490?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDY3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczc0OTA/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "8ad91374-a0c8-4f19-996b-c06c0607a8a5"
+ "ac88914d-5c6f-4b4b-b1d1-3d13d28fc4d2"
],
"Accept-Language": [
"en-US"
@@ -7362,13 +7173,13 @@
"11893"
],
"x-ms-request-id": [
- "18eee524-5d16-4af5-941a-ae99dea3ff02"
+ "876aea6c-32c0-44b8-92e7-36d6f1a21bca"
],
"x-ms-correlation-request-id": [
- "18eee524-5d16-4af5-941a-ae99dea3ff02"
+ "876aea6c-32c0-44b8-92e7-36d6f1a21bca"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200612T213937Z:18eee524-5d16-4af5-941a-ae99dea3ff02"
+ "NORTHCENTRALUS:20200624T212018Z:876aea6c-32c0-44b8-92e7-36d6f1a21bca"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -7377,7 +7188,7 @@
"nosniff"
],
"Date": [
- "Fri, 12 Jun 2020 21:39:37 GMT"
+ "Wed, 24 Jun 2020 21:20:17 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -7386,20 +7197,20 @@
"-1"
],
"Content-Length": [
- "777"
+ "779"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2509/providers/Microsoft.Resources/deployments/ps296\",\r\n \"name\": \"ps296\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps4924\"\r\n },\r\n \"storageAccountType\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n },\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"East US\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-06-12T21:39:19.3168019Z\",\r\n \"duration\": \"PT4.8357977S\",\r\n \"correlationId\": \"6e296f26-2639-41f3-9c97-bb57b5e5459a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4672/providers/Microsoft.Resources/deployments/ps7490\",\r\n \"name\": \"ps7490\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps6072\"\r\n },\r\n \"storageAccountType\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n },\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"East US\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-06-24T21:20:00.4738567Z\",\r\n \"duration\": \"PT6.2809159S\",\r\n \"correlationId\": \"495b55ab-e5a8-438a-9e1b-14f9d5c91e78\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2509/providers/Microsoft.Resources/deployments/ps296?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjUwOS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczI5Nj9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4672/providers/Microsoft.Resources/deployments/ps7490?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDY3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczc0OTA/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "878fb5fa-bb55-43f2-a473-396ef454110f"
+ "10547004-73c4-48c0-9256-9dd321796ebb"
],
"Accept-Language": [
"en-US"
@@ -7425,13 +7236,13 @@
"11891"
],
"x-ms-request-id": [
- "d9b1cd0d-0ae3-45f1-a0ac-522b4773c102"
+ "7dc56f8f-576a-43cc-97d2-5c13cf66690b"
],
"x-ms-correlation-request-id": [
- "d9b1cd0d-0ae3-45f1-a0ac-522b4773c102"
+ "7dc56f8f-576a-43cc-97d2-5c13cf66690b"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200612T213938Z:d9b1cd0d-0ae3-45f1-a0ac-522b4773c102"
+ "NORTHCENTRALUS:20200624T212019Z:7dc56f8f-576a-43cc-97d2-5c13cf66690b"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -7440,7 +7251,7 @@
"nosniff"
],
"Date": [
- "Fri, 12 Jun 2020 21:39:37 GMT"
+ "Wed, 24 Jun 2020 21:20:18 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -7449,20 +7260,20 @@
"-1"
],
"Content-Length": [
- "777"
+ "779"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2509/providers/Microsoft.Resources/deployments/ps296\",\r\n \"name\": \"ps296\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps4924\"\r\n },\r\n \"storageAccountType\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n },\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"East US\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-06-12T21:39:19.3168019Z\",\r\n \"duration\": \"PT4.8357977S\",\r\n \"correlationId\": \"6e296f26-2639-41f3-9c97-bb57b5e5459a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4672/providers/Microsoft.Resources/deployments/ps7490\",\r\n \"name\": \"ps7490\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps6072\"\r\n },\r\n \"storageAccountType\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n },\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"East US\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-06-24T21:20:00.4738567Z\",\r\n \"duration\": \"PT6.2809159S\",\r\n \"correlationId\": \"495b55ab-e5a8-438a-9e1b-14f9d5c91e78\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2509/providers/Microsoft.Resources/deployments/ps296?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjUwOS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczI5Nj9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4672/providers/Microsoft.Resources/deployments/ps7490?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDY3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczc0OTA/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "c0b03b2c-55fc-42cb-8971-d76e75fafb0b"
+ "8d2fb992-4273-4d6f-bb31-0226e58fd7d4"
],
"Accept-Language": [
"en-US"
@@ -7488,13 +7299,13 @@
"11889"
],
"x-ms-request-id": [
- "7d33b3b0-1f85-44d7-bd13-b59a83b42eeb"
+ "b2222e8f-79db-4c31-8dd5-c7964c977db7"
],
"x-ms-correlation-request-id": [
- "7d33b3b0-1f85-44d7-bd13-b59a83b42eeb"
+ "b2222e8f-79db-4c31-8dd5-c7964c977db7"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200612T213938Z:7d33b3b0-1f85-44d7-bd13-b59a83b42eeb"
+ "NORTHCENTRALUS:20200624T212019Z:b2222e8f-79db-4c31-8dd5-c7964c977db7"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -7503,7 +7314,7 @@
"nosniff"
],
"Date": [
- "Fri, 12 Jun 2020 21:39:37 GMT"
+ "Wed, 24 Jun 2020 21:20:18 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -7512,20 +7323,20 @@
"-1"
],
"Content-Length": [
- "777"
+ "779"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2509/providers/Microsoft.Resources/deployments/ps296\",\r\n \"name\": \"ps296\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps4924\"\r\n },\r\n \"storageAccountType\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n },\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"East US\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-06-12T21:39:19.3168019Z\",\r\n \"duration\": \"PT4.8357977S\",\r\n \"correlationId\": \"6e296f26-2639-41f3-9c97-bb57b5e5459a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4672/providers/Microsoft.Resources/deployments/ps7490\",\r\n \"name\": \"ps7490\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps6072\"\r\n },\r\n \"storageAccountType\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n },\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"East US\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-06-24T21:20:00.4738567Z\",\r\n \"duration\": \"PT6.2809159S\",\r\n \"correlationId\": \"495b55ab-e5a8-438a-9e1b-14f9d5c91e78\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2509/providers/Microsoft.Resources/deployments/ps296?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjUwOS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczI5Nj9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4672/providers/Microsoft.Resources/deployments/ps7490?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDY3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczc0OTA/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "0a45435f-a9b5-4464-837d-809cf7c68576"
+ "e62baa4c-7f3c-4824-b82b-2fb88972ac8f"
],
"Accept-Language": [
"en-US"
@@ -7544,20 +7355,17 @@
"Pragma": [
"no-cache"
],
- "Retry-After": [
- "0"
- ],
"x-ms-ratelimit-remaining-subscription-reads": [
"11887"
],
"x-ms-request-id": [
- "5695a31e-ae69-4ffb-aa37-054ab953bafd"
+ "4a2bc4e6-9b1e-4242-b99e-7baf5ba9d68a"
],
"x-ms-correlation-request-id": [
- "5695a31e-ae69-4ffb-aa37-054ab953bafd"
+ "4a2bc4e6-9b1e-4242-b99e-7baf5ba9d68a"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200612T213939Z:5695a31e-ae69-4ffb-aa37-054ab953bafd"
+ "NORTHCENTRALUS:20200624T212020Z:4a2bc4e6-9b1e-4242-b99e-7baf5ba9d68a"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -7566,7 +7374,7 @@
"nosniff"
],
"Date": [
- "Fri, 12 Jun 2020 21:39:38 GMT"
+ "Wed, 24 Jun 2020 21:20:19 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -7575,83 +7383,23 @@
"-1"
],
"Content-Length": [
- "777"
- ]
- },
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2509/providers/Microsoft.Resources/deployments/ps296\",\r\n \"name\": \"ps296\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps4924\"\r\n },\r\n \"storageAccountType\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n },\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"East US\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-06-12T21:39:19.3168019Z\",\r\n \"duration\": \"PT4.8357977S\",\r\n \"correlationId\": \"6e296f26-2639-41f3-9c97-bb57b5e5459a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2509/providers/Microsoft.Resources/deployments/ps296?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjUwOS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczI5Nj9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "3181bcc6-9413-4264-8205-6a2cb1b549d9"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.28207.03",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
+ "1759"
],
"Retry-After": [
"0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11885"
- ],
- "x-ms-request-id": [
- "c5538c5e-ea47-43ad-8fa0-438b4849d414"
- ],
- "x-ms-correlation-request-id": [
- "c5538c5e-ea47-43ad-8fa0-438b4849d414"
- ],
- "x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200612T213939Z:c5538c5e-ea47-43ad-8fa0-438b4849d414"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Fri, 12 Jun 2020 21:39:38 GMT"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "777"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2509/providers/Microsoft.Resources/deployments/ps296\",\r\n \"name\": \"ps296\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps4924\"\r\n },\r\n \"storageAccountType\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n },\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"East US\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-06-12T21:39:19.3168019Z\",\r\n \"duration\": \"PT4.8357977S\",\r\n \"correlationId\": \"6e296f26-2639-41f3-9c97-bb57b5e5459a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4672/providers/Microsoft.Resources/deployments/ps7490\",\r\n \"name\": \"ps7490\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps6072\"\r\n },\r\n \"storageAccountType\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n },\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"East US\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2020-06-24T21:20:19.6904074Z\",\r\n \"duration\": \"PT25.4974666S\",\r\n \"correlationId\": \"495b55ab-e5a8-438a-9e1b-14f9d5c91e78\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [],\r\n \"outputs\": {\r\n \"storageAccountInfo\": {\r\n \"type\": \"Object\",\r\n \"value\": {\r\n \"privateEndpointConnections\": [],\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-06-24T21:20:00.0205398Z\"\r\n },\r\n \"blob\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-06-24T21:20:00.0205398Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2020-06-24T21:19:59.9424105Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://ps6072.blob.core.windows.net/\",\r\n \"queue\": \"https://ps6072.queue.core.windows.net/\",\r\n \"table\": \"https://ps6072.table.core.windows.net/\",\r\n \"file\": \"https://ps6072.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n }\r\n },\r\n \"outputResources\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4672/providers/Microsoft.Storage/storageAccounts/ps6072\"\r\n }\r\n ]\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2509/providers/Microsoft.Resources/deployments/ps296?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjUwOS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczI5Nj9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4672/providers/Microsoft.Resources/deployments/ps7490?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDY3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczc0OTA/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "da91e654-3322-439b-89ad-493a5f6f0856"
+ "f0bcf338-f8c5-47f0-8841-5a485dfab15a"
],
"Accept-Language": [
"en-US"
@@ -7671,16 +7419,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11883"
+ "11886"
],
"x-ms-request-id": [
- "57d281ce-a48a-44d2-804b-351ea8cc6284"
+ "cc3d2706-1b82-4eab-a81b-b207f6f1d739"
],
"x-ms-correlation-request-id": [
- "57d281ce-a48a-44d2-804b-351ea8cc6284"
+ "cc3d2706-1b82-4eab-a81b-b207f6f1d739"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200612T213939Z:57d281ce-a48a-44d2-804b-351ea8cc6284"
+ "NORTHCENTRALUS:20200624T212020Z:cc3d2706-1b82-4eab-a81b-b207f6f1d739"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -7689,7 +7437,7 @@
"nosniff"
],
"Date": [
- "Fri, 12 Jun 2020 21:39:39 GMT"
+ "Wed, 24 Jun 2020 21:20:19 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -7698,23 +7446,23 @@
"-1"
],
"Content-Length": [
- "1757"
+ "1759"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2509/providers/Microsoft.Resources/deployments/ps296\",\r\n \"name\": \"ps296\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps4924\"\r\n },\r\n \"storageAccountType\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n },\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"East US\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2020-06-12T21:39:39.4687534Z\",\r\n \"duration\": \"PT24.9877492S\",\r\n \"correlationId\": \"6e296f26-2639-41f3-9c97-bb57b5e5459a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [],\r\n \"outputs\": {\r\n \"storageAccountInfo\": {\r\n \"type\": \"Object\",\r\n \"value\": {\r\n \"privateEndpointConnections\": [],\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-06-12T21:39:18.7808705Z\"\r\n },\r\n \"blob\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-06-12T21:39:18.7808705Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2020-06-12T21:39:18.7027166Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://ps4924.blob.core.windows.net/\",\r\n \"queue\": \"https://ps4924.queue.core.windows.net/\",\r\n \"table\": \"https://ps4924.table.core.windows.net/\",\r\n \"file\": \"https://ps4924.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n }\r\n },\r\n \"outputResources\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2509/providers/Microsoft.Storage/storageAccounts/ps4924\"\r\n }\r\n ]\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4672/providers/Microsoft.Resources/deployments/ps7490\",\r\n \"name\": \"ps7490\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps6072\"\r\n },\r\n \"storageAccountType\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n },\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"East US\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2020-06-24T21:20:19.6904074Z\",\r\n \"duration\": \"PT25.4974666S\",\r\n \"correlationId\": \"495b55ab-e5a8-438a-9e1b-14f9d5c91e78\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [],\r\n \"outputs\": {\r\n \"storageAccountInfo\": {\r\n \"type\": \"Object\",\r\n \"value\": {\r\n \"privateEndpointConnections\": [],\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-06-24T21:20:00.0205398Z\"\r\n },\r\n \"blob\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-06-24T21:20:00.0205398Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2020-06-24T21:19:59.9424105Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://ps6072.blob.core.windows.net/\",\r\n \"queue\": \"https://ps6072.queue.core.windows.net/\",\r\n \"table\": \"https://ps6072.table.core.windows.net/\",\r\n \"file\": \"https://ps6072.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n }\r\n },\r\n \"outputResources\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4672/providers/Microsoft.Storage/storageAccounts/ps6072\"\r\n }\r\n ]\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2509/providers/Microsoft.Resources/deployments/ps296?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjUwOS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczI5Nj9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
- "RequestMethod": "GET",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4672/providers/Microsoft.Resources/deployments/ps7490/exportTemplate?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDY3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczc0OTAvZXhwb3J0VGVtcGxhdGU/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestMethod": "POST",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b7346469-5f08-42a5-b650-f6ba6c6ac471"
+ "721ba6b4-3358-4f7a-bab1-77d1ff62601d"
],
"Accept-Language": [
"en-US"
@@ -7733,17 +7481,17 @@
"Pragma": [
"no-cache"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11882"
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1198"
],
"x-ms-request-id": [
- "4b4261f8-0772-4d8f-a641-1f6caab7a069"
+ "12532445-964d-4718-84af-d366615cb2ea"
],
"x-ms-correlation-request-id": [
- "4b4261f8-0772-4d8f-a641-1f6caab7a069"
+ "12532445-964d-4718-84af-d366615cb2ea"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200612T213940Z:4b4261f8-0772-4d8f-a641-1f6caab7a069"
+ "NORTHCENTRALUS:20200624T212021Z:12532445-964d-4718-84af-d366615cb2ea"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -7752,7 +7500,10 @@
"nosniff"
],
"Date": [
- "Fri, 12 Jun 2020 21:39:39 GMT"
+ "Wed, 24 Jun 2020 21:20:20 GMT"
+ ],
+ "Content-Length": [
+ "862"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -7760,33 +7511,28 @@
"Expires": [
"-1"
],
- "Content-Length": [
- "1757"
- ],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2509/providers/Microsoft.Resources/deployments/ps296\",\r\n \"name\": \"ps296\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps4924\"\r\n },\r\n \"storageAccountType\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n },\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"East US\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2020-06-12T21:39:39.4687534Z\",\r\n \"duration\": \"PT24.9877492S\",\r\n \"correlationId\": \"6e296f26-2639-41f3-9c97-bb57b5e5459a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [],\r\n \"outputs\": {\r\n \"storageAccountInfo\": {\r\n \"type\": \"Object\",\r\n \"value\": {\r\n \"privateEndpointConnections\": [],\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-06-12T21:39:18.7808705Z\"\r\n },\r\n \"blob\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-06-12T21:39:18.7808705Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2020-06-12T21:39:18.7027166Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://ps4924.blob.core.windows.net/\",\r\n \"queue\": \"https://ps4924.queue.core.windows.net/\",\r\n \"table\": \"https://ps4924.table.core.windows.net/\",\r\n \"file\": \"https://ps4924.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n }\r\n },\r\n \"outputResources\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2509/providers/Microsoft.Storage/storageAccounts/ps4924\"\r\n }\r\n ]\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\"\r\n },\r\n \"storageAccountType\": {\r\n \"defaultValue\": \"Standard_LRS\",\r\n \"allowedValues\": [\r\n \"Standard_LRS\",\r\n \"Standard_GRS\",\r\n \"Standard_ZRS\"\r\n ],\r\n \"type\": \"String\"\r\n },\r\n \"location\": {\r\n \"defaultValue\": \"East US\",\r\n \"allowedValues\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"type\": \"String\"\r\n }\r\n },\r\n \"resources\": [\r\n {\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"apiVersion\": \"2015-06-15\",\r\n \"name\": \"[parameters('StorageAccountName')]\",\r\n \"location\": \"[parameters('location')]\",\r\n \"properties\": {\r\n \"accountType\": \"[parameters('storageAccountType')]\"\r\n }\r\n }\r\n ],\r\n \"outputs\": {\r\n \"storageAccountInfo\": {\r\n \"type\": \"Object\",\r\n \"value\": \"[reference(concat('Microsoft.Storage/storageAccounts/', parameters('StorageAccountName')),providers('Microsoft.Storage', 'storageAccounts').apiVersions[0])]\"\r\n }\r\n }\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2509/providers/Microsoft.Resources/deployments/ps296/exportTemplate?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjUwOS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczI5Ni9leHBvcnRUZW1wbGF0ZT9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
- "RequestMethod": "POST",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4672/providers/Microsoft.Resources/deployments/ps7490/operations?api-version=2018-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlR3JvdXBzL3BzNDY3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczc0OTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE4LTA1LTAx",
+ "RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "x-ms-client-request-id": [
- "51455d1e-51a5-46dd-bcdb-8e4b7d1af5e2"
+ "User-Agent": [
+ "AzurePowershell/v1.0.0",
+ "PSVersion/v6.2.3"
],
- "Accept-Language": [
- "en-US"
+ "ParameterSetName": [
+ "__AllParameterSets"
],
- "User-Agent": [
- "FxVersion/4.6.28207.03",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ "CommandName": [
+ "Get-AzResourceGroupDeploymentOperation"
]
},
"ResponseHeaders": {
@@ -7796,17 +7542,17 @@
"Pragma": [
"no-cache"
],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1198"
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11999"
],
"x-ms-request-id": [
- "5013c1f7-f72b-4f67-8641-5256c83a70ec"
+ "d6b32f9b-7d53-4f93-a855-653f71bafa9e"
],
"x-ms-correlation-request-id": [
- "5013c1f7-f72b-4f67-8641-5256c83a70ec"
+ "d6b32f9b-7d53-4f93-a855-653f71bafa9e"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200612T213940Z:5013c1f7-f72b-4f67-8641-5256c83a70ec"
+ "NORTHCENTRALUS:20200624T212021Z:d6b32f9b-7d53-4f93-a855-653f71bafa9e"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -7815,10 +7561,7 @@
"nosniff"
],
"Date": [
- "Fri, 12 Jun 2020 21:39:39 GMT"
- ],
- "Content-Length": [
- "862"
+ "Wed, 24 Jun 2020 21:20:21 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -7826,21 +7569,24 @@
"Expires": [
"-1"
],
+ "Content-Length": [
+ "1828"
+ ],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\"\r\n },\r\n \"storageAccountType\": {\r\n \"defaultValue\": \"Standard_LRS\",\r\n \"allowedValues\": [\r\n \"Standard_LRS\",\r\n \"Standard_GRS\",\r\n \"Standard_ZRS\"\r\n ],\r\n \"type\": \"String\"\r\n },\r\n \"location\": {\r\n \"defaultValue\": \"East US\",\r\n \"allowedValues\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"type\": \"String\"\r\n }\r\n },\r\n \"resources\": [\r\n {\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"apiVersion\": \"2015-06-15\",\r\n \"name\": \"[parameters('StorageAccountName')]\",\r\n \"location\": \"[parameters('location')]\",\r\n \"properties\": {\r\n \"accountType\": \"[parameters('storageAccountType')]\"\r\n }\r\n }\r\n ],\r\n \"outputs\": {\r\n \"storageAccountInfo\": {\r\n \"type\": \"Object\",\r\n \"value\": \"[reference(concat('Microsoft.Storage/storageAccounts/', parameters('StorageAccountName')),providers('Microsoft.Storage', 'storageAccounts').apiVersions[0])]\"\r\n }\r\n }\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4672/providers/Microsoft.Resources/deployments/ps7490/operations/8DD7552FEEF7CBA0\",\r\n \"operationId\": \"8DD7552FEEF7CBA0\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Read\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2020-06-24T21:20:19.3443629Z\",\r\n \"duration\": \"PT0.2129808S\",\r\n \"trackingId\": \"0e3d5057-28e7-4076-912f-f1f1b6652ee3\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4672/providers/Microsoft.Storage/storageAccounts/ps6072\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps6072\",\r\n \"apiVersion\": \"2019-06-01\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4672/providers/Microsoft.Resources/deployments/ps7490/operations/03F80EF18983F6CE\",\r\n \"operationId\": \"03F80EF18983F6CE\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2020-06-24T21:20:19.0679145Z\",\r\n \"duration\": \"PT22.1772285S\",\r\n \"trackingId\": \"83012f47-876a-4a56-9872-218b126168aa\",\r\n \"serviceRequestId\": \"b9c7648f-788f-4af3-a8e6-d51964801504\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4672/providers/Microsoft.Storage/storageAccounts/ps6072\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps6072\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4672/providers/Microsoft.Resources/deployments/ps7490/operations/08586085732912846726\",\r\n \"operationId\": \"08586085732912846726\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"EvaluateDeploymentOutput\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2020-06-24T21:20:19.6583073Z\",\r\n \"duration\": \"PT0.281523S\",\r\n \"trackingId\": \"26bc8c25-695b-47b3-88b5-6d1c645fb0f0\",\r\n \"statusCode\": \"OK\",\r\n \"statusMessage\": null\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2509/providers/Microsoft.Resources/deployments/ps296?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjUwOS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczI5Nj9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4672/providers/Microsoft.Resources/deployments/ps7490?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDY3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczc0OTA/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
"RequestMethod": "HEAD",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "94a189e9-7ee2-41cc-b69b-23d7ab0d4525"
+ "1caae6f0-0720-4469-9b45-8aafdfaf631f"
],
"Accept-Language": [
"en-US"
@@ -7860,16 +7606,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11880"
+ "11885"
],
"x-ms-request-id": [
- "0bc325d3-2900-49b0-8973-6089528dcbac"
+ "d6071b4a-8734-4373-93fc-1b23c9b5184f"
],
"x-ms-correlation-request-id": [
- "0bc325d3-2900-49b0-8973-6089528dcbac"
+ "d6071b4a-8734-4373-93fc-1b23c9b5184f"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200612T213940Z:0bc325d3-2900-49b0-8973-6089528dcbac"
+ "NORTHCENTRALUS:20200624T212022Z:d6071b4a-8734-4373-93fc-1b23c9b5184f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -7878,7 +7624,7 @@
"nosniff"
],
"Date": [
- "Fri, 12 Jun 2020 21:39:40 GMT"
+ "Wed, 24 Jun 2020 21:20:22 GMT"
],
"Content-Length": [
"0"
@@ -7894,13 +7640,13 @@
"StatusCode": 204
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2509/providers/Microsoft.Resources/deployments/ps296?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjUwOS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczI5Nj9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4672/providers/Microsoft.Resources/deployments/ps7490?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDY3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczc0OTA/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "42543dd4-1b64-4e75-82d7-93ebdc30ff65"
+ "297ed738-afb3-4891-ab6b-01ad2bb38e57"
],
"Accept-Language": [
"en-US"
@@ -7920,7 +7666,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IkRlcGxveW1lbnREZWxldGlvbkpvYi1HTlMtUFMyNTA5LVBTMjk2LSIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2019-10-01"
+ "https://management.azure.com/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IkRlcGxveW1lbnREZWxldGlvbkpvYi1HTlMtUFM0NjcyLVBTNzQ5MC0iLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2019-10-01"
],
"Retry-After": [
"0"
@@ -7929,13 +7675,13 @@
"14999"
],
"x-ms-request-id": [
- "18ad8dd9-ef27-4c63-885f-e474df921c52"
+ "9b29a96a-6b9e-4d6f-9ec5-1efcc889defc"
],
"x-ms-correlation-request-id": [
- "18ad8dd9-ef27-4c63-885f-e474df921c52"
+ "9b29a96a-6b9e-4d6f-9ec5-1efcc889defc"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200612T213942Z:18ad8dd9-ef27-4c63-885f-e474df921c52"
+ "NORTHCENTRALUS:20200624T212023Z:9b29a96a-6b9e-4d6f-9ec5-1efcc889defc"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -7944,7 +7690,7 @@
"nosniff"
],
"Date": [
- "Fri, 12 Jun 2020 21:39:41 GMT"
+ "Wed, 24 Jun 2020 21:20:23 GMT"
],
"Expires": [
"-1"
@@ -7957,8 +7703,8 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IkRlcGxveW1lbnREZWxldGlvbkpvYi1HTlMtUFMyNTA5LVBTMjk2LSIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWtSbGNHeHZlVzFsYm5SRVpXeGxkR2x2YmtwdllpMUhUbE10VUZNeU5UQTVMVkJUTWprMkxTSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6SW4wP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IkRlcGxveW1lbnREZWxldGlvbkpvYi1HTlMtUFM0NjcyLVBTNzQ5MC0iLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWtSbGNHeHZlVzFsYm5SRVpXeGxkR2x2YmtwdllpMUhUbE10VUZNME5qY3lMVkJUTnpRNU1DMGlMQ0pxYjJKTWIyTmhkR2x2YmlJNkluZGxjM1IxY3lKOT9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -7977,22 +7723,22 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IkRlcGxveW1lbnREZWxldGlvbkpvYi1HTlMtUFMyNTA5LVBTMjk2LSIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2019-10-01"
+ "https://management.azure.com/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IkRlcGxveW1lbnREZWxldGlvbkpvYi1HTlMtUFM0NjcyLVBTNzQ5MC0iLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2019-10-01"
],
"Retry-After": [
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11879"
+ "11884"
],
"x-ms-request-id": [
- "da8f8fd2-b0b6-421b-8fab-2b5a7c8e5dfb"
+ "1cabe086-f980-43a5-a934-0f06fe04a519"
],
"x-ms-correlation-request-id": [
- "da8f8fd2-b0b6-421b-8fab-2b5a7c8e5dfb"
+ "1cabe086-f980-43a5-a934-0f06fe04a519"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200612T213957Z:da8f8fd2-b0b6-421b-8fab-2b5a7c8e5dfb"
+ "NORTHCENTRALUS:20200624T212038Z:1cabe086-f980-43a5-a934-0f06fe04a519"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -8001,7 +7747,7 @@
"nosniff"
],
"Date": [
- "Fri, 12 Jun 2020 21:39:57 GMT"
+ "Wed, 24 Jun 2020 21:20:38 GMT"
],
"Expires": [
"-1"
@@ -8014,8 +7760,8 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IkRlcGxveW1lbnREZWxldGlvbkpvYi1HTlMtUFMyNTA5LVBTMjk2LSIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWtSbGNHeHZlVzFsYm5SRVpXeGxkR2x2YmtwdllpMUhUbE10VUZNeU5UQTVMVkJUTWprMkxTSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6SW4wP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IkRlcGxveW1lbnREZWxldGlvbkpvYi1HTlMtUFM0NjcyLVBTNzQ5MC0iLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWtSbGNHeHZlVzFsYm5SRVpXeGxkR2x2YmtwdllpMUhUbE10VUZNME5qY3lMVkJUTnpRNU1DMGlMQ0pxYjJKTWIyTmhkR2x2YmlJNkluZGxjM1IxY3lKOT9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -8034,16 +7780,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11878"
+ "11883"
],
"x-ms-request-id": [
- "cf5e2769-516b-4a5d-955a-2b32dc575a2a"
+ "aee65766-4fff-45d4-9990-289828e6fba7"
],
"x-ms-correlation-request-id": [
- "cf5e2769-516b-4a5d-955a-2b32dc575a2a"
+ "aee65766-4fff-45d4-9990-289828e6fba7"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200612T214012Z:cf5e2769-516b-4a5d-955a-2b32dc575a2a"
+ "NORTHCENTRALUS:20200624T212053Z:aee65766-4fff-45d4-9990-289828e6fba7"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -8052,7 +7798,7 @@
"nosniff"
],
"Date": [
- "Fri, 12 Jun 2020 21:40:12 GMT"
+ "Wed, 24 Jun 2020 21:20:53 GMT"
],
"Expires": [
"-1"
@@ -8065,8 +7811,8 @@
"StatusCode": 204
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IkRlcGxveW1lbnREZWxldGlvbkpvYi1HTlMtUFMyNTA5LVBTMjk2LSIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWtSbGNHeHZlVzFsYm5SRVpXeGxkR2x2YmtwdllpMUhUbE10VUZNeU5UQTVMVkJUTWprMkxTSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6SW4wP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IkRlcGxveW1lbnREZWxldGlvbkpvYi1HTlMtUFM0NjcyLVBTNzQ5MC0iLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWtSbGNHeHZlVzFsYm5SRVpXeGxkR2x2YmtwdllpMUhUbE10VUZNME5qY3lMVkJUTnpRNU1DMGlMQ0pxYjJKTWIyTmhkR2x2YmlJNkluZGxjM1IxY3lKOT9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -8085,16 +7831,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11877"
+ "11882"
],
"x-ms-request-id": [
- "f9b8dedd-a0dd-40eb-bb89-e425b2d004c8"
+ "054adda3-4118-4376-aeb7-b95650609aae"
],
"x-ms-correlation-request-id": [
- "f9b8dedd-a0dd-40eb-bb89-e425b2d004c8"
+ "054adda3-4118-4376-aeb7-b95650609aae"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200612T214012Z:f9b8dedd-a0dd-40eb-bb89-e425b2d004c8"
+ "NORTHCENTRALUS:20200624T212053Z:054adda3-4118-4376-aeb7-b95650609aae"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -8103,7 +7849,7 @@
"nosniff"
],
"Date": [
- "Fri, 12 Jun 2020 21:40:12 GMT"
+ "Wed, 24 Jun 2020 21:20:53 GMT"
],
"Expires": [
"-1"
@@ -8116,13 +7862,13 @@
"StatusCode": 204
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2509?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjUwOT9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4672?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDY3Mj9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "50239420-f1b5-41bc-a1a3-7319de21219e"
+ "aac8d81f-99ec-4018-a436-d17e2fa05356"
],
"Accept-Language": [
"en-US"
@@ -8142,7 +7888,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI1MDktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2019-10-01"
+ "https://management.azure.com/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ2NzItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2019-10-01"
],
"Retry-After": [
"0"
@@ -8151,13 +7897,13 @@
"14998"
],
"x-ms-request-id": [
- "06f60534-6198-466c-a06c-3cfad101964e"
+ "50fef4d6-cf1f-4083-b338-49299f4a91c2"
],
"x-ms-correlation-request-id": [
- "06f60534-6198-466c-a06c-3cfad101964e"
+ "50fef4d6-cf1f-4083-b338-49299f4a91c2"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200612T214013Z:06f60534-6198-466c-a06c-3cfad101964e"
+ "NORTHCENTRALUS:20200624T212054Z:50fef4d6-cf1f-4083-b338-49299f4a91c2"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -8166,7 +7912,7 @@
"nosniff"
],
"Date": [
- "Fri, 12 Jun 2020 21:40:13 GMT"
+ "Wed, 24 Jun 2020 21:20:54 GMT"
],
"Expires": [
"-1"
@@ -8179,8 +7925,8 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI1MDktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJMU1Ea3RWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ2NzItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRMk56SXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -8199,22 +7945,22 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI1MDktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2019-10-01"
+ "https://management.azure.com/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ2NzItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2019-10-01"
],
"Retry-After": [
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11875"
+ "11880"
],
"x-ms-request-id": [
- "b1a8faaf-4308-4a35-9c70-6c15e25d3bce"
+ "6f2f7381-1e36-4040-8c98-0d1d698bfb80"
],
"x-ms-correlation-request-id": [
- "b1a8faaf-4308-4a35-9c70-6c15e25d3bce"
+ "6f2f7381-1e36-4040-8c98-0d1d698bfb80"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200612T214029Z:b1a8faaf-4308-4a35-9c70-6c15e25d3bce"
+ "NORTHCENTRALUS:20200624T212109Z:6f2f7381-1e36-4040-8c98-0d1d698bfb80"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -8223,7 +7969,7 @@
"nosniff"
],
"Date": [
- "Fri, 12 Jun 2020 21:40:28 GMT"
+ "Wed, 24 Jun 2020 21:21:09 GMT"
],
"Expires": [
"-1"
@@ -8236,8 +7982,8 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI1MDktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJMU1Ea3RWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ2NzItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRMk56SXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -8256,22 +8002,22 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI1MDktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2019-10-01"
+ "https://management.azure.com/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ2NzItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2019-10-01"
],
"Retry-After": [
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11874"
+ "11879"
],
"x-ms-request-id": [
- "87d72a3f-1f07-44a9-aed6-1aea24b98103"
+ "24fa2097-5491-4f8e-9b38-cb772f8af63d"
],
"x-ms-correlation-request-id": [
- "87d72a3f-1f07-44a9-aed6-1aea24b98103"
+ "24fa2097-5491-4f8e-9b38-cb772f8af63d"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200612T214044Z:87d72a3f-1f07-44a9-aed6-1aea24b98103"
+ "NORTHCENTRALUS:20200624T212125Z:24fa2097-5491-4f8e-9b38-cb772f8af63d"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -8280,7 +8026,7 @@
"nosniff"
],
"Date": [
- "Fri, 12 Jun 2020 21:40:44 GMT"
+ "Wed, 24 Jun 2020 21:21:25 GMT"
],
"Expires": [
"-1"
@@ -8293,8 +8039,8 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI1MDktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJMU1Ea3RWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ2NzItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRMk56SXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -8313,22 +8059,22 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI1MDktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2019-10-01"
+ "https://management.azure.com/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ2NzItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2019-10-01"
],
"Retry-After": [
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11873"
+ "11878"
],
"x-ms-request-id": [
- "aad35098-0c68-4ce2-b0ab-3774c12dcbb8"
+ "c4b4e0dc-b183-4b2e-a289-b6bcc3aee2bf"
],
"x-ms-correlation-request-id": [
- "aad35098-0c68-4ce2-b0ab-3774c12dcbb8"
+ "c4b4e0dc-b183-4b2e-a289-b6bcc3aee2bf"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200612T214059Z:aad35098-0c68-4ce2-b0ab-3774c12dcbb8"
+ "NORTHCENTRALUS:20200624T212140Z:c4b4e0dc-b183-4b2e-a289-b6bcc3aee2bf"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -8337,7 +8083,7 @@
"nosniff"
],
"Date": [
- "Fri, 12 Jun 2020 21:40:58 GMT"
+ "Wed, 24 Jun 2020 21:21:39 GMT"
],
"Expires": [
"-1"
@@ -8350,8 +8096,8 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI1MDktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJMU1Ea3RWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ2NzItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRMk56SXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -8370,22 +8116,22 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI1MDktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2019-10-01"
+ "https://management.azure.com/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ2NzItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2019-10-01"
],
"Retry-After": [
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11872"
+ "11877"
],
"x-ms-request-id": [
- "554dfab0-239e-45c1-a284-167e5c035156"
+ "72caa61f-ca2e-483f-8017-a1a98e7b3f63"
],
"x-ms-correlation-request-id": [
- "554dfab0-239e-45c1-a284-167e5c035156"
+ "72caa61f-ca2e-483f-8017-a1a98e7b3f63"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200612T214114Z:554dfab0-239e-45c1-a284-167e5c035156"
+ "NORTHCENTRALUS:20200624T212155Z:72caa61f-ca2e-483f-8017-a1a98e7b3f63"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -8394,7 +8140,7 @@
"nosniff"
],
"Date": [
- "Fri, 12 Jun 2020 21:41:13 GMT"
+ "Wed, 24 Jun 2020 21:21:55 GMT"
],
"Expires": [
"-1"
@@ -8407,8 +8153,8 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI1MDktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJMU1Ea3RWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ2NzItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRMk56SXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -8427,22 +8173,22 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI1MDktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2019-10-01"
+ "https://management.azure.com/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ2NzItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2019-10-01"
],
"Retry-After": [
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11871"
+ "11876"
],
"x-ms-request-id": [
- "5762d361-6873-4c70-840f-d83221f0a21e"
+ "01b96d84-2323-4243-ba2f-61af298a332a"
],
"x-ms-correlation-request-id": [
- "5762d361-6873-4c70-840f-d83221f0a21e"
+ "01b96d84-2323-4243-ba2f-61af298a332a"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200612T214129Z:5762d361-6873-4c70-840f-d83221f0a21e"
+ "NORTHCENTRALUS:20200624T212210Z:01b96d84-2323-4243-ba2f-61af298a332a"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -8451,7 +8197,7 @@
"nosniff"
],
"Date": [
- "Fri, 12 Jun 2020 21:41:29 GMT"
+ "Wed, 24 Jun 2020 21:22:09 GMT"
],
"Expires": [
"-1"
@@ -8464,8 +8210,8 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI1MDktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJMU1Ea3RWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ2NzItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRMk56SXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -8484,22 +8230,22 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI1MDktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2019-10-01"
+ "https://management.azure.com/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ2NzItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2019-10-01"
],
"Retry-After": [
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11870"
+ "11875"
],
"x-ms-request-id": [
- "a7aa03e5-7ab8-4070-a577-0db62382a1a8"
+ "fe3a0507-57d0-4a8f-8bca-cd704e1c3275"
],
"x-ms-correlation-request-id": [
- "a7aa03e5-7ab8-4070-a577-0db62382a1a8"
+ "fe3a0507-57d0-4a8f-8bca-cd704e1c3275"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200612T214144Z:a7aa03e5-7ab8-4070-a577-0db62382a1a8"
+ "NORTHCENTRALUS:20200624T212225Z:fe3a0507-57d0-4a8f-8bca-cd704e1c3275"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -8508,7 +8254,7 @@
"nosniff"
],
"Date": [
- "Fri, 12 Jun 2020 21:41:44 GMT"
+ "Wed, 24 Jun 2020 21:22:25 GMT"
],
"Expires": [
"-1"
@@ -8521,8 +8267,8 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI1MDktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJMU1Ea3RWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ2NzItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRMk56SXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -8541,16 +8287,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11869"
+ "11874"
],
"x-ms-request-id": [
- "213d1a51-d9e3-41cb-9f1c-f673a36dc7a0"
+ "c9632ada-272b-486f-83cb-6304d27245f8"
],
"x-ms-correlation-request-id": [
- "213d1a51-d9e3-41cb-9f1c-f673a36dc7a0"
+ "c9632ada-272b-486f-83cb-6304d27245f8"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200612T214200Z:213d1a51-d9e3-41cb-9f1c-f673a36dc7a0"
+ "NORTHCENTRALUS:20200624T212241Z:c9632ada-272b-486f-83cb-6304d27245f8"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -8559,7 +8305,7 @@
"nosniff"
],
"Date": [
- "Fri, 12 Jun 2020 21:41:59 GMT"
+ "Wed, 24 Jun 2020 21:22:40 GMT"
],
"Expires": [
"-1"
@@ -8575,8 +8321,8 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI1MDktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJMU1Ea3RWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ2NzItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRMk56SXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -8595,16 +8341,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11868"
+ "11873"
],
"x-ms-request-id": [
- "9fa5af55-ed4f-432e-83ea-c84f6a6f2a2b"
+ "844f6534-2a42-4308-94a5-db5da4c90940"
],
"x-ms-correlation-request-id": [
- "9fa5af55-ed4f-432e-83ea-c84f6a6f2a2b"
+ "844f6534-2a42-4308-94a5-db5da4c90940"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200612T214200Z:9fa5af55-ed4f-432e-83ea-c84f6a6f2a2b"
+ "NORTHCENTRALUS:20200624T212241Z:844f6534-2a42-4308-94a5-db5da4c90940"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -8613,7 +8359,7 @@
"nosniff"
],
"Date": [
- "Fri, 12 Jun 2020 21:42:00 GMT"
+ "Wed, 24 Jun 2020 21:22:41 GMT"
],
"Expires": [
"-1"
@@ -8631,9 +8377,9 @@
],
"Names": {
"Test-DeploymentEndToEnd-ResourceGroup": [
- "ps2509",
- "ps296",
- "ps4924"
+ "ps4672",
+ "ps7490",
+ "ps6072"
]
},
"Variables": {
diff --git a/src/Resources/Resources/ChangeLog.md b/src/Resources/Resources/ChangeLog.md
index 5d191c0d88f3..6e1c7928d501 100644
--- a/src/Resources/Resources/ChangeLog.md
+++ b/src/Resources/Resources/ChangeLog.md
@@ -18,7 +18,7 @@
- Additional information about change #1
-->
## Upcoming Release
-* Updated `Get-AzResourceGroupDeploymentOperation` and `Save-AzResourceGroupDeploymentTemplate` to use the SDK.
+* Updated `Save-AzResourceGroupDeploymentTemplate` to use the SDK.
## Version 2.2.0
* Added `UsageLocation`, `GivenName`, `Surname`, `AccountEnabled`, `MailNickname`, `Mail` on `PSADUser` [#10526] [#10497]
diff --git a/src/Resources/Resources/help/Get-AzResourceGroupDeploymentOperation.md b/src/Resources/Resources/help/Get-AzResourceGroupDeploymentOperation.md
index 779308415c89..9ac2ce731fe6 100644
--- a/src/Resources/Resources/help/Get-AzResourceGroupDeploymentOperation.md
+++ b/src/Resources/Resources/help/Get-AzResourceGroupDeploymentOperation.md
@@ -140,7 +140,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable
## OUTPUTS
-### Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeploymentOperation
+### System.Management.Automation.PSObject
## NOTES