From a009dcdcb6456f3ce3de875b5d100595882fe191 Mon Sep 17 00:00:00 2001 From: Gokul Premraj Date: Tue, 9 Jun 2020 20:16:15 -0400 Subject: [PATCH 01/17] Remove ApiVersion Parameter from deployments --- .../CmdletBase/ResourceManagerCmdletBase.cs | 42 ++----------------- ...ResourceManagerCmdletBaseWithAPiVersion.cs | 39 ++++++++++++++++- ...eResourceGroupDeploymentOperationCmdlet.cs | 2 +- ...reResourceGroupDeploymentTemplateCmdlet.cs | 2 +- 4 files changed, 43 insertions(+), 42 deletions(-) diff --git a/src/Resources/ResourceManager/Implementation/CmdletBase/ResourceManagerCmdletBase.cs b/src/Resources/ResourceManager/Implementation/CmdletBase/ResourceManagerCmdletBase.cs index d5ffdfe6b514..f38a048a1d18 100644 --- a/src/Resources/ResourceManager/Implementation/CmdletBase/ResourceManagerCmdletBase.cs +++ b/src/Resources/ResourceManager/Implementation/CmdletBase/ResourceManagerCmdletBase.cs @@ -69,10 +69,10 @@ protected CancellationToken? CancellationToken /// /// Gets or sets the API version. /// - [CmdletParameterBreakingChange("ApiVersion", ChangeDescription = "Parameter is being deprecated without being replaced")] + /*[CmdletParameterBreakingChange("ApiVersion", ChangeDescription = "Parameter is being deprecated without being replaced")] [Parameter(Mandatory = false, HelpMessage = "When set, indicates the version of the resource provider API to use. If not specified, the API version is automatically determined as the latest available.")] [ValidateNotNullOrEmpty] - public virtual string ApiVersion { get; set; } + public virtual string ApiVersion { get; set; }*/ /// /// Gets or sets the switch that indicates if pre-release API version should be considered. @@ -223,42 +223,6 @@ protected virtual void OnStopProcessing() // no-op } - /// - /// Determines the API version. - /// - /// The resource Id. - /// When specified, indicates if pre-release API versions should be considered. - protected Task DetermineApiVersion(string resourceId, bool? pre = null) - { - return string.IsNullOrWhiteSpace(this.ApiVersion) - ? ApiVersionHelper.DetermineApiVersion( - context: DefaultContext, - resourceId: resourceId, - cancellationToken: this.CancellationToken.Value, - pre: pre ?? this.Pre, - cmdletHeaderValues: this.GetCmdletHeaders()) - : Task.FromResult(this.ApiVersion); - } - - /// - /// Determines the API version. - /// - /// The provider namespace. - /// The resource type. - /// When specified, indicates if pre-release API versions should be considered. - protected Task DetermineApiVersion(string providerNamespace, string resourceType, bool? pre = null) - { - return string.IsNullOrWhiteSpace(this.ApiVersion) - ? ApiVersionHelper.DetermineApiVersion( - DefaultContext, - providerNamespace: providerNamespace, - resourceType: resourceType, - cancellationToken: this.CancellationToken.Value, - pre: pre ?? this.Pre, - cmdletHeaderValues: this.GetCmdletHeaders()) - : Task.FromResult(this.ApiVersion); - } - /// /// Gets a new instance of the . /// @@ -330,7 +294,7 @@ public SubscriptionSdkClient SubscriptionSdkClient set { this.subscriptionSdkClient = value; } } - private Dictionary GetCmdletHeaders() + protected Dictionary GetCmdletHeaders() { return new Dictionary { diff --git a/src/Resources/ResourceManager/Implementation/CmdletBase/ResourceManagerCmdletBaseWithAPiVersion.cs b/src/Resources/ResourceManager/Implementation/CmdletBase/ResourceManagerCmdletBaseWithAPiVersion.cs index ebd8a0e8d06d..203f33ada7bd 100644 --- a/src/Resources/ResourceManager/Implementation/CmdletBase/ResourceManagerCmdletBaseWithAPiVersion.cs +++ b/src/Resources/ResourceManager/Implementation/CmdletBase/ResourceManagerCmdletBaseWithAPiVersion.cs @@ -13,6 +13,7 @@ // ---------------------------------------------------------------------------------- using System.Management.Automation; +using System.Threading.Tasks; namespace Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation { @@ -23,6 +24,42 @@ public abstract class ResourceManagerCmdletBaseWithAPiVersion : ResourceManagerC /// [Parameter(Mandatory = false, HelpMessage = "When set, indicates the version of the resource provider API to use. If not specified, the API version is automatically determined as the latest available.")] [ValidateNotNullOrEmpty] - public override string ApiVersion { get; set; } + public string ApiVersion { get; set; } + + /// + /// Determines the API version. + /// + /// The resource Id. + /// When specified, indicates if pre-release API versions should be considered. + protected Task DetermineApiVersion(string resourceId, bool? pre = null) + { + return string.IsNullOrWhiteSpace(this.ApiVersion) + ? Components.ApiVersionHelper.DetermineApiVersion( + context: DefaultContext, + resourceId: resourceId, + cancellationToken: this.CancellationToken.Value, + pre: pre ?? this.Pre, + cmdletHeaderValues: this.GetCmdletHeaders()) + : Task.FromResult(this.ApiVersion); + } + + /// + /// Determines the API version. + /// + /// The provider namespace. + /// The resource type. + /// When specified, indicates if pre-release API versions should be considered. + protected Task DetermineApiVersion(string providerNamespace, string resourceType, bool? pre = null) + { + return string.IsNullOrWhiteSpace(this.ApiVersion) + ? Components.ApiVersionHelper.DetermineApiVersion( + DefaultContext, + providerNamespace: providerNamespace, + resourceType: resourceType, + cancellationToken: this.CancellationToken.Value, + pre: pre ?? this.Pre, + cmdletHeaderValues: this.GetCmdletHeaders()) + : Task.FromResult(this.ApiVersion); + } } } diff --git a/src/Resources/ResourceManager/Implementation/ResourceGroupDeployments/GetAzureResourceGroupDeploymentOperationCmdlet.cs b/src/Resources/ResourceManager/Implementation/ResourceGroupDeployments/GetAzureResourceGroupDeploymentOperationCmdlet.cs index d0ef40ac615a..54677be3cfb5 100644 --- a/src/Resources/ResourceManager/Implementation/ResourceGroupDeployments/GetAzureResourceGroupDeploymentOperationCmdlet.cs +++ b/src/Resources/ResourceManager/Implementation/ResourceGroupDeployments/GetAzureResourceGroupDeploymentOperationCmdlet.cs @@ -88,7 +88,7 @@ private async Task> GetResources() { var resourceId = this.GetResourceId(); - var apiVersion = string.IsNullOrWhiteSpace(this.ApiVersion) ? Constants.DeploymentOperationApiVersion : this.ApiVersion; + var apiVersion = Constants.DeploymentOperationApiVersion; return await this .GetResourcesClient() diff --git a/src/Resources/ResourceManager/Implementation/ResourceGroupDeployments/SaveAzureResourceGroupDeploymentTemplateCmdlet.cs b/src/Resources/ResourceManager/Implementation/ResourceGroupDeployments/SaveAzureResourceGroupDeploymentTemplateCmdlet.cs index 1dd34aa967b0..72b916c37595 100644 --- a/src/Resources/ResourceManager/Implementation/ResourceGroupDeployments/SaveAzureResourceGroupDeploymentTemplateCmdlet.cs +++ b/src/Resources/ResourceManager/Implementation/ResourceGroupDeployments/SaveAzureResourceGroupDeploymentTemplateCmdlet.cs @@ -68,7 +68,7 @@ protected override void OnProcessRecord() { var resourceId = this.GetResourceId(); - var apiVersion = this.DetermineApiVersion(resourceId: resourceId).Result; + var apiVersion = Constants.DeploymentOperationApiVersion; var operationResult = this.GetResourcesClient() .InvokeActionOnResource( From 38585ee11f1d2277ba42ef892e33f19fdf4900e4 Mon Sep 17 00:00:00 2001 From: Gokul Premraj Date: Wed, 10 Jun 2020 11:58:13 -0400 Subject: [PATCH 02/17] update changelog --- src/Resources/Resources/ChangeLog.md | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Resources/Resources/ChangeLog.md b/src/Resources/Resources/ChangeLog.md index 8e647d24dd36..1aad36f1f2af 100644 --- a/src/Resources/Resources/ChangeLog.md +++ b/src/Resources/Resources/ChangeLog.md @@ -23,6 +23,7 @@ * Added `-ExcludeChangeType` parameter to `Get-AzDeploymentWhatIfResult` and `Get-AzResourceGroupDeploymentWhatIfResult` * Added `-WhatIfExcludeChangeType` parameter to `New-AzDeployment` and `New-AzResourceGroupDeployment` * Updated `Test-Az*Deployment` cmdlets to show better error messages +* Removed ApiVersion Parameter from Deployments cmdlets ## Version 2.1.0 * Added Tail parameter to Get-AzDeploymentScriptLog and Save-AzDeploymentScriptLog cmdlets From 8568c38ef3f8cd914c278bf4de5ea3789d471938 Mon Sep 17 00:00:00 2001 From: Gokul Premraj Date: Wed, 10 Jun 2020 12:11:13 -0400 Subject: [PATCH 03/17] Delete ApiVersion param --- .../CmdletBase/ResourceManagerCmdletBase.cs | 8 -------- 1 file changed, 8 deletions(-) diff --git a/src/Resources/ResourceManager/Implementation/CmdletBase/ResourceManagerCmdletBase.cs b/src/Resources/ResourceManager/Implementation/CmdletBase/ResourceManagerCmdletBase.cs index f38a048a1d18..678750ece5c9 100644 --- a/src/Resources/ResourceManager/Implementation/CmdletBase/ResourceManagerCmdletBase.cs +++ b/src/Resources/ResourceManager/Implementation/CmdletBase/ResourceManagerCmdletBase.cs @@ -66,14 +66,6 @@ protected CancellationToken? CancellationToken /// private SubscriptionSdkClient subscriptionSdkClient; - /// - /// Gets or sets the API version. - /// - /*[CmdletParameterBreakingChange("ApiVersion", ChangeDescription = "Parameter is being deprecated without being replaced")] - [Parameter(Mandatory = false, HelpMessage = "When set, indicates the version of the resource provider API to use. If not specified, the API version is automatically determined as the latest available.")] - [ValidateNotNullOrEmpty] - public virtual string ApiVersion { get; set; }*/ - /// /// Gets or sets the switch that indicates if pre-release API version should be considered. /// From 603df06022cab31687dd911f50e2c18cf762ee9c Mon Sep 17 00:00:00 2001 From: Gokul Premraj Date: Fri, 12 Jun 2020 18:02:29 -0400 Subject: [PATCH 04/17] Switch to SDK use in ResourceGroup Deployments cmdlets --- ...eResourceGroupDeploymentOperationCmdlet.cs | 63 +- ...reResourceGroupDeploymentTemplateCmdlet.cs | 37 +- .../ResourceGroupDeploymentEndToEnd.json | 7757 ++++------------- 3 files changed, 1652 insertions(+), 6205 deletions(-) diff --git a/src/Resources/ResourceManager/Implementation/ResourceGroupDeployments/GetAzureResourceGroupDeploymentOperationCmdlet.cs b/src/Resources/ResourceManager/Implementation/ResourceGroupDeployments/GetAzureResourceGroupDeploymentOperationCmdlet.cs index d0ef40ac615a..1069e182604d 100644 --- a/src/Resources/ResourceManager/Implementation/ResourceGroupDeployments/GetAzureResourceGroupDeploymentOperationCmdlet.cs +++ b/src/Resources/ResourceManager/Implementation/ResourceGroupDeployments/GetAzureResourceGroupDeploymentOperationCmdlet.cs @@ -58,68 +58,11 @@ public class GetAzureResourceGroupDeploymentOperationCmdlet : ResourceManagerCmd /// protected override void OnProcessRecord() { - base.OnProcessRecord(); + var deploymentOperations = ResourceManagerSdkClient.ListDeploymentOperationsAtResourceGroup( + ResourceGroupName, DeploymentName); - 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); + WriteObject(deploymentOperations, true); } - /// - /// 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); - } } } diff --git a/src/Resources/ResourceManager/Implementation/ResourceGroupDeployments/SaveAzureResourceGroupDeploymentTemplateCmdlet.cs b/src/Resources/ResourceManager/Implementation/ResourceGroupDeployments/SaveAzureResourceGroupDeploymentTemplateCmdlet.cs index 1dd34aa967b0..51ee521058b0 100644 --- a/src/Resources/ResourceManager/Implementation/ResourceGroupDeployments/SaveAzureResourceGroupDeploymentTemplateCmdlet.cs +++ b/src/Resources/ResourceManager/Implementation/ResourceGroupDeployments/SaveAzureResourceGroupDeploymentTemplateCmdlet.cs @@ -66,30 +66,7 @@ protected override void OnProcessRecord() base.OnProcessRecord(); if (ShouldProcess(DeploymentName, VerbsData.Save)) { - var resourceId = this.GetResourceId(); - - var apiVersion = this.DetermineApiVersion(resourceId: resourceId).Result; - - var operationResult = this.GetResourcesClient() - .InvokeActionOnResource( - resourceId: resourceId, - action: Constants.ExportTemplate, - apiVersion: apiVersion, - cancellationToken: this.CancellationToken.Value) - .Result; - - var managementUri = this.GetResourcesClient() - .GetResourceManagementRequestUri( - resourceId: resourceId, - apiVersion: apiVersion, - action: Constants.ExportTemplate); - - var activity = string.Format("POST {0}", managementUri.PathAndQuery); - var resultString = this.GetLongRunningOperationTracker(activityName: activity, - isResourceCreateOrUpdate: false) - .WaitOnOperation(operationResult: operationResult); - - var template = JToken.FromObject(JObject.Parse(resultString)["template"]); + var template = ResourceManagerSdkClient.GetDeploymentTemplateAtResourceGroup(ResourceGroupName, DeploymentName); string path = FileUtility.SaveTemplateFile( templateName: this.DeploymentName, @@ -104,17 +81,5 @@ protected override void OnProcessRecord() WriteObject(PowerShellUtilities.ConstructPSObject(null, "Path", path)); } } - - /// - /// Gets the resource Id from the supplied PowerShell parameters. - /// - protected string GetResourceId() - { - return ResourceIdUtility.GetResourceId( - subscriptionId: DefaultContext.Subscription.GetId(), - resourceGroupName: this.ResourceGroupName, - resourceType: Constants.MicrosoftResourcesDeploymentType, - resourceName: this.DeploymentName); - } } } 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 9854d2170d59..e288114b207e 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,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourcegroups/ps6304?api-version=2019-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjlmMTM4YTEtMWQ2NC00MTA4LTg0MTMtOWVhM2JlMWMxYjJkL3Jlc291cmNlZ3JvdXBzL3BzNjMwND9hcGktdmVyc2lvbj0yMDE5LTEwLTAx", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2509?api-version=2019-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjUwOT9hcGktdmVyc2lvbj0yMDE5LTEwLTAx", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3c2e3911-ba1f-46ef-9d8b-6fcf6379c259" + "dc23913f-0385-4ffe-87a8-38e27ef8d022" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27110.04", + "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.4.0.0" + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0" ] }, "ResponseHeaders": { @@ -33,13 +33,13 @@ "11999" ], "x-ms-request-id": [ - "c86a0c57-e061-47e8-b167-a7cb59463d1d" + "a3c3b954-06b7-4b14-aaf1-12b05e1e1bf4" ], "x-ms-correlation-request-id": [ - "c86a0c57-e061-47e8-b167-a7cb59463d1d" + "a3c3b954-06b7-4b14-aaf1-12b05e1e1bf4" ], "x-ms-routing-request-id": [ - "WESTUS2:20200325T091307Z:c86a0c57-e061-47e8-b167-a7cb59463d1d" + "NORTHCENTRALUS:20200612T213910Z:a3c3b954-06b7-4b14-aaf1-12b05e1e1bf4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -48,7 +48,7 @@ "nosniff" ], "Date": [ - "Wed, 25 Mar 2020 09:13:06 GMT" + "Fri, 12 Jun 2020 21:39:10 GMT" ], "Content-Length": [ "98" @@ -67,22 +67,22 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourcegroups/ps6304?api-version=2019-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjlmMTM4YTEtMWQ2NC00MTA4LTg0MTMtOWVhM2JlMWMxYjJkL3Jlc291cmNlZ3JvdXBzL3BzNjMwND9hcGktdmVyc2lvbj0yMDE5LTEwLTAx", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2509?api-version=2019-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjUwOT9hcGktdmVyc2lvbj0yMDE5LTEwLTAx", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7887ce17-2afd-4bc1-b779-f10c50040a6c" + "c02a097c-a14f-4ec2-8ac2-34191777ab66" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27110.04", + "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.4.0.0" + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0" ] }, "ResponseHeaders": { @@ -93,16 +93,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11807" + "11876" ], "x-ms-request-id": [ - "0652647c-f2d7-45b6-87c5-6a6d41fa2ce7" + "74d80e94-faa5-4764-8e19-e01b81ef8b0b" ], "x-ms-correlation-request-id": [ - "0652647c-f2d7-45b6-87c5-6a6d41fa2ce7" + "74d80e94-faa5-4764-8e19-e01b81ef8b0b" ], "x-ms-routing-request-id": [ - "WESTUS2:20200325T091448Z:0652647c-f2d7-45b6-87c5-6a6d41fa2ce7" + "NORTHCENTRALUS:20200612T214012Z:74d80e94-faa5-4764-8e19-e01b81ef8b0b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -111,7 +111,7 @@ "nosniff" ], "Date": [ - "Wed, 25 Mar 2020 09:14:47 GMT" + "Fri, 12 Jun 2020 21:40:12 GMT" ], "Content-Length": [ "0" @@ -127,22 +127,22 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourcegroups/ps6304?api-version=2019-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjlmMTM4YTEtMWQ2NC00MTA4LTg0MTMtOWVhM2JlMWMxYjJkL3Jlc291cmNlZ3JvdXBzL3BzNjMwND9hcGktdmVyc2lvbj0yMDE5LTEwLTAx", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2509?api-version=2019-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjUwOT9hcGktdmVyc2lvbj0yMDE5LTEwLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"WestUS\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "a698d3af-650e-4745-be71-cb16719735a2" + "a11df187-c793-4287-8f35-03152d42796b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27110.04", + "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.4.0.0" + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -162,13 +162,13 @@ "1199" ], "x-ms-request-id": [ - "778bb1cd-a35e-4641-8344-eaf33be8ba11" + "b0a7a369-1fa6-4425-8f34-e9ff01f32362" ], "x-ms-correlation-request-id": [ - "778bb1cd-a35e-4641-8344-eaf33be8ba11" + "b0a7a369-1fa6-4425-8f34-e9ff01f32362" ], "x-ms-routing-request-id": [ - "WESTUS2:20200325T091308Z:778bb1cd-a35e-4641-8344-eaf33be8ba11" + "NORTHCENTRALUS:20200612T213911Z:b0a7a369-1fa6-4425-8f34-e9ff01f32362" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -177,7 +177,7 @@ "nosniff" ], "Date": [ - "Wed, 25 Mar 2020 09:13:07 GMT" + "Fri, 12 Jun 2020 21:39:11 GMT" ], "Content-Length": [ "209" @@ -192,26 +192,26 @@ "0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304\",\r\n \"name\": \"ps6304\",\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/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}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourcegroups/ps6304/providers/Microsoft.Resources/deployments/ps7102/validate?api-version=2019-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjlmMTM4YTEtMWQ2NC00MTA4LTg0MTMtOWVhM2JlMWMxYjJkL3Jlc291cmNlZ3JvdXBzL3BzNjMwNC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMDIvdmFsaWRhdGU/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2509/providers/Microsoft.Resources/deployments/ps296/validate?api-version=2019-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjUwOS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczI5Ni92YWxpZGF0ZT9hcGktdmVyc2lvbj0yMDE5LTEwLTAx", "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\": \"ps2757\"\r\n }\r\n },\r\n \"mode\": \"Incremental\"\r\n },\r\n \"tags\": {\r\n \"key2\": \"value2\",\r\n \"key1\": \"value1\"\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\": \"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}", "RequestHeaders": { "x-ms-client-request-id": [ - "549aab22-f998-4353-bab8-372749872518" + "887c8036-32aa-49e7-a3a2-c6b6a1ce2370" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27110.04", + "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.4.0.0" + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -231,13 +231,13 @@ "1199" ], "x-ms-request-id": [ - "bb155e43-0644-4eaf-b343-82f55737b6d9" + "e2ca3dd1-12e6-45f9-8a3d-5b724cd84b8f" ], "x-ms-correlation-request-id": [ - "bb155e43-0644-4eaf-b343-82f55737b6d9" + "e2ca3dd1-12e6-45f9-8a3d-5b724cd84b8f" ], "x-ms-routing-request-id": [ - "WESTUS2:20200325T091310Z:bb155e43-0644-4eaf-b343-82f55737b6d9" + "NORTHCENTRALUS:20200612T213913Z:e2ca3dd1-12e6-45f9-8a3d-5b724cd84b8f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -246,10 +246,10 @@ "nosniff" ], "Date": [ - "Wed, 25 Mar 2020 09:13:09 GMT" + "Fri, 12 Jun 2020 21:39:13 GMT" ], "Content-Length": [ - "930" + "928" ], "Content-Type": [ "application/json; charset=utf-8" @@ -261,26 +261,26 @@ "0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Resources/deployments/ps7102\",\r\n \"name\": \"ps7102\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key2\": \"value2\",\r\n \"key1\": \"value1\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps2757\"\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-03-25T09:13:09.7693059Z\",\r\n \"duration\": \"PT0S\",\r\n \"correlationId\": \"bb155e43-0644-4eaf-b343-82f55737b6d9\",\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/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Storage/storageAccounts/ps2757\"\r\n }\r\n ]\r\n }\r\n}", + "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}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourcegroups/ps6304/providers/Microsoft.Resources/deployments/ps7102?api-version=2019-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjlmMTM4YTEtMWQ2NC00MTA4LTg0MTMtOWVhM2JlMWMxYjJkL3Jlc291cmNlZ3JvdXBzL3BzNjMwNC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMDI/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2509/providers/Microsoft.Resources/deployments/ps296?api-version=2019-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjUwOS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczI5Nj9hcGktdmVyc2lvbj0yMDE5LTEwLTAx", "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\": \"ps2757\"\r\n }\r\n },\r\n \"mode\": \"Incremental\"\r\n },\r\n \"tags\": {\r\n \"key2\": \"value2\",\r\n \"key1\": \"value1\"\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\": \"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}", "RequestHeaders": { "x-ms-client-request-id": [ - "b9d964a0-c7ec-4bfa-9cc0-08590420af80" + "17716870-d404-4a27-96a2-f7dbf69125ff" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27110.04", + "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.4.0.0" + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -297,19 +297,19 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourcegroups/ps6304/providers/Microsoft.Resources/deployments/ps7102/operationStatuses/08586164792943246485?api-version=2019-10-01" + "https://management.azure.com/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2509/providers/Microsoft.Resources/deployments/ps296/operationStatuses/08586096089309966057?api-version=2019-10-01" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1198" ], "x-ms-request-id": [ - "d739b9ad-582a-4653-8eaf-c9d0298ba601" + "6e296f26-2639-41f3-9c97-bb57b5e5459a" ], "x-ms-correlation-request-id": [ - "d739b9ad-582a-4653-8eaf-c9d0298ba601" + "6e296f26-2639-41f3-9c97-bb57b5e5459a" ], "x-ms-routing-request-id": [ - "WESTUS2:20200325T091311Z:d739b9ad-582a-4653-8eaf-c9d0298ba601" + "NORTHCENTRALUS:20200612T213916Z:6e296f26-2639-41f3-9c97-bb57b5e5459a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -318,10 +318,10 @@ "nosniff" ], "Date": [ - "Wed, 25 Mar 2020 09:13:11 GMT" + "Fri, 12 Jun 2020 21:39:15 GMT" ], "Content-Length": [ - "780" + "778" ], "Content-Type": [ "application/json; charset=utf-8" @@ -333,26 +333,26 @@ "0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Resources/deployments/ps7102\",\r\n \"name\": \"ps7102\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key2\": \"value2\",\r\n \"key1\": \"value1\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps2757\"\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-03-25T09:13:11.6918319Z\",\r\n \"duration\": \"PT0.5388692S\",\r\n \"correlationId\": \"d739b9ad-582a-4653-8eaf-c9d0298ba601\",\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/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}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourcegroups/ps6304/deployments/ps7102/operations?api-version=2019-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjlmMTM4YTEtMWQ2NC00MTA4LTg0MTMtOWVhM2JlMWMxYjJkL3Jlc291cmNlZ3JvdXBzL3BzNjMwNC9kZXBsb3ltZW50cy9wczcxMDIvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx", + "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": [ - "350177cb-36fd-4e14-bd45-4c8db62ec6d6" + "d687f6b6-d084-4693-a372-a56a2decded2" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27110.04", + "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.4.0.0" + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0" ] }, "ResponseHeaders": { @@ -366,13 +366,13 @@ "11998" ], "x-ms-request-id": [ - "6a3187d2-6aeb-4ca3-9eea-613ceabb0497" + "002eab36-8606-411c-93f2-1650448875b2" ], "x-ms-correlation-request-id": [ - "6a3187d2-6aeb-4ca3-9eea-613ceabb0497" + "002eab36-8606-411c-93f2-1650448875b2" ], "x-ms-routing-request-id": [ - "WESTUS2:20200325T091312Z:6a3187d2-6aeb-4ca3-9eea-613ceabb0497" + "NORTHCENTRALUS:20200612T213916Z:002eab36-8606-411c-93f2-1650448875b2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -381,7 +381,7 @@ "nosniff" ], "Date": [ - "Wed, 25 Mar 2020 09:13:11 GMT" + "Fri, 12 Jun 2020 21:39:16 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -400,22 +400,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourcegroups/ps6304/deployments/ps7102/operations?api-version=2019-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjlmMTM4YTEtMWQ2NC00MTA4LTg0MTMtOWVhM2JlMWMxYjJkL3Jlc291cmNlZ3JvdXBzL3BzNjMwNC9kZXBsb3ltZW50cy9wczcxMDIvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx", + "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": [ - "a8ba2604-09cb-46fb-b089-8894e582f53d" + "a12e09d7-9e6f-4510-b7bc-d79ffc93f422" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27110.04", + "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.4.0.0" + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0" ] }, "ResponseHeaders": { @@ -429,13 +429,13 @@ "11996" ], "x-ms-request-id": [ - "d4822a9b-764d-4499-83f6-78c7d9a0d1a8" + "607db96a-7fa3-4dda-89f2-ffa6e7c52382" ], "x-ms-correlation-request-id": [ - "d4822a9b-764d-4499-83f6-78c7d9a0d1a8" + "607db96a-7fa3-4dda-89f2-ffa6e7c52382" ], "x-ms-routing-request-id": [ - "WESTUS2:20200325T091312Z:d4822a9b-764d-4499-83f6-78c7d9a0d1a8" + "NORTHCENTRALUS:20200612T213916Z:607db96a-7fa3-4dda-89f2-ffa6e7c52382" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -444,7 +444,7 @@ "nosniff" ], "Date": [ - "Wed, 25 Mar 2020 09:13:12 GMT" + "Fri, 12 Jun 2020 21:39:16 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -463,22 +463,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourcegroups/ps6304/deployments/ps7102/operations?api-version=2019-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjlmMTM4YTEtMWQ2NC00MTA4LTg0MTMtOWVhM2JlMWMxYjJkL3Jlc291cmNlZ3JvdXBzL3BzNjMwNC9kZXBsb3ltZW50cy9wczcxMDIvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx", + "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": [ - "76ee6a07-c52f-48a2-9e47-f44ba6201eff" + "a80a9503-5a34-4744-888c-0cc68f8e005f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27110.04", + "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.4.0.0" + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0" ] }, "ResponseHeaders": { @@ -492,13 +492,13 @@ "11994" ], "x-ms-request-id": [ - "9e097fc3-a72b-47a7-ab78-5fec33273af6" + "e783ff96-2a51-467b-95f5-ab82da733fb2" ], "x-ms-correlation-request-id": [ - "9e097fc3-a72b-47a7-ab78-5fec33273af6" + "e783ff96-2a51-467b-95f5-ab82da733fb2" ], "x-ms-routing-request-id": [ - "WESTUS2:20200325T091313Z:9e097fc3-a72b-47a7-ab78-5fec33273af6" + "NORTHCENTRALUS:20200612T213917Z:e783ff96-2a51-467b-95f5-ab82da733fb2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -507,7 +507,7 @@ "nosniff" ], "Date": [ - "Wed, 25 Mar 2020 09:13:12 GMT" + "Fri, 12 Jun 2020 21:39:16 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -526,22 +526,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourcegroups/ps6304/deployments/ps7102/operations?api-version=2019-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjlmMTM4YTEtMWQ2NC00MTA4LTg0MTMtOWVhM2JlMWMxYjJkL3Jlc291cmNlZ3JvdXBzL3BzNjMwNC9kZXBsb3ltZW50cy9wczcxMDIvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx", + "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": [ - "7f7b756e-c297-4fff-869d-b8ad198506b2" + "13951cab-9e1a-4f08-8742-7d9e0821ccef" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27110.04", + "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.4.0.0" + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0" ] }, "ResponseHeaders": { @@ -555,13 +555,13 @@ "11992" ], "x-ms-request-id": [ - "2c7f4b1b-31b3-4830-aeb0-9445a24f671f" + "d17c49ad-914f-49d2-9db2-cb004602c26e" ], "x-ms-correlation-request-id": [ - "2c7f4b1b-31b3-4830-aeb0-9445a24f671f" + "d17c49ad-914f-49d2-9db2-cb004602c26e" ], "x-ms-routing-request-id": [ - "WESTUS2:20200325T091313Z:2c7f4b1b-31b3-4830-aeb0-9445a24f671f" + "NORTHCENTRALUS:20200612T213917Z:d17c49ad-914f-49d2-9db2-cb004602c26e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -570,7 +570,7 @@ "nosniff" ], "Date": [ - "Wed, 25 Mar 2020 09:13:12 GMT" + "Fri, 12 Jun 2020 21:39:17 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -589,22 +589,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourcegroups/ps6304/deployments/ps7102/operations?api-version=2019-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjlmMTM4YTEtMWQ2NC00MTA4LTg0MTMtOWVhM2JlMWMxYjJkL3Jlc291cmNlZ3JvdXBzL3BzNjMwNC9kZXBsb3ltZW50cy9wczcxMDIvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx", + "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": [ - "bc57efee-a5e0-46c7-b39e-1833b0e7d0fb" + "4aba0d0c-7762-49c8-a428-dfddfc75b591" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27110.04", + "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.4.0.0" + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0" ] }, "ResponseHeaders": { @@ -618,13 +618,13 @@ "11990" ], "x-ms-request-id": [ - "0e729507-799d-450d-9bff-b82771820bc6" + "cf4b5905-2961-402c-ae65-80f983d3ec79" ], "x-ms-correlation-request-id": [ - "0e729507-799d-450d-9bff-b82771820bc6" + "cf4b5905-2961-402c-ae65-80f983d3ec79" ], "x-ms-routing-request-id": [ - "WESTUS2:20200325T091313Z:0e729507-799d-450d-9bff-b82771820bc6" + "NORTHCENTRALUS:20200612T213918Z:cf4b5905-2961-402c-ae65-80f983d3ec79" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -633,7 +633,7 @@ "nosniff" ], "Date": [ - "Wed, 25 Mar 2020 09:13:13 GMT" + "Fri, 12 Jun 2020 21:39:17 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -652,22 +652,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourcegroups/ps6304/deployments/ps7102/operations?api-version=2019-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjlmMTM4YTEtMWQ2NC00MTA4LTg0MTMtOWVhM2JlMWMxYjJkL3Jlc291cmNlZ3JvdXBzL3BzNjMwNC9kZXBsb3ltZW50cy9wczcxMDIvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx", + "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": [ - "7e651a9e-7e64-4db9-ab3f-672e20d6fcc4" + "4b07e78e-876c-4c77-a047-3cbb2212af17" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27110.04", + "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.4.0.0" + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0" ] }, "ResponseHeaders": { @@ -681,13 +681,13 @@ "11988" ], "x-ms-request-id": [ - "64667883-4b57-43b4-9c4c-409f12de16da" + "fda907b6-0d1b-44e4-b1bd-581dd2216090" ], "x-ms-correlation-request-id": [ - "64667883-4b57-43b4-9c4c-409f12de16da" + "fda907b6-0d1b-44e4-b1bd-581dd2216090" ], "x-ms-routing-request-id": [ - "WESTUS2:20200325T091313Z:64667883-4b57-43b4-9c4c-409f12de16da" + "NORTHCENTRALUS:20200612T213918Z:fda907b6-0d1b-44e4-b1bd-581dd2216090" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -696,7 +696,7 @@ "nosniff" ], "Date": [ - "Wed, 25 Mar 2020 09:13:13 GMT" + "Fri, 12 Jun 2020 21:39:18 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -715,22 +715,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourcegroups/ps6304/deployments/ps7102/operations?api-version=2019-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjlmMTM4YTEtMWQ2NC00MTA4LTg0MTMtOWVhM2JlMWMxYjJkL3Jlc291cmNlZ3JvdXBzL3BzNjMwNC9kZXBsb3ltZW50cy9wczcxMDIvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx", + "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": [ - "88226c80-659d-4877-badd-6c1d856b5457" + "ee89e80f-7476-4b85-a234-3af7b4ada214" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27110.04", + "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.4.0.0" + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0" ] }, "ResponseHeaders": { @@ -744,13 +744,13 @@ "11986" ], "x-ms-request-id": [ - "72abe8f7-7e0c-4c7c-aeae-fb3b5493c872" + "b7717da0-c380-4cb1-b25c-2ce9a404c3c7" ], "x-ms-correlation-request-id": [ - "72abe8f7-7e0c-4c7c-aeae-fb3b5493c872" + "b7717da0-c380-4cb1-b25c-2ce9a404c3c7" ], "x-ms-routing-request-id": [ - "WESTUS2:20200325T091314Z:72abe8f7-7e0c-4c7c-aeae-fb3b5493c872" + "NORTHCENTRALUS:20200612T213918Z:b7717da0-c380-4cb1-b25c-2ce9a404c3c7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -759,7 +759,7 @@ "nosniff" ], "Date": [ - "Wed, 25 Mar 2020 09:13:13 GMT" + "Fri, 12 Jun 2020 21:39:18 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -778,22 +778,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourcegroups/ps6304/deployments/ps7102/operations?api-version=2019-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjlmMTM4YTEtMWQ2NC00MTA4LTg0MTMtOWVhM2JlMWMxYjJkL3Jlc291cmNlZ3JvdXBzL3BzNjMwNC9kZXBsb3ltZW50cy9wczcxMDIvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx", + "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": [ - "8adc28c6-c55f-4a05-a90b-0067312b2827" + "48fa4a6f-1c8e-4496-b878-cdbd83408800" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27110.04", + "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.4.0.0" + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0" ] }, "ResponseHeaders": { @@ -807,13 +807,13 @@ "11984" ], "x-ms-request-id": [ - "262ab756-57f8-4138-b603-64ba51c2b189" + "d9fde0e9-41f7-4c4d-be43-08ba7e628f6c" ], "x-ms-correlation-request-id": [ - "262ab756-57f8-4138-b603-64ba51c2b189" + "d9fde0e9-41f7-4c4d-be43-08ba7e628f6c" ], "x-ms-routing-request-id": [ - "WESTUS2:20200325T091314Z:262ab756-57f8-4138-b603-64ba51c2b189" + "NORTHCENTRALUS:20200612T213919Z:d9fde0e9-41f7-4c4d-be43-08ba7e628f6c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -822,7 +822,7 @@ "nosniff" ], "Date": [ - "Wed, 25 Mar 2020 09:13:13 GMT" + "Fri, 12 Jun 2020 21:39:18 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -841,22 +841,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourcegroups/ps6304/deployments/ps7102/operations?api-version=2019-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjlmMTM4YTEtMWQ2NC00MTA4LTg0MTMtOWVhM2JlMWMxYjJkL3Jlc291cmNlZ3JvdXBzL3BzNjMwNC9kZXBsb3ltZW50cy9wczcxMDIvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx", + "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": [ - "2d676f47-7e3c-4ece-ab36-1b2b6b9c6237" + "f2a62d2f-26a5-4a8f-b057-c9bce2277dcf" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27110.04", + "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.4.0.0" + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0" ] }, "ResponseHeaders": { @@ -870,13 +870,13 @@ "11982" ], "x-ms-request-id": [ - "6e1705e2-edd1-4c7a-a6fe-382471b19ff1" + "b7a3dd02-29c7-4cd9-85fa-0c63f7556493" ], "x-ms-correlation-request-id": [ - "6e1705e2-edd1-4c7a-a6fe-382471b19ff1" + "b7a3dd02-29c7-4cd9-85fa-0c63f7556493" ], "x-ms-routing-request-id": [ - "WESTUS2:20200325T091314Z:6e1705e2-edd1-4c7a-a6fe-382471b19ff1" + "NORTHCENTRALUS:20200612T213919Z:b7a3dd02-29c7-4cd9-85fa-0c63f7556493" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -885,7 +885,7 @@ "nosniff" ], "Date": [ - "Wed, 25 Mar 2020 09:13:14 GMT" + "Fri, 12 Jun 2020 21:39:19 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -894,32 +894,32 @@ "-1" ], "Content-Length": [ - "12" + "710" ], "Retry-After": [ "0" ] }, - "ResponseBody": "{\r\n \"value\": []\r\n}", + "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/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourcegroups/ps6304/deployments/ps7102/operations?api-version=2019-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjlmMTM4YTEtMWQ2NC00MTA4LTg0MTMtOWVhM2JlMWMxYjJkL3Jlc291cmNlZ3JvdXBzL3BzNjMwNC9kZXBsb3ltZW50cy9wczcxMDIvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx", + "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": [ - "e26c00be-050b-482e-8615-498c1646df5b" + "2e5dbb0b-171b-419b-8ea3-792551d0e0af" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27110.04", + "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.4.0.0" + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0" ] }, "ResponseHeaders": { @@ -933,13 +933,13 @@ "11980" ], "x-ms-request-id": [ - "efe1c855-52f3-4fe9-a688-de75e9ee318b" + "171998da-92db-4399-9fc5-6015ff0a3b53" ], "x-ms-correlation-request-id": [ - "efe1c855-52f3-4fe9-a688-de75e9ee318b" + "171998da-92db-4399-9fc5-6015ff0a3b53" ], "x-ms-routing-request-id": [ - "WESTUS2:20200325T091315Z:efe1c855-52f3-4fe9-a688-de75e9ee318b" + "NORTHCENTRALUS:20200612T213920Z:171998da-92db-4399-9fc5-6015ff0a3b53" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -948,7 +948,7 @@ "nosniff" ], "Date": [ - "Wed, 25 Mar 2020 09:13:14 GMT" + "Fri, 12 Jun 2020 21:39:19 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -957,32 +957,32 @@ "-1" ], "Content-Length": [ - "12" + "710" ], "Retry-After": [ "0" ] }, - "ResponseBody": "{\r\n \"value\": []\r\n}", + "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/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourcegroups/ps6304/deployments/ps7102/operations?api-version=2019-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjlmMTM4YTEtMWQ2NC00MTA4LTg0MTMtOWVhM2JlMWMxYjJkL3Jlc291cmNlZ3JvdXBzL3BzNjMwNC9kZXBsb3ltZW50cy9wczcxMDIvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx", + "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": [ - "1b398e21-3121-4c18-b110-3730ea8f5713" + "efc0be7e-03a2-4f14-b7f9-4e5c1bbb77de" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27110.04", + "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.4.0.0" + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0" ] }, "ResponseHeaders": { @@ -996,13 +996,13 @@ "11978" ], "x-ms-request-id": [ - "799012d8-b90d-44d0-9f03-5181503202ee" + "00b714c6-d852-42c7-9069-760ccb8a3bab" ], "x-ms-correlation-request-id": [ - "799012d8-b90d-44d0-9f03-5181503202ee" + "00b714c6-d852-42c7-9069-760ccb8a3bab" ], "x-ms-routing-request-id": [ - "WESTUS2:20200325T091315Z:799012d8-b90d-44d0-9f03-5181503202ee" + "NORTHCENTRALUS:20200612T213920Z:00b714c6-d852-42c7-9069-760ccb8a3bab" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1011,7 +1011,7 @@ "nosniff" ], "Date": [ - "Wed, 25 Mar 2020 09:13:15 GMT" + "Fri, 12 Jun 2020 21:39:20 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1020,32 +1020,32 @@ "-1" ], "Content-Length": [ - "12" + "710" ], "Retry-After": [ "0" ] }, - "ResponseBody": "{\r\n \"value\": []\r\n}", + "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/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourcegroups/ps6304/deployments/ps7102/operations?api-version=2019-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjlmMTM4YTEtMWQ2NC00MTA4LTg0MTMtOWVhM2JlMWMxYjJkL3Jlc291cmNlZ3JvdXBzL3BzNjMwNC9kZXBsb3ltZW50cy9wczcxMDIvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx", + "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": [ - "938c1bbe-d92e-41a5-97c9-3d34c952a776" + "08aea369-1a5f-4efe-85db-3976b7c30db0" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27110.04", + "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.4.0.0" + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0" ] }, "ResponseHeaders": { @@ -1059,13 +1059,13 @@ "11976" ], "x-ms-request-id": [ - "48a97049-2b32-4e7e-81c6-847dc2571aae" + "f398d5a3-1935-4043-8ae6-9afbd2dd1775" ], "x-ms-correlation-request-id": [ - "48a97049-2b32-4e7e-81c6-847dc2571aae" + "f398d5a3-1935-4043-8ae6-9afbd2dd1775" ], "x-ms-routing-request-id": [ - "WESTUS2:20200325T091316Z:48a97049-2b32-4e7e-81c6-847dc2571aae" + "NORTHCENTRALUS:20200612T213920Z:f398d5a3-1935-4043-8ae6-9afbd2dd1775" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1074,7 +1074,7 @@ "nosniff" ], "Date": [ - "Wed, 25 Mar 2020 09:13:15 GMT" + "Fri, 12 Jun 2020 21:39:20 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1083,32 +1083,32 @@ "-1" ], "Content-Length": [ - "12" + "710" ], "Retry-After": [ "0" ] }, - "ResponseBody": "{\r\n \"value\": []\r\n}", + "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/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourcegroups/ps6304/deployments/ps7102/operations?api-version=2019-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjlmMTM4YTEtMWQ2NC00MTA4LTg0MTMtOWVhM2JlMWMxYjJkL3Jlc291cmNlZ3JvdXBzL3BzNjMwNC9kZXBsb3ltZW50cy9wczcxMDIvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx", + "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": [ - "56dea4a0-723b-49b5-a19e-2f4f7926ab8c" + "ed65d18b-efef-4991-b4a4-dae3ea7a1944" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27110.04", + "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.4.0.0" + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0" ] }, "ResponseHeaders": { @@ -1122,13 +1122,13 @@ "11974" ], "x-ms-request-id": [ - "5fee4b29-4bad-4b38-a1aa-3949deed88ec" + "93af9c3a-1022-485c-89ac-529078a2f46f" ], "x-ms-correlation-request-id": [ - "5fee4b29-4bad-4b38-a1aa-3949deed88ec" + "93af9c3a-1022-485c-89ac-529078a2f46f" ], "x-ms-routing-request-id": [ - "WESTUS2:20200325T091316Z:5fee4b29-4bad-4b38-a1aa-3949deed88ec" + "NORTHCENTRALUS:20200612T213921Z:93af9c3a-1022-485c-89ac-529078a2f46f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1137,7 +1137,7 @@ "nosniff" ], "Date": [ - "Wed, 25 Mar 2020 09:13:15 GMT" + "Fri, 12 Jun 2020 21:39:20 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1146,32 +1146,32 @@ "-1" ], "Content-Length": [ - "12" + "710" ], "Retry-After": [ "0" ] }, - "ResponseBody": "{\r\n \"value\": []\r\n}", + "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/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourcegroups/ps6304/deployments/ps7102/operations?api-version=2019-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjlmMTM4YTEtMWQ2NC00MTA4LTg0MTMtOWVhM2JlMWMxYjJkL3Jlc291cmNlZ3JvdXBzL3BzNjMwNC9kZXBsb3ltZW50cy9wczcxMDIvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx", + "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": [ - "434d0d68-ae6a-4884-b6ad-271c344b25a6" + "10aff805-6079-47d1-9f80-c11c8aeb3483" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27110.04", + "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.4.0.0" + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0" ] }, "ResponseHeaders": { @@ -1185,13 +1185,13 @@ "11972" ], "x-ms-request-id": [ - "c699489e-8a7e-4fa3-9677-c68b87e3b3cb" + "9ddf2a4b-24d4-456d-82f1-24607c9dee68" ], "x-ms-correlation-request-id": [ - "c699489e-8a7e-4fa3-9677-c68b87e3b3cb" + "9ddf2a4b-24d4-456d-82f1-24607c9dee68" ], "x-ms-routing-request-id": [ - "WESTUS2:20200325T091317Z:c699489e-8a7e-4fa3-9677-c68b87e3b3cb" + "NORTHCENTRALUS:20200612T213921Z:9ddf2a4b-24d4-456d-82f1-24607c9dee68" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1200,7 +1200,7 @@ "nosniff" ], "Date": [ - "Wed, 25 Mar 2020 09:13:16 GMT" + "Fri, 12 Jun 2020 21:39:21 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1209,32 +1209,32 @@ "-1" ], "Content-Length": [ - "12" + "710" ], "Retry-After": [ "0" ] }, - "ResponseBody": "{\r\n \"value\": []\r\n}", + "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/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourcegroups/ps6304/deployments/ps7102/operations?api-version=2019-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjlmMTM4YTEtMWQ2NC00MTA4LTg0MTMtOWVhM2JlMWMxYjJkL3Jlc291cmNlZ3JvdXBzL3BzNjMwNC9kZXBsb3ltZW50cy9wczcxMDIvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx", + "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": [ - "dcc03c7f-8cc1-47cc-a824-3b4f8ff6ce50" + "1f506bf3-1b8d-4546-8223-c2a526326228" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27110.04", + "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.4.0.0" + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0" ] }, "ResponseHeaders": { @@ -1248,13 +1248,13 @@ "11970" ], "x-ms-request-id": [ - "51ba4924-8035-48ee-82fe-fa04d8421e7e" + "9a38cabb-0870-4d60-9d13-d098890bc812" ], "x-ms-correlation-request-id": [ - "51ba4924-8035-48ee-82fe-fa04d8421e7e" + "9a38cabb-0870-4d60-9d13-d098890bc812" ], "x-ms-routing-request-id": [ - "WESTUS2:20200325T091317Z:51ba4924-8035-48ee-82fe-fa04d8421e7e" + "NORTHCENTRALUS:20200612T213922Z:9a38cabb-0870-4d60-9d13-d098890bc812" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1263,7 +1263,7 @@ "nosniff" ], "Date": [ - "Wed, 25 Mar 2020 09:13:16 GMT" + "Fri, 12 Jun 2020 21:39:21 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1272,32 +1272,32 @@ "-1" ], "Content-Length": [ - "12" + "710" ], "Retry-After": [ "0" ] }, - "ResponseBody": "{\r\n \"value\": []\r\n}", + "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/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourcegroups/ps6304/deployments/ps7102/operations?api-version=2019-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjlmMTM4YTEtMWQ2NC00MTA4LTg0MTMtOWVhM2JlMWMxYjJkL3Jlc291cmNlZ3JvdXBzL3BzNjMwNC9kZXBsb3ltZW50cy9wczcxMDIvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx", + "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": [ - "4f5120de-234c-41a5-a499-02fbe9bd168e" + "0fc3380b-e32f-4e47-8524-9d1db44e8e43" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27110.04", + "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.4.0.0" + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0" ] }, "ResponseHeaders": { @@ -1311,13 +1311,13 @@ "11968" ], "x-ms-request-id": [ - "a90c98c8-7bd9-4778-bcef-1d57954dcae3" + "1baba80e-be7c-43c0-af72-e59038c152f3" ], "x-ms-correlation-request-id": [ - "a90c98c8-7bd9-4778-bcef-1d57954dcae3" + "1baba80e-be7c-43c0-af72-e59038c152f3" ], "x-ms-routing-request-id": [ - "WESTUS2:20200325T091317Z:a90c98c8-7bd9-4778-bcef-1d57954dcae3" + "NORTHCENTRALUS:20200612T213922Z:1baba80e-be7c-43c0-af72-e59038c152f3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1326,7 +1326,7 @@ "nosniff" ], "Date": [ - "Wed, 25 Mar 2020 09:13:16 GMT" + "Fri, 12 Jun 2020 21:39:22 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1335,32 +1335,32 @@ "-1" ], "Content-Length": [ - "12" + "710" ], "Retry-After": [ "0" ] }, - "ResponseBody": "{\r\n \"value\": []\r\n}", + "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/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourcegroups/ps6304/deployments/ps7102/operations?api-version=2019-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjlmMTM4YTEtMWQ2NC00MTA4LTg0MTMtOWVhM2JlMWMxYjJkL3Jlc291cmNlZ3JvdXBzL3BzNjMwNC9kZXBsb3ltZW50cy9wczcxMDIvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx", + "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": [ - "1cd2cb96-83f2-42b6-bcc7-fedc766c73ae" + "55d79167-1d12-43fa-92b0-85e1db2169b5" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27110.04", + "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.4.0.0" + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0" ] }, "ResponseHeaders": { @@ -1374,13 +1374,13 @@ "11966" ], "x-ms-request-id": [ - "f23d79a8-317e-4061-b7cb-f9c61eb975b1" + "8d9db10e-b2c3-473d-a64e-a8ee736d181e" ], "x-ms-correlation-request-id": [ - "f23d79a8-317e-4061-b7cb-f9c61eb975b1" + "8d9db10e-b2c3-473d-a64e-a8ee736d181e" ], "x-ms-routing-request-id": [ - "WESTUS2:20200325T091317Z:f23d79a8-317e-4061-b7cb-f9c61eb975b1" + "NORTHCENTRALUS:20200612T213922Z:8d9db10e-b2c3-473d-a64e-a8ee736d181e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1389,7 +1389,7 @@ "nosniff" ], "Date": [ - "Wed, 25 Mar 2020 09:13:17 GMT" + "Fri, 12 Jun 2020 21:39:22 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1398,32 +1398,32 @@ "-1" ], "Content-Length": [ - "12" + "710" ], "Retry-After": [ "0" ] }, - "ResponseBody": "{\r\n \"value\": []\r\n}", + "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/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourcegroups/ps6304/deployments/ps7102/operations?api-version=2019-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjlmMTM4YTEtMWQ2NC00MTA4LTg0MTMtOWVhM2JlMWMxYjJkL3Jlc291cmNlZ3JvdXBzL3BzNjMwNC9kZXBsb3ltZW50cy9wczcxMDIvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx", + "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": [ - "55da7cc8-a8fc-4fb5-a55a-dfcf97eeabe3" + "15194dc4-89d1-4daa-b538-5399840e4dc1" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27110.04", + "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.4.0.0" + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0" ] }, "ResponseHeaders": { @@ -1437,13 +1437,13 @@ "11964" ], "x-ms-request-id": [ - "3bf29308-c7dc-4ebd-b357-11b80c2c1401" + "eaa09285-2cec-4093-afbf-98075b5c2eeb" ], "x-ms-correlation-request-id": [ - "3bf29308-c7dc-4ebd-b357-11b80c2c1401" + "eaa09285-2cec-4093-afbf-98075b5c2eeb" ], "x-ms-routing-request-id": [ - "WESTUS2:20200325T091318Z:3bf29308-c7dc-4ebd-b357-11b80c2c1401" + "NORTHCENTRALUS:20200612T213923Z:eaa09285-2cec-4093-afbf-98075b5c2eeb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1452,7 +1452,7 @@ "nosniff" ], "Date": [ - "Wed, 25 Mar 2020 09:13:17 GMT" + "Fri, 12 Jun 2020 21:39:22 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1461,32 +1461,32 @@ "-1" ], "Content-Length": [ - "12" + "710" ], "Retry-After": [ "0" ] }, - "ResponseBody": "{\r\n \"value\": []\r\n}", + "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/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourcegroups/ps6304/deployments/ps7102/operations?api-version=2019-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjlmMTM4YTEtMWQ2NC00MTA4LTg0MTMtOWVhM2JlMWMxYjJkL3Jlc291cmNlZ3JvdXBzL3BzNjMwNC9kZXBsb3ltZW50cy9wczcxMDIvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx", + "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": [ - "f5382f60-9ab5-40dc-b3ee-f6bf6b57872f" + "0eb815c4-19af-4c6a-adaa-b322ff4f2ec8" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27110.04", + "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.4.0.0" + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0" ] }, "ResponseHeaders": { @@ -1500,13 +1500,13 @@ "11962" ], "x-ms-request-id": [ - "b7c3f8d5-a9bf-49cb-8e67-9659e8d147e5" + "a24d5e8b-157c-4cb2-8e7f-f941e3a8d8b4" ], "x-ms-correlation-request-id": [ - "b7c3f8d5-a9bf-49cb-8e67-9659e8d147e5" + "a24d5e8b-157c-4cb2-8e7f-f941e3a8d8b4" ], "x-ms-routing-request-id": [ - "WESTUS2:20200325T091318Z:b7c3f8d5-a9bf-49cb-8e67-9659e8d147e5" + "NORTHCENTRALUS:20200612T213923Z:a24d5e8b-157c-4cb2-8e7f-f941e3a8d8b4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1515,7 +1515,7 @@ "nosniff" ], "Date": [ - "Wed, 25 Mar 2020 09:13:17 GMT" + "Fri, 12 Jun 2020 21:39:23 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1524,32 +1524,32 @@ "-1" ], "Content-Length": [ - "12" + "710" ], "Retry-After": [ "0" ] }, - "ResponseBody": "{\r\n \"value\": []\r\n}", + "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/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourcegroups/ps6304/deployments/ps7102/operations?api-version=2019-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjlmMTM4YTEtMWQ2NC00MTA4LTg0MTMtOWVhM2JlMWMxYjJkL3Jlc291cmNlZ3JvdXBzL3BzNjMwNC9kZXBsb3ltZW50cy9wczcxMDIvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx", + "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": [ - "a4ed5804-3e79-463c-ab42-2519a4e0c384" + "e1192b0c-39ab-4a64-8bf1-c636f2df4522" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27110.04", + "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.4.0.0" + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0" ] }, "ResponseHeaders": { @@ -1563,13 +1563,13 @@ "11960" ], "x-ms-request-id": [ - "5e1e8d53-cb7b-4253-9a68-2bc7acb803c0" + "ed993dd0-a971-454c-be7d-9ad4c351aad6" ], "x-ms-correlation-request-id": [ - "5e1e8d53-cb7b-4253-9a68-2bc7acb803c0" + "ed993dd0-a971-454c-be7d-9ad4c351aad6" ], "x-ms-routing-request-id": [ - "WESTUS2:20200325T091318Z:5e1e8d53-cb7b-4253-9a68-2bc7acb803c0" + "NORTHCENTRALUS:20200612T213924Z:ed993dd0-a971-454c-be7d-9ad4c351aad6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1578,7 +1578,7 @@ "nosniff" ], "Date": [ - "Wed, 25 Mar 2020 09:13:18 GMT" + "Fri, 12 Jun 2020 21:39:23 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1587,32 +1587,32 @@ "-1" ], "Content-Length": [ - "711" + "710" ], "Retry-After": [ "0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Resources/deployments/ps7102/operations/D60BABBFE7AE59B2\",\r\n \"operationId\": \"D60BABBFE7AE59B2\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-03-25T09:13:18.8195494Z\",\r\n \"duration\": \"PT2.7531945S\",\r\n \"trackingId\": \"479ff780-28ec-4fd7-8836-c0462825967c\",\r\n \"serviceRequestId\": \"e60d7e65-f3b9-4984-9501-ea7b36aedca4\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Storage/storageAccounts/ps2757\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps2757\"\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/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/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourcegroups/ps6304/deployments/ps7102/operations?api-version=2019-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjlmMTM4YTEtMWQ2NC00MTA4LTg0MTMtOWVhM2JlMWMxYjJkL3Jlc291cmNlZ3JvdXBzL3BzNjMwNC9kZXBsb3ltZW50cy9wczcxMDIvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx", + "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": [ - "b7041a1e-7767-4932-af87-d2796f8e7e6d" + "31cdc1ee-4340-4efe-afe9-5fabcd48cf3a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27110.04", + "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.4.0.0" + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0" ] }, "ResponseHeaders": { @@ -1626,13 +1626,13 @@ "11958" ], "x-ms-request-id": [ - "7c9a81ad-9d09-44d5-a73e-339aaf8f9a35" + "ded3a6e3-6b57-4dd8-9b47-6e442260bd89" ], "x-ms-correlation-request-id": [ - "7c9a81ad-9d09-44d5-a73e-339aaf8f9a35" + "ded3a6e3-6b57-4dd8-9b47-6e442260bd89" ], "x-ms-routing-request-id": [ - "WESTUS2:20200325T091319Z:7c9a81ad-9d09-44d5-a73e-339aaf8f9a35" + "NORTHCENTRALUS:20200612T213924Z:ded3a6e3-6b57-4dd8-9b47-6e442260bd89" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1641,7 +1641,7 @@ "nosniff" ], "Date": [ - "Wed, 25 Mar 2020 09:13:18 GMT" + "Fri, 12 Jun 2020 21:39:24 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1650,32 +1650,32 @@ "-1" ], "Content-Length": [ - "711" + "710" ], "Retry-After": [ "0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Resources/deployments/ps7102/operations/D60BABBFE7AE59B2\",\r\n \"operationId\": \"D60BABBFE7AE59B2\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-03-25T09:13:18.8195494Z\",\r\n \"duration\": \"PT2.7531945S\",\r\n \"trackingId\": \"479ff780-28ec-4fd7-8836-c0462825967c\",\r\n \"serviceRequestId\": \"e60d7e65-f3b9-4984-9501-ea7b36aedca4\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Storage/storageAccounts/ps2757\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps2757\"\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/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/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourcegroups/ps6304/deployments/ps7102/operations?api-version=2019-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjlmMTM4YTEtMWQ2NC00MTA4LTg0MTMtOWVhM2JlMWMxYjJkL3Jlc291cmNlZ3JvdXBzL3BzNjMwNC9kZXBsb3ltZW50cy9wczcxMDIvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx", + "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": [ - "a177e5c7-7827-4aec-bc80-7b1f240b1ecd" + "cbc7dfcf-27f9-4901-99f7-1200263b2c80" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27110.04", + "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.4.0.0" + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0" ] }, "ResponseHeaders": { @@ -1689,13 +1689,13 @@ "11956" ], "x-ms-request-id": [ - "4f5079ef-c7fb-4632-af31-4c25a4e0dd6d" + "c2c81b5e-ee45-4493-a228-76ca49b25d39" ], "x-ms-correlation-request-id": [ - "4f5079ef-c7fb-4632-af31-4c25a4e0dd6d" + "c2c81b5e-ee45-4493-a228-76ca49b25d39" ], "x-ms-routing-request-id": [ - "WESTUS2:20200325T091319Z:4f5079ef-c7fb-4632-af31-4c25a4e0dd6d" + "NORTHCENTRALUS:20200612T213925Z:c2c81b5e-ee45-4493-a228-76ca49b25d39" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1704,7 +1704,7 @@ "nosniff" ], "Date": [ - "Wed, 25 Mar 2020 09:13:18 GMT" + "Fri, 12 Jun 2020 21:39:24 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1713,32 +1713,32 @@ "-1" ], "Content-Length": [ - "711" + "710" ], "Retry-After": [ "0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Resources/deployments/ps7102/operations/D60BABBFE7AE59B2\",\r\n \"operationId\": \"D60BABBFE7AE59B2\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-03-25T09:13:18.8195494Z\",\r\n \"duration\": \"PT2.7531945S\",\r\n \"trackingId\": \"479ff780-28ec-4fd7-8836-c0462825967c\",\r\n \"serviceRequestId\": \"e60d7e65-f3b9-4984-9501-ea7b36aedca4\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Storage/storageAccounts/ps2757\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps2757\"\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/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/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourcegroups/ps6304/deployments/ps7102/operations?api-version=2019-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjlmMTM4YTEtMWQ2NC00MTA4LTg0MTMtOWVhM2JlMWMxYjJkL3Jlc291cmNlZ3JvdXBzL3BzNjMwNC9kZXBsb3ltZW50cy9wczcxMDIvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx", + "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": [ - "ecd80c4c-809d-4bb1-9677-a975a0f3f7c8" + "466d5683-3ea4-4c90-a0dd-581a45b955bf" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27110.04", + "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.4.0.0" + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0" ] }, "ResponseHeaders": { @@ -1752,13 +1752,13 @@ "11954" ], "x-ms-request-id": [ - "934a0077-6ce1-4dec-8b61-ff16ae0c3982" + "4280117b-c3e9-4f6f-b8e1-f90e2b768dea" ], "x-ms-correlation-request-id": [ - "934a0077-6ce1-4dec-8b61-ff16ae0c3982" + "4280117b-c3e9-4f6f-b8e1-f90e2b768dea" ], "x-ms-routing-request-id": [ - "WESTUS2:20200325T091319Z:934a0077-6ce1-4dec-8b61-ff16ae0c3982" + "NORTHCENTRALUS:20200612T213925Z:4280117b-c3e9-4f6f-b8e1-f90e2b768dea" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1767,7 +1767,7 @@ "nosniff" ], "Date": [ - "Wed, 25 Mar 2020 09:13:19 GMT" + "Fri, 12 Jun 2020 21:39:24 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1776,32 +1776,32 @@ "-1" ], "Content-Length": [ - "711" + "710" ], "Retry-After": [ "0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Resources/deployments/ps7102/operations/D60BABBFE7AE59B2\",\r\n \"operationId\": \"D60BABBFE7AE59B2\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-03-25T09:13:18.8195494Z\",\r\n \"duration\": \"PT2.7531945S\",\r\n \"trackingId\": \"479ff780-28ec-4fd7-8836-c0462825967c\",\r\n \"serviceRequestId\": \"e60d7e65-f3b9-4984-9501-ea7b36aedca4\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Storage/storageAccounts/ps2757\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps2757\"\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/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/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourcegroups/ps6304/deployments/ps7102/operations?api-version=2019-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjlmMTM4YTEtMWQ2NC00MTA4LTg0MTMtOWVhM2JlMWMxYjJkL3Jlc291cmNlZ3JvdXBzL3BzNjMwNC9kZXBsb3ltZW50cy9wczcxMDIvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx", + "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": [ - "bf5f960c-99c3-45ce-886b-6fd2cc4e5da1" + "1dc69eb3-5596-4fd2-ae06-61490fce73a1" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27110.04", + "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.4.0.0" + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0" ] }, "ResponseHeaders": { @@ -1815,13 +1815,13 @@ "11952" ], "x-ms-request-id": [ - "e68ac93a-45ff-4331-9970-4454d06bc62b" + "a5b478ed-08d1-480d-8278-c37408935fb0" ], "x-ms-correlation-request-id": [ - "e68ac93a-45ff-4331-9970-4454d06bc62b" + "a5b478ed-08d1-480d-8278-c37408935fb0" ], "x-ms-routing-request-id": [ - "WESTUS2:20200325T091320Z:e68ac93a-45ff-4331-9970-4454d06bc62b" + "NORTHCENTRALUS:20200612T213925Z:a5b478ed-08d1-480d-8278-c37408935fb0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1830,7 +1830,7 @@ "nosniff" ], "Date": [ - "Wed, 25 Mar 2020 09:13:19 GMT" + "Fri, 12 Jun 2020 21:39:25 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1839,32 +1839,32 @@ "-1" ], "Content-Length": [ - "711" + "710" ], "Retry-After": [ "0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Resources/deployments/ps7102/operations/D60BABBFE7AE59B2\",\r\n \"operationId\": \"D60BABBFE7AE59B2\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-03-25T09:13:18.8195494Z\",\r\n \"duration\": \"PT2.7531945S\",\r\n \"trackingId\": \"479ff780-28ec-4fd7-8836-c0462825967c\",\r\n \"serviceRequestId\": \"e60d7e65-f3b9-4984-9501-ea7b36aedca4\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Storage/storageAccounts/ps2757\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps2757\"\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/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/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourcegroups/ps6304/deployments/ps7102/operations?api-version=2019-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjlmMTM4YTEtMWQ2NC00MTA4LTg0MTMtOWVhM2JlMWMxYjJkL3Jlc291cmNlZ3JvdXBzL3BzNjMwNC9kZXBsb3ltZW50cy9wczcxMDIvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx", + "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": [ - "beff0c50-d96a-4a01-83d4-9811881f8992" + "4b968daf-d197-4c6a-8a49-c461cdae621d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27110.04", + "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.4.0.0" + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0" ] }, "ResponseHeaders": { @@ -1878,13 +1878,13 @@ "11950" ], "x-ms-request-id": [ - "9425d71b-34d6-4666-9bd4-e0b04f84233c" + "f880f0ea-540e-43d1-97a0-39b29813e256" ], "x-ms-correlation-request-id": [ - "9425d71b-34d6-4666-9bd4-e0b04f84233c" + "f880f0ea-540e-43d1-97a0-39b29813e256" ], "x-ms-routing-request-id": [ - "WESTUS2:20200325T091320Z:9425d71b-34d6-4666-9bd4-e0b04f84233c" + "NORTHCENTRALUS:20200612T213926Z:f880f0ea-540e-43d1-97a0-39b29813e256" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1893,7 +1893,7 @@ "nosniff" ], "Date": [ - "Wed, 25 Mar 2020 09:13:20 GMT" + "Fri, 12 Jun 2020 21:39:25 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1902,32 +1902,32 @@ "-1" ], "Content-Length": [ - "711" + "710" ], "Retry-After": [ "0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Resources/deployments/ps7102/operations/D60BABBFE7AE59B2\",\r\n \"operationId\": \"D60BABBFE7AE59B2\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-03-25T09:13:18.8195494Z\",\r\n \"duration\": \"PT2.7531945S\",\r\n \"trackingId\": \"479ff780-28ec-4fd7-8836-c0462825967c\",\r\n \"serviceRequestId\": \"e60d7e65-f3b9-4984-9501-ea7b36aedca4\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Storage/storageAccounts/ps2757\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps2757\"\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/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/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourcegroups/ps6304/deployments/ps7102/operations?api-version=2019-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjlmMTM4YTEtMWQ2NC00MTA4LTg0MTMtOWVhM2JlMWMxYjJkL3Jlc291cmNlZ3JvdXBzL3BzNjMwNC9kZXBsb3ltZW50cy9wczcxMDIvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx", + "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": [ - "d7b054ba-291f-41d9-825a-05b75f59dcf5" + "dee50651-5d57-49e9-bbd6-59b0cd64f660" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27110.04", + "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.4.0.0" + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0" ] }, "ResponseHeaders": { @@ -1941,13 +1941,13 @@ "11948" ], "x-ms-request-id": [ - "ec83dce6-f69c-400e-be5b-215c9c029264" + "2594ce58-7e1a-489e-8257-aefa20921afb" ], "x-ms-correlation-request-id": [ - "ec83dce6-f69c-400e-be5b-215c9c029264" + "2594ce58-7e1a-489e-8257-aefa20921afb" ], "x-ms-routing-request-id": [ - "WESTUS2:20200325T091321Z:ec83dce6-f69c-400e-be5b-215c9c029264" + "NORTHCENTRALUS:20200612T213926Z:2594ce58-7e1a-489e-8257-aefa20921afb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1956,7 +1956,7 @@ "nosniff" ], "Date": [ - "Wed, 25 Mar 2020 09:13:20 GMT" + "Fri, 12 Jun 2020 21:39:26 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1965,32 +1965,32 @@ "-1" ], "Content-Length": [ - "711" + "710" ], "Retry-After": [ "0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Resources/deployments/ps7102/operations/D60BABBFE7AE59B2\",\r\n \"operationId\": \"D60BABBFE7AE59B2\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-03-25T09:13:18.8195494Z\",\r\n \"duration\": \"PT2.7531945S\",\r\n \"trackingId\": \"479ff780-28ec-4fd7-8836-c0462825967c\",\r\n \"serviceRequestId\": \"e60d7e65-f3b9-4984-9501-ea7b36aedca4\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Storage/storageAccounts/ps2757\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps2757\"\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/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/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourcegroups/ps6304/deployments/ps7102/operations?api-version=2019-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjlmMTM4YTEtMWQ2NC00MTA4LTg0MTMtOWVhM2JlMWMxYjJkL3Jlc291cmNlZ3JvdXBzL3BzNjMwNC9kZXBsb3ltZW50cy9wczcxMDIvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx", + "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": [ - "2e46eb8f-090f-4de1-8541-ce6635921149" + "ef7c21fb-7eac-406b-a666-f982ef299a24" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27110.04", + "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.4.0.0" + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0" ] }, "ResponseHeaders": { @@ -2004,13 +2004,13 @@ "11946" ], "x-ms-request-id": [ - "f10d50cd-d56c-4d8b-a13d-d9864968d20e" + "b9798b9a-c70b-4e14-bbc0-9855a5b4b0c2" ], "x-ms-correlation-request-id": [ - "f10d50cd-d56c-4d8b-a13d-d9864968d20e" + "b9798b9a-c70b-4e14-bbc0-9855a5b4b0c2" ], "x-ms-routing-request-id": [ - "WESTUS2:20200325T091321Z:f10d50cd-d56c-4d8b-a13d-d9864968d20e" + "NORTHCENTRALUS:20200612T213927Z:b9798b9a-c70b-4e14-bbc0-9855a5b4b0c2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2019,7 +2019,7 @@ "nosniff" ], "Date": [ - "Wed, 25 Mar 2020 09:13:20 GMT" + "Fri, 12 Jun 2020 21:39:26 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2028,32 +2028,32 @@ "-1" ], "Content-Length": [ - "711" + "710" ], "Retry-After": [ "0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Resources/deployments/ps7102/operations/D60BABBFE7AE59B2\",\r\n \"operationId\": \"D60BABBFE7AE59B2\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-03-25T09:13:18.8195494Z\",\r\n \"duration\": \"PT2.7531945S\",\r\n \"trackingId\": \"479ff780-28ec-4fd7-8836-c0462825967c\",\r\n \"serviceRequestId\": \"e60d7e65-f3b9-4984-9501-ea7b36aedca4\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Storage/storageAccounts/ps2757\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps2757\"\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/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/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourcegroups/ps6304/deployments/ps7102/operations?api-version=2019-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjlmMTM4YTEtMWQ2NC00MTA4LTg0MTMtOWVhM2JlMWMxYjJkL3Jlc291cmNlZ3JvdXBzL3BzNjMwNC9kZXBsb3ltZW50cy9wczcxMDIvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx", + "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": [ - "55ef043e-86bb-4827-8174-8bb3a4ea1a07" + "006bb0ee-33c7-4c75-a796-f1503868a4fa" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27110.04", + "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.4.0.0" + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0" ] }, "ResponseHeaders": { @@ -2067,13 +2067,13 @@ "11944" ], "x-ms-request-id": [ - "65576fc4-592d-4570-83f9-3013066f350b" + "7c4b3440-78c6-4aa5-bca1-3cefdc4f2712" ], "x-ms-correlation-request-id": [ - "65576fc4-592d-4570-83f9-3013066f350b" + "7c4b3440-78c6-4aa5-bca1-3cefdc4f2712" ], "x-ms-routing-request-id": [ - "WESTUS2:20200325T091321Z:65576fc4-592d-4570-83f9-3013066f350b" + "NORTHCENTRALUS:20200612T213927Z:7c4b3440-78c6-4aa5-bca1-3cefdc4f2712" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2082,7 +2082,7 @@ "nosniff" ], "Date": [ - "Wed, 25 Mar 2020 09:13:21 GMT" + "Fri, 12 Jun 2020 21:39:26 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2091,32 +2091,32 @@ "-1" ], "Content-Length": [ - "711" + "710" ], "Retry-After": [ "0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Resources/deployments/ps7102/operations/D60BABBFE7AE59B2\",\r\n \"operationId\": \"D60BABBFE7AE59B2\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-03-25T09:13:18.8195494Z\",\r\n \"duration\": \"PT2.7531945S\",\r\n \"trackingId\": \"479ff780-28ec-4fd7-8836-c0462825967c\",\r\n \"serviceRequestId\": \"e60d7e65-f3b9-4984-9501-ea7b36aedca4\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Storage/storageAccounts/ps2757\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps2757\"\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/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/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourcegroups/ps6304/deployments/ps7102/operations?api-version=2019-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjlmMTM4YTEtMWQ2NC00MTA4LTg0MTMtOWVhM2JlMWMxYjJkL3Jlc291cmNlZ3JvdXBzL3BzNjMwNC9kZXBsb3ltZW50cy9wczcxMDIvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx", + "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": [ - "a9151372-b026-4d46-b754-ec3970c1b519" + "4673fb46-aafe-440f-8004-f4f7c5ebabf4" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27110.04", + "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.4.0.0" + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0" ] }, "ResponseHeaders": { @@ -2130,13 +2130,13 @@ "11942" ], "x-ms-request-id": [ - "36f4ac24-e013-435f-9b08-446bbd3df727" + "a943a2ab-1207-4e27-94db-735b2e1db0be" ], "x-ms-correlation-request-id": [ - "36f4ac24-e013-435f-9b08-446bbd3df727" + "a943a2ab-1207-4e27-94db-735b2e1db0be" ], "x-ms-routing-request-id": [ - "WESTUS2:20200325T091322Z:36f4ac24-e013-435f-9b08-446bbd3df727" + "NORTHCENTRALUS:20200612T213927Z:a943a2ab-1207-4e27-94db-735b2e1db0be" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2145,7 +2145,7 @@ "nosniff" ], "Date": [ - "Wed, 25 Mar 2020 09:13:21 GMT" + "Fri, 12 Jun 2020 21:39:27 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2154,32 +2154,32 @@ "-1" ], "Content-Length": [ - "711" + "710" ], "Retry-After": [ "0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Resources/deployments/ps7102/operations/D60BABBFE7AE59B2\",\r\n \"operationId\": \"D60BABBFE7AE59B2\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-03-25T09:13:18.8195494Z\",\r\n \"duration\": \"PT2.7531945S\",\r\n \"trackingId\": \"479ff780-28ec-4fd7-8836-c0462825967c\",\r\n \"serviceRequestId\": \"e60d7e65-f3b9-4984-9501-ea7b36aedca4\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Storage/storageAccounts/ps2757\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps2757\"\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/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/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourcegroups/ps6304/deployments/ps7102/operations?api-version=2019-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjlmMTM4YTEtMWQ2NC00MTA4LTg0MTMtOWVhM2JlMWMxYjJkL3Jlc291cmNlZ3JvdXBzL3BzNjMwNC9kZXBsb3ltZW50cy9wczcxMDIvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx", + "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": [ - "04f95080-88d5-4ba6-abf2-0ce36a336e24" + "1f7cb457-8cc9-4084-ba93-e915220a35db" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27110.04", + "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.4.0.0" + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0" ] }, "ResponseHeaders": { @@ -2193,13 +2193,13 @@ "11940" ], "x-ms-request-id": [ - "6b5f5391-196e-458c-ab92-86779be1fbb9" + "a674443a-4929-4106-9bc6-ff66fda498c3" ], "x-ms-correlation-request-id": [ - "6b5f5391-196e-458c-ab92-86779be1fbb9" + "a674443a-4929-4106-9bc6-ff66fda498c3" ], "x-ms-routing-request-id": [ - "WESTUS2:20200325T091322Z:6b5f5391-196e-458c-ab92-86779be1fbb9" + "NORTHCENTRALUS:20200612T213928Z:a674443a-4929-4106-9bc6-ff66fda498c3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2208,7 +2208,7 @@ "nosniff" ], "Date": [ - "Wed, 25 Mar 2020 09:13:21 GMT" + "Fri, 12 Jun 2020 21:39:27 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2217,32 +2217,32 @@ "-1" ], "Content-Length": [ - "711" + "710" ], "Retry-After": [ "0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Resources/deployments/ps7102/operations/D60BABBFE7AE59B2\",\r\n \"operationId\": \"D60BABBFE7AE59B2\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-03-25T09:13:18.8195494Z\",\r\n \"duration\": \"PT2.7531945S\",\r\n \"trackingId\": \"479ff780-28ec-4fd7-8836-c0462825967c\",\r\n \"serviceRequestId\": \"e60d7e65-f3b9-4984-9501-ea7b36aedca4\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Storage/storageAccounts/ps2757\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps2757\"\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/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/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourcegroups/ps6304/deployments/ps7102/operations?api-version=2019-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjlmMTM4YTEtMWQ2NC00MTA4LTg0MTMtOWVhM2JlMWMxYjJkL3Jlc291cmNlZ3JvdXBzL3BzNjMwNC9kZXBsb3ltZW50cy9wczcxMDIvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx", + "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": [ - "226bdc15-3118-4010-9cdd-d1d460a25708" + "e2bd75c9-96a5-4dbf-bbc7-9672412682e1" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27110.04", + "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.4.0.0" + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0" ] }, "ResponseHeaders": { @@ -2256,13 +2256,13 @@ "11938" ], "x-ms-request-id": [ - "dbb6cbf3-52e5-44bc-b795-28ac11df7624" + "ac9d3dca-b01d-454e-9e32-a0616b28e679" ], "x-ms-correlation-request-id": [ - "dbb6cbf3-52e5-44bc-b795-28ac11df7624" + "ac9d3dca-b01d-454e-9e32-a0616b28e679" ], "x-ms-routing-request-id": [ - "WESTUS2:20200325T091322Z:dbb6cbf3-52e5-44bc-b795-28ac11df7624" + "NORTHCENTRALUS:20200612T213928Z:ac9d3dca-b01d-454e-9e32-a0616b28e679" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2271,7 +2271,7 @@ "nosniff" ], "Date": [ - "Wed, 25 Mar 2020 09:13:21 GMT" + "Fri, 12 Jun 2020 21:39:28 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2280,32 +2280,32 @@ "-1" ], "Content-Length": [ - "711" + "710" ], "Retry-After": [ "0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Resources/deployments/ps7102/operations/D60BABBFE7AE59B2\",\r\n \"operationId\": \"D60BABBFE7AE59B2\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-03-25T09:13:18.8195494Z\",\r\n \"duration\": \"PT2.7531945S\",\r\n \"trackingId\": \"479ff780-28ec-4fd7-8836-c0462825967c\",\r\n \"serviceRequestId\": \"e60d7e65-f3b9-4984-9501-ea7b36aedca4\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Storage/storageAccounts/ps2757\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps2757\"\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/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/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourcegroups/ps6304/deployments/ps7102/operations?api-version=2019-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjlmMTM4YTEtMWQ2NC00MTA4LTg0MTMtOWVhM2JlMWMxYjJkL3Jlc291cmNlZ3JvdXBzL3BzNjMwNC9kZXBsb3ltZW50cy9wczcxMDIvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx", + "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": [ - "3b07be28-7fc7-4719-bf78-fe437b1d0fa2" + "f45581b0-3e65-49c6-a354-50162f7a69ad" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27110.04", + "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.4.0.0" + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0" ] }, "ResponseHeaders": { @@ -2319,13 +2319,13 @@ "11936" ], "x-ms-request-id": [ - "89620d3c-3119-4237-9625-a1f5b0fec547" + "c699afcb-8569-4d68-b370-3d2eda4605e0" ], "x-ms-correlation-request-id": [ - "89620d3c-3119-4237-9625-a1f5b0fec547" + "c699afcb-8569-4d68-b370-3d2eda4605e0" ], "x-ms-routing-request-id": [ - "WESTUS2:20200325T091323Z:89620d3c-3119-4237-9625-a1f5b0fec547" + "NORTHCENTRALUS:20200612T213929Z:c699afcb-8569-4d68-b370-3d2eda4605e0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2334,7 +2334,7 @@ "nosniff" ], "Date": [ - "Wed, 25 Mar 2020 09:13:22 GMT" + "Fri, 12 Jun 2020 21:39:28 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2343,32 +2343,32 @@ "-1" ], "Content-Length": [ - "711" + "710" ], "Retry-After": [ "0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Resources/deployments/ps7102/operations/D60BABBFE7AE59B2\",\r\n \"operationId\": \"D60BABBFE7AE59B2\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-03-25T09:13:18.8195494Z\",\r\n \"duration\": \"PT2.7531945S\",\r\n \"trackingId\": \"479ff780-28ec-4fd7-8836-c0462825967c\",\r\n \"serviceRequestId\": \"e60d7e65-f3b9-4984-9501-ea7b36aedca4\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Storage/storageAccounts/ps2757\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps2757\"\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/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/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourcegroups/ps6304/deployments/ps7102/operations?api-version=2019-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjlmMTM4YTEtMWQ2NC00MTA4LTg0MTMtOWVhM2JlMWMxYjJkL3Jlc291cmNlZ3JvdXBzL3BzNjMwNC9kZXBsb3ltZW50cy9wczcxMDIvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx", + "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": [ - "1c4b6bb8-b68d-4a60-8974-0c0d81fd5b29" + "372b82c6-84a3-4227-8430-9bdc3c7983d6" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27110.04", + "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.4.0.0" + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0" ] }, "ResponseHeaders": { @@ -2382,13 +2382,13 @@ "11934" ], "x-ms-request-id": [ - "7706ba29-6464-46b7-b9b5-48b214b26cf2" + "174aa851-cb11-49ee-a6e5-ecc26fbd8ee8" ], "x-ms-correlation-request-id": [ - "7706ba29-6464-46b7-b9b5-48b214b26cf2" + "174aa851-cb11-49ee-a6e5-ecc26fbd8ee8" ], "x-ms-routing-request-id": [ - "WESTUS2:20200325T091323Z:7706ba29-6464-46b7-b9b5-48b214b26cf2" + "NORTHCENTRALUS:20200612T213929Z:174aa851-cb11-49ee-a6e5-ecc26fbd8ee8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2397,7 +2397,7 @@ "nosniff" ], "Date": [ - "Wed, 25 Mar 2020 09:13:22 GMT" + "Fri, 12 Jun 2020 21:39:28 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2406,32 +2406,32 @@ "-1" ], "Content-Length": [ - "711" + "710" ], "Retry-After": [ "0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Resources/deployments/ps7102/operations/D60BABBFE7AE59B2\",\r\n \"operationId\": \"D60BABBFE7AE59B2\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-03-25T09:13:18.8195494Z\",\r\n \"duration\": \"PT2.7531945S\",\r\n \"trackingId\": \"479ff780-28ec-4fd7-8836-c0462825967c\",\r\n \"serviceRequestId\": \"e60d7e65-f3b9-4984-9501-ea7b36aedca4\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Storage/storageAccounts/ps2757\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps2757\"\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/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/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourcegroups/ps6304/deployments/ps7102/operations?api-version=2019-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjlmMTM4YTEtMWQ2NC00MTA4LTg0MTMtOWVhM2JlMWMxYjJkL3Jlc291cmNlZ3JvdXBzL3BzNjMwNC9kZXBsb3ltZW50cy9wczcxMDIvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx", + "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": [ - "18f9d7c2-7a29-42df-978d-82810ccd1695" + "105251ea-5f62-4c90-87c4-7e9c8a862f35" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27110.04", + "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.4.0.0" + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0" ] }, "ResponseHeaders": { @@ -2445,13 +2445,13 @@ "11932" ], "x-ms-request-id": [ - "135c2069-cda3-4e81-a1f4-e20b5fdeb37f" + "32a554a7-0cce-4b74-b84f-d27ee80e2d8b" ], "x-ms-correlation-request-id": [ - "135c2069-cda3-4e81-a1f4-e20b5fdeb37f" + "32a554a7-0cce-4b74-b84f-d27ee80e2d8b" ], "x-ms-routing-request-id": [ - "WESTUS2:20200325T091323Z:135c2069-cda3-4e81-a1f4-e20b5fdeb37f" + "NORTHCENTRALUS:20200612T213929Z:32a554a7-0cce-4b74-b84f-d27ee80e2d8b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2460,7 +2460,7 @@ "nosniff" ], "Date": [ - "Wed, 25 Mar 2020 09:13:22 GMT" + "Fri, 12 Jun 2020 21:39:29 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2469,32 +2469,32 @@ "-1" ], "Content-Length": [ - "711" + "710" ], "Retry-After": [ "0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Resources/deployments/ps7102/operations/D60BABBFE7AE59B2\",\r\n \"operationId\": \"D60BABBFE7AE59B2\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-03-25T09:13:18.8195494Z\",\r\n \"duration\": \"PT2.7531945S\",\r\n \"trackingId\": \"479ff780-28ec-4fd7-8836-c0462825967c\",\r\n \"serviceRequestId\": \"e60d7e65-f3b9-4984-9501-ea7b36aedca4\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Storage/storageAccounts/ps2757\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps2757\"\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/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/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourcegroups/ps6304/deployments/ps7102/operations?api-version=2019-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjlmMTM4YTEtMWQ2NC00MTA4LTg0MTMtOWVhM2JlMWMxYjJkL3Jlc291cmNlZ3JvdXBzL3BzNjMwNC9kZXBsb3ltZW50cy9wczcxMDIvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx", + "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": [ - "8afecb51-21dc-461a-aa0d-275457a9816a" + "7b357a56-adb5-40be-991b-8fa237d16c1a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27110.04", + "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.4.0.0" + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0" ] }, "ResponseHeaders": { @@ -2508,13 +2508,13 @@ "11930" ], "x-ms-request-id": [ - "3ad5139b-2b26-417c-b550-6e6cca58820c" + "76feba63-c1dd-4171-b0be-320d43b3fdcf" ], "x-ms-correlation-request-id": [ - "3ad5139b-2b26-417c-b550-6e6cca58820c" + "76feba63-c1dd-4171-b0be-320d43b3fdcf" ], "x-ms-routing-request-id": [ - "WESTUS2:20200325T091323Z:3ad5139b-2b26-417c-b550-6e6cca58820c" + "NORTHCENTRALUS:20200612T213930Z:76feba63-c1dd-4171-b0be-320d43b3fdcf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2523,7 +2523,7 @@ "nosniff" ], "Date": [ - "Wed, 25 Mar 2020 09:13:23 GMT" + "Fri, 12 Jun 2020 21:39:29 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2532,32 +2532,32 @@ "-1" ], "Content-Length": [ - "711" + "710" ], "Retry-After": [ "0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Resources/deployments/ps7102/operations/D60BABBFE7AE59B2\",\r\n \"operationId\": \"D60BABBFE7AE59B2\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-03-25T09:13:18.8195494Z\",\r\n \"duration\": \"PT2.7531945S\",\r\n \"trackingId\": \"479ff780-28ec-4fd7-8836-c0462825967c\",\r\n \"serviceRequestId\": \"e60d7e65-f3b9-4984-9501-ea7b36aedca4\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Storage/storageAccounts/ps2757\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps2757\"\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/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/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourcegroups/ps6304/deployments/ps7102/operations?api-version=2019-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjlmMTM4YTEtMWQ2NC00MTA4LTg0MTMtOWVhM2JlMWMxYjJkL3Jlc291cmNlZ3JvdXBzL3BzNjMwNC9kZXBsb3ltZW50cy9wczcxMDIvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx", + "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": [ - "554760ce-2d9b-4ccd-8e44-9d0555d9380b" + "7872b1c8-ce9a-4cde-9cbf-d064cb466b1f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27110.04", + "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.4.0.0" + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0" ] }, "ResponseHeaders": { @@ -2571,13 +2571,13 @@ "11928" ], "x-ms-request-id": [ - "eb58cfd6-c8b5-4164-9ced-824c330d0ee6" + "0e64d4c1-4d87-4f17-9a65-666f9198c538" ], "x-ms-correlation-request-id": [ - "eb58cfd6-c8b5-4164-9ced-824c330d0ee6" + "0e64d4c1-4d87-4f17-9a65-666f9198c538" ], "x-ms-routing-request-id": [ - "WESTUS2:20200325T091324Z:eb58cfd6-c8b5-4164-9ced-824c330d0ee6" + "NORTHCENTRALUS:20200612T213930Z:0e64d4c1-4d87-4f17-9a65-666f9198c538" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2586,7 +2586,7 @@ "nosniff" ], "Date": [ - "Wed, 25 Mar 2020 09:13:23 GMT" + "Fri, 12 Jun 2020 21:39:30 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2595,32 +2595,32 @@ "-1" ], "Content-Length": [ - "711" + "710" ], "Retry-After": [ "0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Resources/deployments/ps7102/operations/D60BABBFE7AE59B2\",\r\n \"operationId\": \"D60BABBFE7AE59B2\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-03-25T09:13:18.8195494Z\",\r\n \"duration\": \"PT2.7531945S\",\r\n \"trackingId\": \"479ff780-28ec-4fd7-8836-c0462825967c\",\r\n \"serviceRequestId\": \"e60d7e65-f3b9-4984-9501-ea7b36aedca4\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Storage/storageAccounts/ps2757\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps2757\"\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/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/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourcegroups/ps6304/deployments/ps7102/operations?api-version=2019-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjlmMTM4YTEtMWQ2NC00MTA4LTg0MTMtOWVhM2JlMWMxYjJkL3Jlc291cmNlZ3JvdXBzL3BzNjMwNC9kZXBsb3ltZW50cy9wczcxMDIvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx", + "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": [ - "3540f728-4a51-4627-ad01-9c2971cf3615" + "dfbbe1df-fb98-4eb5-924b-8ed062cb3645" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27110.04", + "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.4.0.0" + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0" ] }, "ResponseHeaders": { @@ -2634,13 +2634,13 @@ "11926" ], "x-ms-request-id": [ - "e6d4d86f-9658-4eac-a346-2424c75065b2" + "8454186f-cd85-4799-b5e2-e43ff3bf83ba" ], "x-ms-correlation-request-id": [ - "e6d4d86f-9658-4eac-a346-2424c75065b2" + "8454186f-cd85-4799-b5e2-e43ff3bf83ba" ], "x-ms-routing-request-id": [ - "WESTUS2:20200325T091324Z:e6d4d86f-9658-4eac-a346-2424c75065b2" + "NORTHCENTRALUS:20200612T213931Z:8454186f-cd85-4799-b5e2-e43ff3bf83ba" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2649,7 +2649,7 @@ "nosniff" ], "Date": [ - "Wed, 25 Mar 2020 09:13:23 GMT" + "Fri, 12 Jun 2020 21:39:30 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2658,32 +2658,32 @@ "-1" ], "Content-Length": [ - "711" + "710" ], "Retry-After": [ "0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Resources/deployments/ps7102/operations/D60BABBFE7AE59B2\",\r\n \"operationId\": \"D60BABBFE7AE59B2\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-03-25T09:13:18.8195494Z\",\r\n \"duration\": \"PT2.7531945S\",\r\n \"trackingId\": \"479ff780-28ec-4fd7-8836-c0462825967c\",\r\n \"serviceRequestId\": \"e60d7e65-f3b9-4984-9501-ea7b36aedca4\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Storage/storageAccounts/ps2757\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps2757\"\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/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/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourcegroups/ps6304/deployments/ps7102/operations?api-version=2019-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjlmMTM4YTEtMWQ2NC00MTA4LTg0MTMtOWVhM2JlMWMxYjJkL3Jlc291cmNlZ3JvdXBzL3BzNjMwNC9kZXBsb3ltZW50cy9wczcxMDIvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx", + "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": [ - "31d086cd-8bac-4486-b1fd-6bca93e0b28f" + "8438befb-0097-4afe-91fc-4ded78d007e5" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27110.04", + "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.4.0.0" + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0" ] }, "ResponseHeaders": { @@ -2697,13 +2697,13 @@ "11924" ], "x-ms-request-id": [ - "4bea05e0-91a1-4ea1-b0ba-4e49fe9b8fe1" + "42ac6348-408a-487d-a3fa-be344e214cfa" ], "x-ms-correlation-request-id": [ - "4bea05e0-91a1-4ea1-b0ba-4e49fe9b8fe1" + "42ac6348-408a-487d-a3fa-be344e214cfa" ], "x-ms-routing-request-id": [ - "WESTUS2:20200325T091324Z:4bea05e0-91a1-4ea1-b0ba-4e49fe9b8fe1" + "NORTHCENTRALUS:20200612T213931Z:42ac6348-408a-487d-a3fa-be344e214cfa" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2712,7 +2712,7 @@ "nosniff" ], "Date": [ - "Wed, 25 Mar 2020 09:13:24 GMT" + "Fri, 12 Jun 2020 21:39:30 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2721,32 +2721,32 @@ "-1" ], "Content-Length": [ - "711" + "710" ], "Retry-After": [ "0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Resources/deployments/ps7102/operations/D60BABBFE7AE59B2\",\r\n \"operationId\": \"D60BABBFE7AE59B2\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-03-25T09:13:18.8195494Z\",\r\n \"duration\": \"PT2.7531945S\",\r\n \"trackingId\": \"479ff780-28ec-4fd7-8836-c0462825967c\",\r\n \"serviceRequestId\": \"e60d7e65-f3b9-4984-9501-ea7b36aedca4\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Storage/storageAccounts/ps2757\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps2757\"\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/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/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourcegroups/ps6304/deployments/ps7102/operations?api-version=2019-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjlmMTM4YTEtMWQ2NC00MTA4LTg0MTMtOWVhM2JlMWMxYjJkL3Jlc291cmNlZ3JvdXBzL3BzNjMwNC9kZXBsb3ltZW50cy9wczcxMDIvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx", + "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": [ - "75e53428-2955-4832-b2d1-30fe8b798aa0" + "beb5f17d-701b-417a-ad9c-f01979b56d2d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27110.04", + "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.4.0.0" + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0" ] }, "ResponseHeaders": { @@ -2760,13 +2760,13 @@ "11922" ], "x-ms-request-id": [ - "33dc8f2c-a431-4f9f-88e6-338729ac126b" + "d5c78ba4-bf3f-4405-bf87-96d62921a76d" ], "x-ms-correlation-request-id": [ - "33dc8f2c-a431-4f9f-88e6-338729ac126b" + "d5c78ba4-bf3f-4405-bf87-96d62921a76d" ], "x-ms-routing-request-id": [ - "WESTUS2:20200325T091325Z:33dc8f2c-a431-4f9f-88e6-338729ac126b" + "NORTHCENTRALUS:20200612T213931Z:d5c78ba4-bf3f-4405-bf87-96d62921a76d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2775,7 +2775,7 @@ "nosniff" ], "Date": [ - "Wed, 25 Mar 2020 09:13:24 GMT" + "Fri, 12 Jun 2020 21:39:31 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2784,32 +2784,32 @@ "-1" ], "Content-Length": [ - "711" + "710" ], "Retry-After": [ "0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Resources/deployments/ps7102/operations/D60BABBFE7AE59B2\",\r\n \"operationId\": \"D60BABBFE7AE59B2\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-03-25T09:13:18.8195494Z\",\r\n \"duration\": \"PT2.7531945S\",\r\n \"trackingId\": \"479ff780-28ec-4fd7-8836-c0462825967c\",\r\n \"serviceRequestId\": \"e60d7e65-f3b9-4984-9501-ea7b36aedca4\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Storage/storageAccounts/ps2757\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps2757\"\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/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/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourcegroups/ps6304/deployments/ps7102/operations?api-version=2019-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjlmMTM4YTEtMWQ2NC00MTA4LTg0MTMtOWVhM2JlMWMxYjJkL3Jlc291cmNlZ3JvdXBzL3BzNjMwNC9kZXBsb3ltZW50cy9wczcxMDIvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx", + "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": [ - "3a10f638-e6ed-4da3-aaa5-d3f0c57635e6" + "2d4f20ed-4a87-4790-b158-8ec2b1aa98be" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27110.04", + "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.4.0.0" + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0" ] }, "ResponseHeaders": { @@ -2823,13 +2823,13 @@ "11920" ], "x-ms-request-id": [ - "1d8c0a10-16fc-48a0-bba2-12cd8cc59792" + "75c44d38-849c-41f4-94fa-511b6fb8c0c1" ], "x-ms-correlation-request-id": [ - "1d8c0a10-16fc-48a0-bba2-12cd8cc59792" + "75c44d38-849c-41f4-94fa-511b6fb8c0c1" ], "x-ms-routing-request-id": [ - "WESTUS2:20200325T091325Z:1d8c0a10-16fc-48a0-bba2-12cd8cc59792" + "NORTHCENTRALUS:20200612T213932Z:75c44d38-849c-41f4-94fa-511b6fb8c0c1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2838,7 +2838,7 @@ "nosniff" ], "Date": [ - "Wed, 25 Mar 2020 09:13:24 GMT" + "Fri, 12 Jun 2020 21:39:31 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2847,32 +2847,32 @@ "-1" ], "Content-Length": [ - "711" + "710" ], "Retry-After": [ "0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Resources/deployments/ps7102/operations/D60BABBFE7AE59B2\",\r\n \"operationId\": \"D60BABBFE7AE59B2\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-03-25T09:13:18.8195494Z\",\r\n \"duration\": \"PT2.7531945S\",\r\n \"trackingId\": \"479ff780-28ec-4fd7-8836-c0462825967c\",\r\n \"serviceRequestId\": \"e60d7e65-f3b9-4984-9501-ea7b36aedca4\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Storage/storageAccounts/ps2757\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps2757\"\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/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/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourcegroups/ps6304/deployments/ps7102/operations?api-version=2019-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjlmMTM4YTEtMWQ2NC00MTA4LTg0MTMtOWVhM2JlMWMxYjJkL3Jlc291cmNlZ3JvdXBzL3BzNjMwNC9kZXBsb3ltZW50cy9wczcxMDIvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx", + "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": [ - "08376e17-5ad7-468b-8bcf-dde015911ad7" + "1c66d63a-2297-424b-a957-9c0cf09e913d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27110.04", + "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.4.0.0" + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0" ] }, "ResponseHeaders": { @@ -2886,13 +2886,13 @@ "11918" ], "x-ms-request-id": [ - "ef826382-12be-4186-af8d-55df1d7111d2" + "bd3b8f21-91f3-4222-b745-c96c1079c0a7" ], "x-ms-correlation-request-id": [ - "ef826382-12be-4186-af8d-55df1d7111d2" + "bd3b8f21-91f3-4222-b745-c96c1079c0a7" ], "x-ms-routing-request-id": [ - "WESTUS2:20200325T091325Z:ef826382-12be-4186-af8d-55df1d7111d2" + "NORTHCENTRALUS:20200612T213932Z:bd3b8f21-91f3-4222-b745-c96c1079c0a7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2901,7 +2901,7 @@ "nosniff" ], "Date": [ - "Wed, 25 Mar 2020 09:13:25 GMT" + "Fri, 12 Jun 2020 21:39:32 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2910,32 +2910,32 @@ "-1" ], "Content-Length": [ - "711" + "710" ], "Retry-After": [ "0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Resources/deployments/ps7102/operations/D60BABBFE7AE59B2\",\r\n \"operationId\": \"D60BABBFE7AE59B2\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-03-25T09:13:18.8195494Z\",\r\n \"duration\": \"PT2.7531945S\",\r\n \"trackingId\": \"479ff780-28ec-4fd7-8836-c0462825967c\",\r\n \"serviceRequestId\": \"e60d7e65-f3b9-4984-9501-ea7b36aedca4\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Storage/storageAccounts/ps2757\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps2757\"\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/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/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourcegroups/ps6304/deployments/ps7102/operations?api-version=2019-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjlmMTM4YTEtMWQ2NC00MTA4LTg0MTMtOWVhM2JlMWMxYjJkL3Jlc291cmNlZ3JvdXBzL3BzNjMwNC9kZXBsb3ltZW50cy9wczcxMDIvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx", + "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": [ - "6696b2af-844e-452a-b0b6-b079c735a7b6" + "84f4d72d-d869-4ad9-a347-8e4eba48d4d9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27110.04", + "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.4.0.0" + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0" ] }, "ResponseHeaders": { @@ -2949,13 +2949,13 @@ "11916" ], "x-ms-request-id": [ - "f3928a0e-daf8-4e89-9e0b-cfa300c4fecb" + "abbf8d2d-da48-4f13-9e3a-740788ae1196" ], "x-ms-correlation-request-id": [ - "f3928a0e-daf8-4e89-9e0b-cfa300c4fecb" + "abbf8d2d-da48-4f13-9e3a-740788ae1196" ], "x-ms-routing-request-id": [ - "WESTUS2:20200325T091326Z:f3928a0e-daf8-4e89-9e0b-cfa300c4fecb" + "NORTHCENTRALUS:20200612T213933Z:abbf8d2d-da48-4f13-9e3a-740788ae1196" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2964,7 +2964,7 @@ "nosniff" ], "Date": [ - "Wed, 25 Mar 2020 09:13:25 GMT" + "Fri, 12 Jun 2020 21:39:32 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2973,32 +2973,32 @@ "-1" ], "Content-Length": [ - "711" + "710" ], "Retry-After": [ "0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Resources/deployments/ps7102/operations/D60BABBFE7AE59B2\",\r\n \"operationId\": \"D60BABBFE7AE59B2\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-03-25T09:13:18.8195494Z\",\r\n \"duration\": \"PT2.7531945S\",\r\n \"trackingId\": \"479ff780-28ec-4fd7-8836-c0462825967c\",\r\n \"serviceRequestId\": \"e60d7e65-f3b9-4984-9501-ea7b36aedca4\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Storage/storageAccounts/ps2757\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps2757\"\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/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/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourcegroups/ps6304/deployments/ps7102/operations?api-version=2019-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjlmMTM4YTEtMWQ2NC00MTA4LTg0MTMtOWVhM2JlMWMxYjJkL3Jlc291cmNlZ3JvdXBzL3BzNjMwNC9kZXBsb3ltZW50cy9wczcxMDIvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx", + "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": [ - "f04719ed-abbf-4d88-ad71-a12b9eadbc30" + "83963fbe-9188-4092-b445-8678814d5542" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27110.04", + "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.4.0.0" + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0" ] }, "ResponseHeaders": { @@ -3012,13 +3012,13 @@ "11914" ], "x-ms-request-id": [ - "b4775aa0-1b2e-4e42-9c40-06d03f19ddf9" + "bd61bf05-7101-4c24-987d-cebf4a087395" ], "x-ms-correlation-request-id": [ - "b4775aa0-1b2e-4e42-9c40-06d03f19ddf9" + "bd61bf05-7101-4c24-987d-cebf4a087395" ], "x-ms-routing-request-id": [ - "WESTUS2:20200325T091326Z:b4775aa0-1b2e-4e42-9c40-06d03f19ddf9" + "NORTHCENTRALUS:20200612T213933Z:bd61bf05-7101-4c24-987d-cebf4a087395" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3027,7 +3027,7 @@ "nosniff" ], "Date": [ - "Wed, 25 Mar 2020 09:13:25 GMT" + "Fri, 12 Jun 2020 21:39:32 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3036,32 +3036,32 @@ "-1" ], "Content-Length": [ - "711" + "710" ], "Retry-After": [ "0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Resources/deployments/ps7102/operations/D60BABBFE7AE59B2\",\r\n \"operationId\": \"D60BABBFE7AE59B2\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-03-25T09:13:18.8195494Z\",\r\n \"duration\": \"PT2.7531945S\",\r\n \"trackingId\": \"479ff780-28ec-4fd7-8836-c0462825967c\",\r\n \"serviceRequestId\": \"e60d7e65-f3b9-4984-9501-ea7b36aedca4\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Storage/storageAccounts/ps2757\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps2757\"\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/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/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourcegroups/ps6304/deployments/ps7102/operations?api-version=2019-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjlmMTM4YTEtMWQ2NC00MTA4LTg0MTMtOWVhM2JlMWMxYjJkL3Jlc291cmNlZ3JvdXBzL3BzNjMwNC9kZXBsb3ltZW50cy9wczcxMDIvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx", + "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": [ - "629ccb8f-d2f0-46b9-8474-cbd30f025144" + "afe1b47d-1acb-4f06-8e48-071d2e319f23" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27110.04", + "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.4.0.0" + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0" ] }, "ResponseHeaders": { @@ -3075,13 +3075,13 @@ "11912" ], "x-ms-request-id": [ - "4767e554-204f-42b6-96e1-b6e1664902b5" + "29e453ac-96e6-4323-84e0-9921784acdce" ], "x-ms-correlation-request-id": [ - "4767e554-204f-42b6-96e1-b6e1664902b5" + "29e453ac-96e6-4323-84e0-9921784acdce" ], "x-ms-routing-request-id": [ - "WESTUS2:20200325T091326Z:4767e554-204f-42b6-96e1-b6e1664902b5" + "NORTHCENTRALUS:20200612T213933Z:29e453ac-96e6-4323-84e0-9921784acdce" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3090,7 +3090,7 @@ "nosniff" ], "Date": [ - "Wed, 25 Mar 2020 09:13:25 GMT" + "Fri, 12 Jun 2020 21:39:33 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3099,32 +3099,32 @@ "-1" ], "Content-Length": [ - "711" + "710" ], "Retry-After": [ "0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Resources/deployments/ps7102/operations/D60BABBFE7AE59B2\",\r\n \"operationId\": \"D60BABBFE7AE59B2\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-03-25T09:13:18.8195494Z\",\r\n \"duration\": \"PT2.7531945S\",\r\n \"trackingId\": \"479ff780-28ec-4fd7-8836-c0462825967c\",\r\n \"serviceRequestId\": \"e60d7e65-f3b9-4984-9501-ea7b36aedca4\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Storage/storageAccounts/ps2757\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps2757\"\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/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/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourcegroups/ps6304/deployments/ps7102/operations?api-version=2019-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjlmMTM4YTEtMWQ2NC00MTA4LTg0MTMtOWVhM2JlMWMxYjJkL3Jlc291cmNlZ3JvdXBzL3BzNjMwNC9kZXBsb3ltZW50cy9wczcxMDIvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx", + "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": [ - "cbb828b8-ac22-4e02-a3f3-c7b0c51f1375" + "66a6ddd6-19f0-4e32-8e16-5777fde8ea05" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27110.04", + "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.4.0.0" + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0" ] }, "ResponseHeaders": { @@ -3138,13 +3138,13 @@ "11910" ], "x-ms-request-id": [ - "0a5665cc-3ed1-41c6-86d9-cdc27bf55a77" + "f003fbe4-45d7-43df-99f5-7ed5097f744d" ], "x-ms-correlation-request-id": [ - "0a5665cc-3ed1-41c6-86d9-cdc27bf55a77" + "f003fbe4-45d7-43df-99f5-7ed5097f744d" ], "x-ms-routing-request-id": [ - "WESTUS2:20200325T091327Z:0a5665cc-3ed1-41c6-86d9-cdc27bf55a77" + "NORTHCENTRALUS:20200612T213934Z:f003fbe4-45d7-43df-99f5-7ed5097f744d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3153,7 +3153,7 @@ "nosniff" ], "Date": [ - "Wed, 25 Mar 2020 09:13:26 GMT" + "Fri, 12 Jun 2020 21:39:33 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3162,32 +3162,32 @@ "-1" ], "Content-Length": [ - "711" + "710" ], "Retry-After": [ "0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Resources/deployments/ps7102/operations/D60BABBFE7AE59B2\",\r\n \"operationId\": \"D60BABBFE7AE59B2\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-03-25T09:13:18.8195494Z\",\r\n \"duration\": \"PT2.7531945S\",\r\n \"trackingId\": \"479ff780-28ec-4fd7-8836-c0462825967c\",\r\n \"serviceRequestId\": \"e60d7e65-f3b9-4984-9501-ea7b36aedca4\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Storage/storageAccounts/ps2757\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps2757\"\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/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/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourcegroups/ps6304/deployments/ps7102/operations?api-version=2019-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjlmMTM4YTEtMWQ2NC00MTA4LTg0MTMtOWVhM2JlMWMxYjJkL3Jlc291cmNlZ3JvdXBzL3BzNjMwNC9kZXBsb3ltZW50cy9wczcxMDIvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx", + "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": [ - "e0246b7c-b756-443a-9c45-fbd08b8e6160" + "1abd77e5-ce4e-49c2-a994-bdda83c9047a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27110.04", + "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.4.0.0" + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0" ] }, "ResponseHeaders": { @@ -3201,13 +3201,13 @@ "11908" ], "x-ms-request-id": [ - "6ff9aa3d-dc81-408d-a72d-6ff7cdb7eb96" + "66ad4cfe-60e4-473f-a678-36fad85547ab" ], "x-ms-correlation-request-id": [ - "6ff9aa3d-dc81-408d-a72d-6ff7cdb7eb96" + "66ad4cfe-60e4-473f-a678-36fad85547ab" ], "x-ms-routing-request-id": [ - "WESTUS2:20200325T091327Z:6ff9aa3d-dc81-408d-a72d-6ff7cdb7eb96" + "NORTHCENTRALUS:20200612T213934Z:66ad4cfe-60e4-473f-a678-36fad85547ab" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3216,7 +3216,7 @@ "nosniff" ], "Date": [ - "Wed, 25 Mar 2020 09:13:26 GMT" + "Fri, 12 Jun 2020 21:39:34 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3225,32 +3225,32 @@ "-1" ], "Content-Length": [ - "711" + "710" ], "Retry-After": [ "0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Resources/deployments/ps7102/operations/D60BABBFE7AE59B2\",\r\n \"operationId\": \"D60BABBFE7AE59B2\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-03-25T09:13:18.8195494Z\",\r\n \"duration\": \"PT2.7531945S\",\r\n \"trackingId\": \"479ff780-28ec-4fd7-8836-c0462825967c\",\r\n \"serviceRequestId\": \"e60d7e65-f3b9-4984-9501-ea7b36aedca4\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Storage/storageAccounts/ps2757\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps2757\"\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/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/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourcegroups/ps6304/deployments/ps7102/operations?api-version=2019-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjlmMTM4YTEtMWQ2NC00MTA4LTg0MTMtOWVhM2JlMWMxYjJkL3Jlc291cmNlZ3JvdXBzL3BzNjMwNC9kZXBsb3ltZW50cy9wczcxMDIvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx", + "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": [ - "08affdae-9737-44c3-8b60-0d6a0b8867ab" + "b90b66de-20c6-47bd-b149-5f67c65d56eb" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27110.04", + "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.4.0.0" + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0" ] }, "ResponseHeaders": { @@ -3264,13 +3264,13 @@ "11906" ], "x-ms-request-id": [ - "6d5c009c-2a55-4663-a342-c6b7b64a7dfa" + "d1f041c6-d04d-40e4-ba99-8fc5f94a032f" ], "x-ms-correlation-request-id": [ - "6d5c009c-2a55-4663-a342-c6b7b64a7dfa" + "d1f041c6-d04d-40e4-ba99-8fc5f94a032f" ], "x-ms-routing-request-id": [ - "WESTUS2:20200325T091327Z:6d5c009c-2a55-4663-a342-c6b7b64a7dfa" + "NORTHCENTRALUS:20200612T213935Z:d1f041c6-d04d-40e4-ba99-8fc5f94a032f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3279,7 +3279,7 @@ "nosniff" ], "Date": [ - "Wed, 25 Mar 2020 09:13:26 GMT" + "Fri, 12 Jun 2020 21:39:34 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3288,32 +3288,32 @@ "-1" ], "Content-Length": [ - "711" + "710" ], "Retry-After": [ "0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Resources/deployments/ps7102/operations/D60BABBFE7AE59B2\",\r\n \"operationId\": \"D60BABBFE7AE59B2\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-03-25T09:13:18.8195494Z\",\r\n \"duration\": \"PT2.7531945S\",\r\n \"trackingId\": \"479ff780-28ec-4fd7-8836-c0462825967c\",\r\n \"serviceRequestId\": \"e60d7e65-f3b9-4984-9501-ea7b36aedca4\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Storage/storageAccounts/ps2757\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps2757\"\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/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/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourcegroups/ps6304/deployments/ps7102/operations?api-version=2019-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjlmMTM4YTEtMWQ2NC00MTA4LTg0MTMtOWVhM2JlMWMxYjJkL3Jlc291cmNlZ3JvdXBzL3BzNjMwNC9kZXBsb3ltZW50cy9wczcxMDIvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx", + "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": [ - "c6dd59e9-74f4-4194-bd27-ad996e441359" + "2ea399cb-f22d-4242-9056-31d5fe1120fa" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27110.04", + "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.4.0.0" + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0" ] }, "ResponseHeaders": { @@ -3327,13 +3327,13 @@ "11904" ], "x-ms-request-id": [ - "5a233f44-8567-474b-97e5-3714f46c6da7" + "c606358e-b6ce-448d-8ab3-c3943a5564a3" ], "x-ms-correlation-request-id": [ - "5a233f44-8567-474b-97e5-3714f46c6da7" + "c606358e-b6ce-448d-8ab3-c3943a5564a3" ], "x-ms-routing-request-id": [ - "WESTUS2:20200325T091328Z:5a233f44-8567-474b-97e5-3714f46c6da7" + "NORTHCENTRALUS:20200612T213935Z:c606358e-b6ce-448d-8ab3-c3943a5564a3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3342,7 +3342,7 @@ "nosniff" ], "Date": [ - "Wed, 25 Mar 2020 09:13:27 GMT" + "Fri, 12 Jun 2020 21:39:34 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3351,32 +3351,32 @@ "-1" ], "Content-Length": [ - "711" + "710" ], "Retry-After": [ "0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Resources/deployments/ps7102/operations/D60BABBFE7AE59B2\",\r\n \"operationId\": \"D60BABBFE7AE59B2\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-03-25T09:13:18.8195494Z\",\r\n \"duration\": \"PT2.7531945S\",\r\n \"trackingId\": \"479ff780-28ec-4fd7-8836-c0462825967c\",\r\n \"serviceRequestId\": \"e60d7e65-f3b9-4984-9501-ea7b36aedca4\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Storage/storageAccounts/ps2757\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps2757\"\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/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/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourcegroups/ps6304/deployments/ps7102/operations?api-version=2019-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjlmMTM4YTEtMWQ2NC00MTA4LTg0MTMtOWVhM2JlMWMxYjJkL3Jlc291cmNlZ3JvdXBzL3BzNjMwNC9kZXBsb3ltZW50cy9wczcxMDIvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx", + "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": [ - "6b9f8895-6258-4e5a-a07d-6902e9cf38fc" + "50618d7f-951c-42c0-a49d-0232b17abac2" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27110.04", + "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.4.0.0" + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0" ] }, "ResponseHeaders": { @@ -3390,13 +3390,13 @@ "11902" ], "x-ms-request-id": [ - "9ed3281d-240d-4394-a83d-c0a7ff7dc1f1" + "0df6bb34-cc9a-4fda-867f-efb2c7f9521a" ], "x-ms-correlation-request-id": [ - "9ed3281d-240d-4394-a83d-c0a7ff7dc1f1" + "0df6bb34-cc9a-4fda-867f-efb2c7f9521a" ], "x-ms-routing-request-id": [ - "WESTUS2:20200325T091328Z:9ed3281d-240d-4394-a83d-c0a7ff7dc1f1" + "NORTHCENTRALUS:20200612T213935Z:0df6bb34-cc9a-4fda-867f-efb2c7f9521a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3405,7 +3405,7 @@ "nosniff" ], "Date": [ - "Wed, 25 Mar 2020 09:13:27 GMT" + "Fri, 12 Jun 2020 21:39:35 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3414,32 +3414,32 @@ "-1" ], "Content-Length": [ - "711" + "710" ], "Retry-After": [ "0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Resources/deployments/ps7102/operations/D60BABBFE7AE59B2\",\r\n \"operationId\": \"D60BABBFE7AE59B2\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-03-25T09:13:18.8195494Z\",\r\n \"duration\": \"PT2.7531945S\",\r\n \"trackingId\": \"479ff780-28ec-4fd7-8836-c0462825967c\",\r\n \"serviceRequestId\": \"e60d7e65-f3b9-4984-9501-ea7b36aedca4\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Storage/storageAccounts/ps2757\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps2757\"\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/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/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourcegroups/ps6304/deployments/ps7102/operations?api-version=2019-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjlmMTM4YTEtMWQ2NC00MTA4LTg0MTMtOWVhM2JlMWMxYjJkL3Jlc291cmNlZ3JvdXBzL3BzNjMwNC9kZXBsb3ltZW50cy9wczcxMDIvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx", + "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": [ - "dabfec3c-95d6-4682-b30d-4e30746d798b" + "ed7658ac-81cd-4738-8b13-8aacc420e702" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27110.04", + "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.4.0.0" + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0" ] }, "ResponseHeaders": { @@ -3453,13 +3453,13 @@ "11900" ], "x-ms-request-id": [ - "8d1cb157-7574-497d-9579-328b4fdc8ef5" + "35a99f37-b29b-4dfe-a438-4eac5b22e9a0" ], "x-ms-correlation-request-id": [ - "8d1cb157-7574-497d-9579-328b4fdc8ef5" + "35a99f37-b29b-4dfe-a438-4eac5b22e9a0" ], "x-ms-routing-request-id": [ - "WESTUS2:20200325T091328Z:8d1cb157-7574-497d-9579-328b4fdc8ef5" + "NORTHCENTRALUS:20200612T213936Z:35a99f37-b29b-4dfe-a438-4eac5b22e9a0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3468,7 +3468,7 @@ "nosniff" ], "Date": [ - "Wed, 25 Mar 2020 09:13:27 GMT" + "Fri, 12 Jun 2020 21:39:35 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3477,32 +3477,32 @@ "-1" ], "Content-Length": [ - "711" + "710" ], "Retry-After": [ "0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Resources/deployments/ps7102/operations/D60BABBFE7AE59B2\",\r\n \"operationId\": \"D60BABBFE7AE59B2\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-03-25T09:13:18.8195494Z\",\r\n \"duration\": \"PT2.7531945S\",\r\n \"trackingId\": \"479ff780-28ec-4fd7-8836-c0462825967c\",\r\n \"serviceRequestId\": \"e60d7e65-f3b9-4984-9501-ea7b36aedca4\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Storage/storageAccounts/ps2757\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps2757\"\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/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/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourcegroups/ps6304/deployments/ps7102/operations?api-version=2019-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjlmMTM4YTEtMWQ2NC00MTA4LTg0MTMtOWVhM2JlMWMxYjJkL3Jlc291cmNlZ3JvdXBzL3BzNjMwNC9kZXBsb3ltZW50cy9wczcxMDIvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx", + "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": [ - "53ba7229-2dca-4957-a888-8e0dfd718095" + "19414252-3e39-4857-bfd2-bc2dbd1b937c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27110.04", + "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.4.0.0" + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0" ] }, "ResponseHeaders": { @@ -3516,13 +3516,13 @@ "11898" ], "x-ms-request-id": [ - "16b48165-f6e7-4fe2-ac69-9635687d5b2b" + "557775e6-f044-4019-a15e-e3ef57fb7e75" ], "x-ms-correlation-request-id": [ - "16b48165-f6e7-4fe2-ac69-9635687d5b2b" + "557775e6-f044-4019-a15e-e3ef57fb7e75" ], "x-ms-routing-request-id": [ - "WESTUS2:20200325T091329Z:16b48165-f6e7-4fe2-ac69-9635687d5b2b" + "NORTHCENTRALUS:20200612T213936Z:557775e6-f044-4019-a15e-e3ef57fb7e75" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3531,7 +3531,7 @@ "nosniff" ], "Date": [ - "Wed, 25 Mar 2020 09:13:28 GMT" + "Fri, 12 Jun 2020 21:39:36 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3540,32 +3540,32 @@ "-1" ], "Content-Length": [ - "711" + "710" ], "Retry-After": [ "0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Resources/deployments/ps7102/operations/D60BABBFE7AE59B2\",\r\n \"operationId\": \"D60BABBFE7AE59B2\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-03-25T09:13:18.8195494Z\",\r\n \"duration\": \"PT2.7531945S\",\r\n \"trackingId\": \"479ff780-28ec-4fd7-8836-c0462825967c\",\r\n \"serviceRequestId\": \"e60d7e65-f3b9-4984-9501-ea7b36aedca4\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Storage/storageAccounts/ps2757\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps2757\"\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/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/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourcegroups/ps6304/deployments/ps7102/operations?api-version=2019-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjlmMTM4YTEtMWQ2NC00MTA4LTg0MTMtOWVhM2JlMWMxYjJkL3Jlc291cmNlZ3JvdXBzL3BzNjMwNC9kZXBsb3ltZW50cy9wczcxMDIvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx", + "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": [ - "8f3b4227-9c27-4c11-802d-4ce45917f2a1" + "2e75b10c-e62f-4b13-9ee1-41f7af6605c3" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27110.04", + "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.4.0.0" + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0" ] }, "ResponseHeaders": { @@ -3579,13 +3579,13 @@ "11896" ], "x-ms-request-id": [ - "097ce821-8aab-4d09-82cc-0e05216feb40" + "6b94ebbb-f821-43e8-a575-a7d6680d2085" ], "x-ms-correlation-request-id": [ - "097ce821-8aab-4d09-82cc-0e05216feb40" + "6b94ebbb-f821-43e8-a575-a7d6680d2085" ], "x-ms-routing-request-id": [ - "WESTUS2:20200325T091329Z:097ce821-8aab-4d09-82cc-0e05216feb40" + "NORTHCENTRALUS:20200612T213937Z:6b94ebbb-f821-43e8-a575-a7d6680d2085" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3594,7 +3594,7 @@ "nosniff" ], "Date": [ - "Wed, 25 Mar 2020 09:13:28 GMT" + "Fri, 12 Jun 2020 21:39:36 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3603,32 +3603,32 @@ "-1" ], "Content-Length": [ - "711" + "710" ], "Retry-After": [ "0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Resources/deployments/ps7102/operations/D60BABBFE7AE59B2\",\r\n \"operationId\": \"D60BABBFE7AE59B2\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-03-25T09:13:18.8195494Z\",\r\n \"duration\": \"PT2.7531945S\",\r\n \"trackingId\": \"479ff780-28ec-4fd7-8836-c0462825967c\",\r\n \"serviceRequestId\": \"e60d7e65-f3b9-4984-9501-ea7b36aedca4\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Storage/storageAccounts/ps2757\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps2757\"\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/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/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourcegroups/ps6304/deployments/ps7102/operations?api-version=2019-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjlmMTM4YTEtMWQ2NC00MTA4LTg0MTMtOWVhM2JlMWMxYjJkL3Jlc291cmNlZ3JvdXBzL3BzNjMwNC9kZXBsb3ltZW50cy9wczcxMDIvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx", + "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": [ - "622447ee-e148-4448-811e-e9d141eaa6e4" + "4ed558e1-d234-4bdf-8945-955c09b4b56a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27110.04", + "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.4.0.0" + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0" ] }, "ResponseHeaders": { @@ -3642,13 +3642,13 @@ "11894" ], "x-ms-request-id": [ - "2dd4e70d-c2a2-478d-bd6f-3a0329cdea27" + "fa0d8cdb-01ea-4880-acb4-f3053af346ce" ], "x-ms-correlation-request-id": [ - "2dd4e70d-c2a2-478d-bd6f-3a0329cdea27" + "fa0d8cdb-01ea-4880-acb4-f3053af346ce" ], "x-ms-routing-request-id": [ - "WESTUS2:20200325T091329Z:2dd4e70d-c2a2-478d-bd6f-3a0329cdea27" + "NORTHCENTRALUS:20200612T213937Z:fa0d8cdb-01ea-4880-acb4-f3053af346ce" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3657,7 +3657,7 @@ "nosniff" ], "Date": [ - "Wed, 25 Mar 2020 09:13:29 GMT" + "Fri, 12 Jun 2020 21:39:36 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3666,32 +3666,32 @@ "-1" ], "Content-Length": [ - "711" + "710" ], "Retry-After": [ "0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Resources/deployments/ps7102/operations/D60BABBFE7AE59B2\",\r\n \"operationId\": \"D60BABBFE7AE59B2\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-03-25T09:13:18.8195494Z\",\r\n \"duration\": \"PT2.7531945S\",\r\n \"trackingId\": \"479ff780-28ec-4fd7-8836-c0462825967c\",\r\n \"serviceRequestId\": \"e60d7e65-f3b9-4984-9501-ea7b36aedca4\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Storage/storageAccounts/ps2757\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps2757\"\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/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/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourcegroups/ps6304/deployments/ps7102/operations?api-version=2019-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjlmMTM4YTEtMWQ2NC00MTA4LTg0MTMtOWVhM2JlMWMxYjJkL3Jlc291cmNlZ3JvdXBzL3BzNjMwNC9kZXBsb3ltZW50cy9wczcxMDIvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx", + "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": [ - "a16429bc-734f-4d7c-9ef5-0827fd2215bc" + "863609d7-0c58-4776-82d9-3ce50a8dc76a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27110.04", + "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.4.0.0" + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0" ] }, "ResponseHeaders": { @@ -3705,13 +3705,13 @@ "11892" ], "x-ms-request-id": [ - "75fcd848-ec76-4afb-9306-21f5ce9e9797" + "783d46b7-7f69-416b-8545-d6a5e96b70db" ], "x-ms-correlation-request-id": [ - "75fcd848-ec76-4afb-9306-21f5ce9e9797" + "783d46b7-7f69-416b-8545-d6a5e96b70db" ], "x-ms-routing-request-id": [ - "WESTUS2:20200325T091330Z:75fcd848-ec76-4afb-9306-21f5ce9e9797" + "NORTHCENTRALUS:20200612T213938Z:783d46b7-7f69-416b-8545-d6a5e96b70db" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3720,7 +3720,7 @@ "nosniff" ], "Date": [ - "Wed, 25 Mar 2020 09:13:29 GMT" + "Fri, 12 Jun 2020 21:39:37 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3729,32 +3729,32 @@ "-1" ], "Content-Length": [ - "711" + "710" ], "Retry-After": [ "0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Resources/deployments/ps7102/operations/D60BABBFE7AE59B2\",\r\n \"operationId\": \"D60BABBFE7AE59B2\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-03-25T09:13:18.8195494Z\",\r\n \"duration\": \"PT2.7531945S\",\r\n \"trackingId\": \"479ff780-28ec-4fd7-8836-c0462825967c\",\r\n \"serviceRequestId\": \"e60d7e65-f3b9-4984-9501-ea7b36aedca4\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Storage/storageAccounts/ps2757\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps2757\"\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/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/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourcegroups/ps6304/deployments/ps7102/operations?api-version=2019-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjlmMTM4YTEtMWQ2NC00MTA4LTg0MTMtOWVhM2JlMWMxYjJkL3Jlc291cmNlZ3JvdXBzL3BzNjMwNC9kZXBsb3ltZW50cy9wczcxMDIvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx", + "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": [ - "2826a1cc-c47e-45c8-88e8-83f96a353357" + "6408190c-34ab-4944-a912-9d5797fe4133" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27110.04", + "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.4.0.0" + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0" ] }, "ResponseHeaders": { @@ -3768,13 +3768,13 @@ "11890" ], "x-ms-request-id": [ - "adc4403b-c692-4ac9-bd32-254623d000f2" + "fcd5516d-253d-47c9-9782-0cab8abcb4bd" ], "x-ms-correlation-request-id": [ - "adc4403b-c692-4ac9-bd32-254623d000f2" + "fcd5516d-253d-47c9-9782-0cab8abcb4bd" ], "x-ms-routing-request-id": [ - "WESTUS2:20200325T091330Z:adc4403b-c692-4ac9-bd32-254623d000f2" + "NORTHCENTRALUS:20200612T213938Z:fcd5516d-253d-47c9-9782-0cab8abcb4bd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3783,7 +3783,7 @@ "nosniff" ], "Date": [ - "Wed, 25 Mar 2020 09:13:29 GMT" + "Fri, 12 Jun 2020 21:39:37 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3792,32 +3792,32 @@ "-1" ], "Content-Length": [ - "711" + "710" ], "Retry-After": [ "0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Resources/deployments/ps7102/operations/D60BABBFE7AE59B2\",\r\n \"operationId\": \"D60BABBFE7AE59B2\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-03-25T09:13:18.8195494Z\",\r\n \"duration\": \"PT2.7531945S\",\r\n \"trackingId\": \"479ff780-28ec-4fd7-8836-c0462825967c\",\r\n \"serviceRequestId\": \"e60d7e65-f3b9-4984-9501-ea7b36aedca4\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Storage/storageAccounts/ps2757\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps2757\"\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/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/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourcegroups/ps6304/deployments/ps7102/operations?api-version=2019-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjlmMTM4YTEtMWQ2NC00MTA4LTg0MTMtOWVhM2JlMWMxYjJkL3Jlc291cmNlZ3JvdXBzL3BzNjMwNC9kZXBsb3ltZW50cy9wczcxMDIvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx", + "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": [ - "39825238-2026-4076-b663-52ec56bc01ce" + "7212cc3c-c004-4753-9c80-49b09e72837b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27110.04", + "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.4.0.0" + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0" ] }, "ResponseHeaders": { @@ -3831,13 +3831,13 @@ "11888" ], "x-ms-request-id": [ - "97caee73-b909-472d-b0a4-680b8382927e" + "ff850eae-835e-48b0-81a9-79650c11286d" ], "x-ms-correlation-request-id": [ - "97caee73-b909-472d-b0a4-680b8382927e" + "ff850eae-835e-48b0-81a9-79650c11286d" ], "x-ms-routing-request-id": [ - "WESTUS2:20200325T091330Z:97caee73-b909-472d-b0a4-680b8382927e" + "NORTHCENTRALUS:20200612T213938Z:ff850eae-835e-48b0-81a9-79650c11286d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3846,7 +3846,7 @@ "nosniff" ], "Date": [ - "Wed, 25 Mar 2020 09:13:30 GMT" + "Fri, 12 Jun 2020 21:39:38 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3855,32 +3855,32 @@ "-1" ], "Content-Length": [ - "711" + "710" ], "Retry-After": [ "0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Resources/deployments/ps7102/operations/D60BABBFE7AE59B2\",\r\n \"operationId\": \"D60BABBFE7AE59B2\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-03-25T09:13:18.8195494Z\",\r\n \"duration\": \"PT2.7531945S\",\r\n \"trackingId\": \"479ff780-28ec-4fd7-8836-c0462825967c\",\r\n \"serviceRequestId\": \"e60d7e65-f3b9-4984-9501-ea7b36aedca4\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Storage/storageAccounts/ps2757\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps2757\"\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/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/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourcegroups/ps6304/deployments/ps7102/operations?api-version=2019-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjlmMTM4YTEtMWQ2NC00MTA4LTg0MTMtOWVhM2JlMWMxYjJkL3Jlc291cmNlZ3JvdXBzL3BzNjMwNC9kZXBsb3ltZW50cy9wczcxMDIvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx", + "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": [ - "069a6b46-024a-44cb-b650-bd065b4accbc" + "62a8f5df-f462-4f4a-8f56-663b17c6a176" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27110.04", + "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.4.0.0" + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0" ] }, "ResponseHeaders": { @@ -3894,13 +3894,13 @@ "11886" ], "x-ms-request-id": [ - "c9191da9-c83d-4c13-8c3f-3f248afdbbb4" + "e53efe30-48f8-418a-96c2-d0f76c49e2e5" ], "x-ms-correlation-request-id": [ - "c9191da9-c83d-4c13-8c3f-3f248afdbbb4" + "e53efe30-48f8-418a-96c2-d0f76c49e2e5" ], "x-ms-routing-request-id": [ - "WESTUS2:20200325T091331Z:c9191da9-c83d-4c13-8c3f-3f248afdbbb4" + "NORTHCENTRALUS:20200612T213939Z:e53efe30-48f8-418a-96c2-d0f76c49e2e5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3909,7 +3909,7 @@ "nosniff" ], "Date": [ - "Wed, 25 Mar 2020 09:13:30 GMT" + "Fri, 12 Jun 2020 21:39:38 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3918,32 +3918,32 @@ "-1" ], "Content-Length": [ - "711" + "707" ], "Retry-After": [ "0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Resources/deployments/ps7102/operations/D60BABBFE7AE59B2\",\r\n \"operationId\": \"D60BABBFE7AE59B2\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-03-25T09:13:18.8195494Z\",\r\n \"duration\": \"PT2.7531945S\",\r\n \"trackingId\": \"479ff780-28ec-4fd7-8836-c0462825967c\",\r\n \"serviceRequestId\": \"e60d7e65-f3b9-4984-9501-ea7b36aedca4\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Storage/storageAccounts/ps2757\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps2757\"\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/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/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourcegroups/ps6304/deployments/ps7102/operations?api-version=2019-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjlmMTM4YTEtMWQ2NC00MTA4LTg0MTMtOWVhM2JlMWMxYjJkL3Jlc291cmNlZ3JvdXBzL3BzNjMwNC9kZXBsb3ltZW50cy9wczcxMDIvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx", + "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": [ - "a447724e-f3d7-4103-97b7-52392a15fb38" + "f2506152-50ca-46b6-ace2-90787c2f3bbe" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27110.04", + "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.4.0.0" + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0" ] }, "ResponseHeaders": { @@ -3957,13 +3957,13 @@ "11884" ], "x-ms-request-id": [ - "851f4450-c648-4cbc-b01d-ac1658194f52" + "db731748-375f-4716-b0d3-4ba69850c0cd" ], "x-ms-correlation-request-id": [ - "851f4450-c648-4cbc-b01d-ac1658194f52" + "db731748-375f-4716-b0d3-4ba69850c0cd" ], "x-ms-routing-request-id": [ - "WESTUS2:20200325T091331Z:851f4450-c648-4cbc-b01d-ac1658194f52" + "NORTHCENTRALUS:20200612T213939Z:db731748-375f-4716-b0d3-4ba69850c0cd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3972,7 +3972,7 @@ "nosniff" ], "Date": [ - "Wed, 25 Mar 2020 09:13:30 GMT" + "Fri, 12 Jun 2020 21:39:38 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3981,32 +3981,32 @@ "-1" ], "Content-Length": [ - "711" + "1826" ], "Retry-After": [ "0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Resources/deployments/ps7102/operations/D60BABBFE7AE59B2\",\r\n \"operationId\": \"D60BABBFE7AE59B2\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-03-25T09:13:18.8195494Z\",\r\n \"duration\": \"PT2.7531945S\",\r\n \"trackingId\": \"479ff780-28ec-4fd7-8836-c0462825967c\",\r\n \"serviceRequestId\": \"e60d7e65-f3b9-4984-9501-ea7b36aedca4\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Storage/storageAccounts/ps2757\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps2757\"\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/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/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourcegroups/ps6304/deployments/ps7102/operations?api-version=2019-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjlmMTM4YTEtMWQ2NC00MTA4LTg0MTMtOWVhM2JlMWMxYjJkL3Jlc291cmNlZ3JvdXBzL3BzNjMwNC9kZXBsb3ltZW50cy9wczcxMDIvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx", + "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": [ - "c3f90ef7-099d-48cc-8f69-a8c4ec66c841" + "fd3b9026-e009-40d3-ae38-9626a0bbf557" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27110.04", + "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.4.0.0" + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0" ] }, "ResponseHeaders": { @@ -4017,16 +4017,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11882" + "11881" ], "x-ms-request-id": [ - "0efd9f68-95f8-4cd8-9744-d3f1a8b9468d" + "b609c003-876f-48f8-bb48-5a9de1696c41" ], "x-ms-correlation-request-id": [ - "0efd9f68-95f8-4cd8-9744-d3f1a8b9468d" + "b609c003-876f-48f8-bb48-5a9de1696c41" ], "x-ms-routing-request-id": [ - "WESTUS2:20200325T091331Z:0efd9f68-95f8-4cd8-9744-d3f1a8b9468d" + "NORTHCENTRALUS:20200612T213940Z:b609c003-876f-48f8-bb48-5a9de1696c41" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4035,7 +4035,7 @@ "nosniff" ], "Date": [ - "Wed, 25 Mar 2020 09:13:30 GMT" + "Fri, 12 Jun 2020 21:39:40 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4044,32 +4044,32 @@ "-1" ], "Content-Length": [ - "711" + "1826" ], "Retry-After": [ "0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Resources/deployments/ps7102/operations/D60BABBFE7AE59B2\",\r\n \"operationId\": \"D60BABBFE7AE59B2\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-03-25T09:13:18.8195494Z\",\r\n \"duration\": \"PT2.7531945S\",\r\n \"trackingId\": \"479ff780-28ec-4fd7-8836-c0462825967c\",\r\n \"serviceRequestId\": \"e60d7e65-f3b9-4984-9501-ea7b36aedca4\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Storage/storageAccounts/ps2757\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps2757\"\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/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/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourcegroups/ps6304/deployments/ps7102/operations?api-version=2019-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjlmMTM4YTEtMWQ2NC00MTA4LTg0MTMtOWVhM2JlMWMxYjJkL3Jlc291cmNlZ3JvdXBzL3BzNjMwNC9kZXBsb3ltZW50cy9wczcxMDIvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx", + "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": [ - "90335ed2-345f-45a3-a83e-ae935d6ce3da" + "8c33d75d-578c-4076-8a56-ebb7a27da461" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27110.04", + "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.4.0.0" + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0" ] }, "ResponseHeaders": { @@ -4079,17 +4079,20 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11880" + "11997" ], "x-ms-request-id": [ - "3f455714-99a7-41fe-91f2-e2d430686cd5" + "701f354b-bf33-4602-8d7a-9f58a9f3da97" ], "x-ms-correlation-request-id": [ - "3f455714-99a7-41fe-91f2-e2d430686cd5" + "701f354b-bf33-4602-8d7a-9f58a9f3da97" ], "x-ms-routing-request-id": [ - "WESTUS2:20200325T091331Z:3f455714-99a7-41fe-91f2-e2d430686cd5" + "NORTHCENTRALUS:20200612T213916Z:701f354b-bf33-4602-8d7a-9f58a9f3da97" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4098,7 +4101,7 @@ "nosniff" ], "Date": [ - "Wed, 25 Mar 2020 09:13:31 GMT" + "Fri, 12 Jun 2020 21:39:16 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4107,32 +4110,29 @@ "-1" ], "Content-Length": [ - "711" - ], - "Retry-After": [ - "0" + "777" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Resources/deployments/ps7102/operations/D60BABBFE7AE59B2\",\r\n \"operationId\": \"D60BABBFE7AE59B2\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-03-25T09:13:18.8195494Z\",\r\n \"duration\": \"PT2.7531945S\",\r\n \"trackingId\": \"479ff780-28ec-4fd7-8836-c0462825967c\",\r\n \"serviceRequestId\": \"e60d7e65-f3b9-4984-9501-ea7b36aedca4\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Storage/storageAccounts/ps2757\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps2757\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "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}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourcegroups/ps6304/deployments/ps7102/operations?api-version=2019-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjlmMTM4YTEtMWQ2NC00MTA4LTg0MTMtOWVhM2JlMWMxYjJkL3Jlc291cmNlZ3JvdXBzL3BzNjMwNC9kZXBsb3ltZW50cy9wczcxMDIvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx", + "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": [ - "e8739690-d10d-4183-91b2-ced8a15d65a9" + "c272fae9-48fc-47cc-bd70-562d3f52bb70" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27110.04", + "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.4.0.0" + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0" ] }, "ResponseHeaders": { @@ -4142,17 +4142,20 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11878" + "11995" ], "x-ms-request-id": [ - "f8ac509e-0c26-4870-be83-6f156d82c8c7" + "1022635b-70a6-406d-9963-f5b5a59c7085" ], "x-ms-correlation-request-id": [ - "f8ac509e-0c26-4870-be83-6f156d82c8c7" + "1022635b-70a6-406d-9963-f5b5a59c7085" ], "x-ms-routing-request-id": [ - "WESTUS2:20200325T091332Z:f8ac509e-0c26-4870-be83-6f156d82c8c7" + "NORTHCENTRALUS:20200612T213917Z:1022635b-70a6-406d-9963-f5b5a59c7085" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4161,7 +4164,7 @@ "nosniff" ], "Date": [ - "Wed, 25 Mar 2020 09:13:31 GMT" + "Fri, 12 Jun 2020 21:39:16 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4170,32 +4173,29 @@ "-1" ], "Content-Length": [ - "711" - ], - "Retry-After": [ - "0" + "777" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Resources/deployments/ps7102/operations/D60BABBFE7AE59B2\",\r\n \"operationId\": \"D60BABBFE7AE59B2\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-03-25T09:13:18.8195494Z\",\r\n \"duration\": \"PT2.7531945S\",\r\n \"trackingId\": \"479ff780-28ec-4fd7-8836-c0462825967c\",\r\n \"serviceRequestId\": \"e60d7e65-f3b9-4984-9501-ea7b36aedca4\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Storage/storageAccounts/ps2757\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps2757\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "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}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourcegroups/ps6304/deployments/ps7102/operations?api-version=2019-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjlmMTM4YTEtMWQ2NC00MTA4LTg0MTMtOWVhM2JlMWMxYjJkL3Jlc291cmNlZ3JvdXBzL3BzNjMwNC9kZXBsb3ltZW50cy9wczcxMDIvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx", + "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": [ - "e50bf1f7-a549-41ab-a050-233818593c59" + "e710851d-3092-4fad-a95a-990729925880" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27110.04", + "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.4.0.0" + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0" ] }, "ResponseHeaders": { @@ -4205,17 +4205,20 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11876" + "11993" ], "x-ms-request-id": [ - "6dba7671-3390-4a06-b3b9-2f6ba1c7927e" + "ac2a70c1-a397-4656-ac62-ec68fcd934f0" ], "x-ms-correlation-request-id": [ - "6dba7671-3390-4a06-b3b9-2f6ba1c7927e" + "ac2a70c1-a397-4656-ac62-ec68fcd934f0" ], "x-ms-routing-request-id": [ - "WESTUS2:20200325T091332Z:6dba7671-3390-4a06-b3b9-2f6ba1c7927e" + "NORTHCENTRALUS:20200612T213917Z:ac2a70c1-a397-4656-ac62-ec68fcd934f0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4224,7 +4227,7 @@ "nosniff" ], "Date": [ - "Wed, 25 Mar 2020 09:13:31 GMT" + "Fri, 12 Jun 2020 21:39:17 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4233,32 +4236,29 @@ "-1" ], "Content-Length": [ - "711" - ], - "Retry-After": [ - "0" + "777" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Resources/deployments/ps7102/operations/D60BABBFE7AE59B2\",\r\n \"operationId\": \"D60BABBFE7AE59B2\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-03-25T09:13:18.8195494Z\",\r\n \"duration\": \"PT2.7531945S\",\r\n \"trackingId\": \"479ff780-28ec-4fd7-8836-c0462825967c\",\r\n \"serviceRequestId\": \"e60d7e65-f3b9-4984-9501-ea7b36aedca4\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Storage/storageAccounts/ps2757\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps2757\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "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}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourcegroups/ps6304/deployments/ps7102/operations?api-version=2019-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjlmMTM4YTEtMWQ2NC00MTA4LTg0MTMtOWVhM2JlMWMxYjJkL3Jlc291cmNlZ3JvdXBzL3BzNjMwNC9kZXBsb3ltZW50cy9wczcxMDIvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx", + "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": [ - "cd911bb7-b2af-43c4-a55f-ef05a8922790" + "c1ae6c9f-f3e3-4df1-92ea-5036f996c4a1" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27110.04", + "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.4.0.0" + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0" ] }, "ResponseHeaders": { @@ -4268,17 +4268,20 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11874" + "11991" ], "x-ms-request-id": [ - "78650f32-bdf3-4293-9292-1a04b2e913f3" + "10bec509-7efe-4eb8-8b63-d1917b49d6ba" ], "x-ms-correlation-request-id": [ - "78650f32-bdf3-4293-9292-1a04b2e913f3" + "10bec509-7efe-4eb8-8b63-d1917b49d6ba" ], "x-ms-routing-request-id": [ - "WESTUS2:20200325T091332Z:78650f32-bdf3-4293-9292-1a04b2e913f3" + "NORTHCENTRALUS:20200612T213917Z:10bec509-7efe-4eb8-8b63-d1917b49d6ba" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4287,7 +4290,7 @@ "nosniff" ], "Date": [ - "Wed, 25 Mar 2020 09:13:31 GMT" + "Fri, 12 Jun 2020 21:39:17 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4296,32 +4299,29 @@ "-1" ], "Content-Length": [ - "711" - ], - "Retry-After": [ - "0" + "777" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Resources/deployments/ps7102/operations/D60BABBFE7AE59B2\",\r\n \"operationId\": \"D60BABBFE7AE59B2\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-03-25T09:13:18.8195494Z\",\r\n \"duration\": \"PT2.7531945S\",\r\n \"trackingId\": \"479ff780-28ec-4fd7-8836-c0462825967c\",\r\n \"serviceRequestId\": \"e60d7e65-f3b9-4984-9501-ea7b36aedca4\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Storage/storageAccounts/ps2757\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps2757\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "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}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourcegroups/ps6304/deployments/ps7102/operations?api-version=2019-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjlmMTM4YTEtMWQ2NC00MTA4LTg0MTMtOWVhM2JlMWMxYjJkL3Jlc291cmNlZ3JvdXBzL3BzNjMwNC9kZXBsb3ltZW50cy9wczcxMDIvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx", + "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": [ - "27bbf683-b2bd-4cd2-92af-813cb8bc536b" + "72c9e6e3-a1bd-4fd1-931d-6135332d1bea" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27110.04", + "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.4.0.0" + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0" ] }, "ResponseHeaders": { @@ -4331,17 +4331,20 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11872" + "11989" ], "x-ms-request-id": [ - "c80deb71-5617-4885-ba5a-a3319623c514" + "02d24c4e-166a-4620-9d92-7578f7c8b6f1" ], "x-ms-correlation-request-id": [ - "c80deb71-5617-4885-ba5a-a3319623c514" + "02d24c4e-166a-4620-9d92-7578f7c8b6f1" ], "x-ms-routing-request-id": [ - "WESTUS2:20200325T091333Z:c80deb71-5617-4885-ba5a-a3319623c514" + "NORTHCENTRALUS:20200612T213918Z:02d24c4e-166a-4620-9d92-7578f7c8b6f1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4350,7 +4353,7 @@ "nosniff" ], "Date": [ - "Wed, 25 Mar 2020 09:13:32 GMT" + "Fri, 12 Jun 2020 21:39:17 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4359,32 +4362,29 @@ "-1" ], "Content-Length": [ - "711" - ], - "Retry-After": [ - "0" + "777" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Resources/deployments/ps7102/operations/D60BABBFE7AE59B2\",\r\n \"operationId\": \"D60BABBFE7AE59B2\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-03-25T09:13:18.8195494Z\",\r\n \"duration\": \"PT2.7531945S\",\r\n \"trackingId\": \"479ff780-28ec-4fd7-8836-c0462825967c\",\r\n \"serviceRequestId\": \"e60d7e65-f3b9-4984-9501-ea7b36aedca4\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Storage/storageAccounts/ps2757\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps2757\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "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}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourcegroups/ps6304/deployments/ps7102/operations?api-version=2019-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjlmMTM4YTEtMWQ2NC00MTA4LTg0MTMtOWVhM2JlMWMxYjJkL3Jlc291cmNlZ3JvdXBzL3BzNjMwNC9kZXBsb3ltZW50cy9wczcxMDIvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx", + "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": [ - "68a0a0d0-061d-45c2-a81d-04cc7755418a" + "6a6a217f-cd66-462d-a17c-41a115771fdf" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27110.04", + "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.4.0.0" + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0" ] }, "ResponseHeaders": { @@ -4394,17 +4394,20 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11870" + "11987" ], "x-ms-request-id": [ - "0a1c87ea-be86-4391-96d8-c34775ffbfaf" + "60b79989-5b05-47ec-a548-8fb4e41d21b9" ], "x-ms-correlation-request-id": [ - "0a1c87ea-be86-4391-96d8-c34775ffbfaf" + "60b79989-5b05-47ec-a548-8fb4e41d21b9" ], "x-ms-routing-request-id": [ - "WESTUS2:20200325T091333Z:0a1c87ea-be86-4391-96d8-c34775ffbfaf" + "NORTHCENTRALUS:20200612T213918Z:60b79989-5b05-47ec-a548-8fb4e41d21b9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4413,7 +4416,7 @@ "nosniff" ], "Date": [ - "Wed, 25 Mar 2020 09:13:32 GMT" + "Fri, 12 Jun 2020 21:39:18 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4422,32 +4425,29 @@ "-1" ], "Content-Length": [ - "711" - ], - "Retry-After": [ - "0" + "777" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Resources/deployments/ps7102/operations/D60BABBFE7AE59B2\",\r\n \"operationId\": \"D60BABBFE7AE59B2\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-03-25T09:13:18.8195494Z\",\r\n \"duration\": \"PT2.7531945S\",\r\n \"trackingId\": \"479ff780-28ec-4fd7-8836-c0462825967c\",\r\n \"serviceRequestId\": \"e60d7e65-f3b9-4984-9501-ea7b36aedca4\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Storage/storageAccounts/ps2757\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps2757\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "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}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourcegroups/ps6304/deployments/ps7102/operations?api-version=2019-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjlmMTM4YTEtMWQ2NC00MTA4LTg0MTMtOWVhM2JlMWMxYjJkL3Jlc291cmNlZ3JvdXBzL3BzNjMwNC9kZXBsb3ltZW50cy9wczcxMDIvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx", + "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": [ - "2ad22162-0cab-4eb4-9f20-dac6c4ab2deb" + "b46e0ac7-4e00-489f-bacc-0b0dc5b8632c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27110.04", + "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.4.0.0" + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0" ] }, "ResponseHeaders": { @@ -4457,17 +4457,20 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11868" + "11985" ], "x-ms-request-id": [ - "c1a201c1-7197-40ac-9e04-17d44c3b92eb" + "4a7a1fbf-172d-49f7-b52e-f39bbf1b1a08" ], "x-ms-correlation-request-id": [ - "c1a201c1-7197-40ac-9e04-17d44c3b92eb" + "4a7a1fbf-172d-49f7-b52e-f39bbf1b1a08" ], "x-ms-routing-request-id": [ - "WESTUS2:20200325T091333Z:c1a201c1-7197-40ac-9e04-17d44c3b92eb" + "NORTHCENTRALUS:20200612T213919Z:4a7a1fbf-172d-49f7-b52e-f39bbf1b1a08" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4476,7 +4479,7 @@ "nosniff" ], "Date": [ - "Wed, 25 Mar 2020 09:13:32 GMT" + "Fri, 12 Jun 2020 21:39:18 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4485,32 +4488,29 @@ "-1" ], "Content-Length": [ - "711" - ], - "Retry-After": [ - "0" + "777" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Resources/deployments/ps7102/operations/D60BABBFE7AE59B2\",\r\n \"operationId\": \"D60BABBFE7AE59B2\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-03-25T09:13:18.8195494Z\",\r\n \"duration\": \"PT2.7531945S\",\r\n \"trackingId\": \"479ff780-28ec-4fd7-8836-c0462825967c\",\r\n \"serviceRequestId\": \"e60d7e65-f3b9-4984-9501-ea7b36aedca4\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Storage/storageAccounts/ps2757\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps2757\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "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}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourcegroups/ps6304/deployments/ps7102/operations?api-version=2019-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjlmMTM4YTEtMWQ2NC00MTA4LTg0MTMtOWVhM2JlMWMxYjJkL3Jlc291cmNlZ3JvdXBzL3BzNjMwNC9kZXBsb3ltZW50cy9wczcxMDIvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx", + "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": [ - "8729be03-cfbd-417c-8d82-4735135829b7" + "b31665bc-0c6e-443a-94da-10f350354165" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27110.04", + "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.4.0.0" + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0" ] }, "ResponseHeaders": { @@ -4520,17 +4520,20 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11866" + "11983" ], "x-ms-request-id": [ - "090ddf77-977c-4477-b683-2ac1ff40a436" + "80db4fa4-dcb9-467b-94d7-00f1bd0d8808" ], "x-ms-correlation-request-id": [ - "090ddf77-977c-4477-b683-2ac1ff40a436" + "80db4fa4-dcb9-467b-94d7-00f1bd0d8808" ], "x-ms-routing-request-id": [ - "WESTUS2:20200325T091333Z:090ddf77-977c-4477-b683-2ac1ff40a436" + "NORTHCENTRALUS:20200612T213919Z:80db4fa4-dcb9-467b-94d7-00f1bd0d8808" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4539,7 +4542,7 @@ "nosniff" ], "Date": [ - "Wed, 25 Mar 2020 09:13:33 GMT" + "Fri, 12 Jun 2020 21:39:19 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4548,32 +4551,29 @@ "-1" ], "Content-Length": [ - "711" - ], - "Retry-After": [ - "0" + "777" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Resources/deployments/ps7102/operations/D60BABBFE7AE59B2\",\r\n \"operationId\": \"D60BABBFE7AE59B2\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-03-25T09:13:18.8195494Z\",\r\n \"duration\": \"PT2.7531945S\",\r\n \"trackingId\": \"479ff780-28ec-4fd7-8836-c0462825967c\",\r\n \"serviceRequestId\": \"e60d7e65-f3b9-4984-9501-ea7b36aedca4\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Storage/storageAccounts/ps2757\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps2757\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "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}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourcegroups/ps6304/deployments/ps7102/operations?api-version=2019-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjlmMTM4YTEtMWQ2NC00MTA4LTg0MTMtOWVhM2JlMWMxYjJkL3Jlc291cmNlZ3JvdXBzL3BzNjMwNC9kZXBsb3ltZW50cy9wczcxMDIvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx", + "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": [ - "896a7609-45ca-42cb-b7b5-1c5348f5f35c" + "20f19594-aaed-47dd-84b9-37525683f9a2" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27110.04", + "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.4.0.0" + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0" ] }, "ResponseHeaders": { @@ -4583,17 +4583,20 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11864" + "11981" ], "x-ms-request-id": [ - "34c19ded-c850-4b4a-90da-6d6469df4c20" + "72669833-fbc9-4314-a068-d268d1dbbef6" ], "x-ms-correlation-request-id": [ - "34c19ded-c850-4b4a-90da-6d6469df4c20" + "72669833-fbc9-4314-a068-d268d1dbbef6" ], "x-ms-routing-request-id": [ - "WESTUS2:20200325T091334Z:34c19ded-c850-4b4a-90da-6d6469df4c20" + "NORTHCENTRALUS:20200612T213919Z:72669833-fbc9-4314-a068-d268d1dbbef6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4602,7 +4605,7 @@ "nosniff" ], "Date": [ - "Wed, 25 Mar 2020 09:13:33 GMT" + "Fri, 12 Jun 2020 21:39:19 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4611,32 +4614,29 @@ "-1" ], "Content-Length": [ - "711" - ], - "Retry-After": [ - "0" + "777" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Resources/deployments/ps7102/operations/D60BABBFE7AE59B2\",\r\n \"operationId\": \"D60BABBFE7AE59B2\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-03-25T09:13:18.8195494Z\",\r\n \"duration\": \"PT2.7531945S\",\r\n \"trackingId\": \"479ff780-28ec-4fd7-8836-c0462825967c\",\r\n \"serviceRequestId\": \"e60d7e65-f3b9-4984-9501-ea7b36aedca4\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Storage/storageAccounts/ps2757\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps2757\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "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/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourcegroups/ps6304/deployments/ps7102/operations?api-version=2019-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjlmMTM4YTEtMWQ2NC00MTA4LTg0MTMtOWVhM2JlMWMxYjJkL3Jlc291cmNlZ3JvdXBzL3BzNjMwNC9kZXBsb3ltZW50cy9wczcxMDIvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx", + "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": [ - "e4f64e9b-3298-4ffe-b496-c528d359ef0d" + "ddbfc6e8-52b1-4593-b209-edfba2d2fed1" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27110.04", + "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.4.0.0" + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0" ] }, "ResponseHeaders": { @@ -4646,17 +4646,20 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11862" + "11979" ], "x-ms-request-id": [ - "e39be3e2-0935-44bc-a4db-60e50044aa2c" + "18a2d6ee-5645-4bd1-90ba-1d857421e682" ], "x-ms-correlation-request-id": [ - "e39be3e2-0935-44bc-a4db-60e50044aa2c" + "18a2d6ee-5645-4bd1-90ba-1d857421e682" ], "x-ms-routing-request-id": [ - "WESTUS2:20200325T091334Z:e39be3e2-0935-44bc-a4db-60e50044aa2c" + "NORTHCENTRALUS:20200612T213920Z:18a2d6ee-5645-4bd1-90ba-1d857421e682" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4665,7 +4668,7 @@ "nosniff" ], "Date": [ - "Wed, 25 Mar 2020 09:13:33 GMT" + "Fri, 12 Jun 2020 21:39:19 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4674,32 +4677,29 @@ "-1" ], "Content-Length": [ - "711" - ], - "Retry-After": [ - "0" + "777" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Resources/deployments/ps7102/operations/D60BABBFE7AE59B2\",\r\n \"operationId\": \"D60BABBFE7AE59B2\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-03-25T09:13:18.8195494Z\",\r\n \"duration\": \"PT2.7531945S\",\r\n \"trackingId\": \"479ff780-28ec-4fd7-8836-c0462825967c\",\r\n \"serviceRequestId\": \"e60d7e65-f3b9-4984-9501-ea7b36aedca4\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Storage/storageAccounts/ps2757\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps2757\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "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/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourcegroups/ps6304/deployments/ps7102/operations?api-version=2019-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjlmMTM4YTEtMWQ2NC00MTA4LTg0MTMtOWVhM2JlMWMxYjJkL3Jlc291cmNlZ3JvdXBzL3BzNjMwNC9kZXBsb3ltZW50cy9wczcxMDIvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx", + "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": [ - "034ac022-42ce-4a8a-b61e-9045fdfbde0a" + "428ec829-def0-4912-92ec-573b94438dcf" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27110.04", + "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.4.0.0" + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0" ] }, "ResponseHeaders": { @@ -4709,17 +4709,20 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11860" + "11977" ], "x-ms-request-id": [ - "58d56c20-bcf6-4927-83b9-1f15f604857b" + "5828d1a0-0bbe-436d-9c48-c654a0c179c3" ], "x-ms-correlation-request-id": [ - "58d56c20-bcf6-4927-83b9-1f15f604857b" + "5828d1a0-0bbe-436d-9c48-c654a0c179c3" ], "x-ms-routing-request-id": [ - "WESTUS2:20200325T091334Z:58d56c20-bcf6-4927-83b9-1f15f604857b" + "NORTHCENTRALUS:20200612T213920Z:5828d1a0-0bbe-436d-9c48-c654a0c179c3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4728,7 +4731,7 @@ "nosniff" ], "Date": [ - "Wed, 25 Mar 2020 09:13:33 GMT" + "Fri, 12 Jun 2020 21:39:20 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4737,32 +4740,29 @@ "-1" ], "Content-Length": [ - "711" - ], - "Retry-After": [ - "0" + "777" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Resources/deployments/ps7102/operations/D60BABBFE7AE59B2\",\r\n \"operationId\": \"D60BABBFE7AE59B2\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-03-25T09:13:18.8195494Z\",\r\n \"duration\": \"PT2.7531945S\",\r\n \"trackingId\": \"479ff780-28ec-4fd7-8836-c0462825967c\",\r\n \"serviceRequestId\": \"e60d7e65-f3b9-4984-9501-ea7b36aedca4\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Storage/storageAccounts/ps2757\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps2757\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "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/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourcegroups/ps6304/deployments/ps7102/operations?api-version=2019-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjlmMTM4YTEtMWQ2NC00MTA4LTg0MTMtOWVhM2JlMWMxYjJkL3Jlc291cmNlZ3JvdXBzL3BzNjMwNC9kZXBsb3ltZW50cy9wczcxMDIvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx", + "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": [ - "cda06b44-b9cb-4d4e-ae78-52ba6e43de9f" + "16cf8d1c-2220-4b51-9db8-2f224bc8184d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27110.04", + "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.4.0.0" + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0" ] }, "ResponseHeaders": { @@ -4772,17 +4772,20 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11858" + "11975" ], "x-ms-request-id": [ - "f14298ec-970b-4d6c-8a2c-a9497b0dcc0c" + "e4c08539-8361-4b4f-9825-4b62ba3c36c7" ], "x-ms-correlation-request-id": [ - "f14298ec-970b-4d6c-8a2c-a9497b0dcc0c" + "e4c08539-8361-4b4f-9825-4b62ba3c36c7" ], "x-ms-routing-request-id": [ - "WESTUS2:20200325T091335Z:f14298ec-970b-4d6c-8a2c-a9497b0dcc0c" + "NORTHCENTRALUS:20200612T213921Z:e4c08539-8361-4b4f-9825-4b62ba3c36c7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4791,7 +4794,7 @@ "nosniff" ], "Date": [ - "Wed, 25 Mar 2020 09:13:34 GMT" + "Fri, 12 Jun 2020 21:39:20 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4800,32 +4803,29 @@ "-1" ], "Content-Length": [ - "711" - ], - "Retry-After": [ - "0" + "777" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Resources/deployments/ps7102/operations/D60BABBFE7AE59B2\",\r\n \"operationId\": \"D60BABBFE7AE59B2\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-03-25T09:13:18.8195494Z\",\r\n \"duration\": \"PT2.7531945S\",\r\n \"trackingId\": \"479ff780-28ec-4fd7-8836-c0462825967c\",\r\n \"serviceRequestId\": \"e60d7e65-f3b9-4984-9501-ea7b36aedca4\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Storage/storageAccounts/ps2757\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps2757\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "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/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourcegroups/ps6304/deployments/ps7102/operations?api-version=2019-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjlmMTM4YTEtMWQ2NC00MTA4LTg0MTMtOWVhM2JlMWMxYjJkL3Jlc291cmNlZ3JvdXBzL3BzNjMwNC9kZXBsb3ltZW50cy9wczcxMDIvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx", + "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": [ - "a8c9248b-bfa4-45e5-9d0a-f7a87b8730ab" + "0898b7b2-3e90-4db5-921f-5d6ddfc8fed6" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27110.04", + "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.4.0.0" + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0" ] }, "ResponseHeaders": { @@ -4835,17 +4835,20 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11856" + "11973" ], "x-ms-request-id": [ - "5eddf39e-afc9-4079-af52-1f76fbd86c85" + "a44a444b-782f-4311-ada4-e972bfa7fd6f" ], "x-ms-correlation-request-id": [ - "5eddf39e-afc9-4079-af52-1f76fbd86c85" + "a44a444b-782f-4311-ada4-e972bfa7fd6f" ], "x-ms-routing-request-id": [ - "WESTUS2:20200325T091335Z:5eddf39e-afc9-4079-af52-1f76fbd86c85" + "NORTHCENTRALUS:20200612T213921Z:a44a444b-782f-4311-ada4-e972bfa7fd6f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4854,7 +4857,7 @@ "nosniff" ], "Date": [ - "Wed, 25 Mar 2020 09:13:34 GMT" + "Fri, 12 Jun 2020 21:39:21 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4863,32 +4866,29 @@ "-1" ], "Content-Length": [ - "711" - ], - "Retry-After": [ - "0" + "777" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Resources/deployments/ps7102/operations/D60BABBFE7AE59B2\",\r\n \"operationId\": \"D60BABBFE7AE59B2\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-03-25T09:13:18.8195494Z\",\r\n \"duration\": \"PT2.7531945S\",\r\n \"trackingId\": \"479ff780-28ec-4fd7-8836-c0462825967c\",\r\n \"serviceRequestId\": \"e60d7e65-f3b9-4984-9501-ea7b36aedca4\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Storage/storageAccounts/ps2757\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps2757\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "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/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourcegroups/ps6304/deployments/ps7102/operations?api-version=2019-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjlmMTM4YTEtMWQ2NC00MTA4LTg0MTMtOWVhM2JlMWMxYjJkL3Jlc291cmNlZ3JvdXBzL3BzNjMwNC9kZXBsb3ltZW50cy9wczcxMDIvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx", + "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": [ - "1f97cec4-bbfb-4c21-94d3-6076e2fda7fc" + "1a5a1090-d5d2-4237-a0c2-1dcff280953a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27110.04", + "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.4.0.0" + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0" ] }, "ResponseHeaders": { @@ -4898,17 +4898,20 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11854" + "11971" ], "x-ms-request-id": [ - "ce7a08fb-ed2c-4a93-a196-0980ac786c1c" + "bc631872-9a15-465b-95dc-7e87f47f30d6" ], "x-ms-correlation-request-id": [ - "ce7a08fb-ed2c-4a93-a196-0980ac786c1c" + "bc631872-9a15-465b-95dc-7e87f47f30d6" ], "x-ms-routing-request-id": [ - "WESTUS2:20200325T091336Z:ce7a08fb-ed2c-4a93-a196-0980ac786c1c" + "NORTHCENTRALUS:20200612T213921Z:bc631872-9a15-465b-95dc-7e87f47f30d6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4917,7 +4920,7 @@ "nosniff" ], "Date": [ - "Wed, 25 Mar 2020 09:13:35 GMT" + "Fri, 12 Jun 2020 21:39:21 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4926,32 +4929,29 @@ "-1" ], "Content-Length": [ - "711" - ], - "Retry-After": [ - "0" + "777" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Resources/deployments/ps7102/operations/D60BABBFE7AE59B2\",\r\n \"operationId\": \"D60BABBFE7AE59B2\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-03-25T09:13:18.8195494Z\",\r\n \"duration\": \"PT2.7531945S\",\r\n \"trackingId\": \"479ff780-28ec-4fd7-8836-c0462825967c\",\r\n \"serviceRequestId\": \"e60d7e65-f3b9-4984-9501-ea7b36aedca4\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Storage/storageAccounts/ps2757\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps2757\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "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/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourcegroups/ps6304/deployments/ps7102/operations?api-version=2019-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjlmMTM4YTEtMWQ2NC00MTA4LTg0MTMtOWVhM2JlMWMxYjJkL3Jlc291cmNlZ3JvdXBzL3BzNjMwNC9kZXBsb3ltZW50cy9wczcxMDIvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx", + "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": [ - "3d2250bb-53ec-4f98-a972-e059ab21b315" + "c439d7de-909e-415f-9a0a-b897f49ba313" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27110.04", + "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.4.0.0" + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0" ] }, "ResponseHeaders": { @@ -4961,17 +4961,20 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11852" + "11969" ], "x-ms-request-id": [ - "d8cf231c-79c5-4ced-a29c-9fc1066904cb" + "16709400-72e7-44ac-aac2-f13d7e5a8470" ], "x-ms-correlation-request-id": [ - "d8cf231c-79c5-4ced-a29c-9fc1066904cb" + "16709400-72e7-44ac-aac2-f13d7e5a8470" ], "x-ms-routing-request-id": [ - "WESTUS2:20200325T091336Z:d8cf231c-79c5-4ced-a29c-9fc1066904cb" + "NORTHCENTRALUS:20200612T213922Z:16709400-72e7-44ac-aac2-f13d7e5a8470" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4980,7 +4983,7 @@ "nosniff" ], "Date": [ - "Wed, 25 Mar 2020 09:13:35 GMT" + "Fri, 12 Jun 2020 21:39:21 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4989,32 +4992,29 @@ "-1" ], "Content-Length": [ - "711" - ], - "Retry-After": [ - "0" + "777" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Resources/deployments/ps7102/operations/D60BABBFE7AE59B2\",\r\n \"operationId\": \"D60BABBFE7AE59B2\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-03-25T09:13:18.8195494Z\",\r\n \"duration\": \"PT2.7531945S\",\r\n \"trackingId\": \"479ff780-28ec-4fd7-8836-c0462825967c\",\r\n \"serviceRequestId\": \"e60d7e65-f3b9-4984-9501-ea7b36aedca4\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Storage/storageAccounts/ps2757\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps2757\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "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/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourcegroups/ps6304/deployments/ps7102/operations?api-version=2019-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjlmMTM4YTEtMWQ2NC00MTA4LTg0MTMtOWVhM2JlMWMxYjJkL3Jlc291cmNlZ3JvdXBzL3BzNjMwNC9kZXBsb3ltZW50cy9wczcxMDIvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx", + "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": [ - "70390833-12a4-4d10-8906-52f8f13c18ca" + "9915563d-deaa-426b-98b5-5abefb0fd21f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27110.04", + "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.4.0.0" + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0" ] }, "ResponseHeaders": { @@ -5024,17 +5024,20 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11850" + "11967" ], "x-ms-request-id": [ - "4b1bcaad-1dce-4363-a692-c94ebb1b204b" + "84065764-9d30-456e-8655-9d6c937eaa6a" ], "x-ms-correlation-request-id": [ - "4b1bcaad-1dce-4363-a692-c94ebb1b204b" + "84065764-9d30-456e-8655-9d6c937eaa6a" ], "x-ms-routing-request-id": [ - "WESTUS2:20200325T091336Z:4b1bcaad-1dce-4363-a692-c94ebb1b204b" + "NORTHCENTRALUS:20200612T213922Z:84065764-9d30-456e-8655-9d6c937eaa6a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5043,7 +5046,7 @@ "nosniff" ], "Date": [ - "Wed, 25 Mar 2020 09:13:35 GMT" + "Fri, 12 Jun 2020 21:39:22 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -5052,32 +5055,29 @@ "-1" ], "Content-Length": [ - "711" - ], - "Retry-After": [ - "0" + "777" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Resources/deployments/ps7102/operations/D60BABBFE7AE59B2\",\r\n \"operationId\": \"D60BABBFE7AE59B2\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-03-25T09:13:18.8195494Z\",\r\n \"duration\": \"PT2.7531945S\",\r\n \"trackingId\": \"479ff780-28ec-4fd7-8836-c0462825967c\",\r\n \"serviceRequestId\": \"e60d7e65-f3b9-4984-9501-ea7b36aedca4\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Storage/storageAccounts/ps2757\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps2757\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "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/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourcegroups/ps6304/deployments/ps7102/operations?api-version=2019-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjlmMTM4YTEtMWQ2NC00MTA4LTg0MTMtOWVhM2JlMWMxYjJkL3Jlc291cmNlZ3JvdXBzL3BzNjMwNC9kZXBsb3ltZW50cy9wczcxMDIvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx", + "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": [ - "00ab3c17-49c7-40c4-8484-f726c39711eb" + "15808994-4ef0-45f3-a0f7-7b71fc93cadf" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27110.04", + "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.4.0.0" + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0" ] }, "ResponseHeaders": { @@ -5087,17 +5087,20 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11848" + "11965" ], "x-ms-request-id": [ - "f4e59ae7-e770-43ae-94c5-2d28a3456630" + "98903463-d71c-4022-aceb-651f7910c857" ], "x-ms-correlation-request-id": [ - "f4e59ae7-e770-43ae-94c5-2d28a3456630" + "98903463-d71c-4022-aceb-651f7910c857" ], "x-ms-routing-request-id": [ - "WESTUS2:20200325T091337Z:f4e59ae7-e770-43ae-94c5-2d28a3456630" + "NORTHCENTRALUS:20200612T213923Z:98903463-d71c-4022-aceb-651f7910c857" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5106,7 +5109,7 @@ "nosniff" ], "Date": [ - "Wed, 25 Mar 2020 09:13:36 GMT" + "Fri, 12 Jun 2020 21:39:22 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -5115,32 +5118,29 @@ "-1" ], "Content-Length": [ - "711" - ], - "Retry-After": [ - "0" + "777" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Resources/deployments/ps7102/operations/D60BABBFE7AE59B2\",\r\n \"operationId\": \"D60BABBFE7AE59B2\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-03-25T09:13:18.8195494Z\",\r\n \"duration\": \"PT2.7531945S\",\r\n \"trackingId\": \"479ff780-28ec-4fd7-8836-c0462825967c\",\r\n \"serviceRequestId\": \"e60d7e65-f3b9-4984-9501-ea7b36aedca4\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Storage/storageAccounts/ps2757\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps2757\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "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/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourcegroups/ps6304/deployments/ps7102/operations?api-version=2019-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjlmMTM4YTEtMWQ2NC00MTA4LTg0MTMtOWVhM2JlMWMxYjJkL3Jlc291cmNlZ3JvdXBzL3BzNjMwNC9kZXBsb3ltZW50cy9wczcxMDIvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx", + "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": [ - "25cc958e-8c3a-405c-b0b5-85eb6eb45bf6" + "734552b7-e43e-454f-8673-2098855445ac" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27110.04", + "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.4.0.0" + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0" ] }, "ResponseHeaders": { @@ -5150,17 +5150,20 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11846" + "11963" ], "x-ms-request-id": [ - "d948e844-5902-4a07-be1f-315ea48fd784" + "1e42209c-2570-46ef-9abe-8e06994138f4" ], "x-ms-correlation-request-id": [ - "d948e844-5902-4a07-be1f-315ea48fd784" + "1e42209c-2570-46ef-9abe-8e06994138f4" ], "x-ms-routing-request-id": [ - "WESTUS2:20200325T091337Z:d948e844-5902-4a07-be1f-315ea48fd784" + "NORTHCENTRALUS:20200612T213923Z:1e42209c-2570-46ef-9abe-8e06994138f4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5169,7 +5172,7 @@ "nosniff" ], "Date": [ - "Wed, 25 Mar 2020 09:13:36 GMT" + "Fri, 12 Jun 2020 21:39:23 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -5178,32 +5181,29 @@ "-1" ], "Content-Length": [ - "711" - ], - "Retry-After": [ - "0" + "777" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Resources/deployments/ps7102/operations/D60BABBFE7AE59B2\",\r\n \"operationId\": \"D60BABBFE7AE59B2\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-03-25T09:13:18.8195494Z\",\r\n \"duration\": \"PT2.7531945S\",\r\n \"trackingId\": \"479ff780-28ec-4fd7-8836-c0462825967c\",\r\n \"serviceRequestId\": \"e60d7e65-f3b9-4984-9501-ea7b36aedca4\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Storage/storageAccounts/ps2757\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps2757\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "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/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourcegroups/ps6304/deployments/ps7102/operations?api-version=2019-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjlmMTM4YTEtMWQ2NC00MTA4LTg0MTMtOWVhM2JlMWMxYjJkL3Jlc291cmNlZ3JvdXBzL3BzNjMwNC9kZXBsb3ltZW50cy9wczcxMDIvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx", + "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": [ - "fefd137e-ad0e-49f3-b6b6-5ade6801bb70" + "2e6a34a5-5bb0-4eef-99e6-d178911f1b1b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27110.04", + "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.4.0.0" + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0" ] }, "ResponseHeaders": { @@ -5213,17 +5213,20 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11844" + "11961" ], "x-ms-request-id": [ - "ad66e84b-f0ef-4056-93f3-fd761d25ba4e" + "a6e91b09-6f3c-493e-9827-e3db715847d8" ], "x-ms-correlation-request-id": [ - "ad66e84b-f0ef-4056-93f3-fd761d25ba4e" + "a6e91b09-6f3c-493e-9827-e3db715847d8" ], "x-ms-routing-request-id": [ - "WESTUS2:20200325T091337Z:ad66e84b-f0ef-4056-93f3-fd761d25ba4e" + "NORTHCENTRALUS:20200612T213923Z:a6e91b09-6f3c-493e-9827-e3db715847d8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5232,7 +5235,7 @@ "nosniff" ], "Date": [ - "Wed, 25 Mar 2020 09:13:36 GMT" + "Fri, 12 Jun 2020 21:39:23 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -5241,32 +5244,29 @@ "-1" ], "Content-Length": [ - "711" - ], - "Retry-After": [ - "0" + "777" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Resources/deployments/ps7102/operations/D60BABBFE7AE59B2\",\r\n \"operationId\": \"D60BABBFE7AE59B2\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-03-25T09:13:18.8195494Z\",\r\n \"duration\": \"PT2.7531945S\",\r\n \"trackingId\": \"479ff780-28ec-4fd7-8836-c0462825967c\",\r\n \"serviceRequestId\": \"e60d7e65-f3b9-4984-9501-ea7b36aedca4\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Storage/storageAccounts/ps2757\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps2757\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "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/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourcegroups/ps6304/deployments/ps7102/operations?api-version=2019-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjlmMTM4YTEtMWQ2NC00MTA4LTg0MTMtOWVhM2JlMWMxYjJkL3Jlc291cmNlZ3JvdXBzL3BzNjMwNC9kZXBsb3ltZW50cy9wczcxMDIvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx", + "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": [ - "e02b92bb-38bd-4da7-9b92-6bc08f0cd6ef" + "5bfa73a5-9292-4c79-9eeb-01f393300ab6" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27110.04", + "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.4.0.0" + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0" ] }, "ResponseHeaders": { @@ -5276,17 +5276,20 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11842" + "11959" ], "x-ms-request-id": [ - "015f36a1-ccd3-4c02-b852-a30f391addb6" + "8f4772b7-db7e-4459-888a-0293af8cf9a9" ], "x-ms-correlation-request-id": [ - "015f36a1-ccd3-4c02-b852-a30f391addb6" + "8f4772b7-db7e-4459-888a-0293af8cf9a9" ], "x-ms-routing-request-id": [ - "WESTUS2:20200325T091337Z:015f36a1-ccd3-4c02-b852-a30f391addb6" + "NORTHCENTRALUS:20200612T213924Z:8f4772b7-db7e-4459-888a-0293af8cf9a9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5295,7 +5298,7 @@ "nosniff" ], "Date": [ - "Wed, 25 Mar 2020 09:13:36 GMT" + "Fri, 12 Jun 2020 21:39:23 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -5304,32 +5307,29 @@ "-1" ], "Content-Length": [ - "711" - ], - "Retry-After": [ - "0" + "777" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Resources/deployments/ps7102/operations/D60BABBFE7AE59B2\",\r\n \"operationId\": \"D60BABBFE7AE59B2\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-03-25T09:13:18.8195494Z\",\r\n \"duration\": \"PT2.7531945S\",\r\n \"trackingId\": \"479ff780-28ec-4fd7-8836-c0462825967c\",\r\n \"serviceRequestId\": \"e60d7e65-f3b9-4984-9501-ea7b36aedca4\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Storage/storageAccounts/ps2757\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps2757\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "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/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourcegroups/ps6304/deployments/ps7102/operations?api-version=2019-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjlmMTM4YTEtMWQ2NC00MTA4LTg0MTMtOWVhM2JlMWMxYjJkL3Jlc291cmNlZ3JvdXBzL3BzNjMwNC9kZXBsb3ltZW50cy9wczcxMDIvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx", + "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": [ - "f3c1547c-f605-4970-996b-1c3970483a64" + "22135c84-90ec-45c4-99df-c77eba2daed5" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27110.04", + "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.4.0.0" + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0" ] }, "ResponseHeaders": { @@ -5339,17 +5339,20 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11840" + "11957" ], "x-ms-request-id": [ - "3f2e8064-44b2-465f-aaab-085e57d8904d" + "c5b08c95-e2be-4c47-ba83-de142d2fd393" ], "x-ms-correlation-request-id": [ - "3f2e8064-44b2-465f-aaab-085e57d8904d" + "c5b08c95-e2be-4c47-ba83-de142d2fd393" ], "x-ms-routing-request-id": [ - "WESTUS2:20200325T091338Z:3f2e8064-44b2-465f-aaab-085e57d8904d" + "NORTHCENTRALUS:20200612T213924Z:c5b08c95-e2be-4c47-ba83-de142d2fd393" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5358,7 +5361,7 @@ "nosniff" ], "Date": [ - "Wed, 25 Mar 2020 09:13:37 GMT" + "Fri, 12 Jun 2020 21:39:24 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -5367,32 +5370,29 @@ "-1" ], "Content-Length": [ - "706" - ], - "Retry-After": [ - "0" + "777" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Resources/deployments/ps7102/operations/D60BABBFE7AE59B2\",\r\n \"operationId\": \"D60BABBFE7AE59B2\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-03-25T09:13:37.9842711Z\",\r\n \"duration\": \"PT21.9179162S\",\r\n \"trackingId\": \"f77a00ec-52b3-468c-bb0b-39c358129c91\",\r\n \"serviceRequestId\": \"e60d7e65-f3b9-4984-9501-ea7b36aedca4\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Storage/storageAccounts/ps2757\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps2757\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "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/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourcegroups/ps6304/deployments/ps7102/operations?api-version=2019-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjlmMTM4YTEtMWQ2NC00MTA4LTg0MTMtOWVhM2JlMWMxYjJkL3Jlc291cmNlZ3JvdXBzL3BzNjMwNC9kZXBsb3ltZW50cy9wczcxMDIvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx", + "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": [ - "426bfb59-026f-4432-9181-1eae95fdcbfa" + "c9711169-8a3a-4e2b-aad2-626f3ad83f08" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27110.04", + "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.4.0.0" + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0" ] }, "ResponseHeaders": { @@ -5402,17 +5402,20 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11838" + "11955" ], "x-ms-request-id": [ - "c7afe3f6-ef4f-4c1c-bc94-00c0bb98fa74" + "8171517b-a0a3-49dd-920d-ffdadc8ba3a4" ], "x-ms-correlation-request-id": [ - "c7afe3f6-ef4f-4c1c-bc94-00c0bb98fa74" + "8171517b-a0a3-49dd-920d-ffdadc8ba3a4" ], "x-ms-routing-request-id": [ - "WESTUS2:20200325T091338Z:c7afe3f6-ef4f-4c1c-bc94-00c0bb98fa74" + "NORTHCENTRALUS:20200612T213925Z:8171517b-a0a3-49dd-920d-ffdadc8ba3a4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5421,7 +5424,7 @@ "nosniff" ], "Date": [ - "Wed, 25 Mar 2020 09:13:37 GMT" + "Fri, 12 Jun 2020 21:39:24 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -5430,32 +5433,29 @@ "-1" ], "Content-Length": [ - "706" - ], - "Retry-After": [ - "0" + "777" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Resources/deployments/ps7102/operations/D60BABBFE7AE59B2\",\r\n \"operationId\": \"D60BABBFE7AE59B2\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-03-25T09:13:37.9842711Z\",\r\n \"duration\": \"PT21.9179162S\",\r\n \"trackingId\": \"f77a00ec-52b3-468c-bb0b-39c358129c91\",\r\n \"serviceRequestId\": \"e60d7e65-f3b9-4984-9501-ea7b36aedca4\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Storage/storageAccounts/ps2757\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps2757\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "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/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourcegroups/ps6304/deployments/ps7102/operations?api-version=2019-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjlmMTM4YTEtMWQ2NC00MTA4LTg0MTMtOWVhM2JlMWMxYjJkL3Jlc291cmNlZ3JvdXBzL3BzNjMwNC9kZXBsb3ltZW50cy9wczcxMDIvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx", + "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": [ - "b8d4993f-e3ca-4271-8295-bb685887f137" + "00fc4f34-128e-4ec5-8c66-80da56084953" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27110.04", + "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.4.0.0" + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0" ] }, "ResponseHeaders": { @@ -5465,17 +5465,20 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11836" + "11953" ], "x-ms-request-id": [ - "8857940b-fe7a-4d1f-a178-2099211cae53" + "9fa56238-2aaa-4773-b941-319af778806e" ], "x-ms-correlation-request-id": [ - "8857940b-fe7a-4d1f-a178-2099211cae53" + "9fa56238-2aaa-4773-b941-319af778806e" ], "x-ms-routing-request-id": [ - "WESTUS2:20200325T091338Z:8857940b-fe7a-4d1f-a178-2099211cae53" + "NORTHCENTRALUS:20200612T213925Z:9fa56238-2aaa-4773-b941-319af778806e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5484,7 +5487,7 @@ "nosniff" ], "Date": [ - "Wed, 25 Mar 2020 09:13:37 GMT" + "Fri, 12 Jun 2020 21:39:25 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -5493,32 +5496,29 @@ "-1" ], "Content-Length": [ - "706" - ], - "Retry-After": [ - "0" + "777" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Resources/deployments/ps7102/operations/D60BABBFE7AE59B2\",\r\n \"operationId\": \"D60BABBFE7AE59B2\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-03-25T09:13:37.9842711Z\",\r\n \"duration\": \"PT21.9179162S\",\r\n \"trackingId\": \"f77a00ec-52b3-468c-bb0b-39c358129c91\",\r\n \"serviceRequestId\": \"e60d7e65-f3b9-4984-9501-ea7b36aedca4\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Storage/storageAccounts/ps2757\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps2757\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "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/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourcegroups/ps6304/deployments/ps7102/operations?api-version=2019-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjlmMTM4YTEtMWQ2NC00MTA4LTg0MTMtOWVhM2JlMWMxYjJkL3Jlc291cmNlZ3JvdXBzL3BzNjMwNC9kZXBsb3ltZW50cy9wczcxMDIvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx", + "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": [ - "4ed08df1-6424-42d7-9c31-9e7d3f1f51d2" + "3c79334c-a31c-4f6a-bf9a-4a6e0fc8c9dd" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27110.04", + "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.4.0.0" + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0" ] }, "ResponseHeaders": { @@ -5528,17 +5528,20 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11834" + "11951" ], "x-ms-request-id": [ - "f74c22eb-8d0a-4aca-989d-0510cb6625e1" + "c135f451-be19-4368-ac83-85492616f9ff" ], "x-ms-correlation-request-id": [ - "f74c22eb-8d0a-4aca-989d-0510cb6625e1" + "c135f451-be19-4368-ac83-85492616f9ff" ], "x-ms-routing-request-id": [ - "WESTUS2:20200325T091339Z:f74c22eb-8d0a-4aca-989d-0510cb6625e1" + "NORTHCENTRALUS:20200612T213926Z:c135f451-be19-4368-ac83-85492616f9ff" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5547,7 +5550,7 @@ "nosniff" ], "Date": [ - "Wed, 25 Mar 2020 09:13:38 GMT" + "Fri, 12 Jun 2020 21:39:25 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -5556,32 +5559,29 @@ "-1" ], "Content-Length": [ - "708" - ], - "Retry-After": [ - "0" + "777" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Resources/deployments/ps7102/operations/D60BABBFE7AE59B2\",\r\n \"operationId\": \"D60BABBFE7AE59B2\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2020-03-25T09:13:38.9206007Z\",\r\n \"duration\": \"PT22.8542458S\",\r\n \"trackingId\": \"f4194718-4948-424c-90b2-447aa5140319\",\r\n \"serviceRequestId\": \"e60d7e65-f3b9-4984-9501-ea7b36aedca4\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Storage/storageAccounts/ps2757\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps2757\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "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/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourcegroups/ps6304/deployments/ps7102/operations?api-version=2019-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjlmMTM4YTEtMWQ2NC00MTA4LTg0MTMtOWVhM2JlMWMxYjJkL3Jlc291cmNlZ3JvdXBzL3BzNjMwNC9kZXBsb3ltZW50cy9wczcxMDIvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx", + "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": [ - "c6ec2be2-d2fc-43e6-88bb-50480e23dc12" + "e36f30b7-f5b7-45c4-9166-44e744772375" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27110.04", + "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.4.0.0" + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0" ] }, "ResponseHeaders": { @@ -5591,17 +5591,20 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11832" + "11949" ], "x-ms-request-id": [ - "f41677c0-1a6e-49e6-aa7d-5c07cdc2ee68" + "13627178-5271-4c49-b69a-a0d5d39f3f09" ], "x-ms-correlation-request-id": [ - "f41677c0-1a6e-49e6-aa7d-5c07cdc2ee68" + "13627178-5271-4c49-b69a-a0d5d39f3f09" ], "x-ms-routing-request-id": [ - "WESTUS2:20200325T091339Z:f41677c0-1a6e-49e6-aa7d-5c07cdc2ee68" + "NORTHCENTRALUS:20200612T213926Z:13627178-5271-4c49-b69a-a0d5d39f3f09" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5610,7 +5613,7 @@ "nosniff" ], "Date": [ - "Wed, 25 Mar 2020 09:13:38 GMT" + "Fri, 12 Jun 2020 21:39:25 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -5619,32 +5622,29 @@ "-1" ], "Content-Length": [ - "708" - ], - "Retry-After": [ - "0" + "777" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Resources/deployments/ps7102/operations/D60BABBFE7AE59B2\",\r\n \"operationId\": \"D60BABBFE7AE59B2\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2020-03-25T09:13:38.9206007Z\",\r\n \"duration\": \"PT22.8542458S\",\r\n \"trackingId\": \"f4194718-4948-424c-90b2-447aa5140319\",\r\n \"serviceRequestId\": \"e60d7e65-f3b9-4984-9501-ea7b36aedca4\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Storage/storageAccounts/ps2757\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps2757\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "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/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourcegroups/ps6304/deployments/ps7102/operations?api-version=2019-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjlmMTM4YTEtMWQ2NC00MTA4LTg0MTMtOWVhM2JlMWMxYjJkL3Jlc291cmNlZ3JvdXBzL3BzNjMwNC9kZXBsb3ltZW50cy9wczcxMDIvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx", + "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": [ - "7cb17abb-46f5-484f-ab59-6df5a06a3aae" + "0a895cb3-b46b-416d-88e6-f854513646d3" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27110.04", + "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.4.0.0" + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0" ] }, "ResponseHeaders": { @@ -5654,17 +5654,20 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11830" + "11947" ], "x-ms-request-id": [ - "b796661c-ef3b-42d8-b5d2-9eb44cd8a91b" + "317ef2ab-f6e3-4912-a54a-5a7b470975d1" ], "x-ms-correlation-request-id": [ - "b796661c-ef3b-42d8-b5d2-9eb44cd8a91b" + "317ef2ab-f6e3-4912-a54a-5a7b470975d1" ], "x-ms-routing-request-id": [ - "WESTUS2:20200325T091340Z:b796661c-ef3b-42d8-b5d2-9eb44cd8a91b" + "NORTHCENTRALUS:20200612T213926Z:317ef2ab-f6e3-4912-a54a-5a7b470975d1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5673,7 +5676,7 @@ "nosniff" ], "Date": [ - "Wed, 25 Mar 2020 09:13:39 GMT" + "Fri, 12 Jun 2020 21:39:26 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -5682,32 +5685,29 @@ "-1" ], "Content-Length": [ - "708" - ], - "Retry-After": [ - "0" + "777" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Resources/deployments/ps7102/operations/D60BABBFE7AE59B2\",\r\n \"operationId\": \"D60BABBFE7AE59B2\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2020-03-25T09:13:38.9206007Z\",\r\n \"duration\": \"PT22.8542458S\",\r\n \"trackingId\": \"f4194718-4948-424c-90b2-447aa5140319\",\r\n \"serviceRequestId\": \"e60d7e65-f3b9-4984-9501-ea7b36aedca4\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Storage/storageAccounts/ps2757\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps2757\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "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/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourcegroups/ps6304/deployments/ps7102/operations?api-version=2019-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjlmMTM4YTEtMWQ2NC00MTA4LTg0MTMtOWVhM2JlMWMxYjJkL3Jlc291cmNlZ3JvdXBzL3BzNjMwNC9kZXBsb3ltZW50cy9wczcxMDIvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx", + "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": [ - "63350028-5025-420d-9622-a46ff542ca3e" + "af25289d-612c-47f6-8933-e6b15268ea72" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27110.04", + "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.4.0.0" + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0" ] }, "ResponseHeaders": { @@ -5717,17 +5717,20 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11828" + "11945" ], "x-ms-request-id": [ - "53843e0d-7660-4f6f-9913-5a2ac600a128" + "3973cc2b-4fc6-4172-87b8-b0f9161624d2" ], "x-ms-correlation-request-id": [ - "53843e0d-7660-4f6f-9913-5a2ac600a128" + "3973cc2b-4fc6-4172-87b8-b0f9161624d2" ], "x-ms-routing-request-id": [ - "WESTUS2:20200325T091340Z:53843e0d-7660-4f6f-9913-5a2ac600a128" + "NORTHCENTRALUS:20200612T213927Z:3973cc2b-4fc6-4172-87b8-b0f9161624d2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5736,7 +5739,7 @@ "nosniff" ], "Date": [ - "Wed, 25 Mar 2020 09:13:39 GMT" + "Fri, 12 Jun 2020 21:39:26 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -5745,32 +5748,29 @@ "-1" ], "Content-Length": [ - "708" - ], - "Retry-After": [ - "0" + "777" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Resources/deployments/ps7102/operations/D60BABBFE7AE59B2\",\r\n \"operationId\": \"D60BABBFE7AE59B2\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2020-03-25T09:13:38.9206007Z\",\r\n \"duration\": \"PT22.8542458S\",\r\n \"trackingId\": \"f4194718-4948-424c-90b2-447aa5140319\",\r\n \"serviceRequestId\": \"e60d7e65-f3b9-4984-9501-ea7b36aedca4\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Storage/storageAccounts/ps2757\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps2757\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "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/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourcegroups/ps6304/deployments/ps7102/operations?api-version=2019-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjlmMTM4YTEtMWQ2NC00MTA4LTg0MTMtOWVhM2JlMWMxYjJkL3Jlc291cmNlZ3JvdXBzL3BzNjMwNC9kZXBsb3ltZW50cy9wczcxMDIvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx", + "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": [ - "017806d8-697b-45d3-b7f6-4901a6d21f79" + "3e34e9f4-73d3-4483-9768-577c02fd263a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27110.04", + "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.4.0.0" + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0" ] }, "ResponseHeaders": { @@ -5780,17 +5780,20 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11826" + "11943" ], "x-ms-request-id": [ - "6a713ae3-a269-4446-9e5e-2d40a636855c" + "de6fefd8-4132-4926-ac65-bb8efcd6fb35" ], "x-ms-correlation-request-id": [ - "6a713ae3-a269-4446-9e5e-2d40a636855c" + "de6fefd8-4132-4926-ac65-bb8efcd6fb35" ], "x-ms-routing-request-id": [ - "WESTUS2:20200325T091340Z:6a713ae3-a269-4446-9e5e-2d40a636855c" + "NORTHCENTRALUS:20200612T213927Z:de6fefd8-4132-4926-ac65-bb8efcd6fb35" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5799,7 +5802,7 @@ "nosniff" ], "Date": [ - "Wed, 25 Mar 2020 09:13:39 GMT" + "Fri, 12 Jun 2020 21:39:27 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -5808,32 +5811,29 @@ "-1" ], "Content-Length": [ - "1370" - ], - "Retry-After": [ - "0" + "777" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Resources/deployments/ps7102/operations/9B87AD3AC82D5CB1\",\r\n \"operationId\": \"9B87AD3AC82D5CB1\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Read\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2020-03-25T09:13:40.2633922Z\",\r\n \"duration\": \"PT0.8840342S\",\r\n \"trackingId\": \"ef9a237a-cfde-4e0d-a76d-ebeb43788814\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Storage/storageAccounts/ps2757\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps2757\",\r\n \"apiVersion\": \"2019-06-01\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Resources/deployments/ps7102/operations/D60BABBFE7AE59B2\",\r\n \"operationId\": \"D60BABBFE7AE59B2\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2020-03-25T09:13:38.9206007Z\",\r\n \"duration\": \"PT22.8542458S\",\r\n \"trackingId\": \"f4194718-4948-424c-90b2-447aa5140319\",\r\n \"serviceRequestId\": \"e60d7e65-f3b9-4984-9501-ea7b36aedca4\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Storage/storageAccounts/ps2757\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps2757\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "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/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourcegroups/ps6304/deployments/ps7102/operations?api-version=2019-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjlmMTM4YTEtMWQ2NC00MTA4LTg0MTMtOWVhM2JlMWMxYjJkL3Jlc291cmNlZ3JvdXBzL3BzNjMwNC9kZXBsb3ltZW50cy9wczcxMDIvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx", + "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": [ - "3bbacab8-2cd8-4e60-be09-c2e5fc11a2bc" + "45adcebc-6dd2-4f61-b692-394b6052cb51" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27110.04", + "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.4.0.0" + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0" ] }, "ResponseHeaders": { @@ -5843,17 +5843,20 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11824" + "11941" ], "x-ms-request-id": [ - "f2d495bc-22a6-4b29-a8fc-15e987f76995" + "aee05b90-291a-41b4-bf1d-bd0efcd6e5c4" ], "x-ms-correlation-request-id": [ - "f2d495bc-22a6-4b29-a8fc-15e987f76995" + "aee05b90-291a-41b4-bf1d-bd0efcd6e5c4" ], "x-ms-routing-request-id": [ - "WESTUS2:20200325T091340Z:f2d495bc-22a6-4b29-a8fc-15e987f76995" + "NORTHCENTRALUS:20200612T213928Z:aee05b90-291a-41b4-bf1d-bd0efcd6e5c4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5862,7 +5865,7 @@ "nosniff" ], "Date": [ - "Wed, 25 Mar 2020 09:13:39 GMT" + "Fri, 12 Jun 2020 21:39:27 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -5871,32 +5874,29 @@ "-1" ], "Content-Length": [ - "1370" - ], - "Retry-After": [ - "0" + "777" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Resources/deployments/ps7102/operations/9B87AD3AC82D5CB1\",\r\n \"operationId\": \"9B87AD3AC82D5CB1\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Read\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2020-03-25T09:13:40.2633922Z\",\r\n \"duration\": \"PT0.8840342S\",\r\n \"trackingId\": \"ef9a237a-cfde-4e0d-a76d-ebeb43788814\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Storage/storageAccounts/ps2757\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps2757\",\r\n \"apiVersion\": \"2019-06-01\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Resources/deployments/ps7102/operations/D60BABBFE7AE59B2\",\r\n \"operationId\": \"D60BABBFE7AE59B2\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2020-03-25T09:13:38.9206007Z\",\r\n \"duration\": \"PT22.8542458S\",\r\n \"trackingId\": \"f4194718-4948-424c-90b2-447aa5140319\",\r\n \"serviceRequestId\": \"e60d7e65-f3b9-4984-9501-ea7b36aedca4\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Storage/storageAccounts/ps2757\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps2757\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "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/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourcegroups/ps6304/deployments/ps7102/operations?api-version=2019-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjlmMTM4YTEtMWQ2NC00MTA4LTg0MTMtOWVhM2JlMWMxYjJkL3Jlc291cmNlZ3JvdXBzL3BzNjMwNC9kZXBsb3ltZW50cy9wczcxMDIvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx", + "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": [ - "334eb6d6-edcb-4ba0-9cfa-ffcae169fe98" + "15e4a29c-7423-45d2-9601-9518fa0950b1" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27110.04", + "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.4.0.0" + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0" ] }, "ResponseHeaders": { @@ -5906,17 +5906,20 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11822" + "11939" ], "x-ms-request-id": [ - "9b8d462e-1387-4704-8b07-7da057d32bbd" + "52826e51-267d-4d89-a1e7-1d8679b84bd8" ], "x-ms-correlation-request-id": [ - "9b8d462e-1387-4704-8b07-7da057d32bbd" + "52826e51-267d-4d89-a1e7-1d8679b84bd8" ], "x-ms-routing-request-id": [ - "WESTUS2:20200325T091341Z:9b8d462e-1387-4704-8b07-7da057d32bbd" + "NORTHCENTRALUS:20200612T213928Z:52826e51-267d-4d89-a1e7-1d8679b84bd8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5925,7 +5928,7 @@ "nosniff" ], "Date": [ - "Wed, 25 Mar 2020 09:13:40 GMT" + "Fri, 12 Jun 2020 21:39:27 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -5934,32 +5937,29 @@ "-1" ], "Content-Length": [ - "1370" - ], - "Retry-After": [ - "0" + "777" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Resources/deployments/ps7102/operations/9B87AD3AC82D5CB1\",\r\n \"operationId\": \"9B87AD3AC82D5CB1\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Read\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2020-03-25T09:13:40.2633922Z\",\r\n \"duration\": \"PT0.8840342S\",\r\n \"trackingId\": \"ef9a237a-cfde-4e0d-a76d-ebeb43788814\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Storage/storageAccounts/ps2757\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps2757\",\r\n \"apiVersion\": \"2019-06-01\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Resources/deployments/ps7102/operations/D60BABBFE7AE59B2\",\r\n \"operationId\": \"D60BABBFE7AE59B2\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2020-03-25T09:13:38.9206007Z\",\r\n \"duration\": \"PT22.8542458S\",\r\n \"trackingId\": \"f4194718-4948-424c-90b2-447aa5140319\",\r\n \"serviceRequestId\": \"e60d7e65-f3b9-4984-9501-ea7b36aedca4\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Storage/storageAccounts/ps2757\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps2757\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "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/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourcegroups/ps6304/deployments/ps7102/operations?api-version=2019-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjlmMTM4YTEtMWQ2NC00MTA4LTg0MTMtOWVhM2JlMWMxYjJkL3Jlc291cmNlZ3JvdXBzL3BzNjMwNC9kZXBsb3ltZW50cy9wczcxMDIvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx", + "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": [ - "43448e67-c18d-4643-aead-8ff465221025" + "7646d8c5-8d80-4bee-bb23-81594f07579c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27110.04", + "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.4.0.0" + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0" ] }, "ResponseHeaders": { @@ -5969,17 +5969,20 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11820" + "11937" ], "x-ms-request-id": [ - "12fdd983-4d91-4580-aecd-4795114bd6ad" + "cb481887-16f2-4056-8154-9686ece7be78" ], "x-ms-correlation-request-id": [ - "12fdd983-4d91-4580-aecd-4795114bd6ad" + "cb481887-16f2-4056-8154-9686ece7be78" ], "x-ms-routing-request-id": [ - "WESTUS2:20200325T091341Z:12fdd983-4d91-4580-aecd-4795114bd6ad" + "NORTHCENTRALUS:20200612T213928Z:cb481887-16f2-4056-8154-9686ece7be78" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5988,7 +5991,7 @@ "nosniff" ], "Date": [ - "Wed, 25 Mar 2020 09:13:40 GMT" + "Fri, 12 Jun 2020 21:39:28 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -5997,32 +6000,29 @@ "-1" ], "Content-Length": [ - "1370" - ], - "Retry-After": [ - "0" + "777" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Resources/deployments/ps7102/operations/9B87AD3AC82D5CB1\",\r\n \"operationId\": \"9B87AD3AC82D5CB1\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Read\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2020-03-25T09:13:40.2633922Z\",\r\n \"duration\": \"PT0.8840342S\",\r\n \"trackingId\": \"ef9a237a-cfde-4e0d-a76d-ebeb43788814\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Storage/storageAccounts/ps2757\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps2757\",\r\n \"apiVersion\": \"2019-06-01\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Resources/deployments/ps7102/operations/D60BABBFE7AE59B2\",\r\n \"operationId\": \"D60BABBFE7AE59B2\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2020-03-25T09:13:38.9206007Z\",\r\n \"duration\": \"PT22.8542458S\",\r\n \"trackingId\": \"f4194718-4948-424c-90b2-447aa5140319\",\r\n \"serviceRequestId\": \"e60d7e65-f3b9-4984-9501-ea7b36aedca4\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Storage/storageAccounts/ps2757\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps2757\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "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/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourcegroups/ps6304/deployments/ps7102/operations?api-version=2019-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjlmMTM4YTEtMWQ2NC00MTA4LTg0MTMtOWVhM2JlMWMxYjJkL3Jlc291cmNlZ3JvdXBzL3BzNjMwNC9kZXBsb3ltZW50cy9wczcxMDIvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx", + "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": [ - "b1a05401-9095-4e8b-91fb-05aa7cb996fa" + "5d72827d-4386-4358-8a57-61724def04ce" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27110.04", + "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.4.0.0" + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0" ] }, "ResponseHeaders": { @@ -6032,17 +6032,20 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11818" + "11935" ], "x-ms-request-id": [ - "161bcf5f-4461-4187-8b53-d4c89b415418" + "94faa454-806a-47e0-8555-97b305be0be8" ], "x-ms-correlation-request-id": [ - "161bcf5f-4461-4187-8b53-d4c89b415418" + "94faa454-806a-47e0-8555-97b305be0be8" ], "x-ms-routing-request-id": [ - "WESTUS2:20200325T091341Z:161bcf5f-4461-4187-8b53-d4c89b415418" + "NORTHCENTRALUS:20200612T213929Z:94faa454-806a-47e0-8555-97b305be0be8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6051,7 +6054,7 @@ "nosniff" ], "Date": [ - "Wed, 25 Mar 2020 09:13:40 GMT" + "Fri, 12 Jun 2020 21:39:28 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -6060,4253 +6063,29 @@ "-1" ], "Content-Length": [ - "1829" - ], - "Retry-After": [ - "0" + "777" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Resources/deployments/ps7102/operations/9B87AD3AC82D5CB1\",\r\n \"operationId\": \"9B87AD3AC82D5CB1\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Read\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2020-03-25T09:13:40.2633922Z\",\r\n \"duration\": \"PT0.8840342S\",\r\n \"trackingId\": \"ef9a237a-cfde-4e0d-a76d-ebeb43788814\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Storage/storageAccounts/ps2757\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps2757\",\r\n \"apiVersion\": \"2019-06-01\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Resources/deployments/ps7102/operations/D60BABBFE7AE59B2\",\r\n \"operationId\": \"D60BABBFE7AE59B2\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2020-03-25T09:13:38.9206007Z\",\r\n \"duration\": \"PT22.8542458S\",\r\n \"trackingId\": \"f4194718-4948-424c-90b2-447aa5140319\",\r\n \"serviceRequestId\": \"e60d7e65-f3b9-4984-9501-ea7b36aedca4\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Storage/storageAccounts/ps2757\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps2757\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Resources/deployments/ps7102/operations/08586164792943246485\",\r\n \"operationId\": \"08586164792943246485\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"EvaluateDeploymentOutput\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2020-03-25T09:13:41.3973123Z\",\r\n \"duration\": \"PT0.8461635S\",\r\n \"trackingId\": \"1de0b83e-3943-4049-a50b-ebb965d6027e\",\r\n \"statusCode\": \"OK\",\r\n \"statusMessage\": null\r\n }\r\n }\r\n ]\r\n}", + "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/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourcegroups/ps6304/deployments/ps7102/operations?api-version=2019-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjlmMTM4YTEtMWQ2NC00MTA4LTg0MTMtOWVhM2JlMWMxYjJkL3Jlc291cmNlZ3JvdXBzL3BzNjMwNC9kZXBsb3ltZW50cy9wczcxMDIvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx", + "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": [ - "f4bb5074-e6eb-4072-ae92-02d566a59357" + "24491212-bd03-4fde-b208-f2547fa19643" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27110.04", + "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.4.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11816" - ], - "x-ms-request-id": [ - "10bbea63-7000-43d0-adb2-2fb9854b5771" - ], - "x-ms-correlation-request-id": [ - "10bbea63-7000-43d0-adb2-2fb9854b5771" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20200325T091342Z:10bbea63-7000-43d0-adb2-2fb9854b5771" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 25 Mar 2020 09:13:42 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "1829" - ], - "Retry-After": [ - "0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Resources/deployments/ps7102/operations/9B87AD3AC82D5CB1\",\r\n \"operationId\": \"9B87AD3AC82D5CB1\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Read\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2020-03-25T09:13:40.2633922Z\",\r\n \"duration\": \"PT0.8840342S\",\r\n \"trackingId\": \"ef9a237a-cfde-4e0d-a76d-ebeb43788814\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Storage/storageAccounts/ps2757\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps2757\",\r\n \"apiVersion\": \"2019-06-01\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Resources/deployments/ps7102/operations/D60BABBFE7AE59B2\",\r\n \"operationId\": \"D60BABBFE7AE59B2\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2020-03-25T09:13:38.9206007Z\",\r\n \"duration\": \"PT22.8542458S\",\r\n \"trackingId\": \"f4194718-4948-424c-90b2-447aa5140319\",\r\n \"serviceRequestId\": \"e60d7e65-f3b9-4984-9501-ea7b36aedca4\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Storage/storageAccounts/ps2757\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps2757\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Resources/deployments/ps7102/operations/08586164792943246485\",\r\n \"operationId\": \"08586164792943246485\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"EvaluateDeploymentOutput\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2020-03-25T09:13:41.3973123Z\",\r\n \"duration\": \"PT0.8461635S\",\r\n \"trackingId\": \"1de0b83e-3943-4049-a50b-ebb965d6027e\",\r\n \"statusCode\": \"OK\",\r\n \"statusMessage\": null\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourcegroups/ps6304/providers/Microsoft.Resources/deployments/ps7102?api-version=2019-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjlmMTM4YTEtMWQ2NC00MTA4LTg0MTMtOWVhM2JlMWMxYjJkL3Jlc291cmNlZ3JvdXBzL3BzNjMwNC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMDI/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "75b547b5-9eb3-44d9-9e69-1575b3e3e3b7" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.27110.04", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.4.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" - ], - "x-ms-request-id": [ - "7d6cc676-00b4-4376-851b-ade82224a2ca" - ], - "x-ms-correlation-request-id": [ - "7d6cc676-00b4-4376-851b-ade82224a2ca" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20200325T091312Z:7d6cc676-00b4-4376-851b-ade82224a2ca" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 25 Mar 2020 09:13:11 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "780" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Resources/deployments/ps7102\",\r\n \"name\": \"ps7102\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key2\": \"value2\",\r\n \"key1\": \"value1\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps2757\"\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-03-25T09:13:11.6918319Z\",\r\n \"duration\": \"PT0.5388692S\",\r\n \"correlationId\": \"d739b9ad-582a-4653-8eaf-c9d0298ba601\",\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/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourcegroups/ps6304/providers/Microsoft.Resources/deployments/ps7102?api-version=2019-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjlmMTM4YTEtMWQ2NC00MTA4LTg0MTMtOWVhM2JlMWMxYjJkL3Jlc291cmNlZ3JvdXBzL3BzNjMwNC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMDI/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "8f61aba1-ba7f-40d7-87d0-ca7cb8936012" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.27110.04", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.4.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" - ], - "x-ms-request-id": [ - "707d93fe-474c-4e3a-9d06-ac1d4454054c" - ], - "x-ms-correlation-request-id": [ - "707d93fe-474c-4e3a-9d06-ac1d4454054c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20200325T091313Z:707d93fe-474c-4e3a-9d06-ac1d4454054c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 25 Mar 2020 09:13:12 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "780" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Resources/deployments/ps7102\",\r\n \"name\": \"ps7102\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key2\": \"value2\",\r\n \"key1\": \"value1\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps2757\"\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-03-25T09:13:11.6918319Z\",\r\n \"duration\": \"PT0.5388692S\",\r\n \"correlationId\": \"d739b9ad-582a-4653-8eaf-c9d0298ba601\",\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/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourcegroups/ps6304/providers/Microsoft.Resources/deployments/ps7102?api-version=2019-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjlmMTM4YTEtMWQ2NC00MTA4LTg0MTMtOWVhM2JlMWMxYjJkL3Jlc291cmNlZ3JvdXBzL3BzNjMwNC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMDI/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "ca14b66c-fad1-41c7-9873-9b7c6c12e05d" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.27110.04", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.4.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" - ], - "x-ms-request-id": [ - "5d767d66-913a-4981-8d99-4afc081fd6e8" - ], - "x-ms-correlation-request-id": [ - "5d767d66-913a-4981-8d99-4afc081fd6e8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20200325T091313Z:5d767d66-913a-4981-8d99-4afc081fd6e8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 25 Mar 2020 09:13:12 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "780" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Resources/deployments/ps7102\",\r\n \"name\": \"ps7102\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key2\": \"value2\",\r\n \"key1\": \"value1\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps2757\"\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-03-25T09:13:11.6918319Z\",\r\n \"duration\": \"PT0.5388692S\",\r\n \"correlationId\": \"d739b9ad-582a-4653-8eaf-c9d0298ba601\",\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/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourcegroups/ps6304/providers/Microsoft.Resources/deployments/ps7102?api-version=2019-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjlmMTM4YTEtMWQ2NC00MTA4LTg0MTMtOWVhM2JlMWMxYjJkL3Jlc291cmNlZ3JvdXBzL3BzNjMwNC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMDI/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "3a188a08-efae-4b89-a1e2-3fa2e74ad6bb" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.27110.04", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.4.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" - ], - "x-ms-request-id": [ - "db0cc549-0eba-4e32-9622-e963ea142c46" - ], - "x-ms-correlation-request-id": [ - "db0cc549-0eba-4e32-9622-e963ea142c46" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20200325T091313Z:db0cc549-0eba-4e32-9622-e963ea142c46" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 25 Mar 2020 09:13:12 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "780" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Resources/deployments/ps7102\",\r\n \"name\": \"ps7102\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key2\": \"value2\",\r\n \"key1\": \"value1\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps2757\"\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-03-25T09:13:11.6918319Z\",\r\n \"duration\": \"PT0.5388692S\",\r\n \"correlationId\": \"d739b9ad-582a-4653-8eaf-c9d0298ba601\",\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/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourcegroups/ps6304/providers/Microsoft.Resources/deployments/ps7102?api-version=2019-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjlmMTM4YTEtMWQ2NC00MTA4LTg0MTMtOWVhM2JlMWMxYjJkL3Jlc291cmNlZ3JvdXBzL3BzNjMwNC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMDI/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "f389917a-0418-466d-9acb-c4207aee9a56" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.27110.04", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.4.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" - ], - "x-ms-request-id": [ - "8c69285b-de67-4024-889c-492be85f4ef4" - ], - "x-ms-correlation-request-id": [ - "8c69285b-de67-4024-889c-492be85f4ef4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20200325T091313Z:8c69285b-de67-4024-889c-492be85f4ef4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 25 Mar 2020 09:13:13 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "780" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Resources/deployments/ps7102\",\r\n \"name\": \"ps7102\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key2\": \"value2\",\r\n \"key1\": \"value1\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps2757\"\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-03-25T09:13:11.6918319Z\",\r\n \"duration\": \"PT0.5388692S\",\r\n \"correlationId\": \"d739b9ad-582a-4653-8eaf-c9d0298ba601\",\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/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourcegroups/ps6304/providers/Microsoft.Resources/deployments/ps7102?api-version=2019-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjlmMTM4YTEtMWQ2NC00MTA4LTg0MTMtOWVhM2JlMWMxYjJkL3Jlc291cmNlZ3JvdXBzL3BzNjMwNC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMDI/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "d0633edc-d79c-4e9d-86e8-2f90a1ab2078" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.27110.04", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.4.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" - ], - "x-ms-request-id": [ - "0c464119-162f-492f-8e58-7415b92d3383" - ], - "x-ms-correlation-request-id": [ - "0c464119-162f-492f-8e58-7415b92d3383" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20200325T091314Z:0c464119-162f-492f-8e58-7415b92d3383" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 25 Mar 2020 09:13:13 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "780" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Resources/deployments/ps7102\",\r\n \"name\": \"ps7102\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key2\": \"value2\",\r\n \"key1\": \"value1\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps2757\"\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-03-25T09:13:11.6918319Z\",\r\n \"duration\": \"PT0.5388692S\",\r\n \"correlationId\": \"d739b9ad-582a-4653-8eaf-c9d0298ba601\",\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/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourcegroups/ps6304/providers/Microsoft.Resources/deployments/ps7102?api-version=2019-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjlmMTM4YTEtMWQ2NC00MTA4LTg0MTMtOWVhM2JlMWMxYjJkL3Jlc291cmNlZ3JvdXBzL3BzNjMwNC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMDI/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "41a586c6-c36a-4816-95d4-0d9d735283fb" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.27110.04", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.4.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" - ], - "x-ms-request-id": [ - "733e36d0-d394-4f5c-bfaa-807ea467b0f7" - ], - "x-ms-correlation-request-id": [ - "733e36d0-d394-4f5c-bfaa-807ea467b0f7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20200325T091314Z:733e36d0-d394-4f5c-bfaa-807ea467b0f7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 25 Mar 2020 09:13:13 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "780" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Resources/deployments/ps7102\",\r\n \"name\": \"ps7102\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key2\": \"value2\",\r\n \"key1\": \"value1\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps2757\"\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-03-25T09:13:11.6918319Z\",\r\n \"duration\": \"PT0.5388692S\",\r\n \"correlationId\": \"d739b9ad-582a-4653-8eaf-c9d0298ba601\",\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/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourcegroups/ps6304/providers/Microsoft.Resources/deployments/ps7102?api-version=2019-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjlmMTM4YTEtMWQ2NC00MTA4LTg0MTMtOWVhM2JlMWMxYjJkL3Jlc291cmNlZ3JvdXBzL3BzNjMwNC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMDI/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "c8ff7597-ce47-47e9-b165-067bbcb0d8e2" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.27110.04", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.4.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11983" - ], - "x-ms-request-id": [ - "885b7ac7-f573-4fc8-972e-e86ba830c58b" - ], - "x-ms-correlation-request-id": [ - "885b7ac7-f573-4fc8-972e-e86ba830c58b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20200325T091314Z:885b7ac7-f573-4fc8-972e-e86ba830c58b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 25 Mar 2020 09:13:13 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "780" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Resources/deployments/ps7102\",\r\n \"name\": \"ps7102\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key2\": \"value2\",\r\n \"key1\": \"value1\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps2757\"\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-03-25T09:13:11.6918319Z\",\r\n \"duration\": \"PT0.5388692S\",\r\n \"correlationId\": \"d739b9ad-582a-4653-8eaf-c9d0298ba601\",\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/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourcegroups/ps6304/providers/Microsoft.Resources/deployments/ps7102?api-version=2019-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjlmMTM4YTEtMWQ2NC00MTA4LTg0MTMtOWVhM2JlMWMxYjJkL3Jlc291cmNlZ3JvdXBzL3BzNjMwNC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMDI/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "cfb1a441-ebcc-45ae-8d65-f947680b2432" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.27110.04", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.4.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11981" - ], - "x-ms-request-id": [ - "757f1835-5cae-4ebc-badf-d336fa61db6a" - ], - "x-ms-correlation-request-id": [ - "757f1835-5cae-4ebc-badf-d336fa61db6a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20200325T091315Z:757f1835-5cae-4ebc-badf-d336fa61db6a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 25 Mar 2020 09:13:14 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "780" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Resources/deployments/ps7102\",\r\n \"name\": \"ps7102\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key2\": \"value2\",\r\n \"key1\": \"value1\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps2757\"\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-03-25T09:13:11.6918319Z\",\r\n \"duration\": \"PT0.5388692S\",\r\n \"correlationId\": \"d739b9ad-582a-4653-8eaf-c9d0298ba601\",\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/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourcegroups/ps6304/providers/Microsoft.Resources/deployments/ps7102?api-version=2019-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjlmMTM4YTEtMWQ2NC00MTA4LTg0MTMtOWVhM2JlMWMxYjJkL3Jlc291cmNlZ3JvdXBzL3BzNjMwNC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMDI/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "f7285815-f9d8-4bd2-9323-719cec8a4327" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.27110.04", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.4.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11979" - ], - "x-ms-request-id": [ - "3e2b8ea2-21ad-45e5-9d74-40475ec0d5e7" - ], - "x-ms-correlation-request-id": [ - "3e2b8ea2-21ad-45e5-9d74-40475ec0d5e7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20200325T091315Z:3e2b8ea2-21ad-45e5-9d74-40475ec0d5e7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 25 Mar 2020 09:13:14 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "780" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Resources/deployments/ps7102\",\r\n \"name\": \"ps7102\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key2\": \"value2\",\r\n \"key1\": \"value1\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps2757\"\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-03-25T09:13:11.6918319Z\",\r\n \"duration\": \"PT0.5388692S\",\r\n \"correlationId\": \"d739b9ad-582a-4653-8eaf-c9d0298ba601\",\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/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourcegroups/ps6304/providers/Microsoft.Resources/deployments/ps7102?api-version=2019-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjlmMTM4YTEtMWQ2NC00MTA4LTg0MTMtOWVhM2JlMWMxYjJkL3Jlc291cmNlZ3JvdXBzL3BzNjMwNC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMDI/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "ed4fda2d-c902-42eb-9ab7-907e6a224443" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.27110.04", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.4.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11977" - ], - "x-ms-request-id": [ - "2a9bada7-88df-4961-ab53-c12fcaaca523" - ], - "x-ms-correlation-request-id": [ - "2a9bada7-88df-4961-ab53-c12fcaaca523" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20200325T091316Z:2a9bada7-88df-4961-ab53-c12fcaaca523" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 25 Mar 2020 09:13:15 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "779" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Resources/deployments/ps7102\",\r\n \"name\": \"ps7102\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key2\": \"value2\",\r\n \"key1\": \"value1\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps2757\"\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-03-25T09:13:15.9902122Z\",\r\n \"duration\": \"PT4.8372495S\",\r\n \"correlationId\": \"d739b9ad-582a-4653-8eaf-c9d0298ba601\",\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/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourcegroups/ps6304/providers/Microsoft.Resources/deployments/ps7102?api-version=2019-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjlmMTM4YTEtMWQ2NC00MTA4LTg0MTMtOWVhM2JlMWMxYjJkL3Jlc291cmNlZ3JvdXBzL3BzNjMwNC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMDI/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "5387f6ba-c3a7-4f9c-8b89-495db61ee610" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.27110.04", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.4.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11975" - ], - "x-ms-request-id": [ - "bc11dbc3-59a4-4a10-939f-7d833871fa3e" - ], - "x-ms-correlation-request-id": [ - "bc11dbc3-59a4-4a10-939f-7d833871fa3e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20200325T091316Z:bc11dbc3-59a4-4a10-939f-7d833871fa3e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 25 Mar 2020 09:13:15 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "779" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Resources/deployments/ps7102\",\r\n \"name\": \"ps7102\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key2\": \"value2\",\r\n \"key1\": \"value1\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps2757\"\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-03-25T09:13:15.9902122Z\",\r\n \"duration\": \"PT4.8372495S\",\r\n \"correlationId\": \"d739b9ad-582a-4653-8eaf-c9d0298ba601\",\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/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourcegroups/ps6304/providers/Microsoft.Resources/deployments/ps7102?api-version=2019-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjlmMTM4YTEtMWQ2NC00MTA4LTg0MTMtOWVhM2JlMWMxYjJkL3Jlc291cmNlZ3JvdXBzL3BzNjMwNC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMDI/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "66fc864e-0b26-4276-bd3e-5f447f26d200" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.27110.04", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.4.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11973" - ], - "x-ms-request-id": [ - "d57d4ce5-3393-465f-8b96-cd2b42081051" - ], - "x-ms-correlation-request-id": [ - "d57d4ce5-3393-465f-8b96-cd2b42081051" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20200325T091316Z:d57d4ce5-3393-465f-8b96-cd2b42081051" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 25 Mar 2020 09:13:15 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "779" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Resources/deployments/ps7102\",\r\n \"name\": \"ps7102\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key2\": \"value2\",\r\n \"key1\": \"value1\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps2757\"\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-03-25T09:13:15.9902122Z\",\r\n \"duration\": \"PT4.8372495S\",\r\n \"correlationId\": \"d739b9ad-582a-4653-8eaf-c9d0298ba601\",\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/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourcegroups/ps6304/providers/Microsoft.Resources/deployments/ps7102?api-version=2019-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjlmMTM4YTEtMWQ2NC00MTA4LTg0MTMtOWVhM2JlMWMxYjJkL3Jlc291cmNlZ3JvdXBzL3BzNjMwNC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMDI/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "7e1eed81-cb21-4cf7-9d19-ef8b080184f0" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.27110.04", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.4.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11971" - ], - "x-ms-request-id": [ - "2ccf801f-1c81-4c3c-96b0-00e49d62708c" - ], - "x-ms-correlation-request-id": [ - "2ccf801f-1c81-4c3c-96b0-00e49d62708c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20200325T091317Z:2ccf801f-1c81-4c3c-96b0-00e49d62708c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 25 Mar 2020 09:13:16 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "779" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Resources/deployments/ps7102\",\r\n \"name\": \"ps7102\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key2\": \"value2\",\r\n \"key1\": \"value1\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps2757\"\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-03-25T09:13:15.9902122Z\",\r\n \"duration\": \"PT4.8372495S\",\r\n \"correlationId\": \"d739b9ad-582a-4653-8eaf-c9d0298ba601\",\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/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourcegroups/ps6304/providers/Microsoft.Resources/deployments/ps7102?api-version=2019-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjlmMTM4YTEtMWQ2NC00MTA4LTg0MTMtOWVhM2JlMWMxYjJkL3Jlc291cmNlZ3JvdXBzL3BzNjMwNC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMDI/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "57c470a8-ba49-4eb2-a25f-06390f870794" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.27110.04", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.4.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11969" - ], - "x-ms-request-id": [ - "b0dedda4-2097-4166-b2f9-083709ab422e" - ], - "x-ms-correlation-request-id": [ - "b0dedda4-2097-4166-b2f9-083709ab422e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20200325T091317Z:b0dedda4-2097-4166-b2f9-083709ab422e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 25 Mar 2020 09:13:16 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "779" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Resources/deployments/ps7102\",\r\n \"name\": \"ps7102\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key2\": \"value2\",\r\n \"key1\": \"value1\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps2757\"\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-03-25T09:13:15.9902122Z\",\r\n \"duration\": \"PT4.8372495S\",\r\n \"correlationId\": \"d739b9ad-582a-4653-8eaf-c9d0298ba601\",\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/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourcegroups/ps6304/providers/Microsoft.Resources/deployments/ps7102?api-version=2019-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjlmMTM4YTEtMWQ2NC00MTA4LTg0MTMtOWVhM2JlMWMxYjJkL3Jlc291cmNlZ3JvdXBzL3BzNjMwNC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMDI/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "cc46bfb4-e6fb-4465-b906-b4731a21ce14" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.27110.04", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.4.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11967" - ], - "x-ms-request-id": [ - "5b74b468-9a02-48ac-9882-0ae938a16b12" - ], - "x-ms-correlation-request-id": [ - "5b74b468-9a02-48ac-9882-0ae938a16b12" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20200325T091317Z:5b74b468-9a02-48ac-9882-0ae938a16b12" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 25 Mar 2020 09:13:16 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "779" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Resources/deployments/ps7102\",\r\n \"name\": \"ps7102\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key2\": \"value2\",\r\n \"key1\": \"value1\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps2757\"\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-03-25T09:13:15.9902122Z\",\r\n \"duration\": \"PT4.8372495S\",\r\n \"correlationId\": \"d739b9ad-582a-4653-8eaf-c9d0298ba601\",\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/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourcegroups/ps6304/providers/Microsoft.Resources/deployments/ps7102?api-version=2019-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjlmMTM4YTEtMWQ2NC00MTA4LTg0MTMtOWVhM2JlMWMxYjJkL3Jlc291cmNlZ3JvdXBzL3BzNjMwNC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMDI/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "71b2313f-079b-470f-a429-b1d4b14cc8da" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.27110.04", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.4.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11965" - ], - "x-ms-request-id": [ - "27f69d50-bb10-4c87-af66-42350687d83f" - ], - "x-ms-correlation-request-id": [ - "27f69d50-bb10-4c87-af66-42350687d83f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20200325T091318Z:27f69d50-bb10-4c87-af66-42350687d83f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 25 Mar 2020 09:13:17 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "779" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Resources/deployments/ps7102\",\r\n \"name\": \"ps7102\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key2\": \"value2\",\r\n \"key1\": \"value1\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps2757\"\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-03-25T09:13:17.7308814Z\",\r\n \"duration\": \"PT6.5779187S\",\r\n \"correlationId\": \"d739b9ad-582a-4653-8eaf-c9d0298ba601\",\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/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourcegroups/ps6304/providers/Microsoft.Resources/deployments/ps7102?api-version=2019-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjlmMTM4YTEtMWQ2NC00MTA4LTg0MTMtOWVhM2JlMWMxYjJkL3Jlc291cmNlZ3JvdXBzL3BzNjMwNC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMDI/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "59c7afe8-25fe-42de-8128-381c3f975407" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.27110.04", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.4.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11963" - ], - "x-ms-request-id": [ - "a2bf6a5f-8898-4b1b-a8ee-a58f2b7d2455" - ], - "x-ms-correlation-request-id": [ - "a2bf6a5f-8898-4b1b-a8ee-a58f2b7d2455" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20200325T091318Z:a2bf6a5f-8898-4b1b-a8ee-a58f2b7d2455" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 25 Mar 2020 09:13:17 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "779" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Resources/deployments/ps7102\",\r\n \"name\": \"ps7102\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key2\": \"value2\",\r\n \"key1\": \"value1\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps2757\"\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-03-25T09:13:17.7308814Z\",\r\n \"duration\": \"PT6.5779187S\",\r\n \"correlationId\": \"d739b9ad-582a-4653-8eaf-c9d0298ba601\",\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/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourcegroups/ps6304/providers/Microsoft.Resources/deployments/ps7102?api-version=2019-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjlmMTM4YTEtMWQ2NC00MTA4LTg0MTMtOWVhM2JlMWMxYjJkL3Jlc291cmNlZ3JvdXBzL3BzNjMwNC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMDI/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "8e85ae9e-040d-42d0-b68f-1d72f8627e73" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.27110.04", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.4.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11961" - ], - "x-ms-request-id": [ - "aba910df-d06c-4fcb-8bc5-5ea3e577ff99" - ], - "x-ms-correlation-request-id": [ - "aba910df-d06c-4fcb-8bc5-5ea3e577ff99" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20200325T091318Z:aba910df-d06c-4fcb-8bc5-5ea3e577ff99" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 25 Mar 2020 09:13:17 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "779" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Resources/deployments/ps7102\",\r\n \"name\": \"ps7102\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key2\": \"value2\",\r\n \"key1\": \"value1\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps2757\"\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-03-25T09:13:17.7308814Z\",\r\n \"duration\": \"PT6.5779187S\",\r\n \"correlationId\": \"d739b9ad-582a-4653-8eaf-c9d0298ba601\",\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/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourcegroups/ps6304/providers/Microsoft.Resources/deployments/ps7102?api-version=2019-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjlmMTM4YTEtMWQ2NC00MTA4LTg0MTMtOWVhM2JlMWMxYjJkL3Jlc291cmNlZ3JvdXBzL3BzNjMwNC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMDI/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "012fa0ab-6b2e-48ef-ab30-ce1a3869769b" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.27110.04", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.4.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11959" - ], - "x-ms-request-id": [ - "7fb02f31-4869-4519-b382-1038ee2f85f0" - ], - "x-ms-correlation-request-id": [ - "7fb02f31-4869-4519-b382-1038ee2f85f0" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20200325T091319Z:7fb02f31-4869-4519-b382-1038ee2f85f0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 25 Mar 2020 09:13:18 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "779" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Resources/deployments/ps7102\",\r\n \"name\": \"ps7102\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key2\": \"value2\",\r\n \"key1\": \"value1\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps2757\"\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-03-25T09:13:17.7308814Z\",\r\n \"duration\": \"PT6.5779187S\",\r\n \"correlationId\": \"d739b9ad-582a-4653-8eaf-c9d0298ba601\",\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/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourcegroups/ps6304/providers/Microsoft.Resources/deployments/ps7102?api-version=2019-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjlmMTM4YTEtMWQ2NC00MTA4LTg0MTMtOWVhM2JlMWMxYjJkL3Jlc291cmNlZ3JvdXBzL3BzNjMwNC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMDI/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "682f085b-1ab8-4413-9990-94f8d3b443a8" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.27110.04", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.4.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11957" - ], - "x-ms-request-id": [ - "8fe452ff-5f1d-464b-9d02-e6a6de9cfb8e" - ], - "x-ms-correlation-request-id": [ - "8fe452ff-5f1d-464b-9d02-e6a6de9cfb8e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20200325T091319Z:8fe452ff-5f1d-464b-9d02-e6a6de9cfb8e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 25 Mar 2020 09:13:18 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "779" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Resources/deployments/ps7102\",\r\n \"name\": \"ps7102\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key2\": \"value2\",\r\n \"key1\": \"value1\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps2757\"\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-03-25T09:13:17.7308814Z\",\r\n \"duration\": \"PT6.5779187S\",\r\n \"correlationId\": \"d739b9ad-582a-4653-8eaf-c9d0298ba601\",\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/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourcegroups/ps6304/providers/Microsoft.Resources/deployments/ps7102?api-version=2019-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjlmMTM4YTEtMWQ2NC00MTA4LTg0MTMtOWVhM2JlMWMxYjJkL3Jlc291cmNlZ3JvdXBzL3BzNjMwNC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMDI/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "53262dfc-27a8-4397-b45c-07af7c90d616" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.27110.04", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.4.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11955" - ], - "x-ms-request-id": [ - "ba899bdc-fc24-477d-b7d0-e78c09b5b33e" - ], - "x-ms-correlation-request-id": [ - "ba899bdc-fc24-477d-b7d0-e78c09b5b33e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20200325T091319Z:ba899bdc-fc24-477d-b7d0-e78c09b5b33e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 25 Mar 2020 09:13:19 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "779" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Resources/deployments/ps7102\",\r\n \"name\": \"ps7102\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key2\": \"value2\",\r\n \"key1\": \"value1\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps2757\"\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-03-25T09:13:17.7308814Z\",\r\n \"duration\": \"PT6.5779187S\",\r\n \"correlationId\": \"d739b9ad-582a-4653-8eaf-c9d0298ba601\",\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/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourcegroups/ps6304/providers/Microsoft.Resources/deployments/ps7102?api-version=2019-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjlmMTM4YTEtMWQ2NC00MTA4LTg0MTMtOWVhM2JlMWMxYjJkL3Jlc291cmNlZ3JvdXBzL3BzNjMwNC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMDI/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "dd9809e9-c396-42dd-9bdb-971191a2670f" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.27110.04", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.4.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11953" - ], - "x-ms-request-id": [ - "8c58596a-3178-4b7a-8b8a-0689b23a57ff" - ], - "x-ms-correlation-request-id": [ - "8c58596a-3178-4b7a-8b8a-0689b23a57ff" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20200325T091320Z:8c58596a-3178-4b7a-8b8a-0689b23a57ff" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 25 Mar 2020 09:13:19 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "779" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Resources/deployments/ps7102\",\r\n \"name\": \"ps7102\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key2\": \"value2\",\r\n \"key1\": \"value1\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps2757\"\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-03-25T09:13:17.7308814Z\",\r\n \"duration\": \"PT6.5779187S\",\r\n \"correlationId\": \"d739b9ad-582a-4653-8eaf-c9d0298ba601\",\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/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourcegroups/ps6304/providers/Microsoft.Resources/deployments/ps7102?api-version=2019-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjlmMTM4YTEtMWQ2NC00MTA4LTg0MTMtOWVhM2JlMWMxYjJkL3Jlc291cmNlZ3JvdXBzL3BzNjMwNC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMDI/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "05e64759-1e99-438c-8ad3-6b0072fffcc5" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.27110.04", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.4.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11951" - ], - "x-ms-request-id": [ - "9e32b4a3-98fc-44ac-96e3-b9ce2d6198dc" - ], - "x-ms-correlation-request-id": [ - "9e32b4a3-98fc-44ac-96e3-b9ce2d6198dc" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20200325T091320Z:9e32b4a3-98fc-44ac-96e3-b9ce2d6198dc" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 25 Mar 2020 09:13:20 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "779" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Resources/deployments/ps7102\",\r\n \"name\": \"ps7102\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key2\": \"value2\",\r\n \"key1\": \"value1\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps2757\"\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-03-25T09:13:17.7308814Z\",\r\n \"duration\": \"PT6.5779187S\",\r\n \"correlationId\": \"d739b9ad-582a-4653-8eaf-c9d0298ba601\",\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/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourcegroups/ps6304/providers/Microsoft.Resources/deployments/ps7102?api-version=2019-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjlmMTM4YTEtMWQ2NC00MTA4LTg0MTMtOWVhM2JlMWMxYjJkL3Jlc291cmNlZ3JvdXBzL3BzNjMwNC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMDI/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "f77b164a-37a8-4247-9510-099742acf96e" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.27110.04", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.4.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11949" - ], - "x-ms-request-id": [ - "76376956-41d1-4307-9eaf-aa858dea3787" - ], - "x-ms-correlation-request-id": [ - "76376956-41d1-4307-9eaf-aa858dea3787" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20200325T091321Z:76376956-41d1-4307-9eaf-aa858dea3787" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 25 Mar 2020 09:13:20 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "779" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Resources/deployments/ps7102\",\r\n \"name\": \"ps7102\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key2\": \"value2\",\r\n \"key1\": \"value1\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps2757\"\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-03-25T09:13:17.7308814Z\",\r\n \"duration\": \"PT6.5779187S\",\r\n \"correlationId\": \"d739b9ad-582a-4653-8eaf-c9d0298ba601\",\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/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourcegroups/ps6304/providers/Microsoft.Resources/deployments/ps7102?api-version=2019-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjlmMTM4YTEtMWQ2NC00MTA4LTg0MTMtOWVhM2JlMWMxYjJkL3Jlc291cmNlZ3JvdXBzL3BzNjMwNC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMDI/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "1896abc3-c402-4535-a6a7-c92967b1f54c" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.27110.04", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.4.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11947" - ], - "x-ms-request-id": [ - "3b3a8dbc-07ac-4cd1-9185-dd67601a537f" - ], - "x-ms-correlation-request-id": [ - "3b3a8dbc-07ac-4cd1-9185-dd67601a537f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20200325T091321Z:3b3a8dbc-07ac-4cd1-9185-dd67601a537f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 25 Mar 2020 09:13:20 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "779" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Resources/deployments/ps7102\",\r\n \"name\": \"ps7102\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key2\": \"value2\",\r\n \"key1\": \"value1\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps2757\"\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-03-25T09:13:17.7308814Z\",\r\n \"duration\": \"PT6.5779187S\",\r\n \"correlationId\": \"d739b9ad-582a-4653-8eaf-c9d0298ba601\",\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/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourcegroups/ps6304/providers/Microsoft.Resources/deployments/ps7102?api-version=2019-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjlmMTM4YTEtMWQ2NC00MTA4LTg0MTMtOWVhM2JlMWMxYjJkL3Jlc291cmNlZ3JvdXBzL3BzNjMwNC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMDI/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "51a968ef-cca5-4519-a124-46f1f44d2639" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.27110.04", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.4.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11945" - ], - "x-ms-request-id": [ - "cfdab14a-ebb8-4021-8424-0d41dc30bae9" - ], - "x-ms-correlation-request-id": [ - "cfdab14a-ebb8-4021-8424-0d41dc30bae9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20200325T091321Z:cfdab14a-ebb8-4021-8424-0d41dc30bae9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 25 Mar 2020 09:13:20 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "779" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Resources/deployments/ps7102\",\r\n \"name\": \"ps7102\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key2\": \"value2\",\r\n \"key1\": \"value1\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps2757\"\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-03-25T09:13:17.7308814Z\",\r\n \"duration\": \"PT6.5779187S\",\r\n \"correlationId\": \"d739b9ad-582a-4653-8eaf-c9d0298ba601\",\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/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourcegroups/ps6304/providers/Microsoft.Resources/deployments/ps7102?api-version=2019-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjlmMTM4YTEtMWQ2NC00MTA4LTg0MTMtOWVhM2JlMWMxYjJkL3Jlc291cmNlZ3JvdXBzL3BzNjMwNC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMDI/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "d6f527ef-f9df-4497-9826-6482ef289e3a" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.27110.04", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.4.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11943" - ], - "x-ms-request-id": [ - "ce407bcf-97cb-4a11-81d2-8d44426fe835" - ], - "x-ms-correlation-request-id": [ - "ce407bcf-97cb-4a11-81d2-8d44426fe835" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20200325T091321Z:ce407bcf-97cb-4a11-81d2-8d44426fe835" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 25 Mar 2020 09:13:21 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "779" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Resources/deployments/ps7102\",\r\n \"name\": \"ps7102\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key2\": \"value2\",\r\n \"key1\": \"value1\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps2757\"\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-03-25T09:13:17.7308814Z\",\r\n \"duration\": \"PT6.5779187S\",\r\n \"correlationId\": \"d739b9ad-582a-4653-8eaf-c9d0298ba601\",\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/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourcegroups/ps6304/providers/Microsoft.Resources/deployments/ps7102?api-version=2019-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjlmMTM4YTEtMWQ2NC00MTA4LTg0MTMtOWVhM2JlMWMxYjJkL3Jlc291cmNlZ3JvdXBzL3BzNjMwNC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMDI/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "e8b944e5-3e96-4e31-9963-33705acea395" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.27110.04", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.4.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11941" - ], - "x-ms-request-id": [ - "0c13171a-938d-4d14-9fda-e99b8f07a2a0" - ], - "x-ms-correlation-request-id": [ - "0c13171a-938d-4d14-9fda-e99b8f07a2a0" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20200325T091322Z:0c13171a-938d-4d14-9fda-e99b8f07a2a0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 25 Mar 2020 09:13:21 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "779" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Resources/deployments/ps7102\",\r\n \"name\": \"ps7102\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key2\": \"value2\",\r\n \"key1\": \"value1\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps2757\"\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-03-25T09:13:17.7308814Z\",\r\n \"duration\": \"PT6.5779187S\",\r\n \"correlationId\": \"d739b9ad-582a-4653-8eaf-c9d0298ba601\",\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/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourcegroups/ps6304/providers/Microsoft.Resources/deployments/ps7102?api-version=2019-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjlmMTM4YTEtMWQ2NC00MTA4LTg0MTMtOWVhM2JlMWMxYjJkL3Jlc291cmNlZ3JvdXBzL3BzNjMwNC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMDI/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "7a7213ac-47f4-4740-a30f-e34e07c4d90c" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.27110.04", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.4.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11939" - ], - "x-ms-request-id": [ - "f5669d4c-28e1-49ba-98bd-2c2372c4e3c2" - ], - "x-ms-correlation-request-id": [ - "f5669d4c-28e1-49ba-98bd-2c2372c4e3c2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20200325T091322Z:f5669d4c-28e1-49ba-98bd-2c2372c4e3c2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 25 Mar 2020 09:13:21 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "779" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Resources/deployments/ps7102\",\r\n \"name\": \"ps7102\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key2\": \"value2\",\r\n \"key1\": \"value1\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps2757\"\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-03-25T09:13:17.7308814Z\",\r\n \"duration\": \"PT6.5779187S\",\r\n \"correlationId\": \"d739b9ad-582a-4653-8eaf-c9d0298ba601\",\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/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourcegroups/ps6304/providers/Microsoft.Resources/deployments/ps7102?api-version=2019-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjlmMTM4YTEtMWQ2NC00MTA4LTg0MTMtOWVhM2JlMWMxYjJkL3Jlc291cmNlZ3JvdXBzL3BzNjMwNC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMDI/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "ebb18250-fac4-49b6-aeeb-0906fb821338" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.27110.04", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.4.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11937" - ], - "x-ms-request-id": [ - "e44dd14e-7ed1-4389-bd13-6bd95dd53207" - ], - "x-ms-correlation-request-id": [ - "e44dd14e-7ed1-4389-bd13-6bd95dd53207" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20200325T091322Z:e44dd14e-7ed1-4389-bd13-6bd95dd53207" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 25 Mar 2020 09:13:22 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "779" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Resources/deployments/ps7102\",\r\n \"name\": \"ps7102\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key2\": \"value2\",\r\n \"key1\": \"value1\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps2757\"\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-03-25T09:13:17.7308814Z\",\r\n \"duration\": \"PT6.5779187S\",\r\n \"correlationId\": \"d739b9ad-582a-4653-8eaf-c9d0298ba601\",\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/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourcegroups/ps6304/providers/Microsoft.Resources/deployments/ps7102?api-version=2019-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjlmMTM4YTEtMWQ2NC00MTA4LTg0MTMtOWVhM2JlMWMxYjJkL3Jlc291cmNlZ3JvdXBzL3BzNjMwNC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMDI/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "7b854c3f-7eaa-4474-abf2-5cea4e9fc521" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.27110.04", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.4.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11935" - ], - "x-ms-request-id": [ - "857c0068-b1c1-4ec7-9e96-2a10dba1b494" - ], - "x-ms-correlation-request-id": [ - "857c0068-b1c1-4ec7-9e96-2a10dba1b494" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20200325T091323Z:857c0068-b1c1-4ec7-9e96-2a10dba1b494" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 25 Mar 2020 09:13:22 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "779" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Resources/deployments/ps7102\",\r\n \"name\": \"ps7102\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key2\": \"value2\",\r\n \"key1\": \"value1\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps2757\"\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-03-25T09:13:17.7308814Z\",\r\n \"duration\": \"PT6.5779187S\",\r\n \"correlationId\": \"d739b9ad-582a-4653-8eaf-c9d0298ba601\",\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/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourcegroups/ps6304/providers/Microsoft.Resources/deployments/ps7102?api-version=2019-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjlmMTM4YTEtMWQ2NC00MTA4LTg0MTMtOWVhM2JlMWMxYjJkL3Jlc291cmNlZ3JvdXBzL3BzNjMwNC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMDI/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "e7edc1ef-6181-4c00-a456-bc2f73ab4d4c" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.27110.04", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.4.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11933" - ], - "x-ms-request-id": [ - "44d0bd44-0143-4a7f-98de-5aa1e29c6f6f" - ], - "x-ms-correlation-request-id": [ - "44d0bd44-0143-4a7f-98de-5aa1e29c6f6f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20200325T091323Z:44d0bd44-0143-4a7f-98de-5aa1e29c6f6f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 25 Mar 2020 09:13:22 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "779" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Resources/deployments/ps7102\",\r\n \"name\": \"ps7102\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key2\": \"value2\",\r\n \"key1\": \"value1\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps2757\"\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-03-25T09:13:17.7308814Z\",\r\n \"duration\": \"PT6.5779187S\",\r\n \"correlationId\": \"d739b9ad-582a-4653-8eaf-c9d0298ba601\",\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/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourcegroups/ps6304/providers/Microsoft.Resources/deployments/ps7102?api-version=2019-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjlmMTM4YTEtMWQ2NC00MTA4LTg0MTMtOWVhM2JlMWMxYjJkL3Jlc291cmNlZ3JvdXBzL3BzNjMwNC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMDI/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "8b83357a-f5df-4734-a5e4-18f540f0eff7" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.27110.04", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.4.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11931" - ], - "x-ms-request-id": [ - "59230c9f-a9e6-4c2b-9d2b-2dffe0b1c9fa" - ], - "x-ms-correlation-request-id": [ - "59230c9f-a9e6-4c2b-9d2b-2dffe0b1c9fa" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20200325T091323Z:59230c9f-a9e6-4c2b-9d2b-2dffe0b1c9fa" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 25 Mar 2020 09:13:22 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "779" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Resources/deployments/ps7102\",\r\n \"name\": \"ps7102\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key2\": \"value2\",\r\n \"key1\": \"value1\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps2757\"\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-03-25T09:13:17.7308814Z\",\r\n \"duration\": \"PT6.5779187S\",\r\n \"correlationId\": \"d739b9ad-582a-4653-8eaf-c9d0298ba601\",\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/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourcegroups/ps6304/providers/Microsoft.Resources/deployments/ps7102?api-version=2019-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjlmMTM4YTEtMWQ2NC00MTA4LTg0MTMtOWVhM2JlMWMxYjJkL3Jlc291cmNlZ3JvdXBzL3BzNjMwNC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMDI/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "278ddf8d-e5d8-480f-b849-84afdab5e58a" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.27110.04", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.4.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11929" - ], - "x-ms-request-id": [ - "0ce7734a-c5f2-4d59-918f-1a086809dfe6" - ], - "x-ms-correlation-request-id": [ - "0ce7734a-c5f2-4d59-918f-1a086809dfe6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20200325T091324Z:0ce7734a-c5f2-4d59-918f-1a086809dfe6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 25 Mar 2020 09:13:23 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "779" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Resources/deployments/ps7102\",\r\n \"name\": \"ps7102\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key2\": \"value2\",\r\n \"key1\": \"value1\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps2757\"\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-03-25T09:13:17.7308814Z\",\r\n \"duration\": \"PT6.5779187S\",\r\n \"correlationId\": \"d739b9ad-582a-4653-8eaf-c9d0298ba601\",\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/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourcegroups/ps6304/providers/Microsoft.Resources/deployments/ps7102?api-version=2019-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjlmMTM4YTEtMWQ2NC00MTA4LTg0MTMtOWVhM2JlMWMxYjJkL3Jlc291cmNlZ3JvdXBzL3BzNjMwNC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMDI/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "2a9aaf47-16ea-445a-81cc-6e7087dcb470" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.27110.04", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.4.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11927" - ], - "x-ms-request-id": [ - "ad5739b3-de2d-4315-9763-3f5763411060" - ], - "x-ms-correlation-request-id": [ - "ad5739b3-de2d-4315-9763-3f5763411060" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20200325T091324Z:ad5739b3-de2d-4315-9763-3f5763411060" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 25 Mar 2020 09:13:23 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "779" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Resources/deployments/ps7102\",\r\n \"name\": \"ps7102\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key2\": \"value2\",\r\n \"key1\": \"value1\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps2757\"\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-03-25T09:13:17.7308814Z\",\r\n \"duration\": \"PT6.5779187S\",\r\n \"correlationId\": \"d739b9ad-582a-4653-8eaf-c9d0298ba601\",\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/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourcegroups/ps6304/providers/Microsoft.Resources/deployments/ps7102?api-version=2019-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjlmMTM4YTEtMWQ2NC00MTA4LTg0MTMtOWVhM2JlMWMxYjJkL3Jlc291cmNlZ3JvdXBzL3BzNjMwNC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMDI/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "4fed11c9-4f60-415f-9d8d-79146de1ea5b" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.27110.04", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.4.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11925" - ], - "x-ms-request-id": [ - "cb0ddb8a-4a1e-487a-8cf7-8b7ee61dceb2" - ], - "x-ms-correlation-request-id": [ - "cb0ddb8a-4a1e-487a-8cf7-8b7ee61dceb2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20200325T091324Z:cb0ddb8a-4a1e-487a-8cf7-8b7ee61dceb2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 25 Mar 2020 09:13:23 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "779" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Resources/deployments/ps7102\",\r\n \"name\": \"ps7102\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key2\": \"value2\",\r\n \"key1\": \"value1\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps2757\"\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-03-25T09:13:17.7308814Z\",\r\n \"duration\": \"PT6.5779187S\",\r\n \"correlationId\": \"d739b9ad-582a-4653-8eaf-c9d0298ba601\",\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/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourcegroups/ps6304/providers/Microsoft.Resources/deployments/ps7102?api-version=2019-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjlmMTM4YTEtMWQ2NC00MTA4LTg0MTMtOWVhM2JlMWMxYjJkL3Jlc291cmNlZ3JvdXBzL3BzNjMwNC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMDI/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "2f47ad89-406f-4e99-a048-6616b73c48ae" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.27110.04", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.4.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11923" - ], - "x-ms-request-id": [ - "bc201202-ec6b-402f-ae81-1d582ba50751" - ], - "x-ms-correlation-request-id": [ - "bc201202-ec6b-402f-ae81-1d582ba50751" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20200325T091325Z:bc201202-ec6b-402f-ae81-1d582ba50751" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 25 Mar 2020 09:13:24 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "779" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Resources/deployments/ps7102\",\r\n \"name\": \"ps7102\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key2\": \"value2\",\r\n \"key1\": \"value1\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps2757\"\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-03-25T09:13:17.7308814Z\",\r\n \"duration\": \"PT6.5779187S\",\r\n \"correlationId\": \"d739b9ad-582a-4653-8eaf-c9d0298ba601\",\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/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourcegroups/ps6304/providers/Microsoft.Resources/deployments/ps7102?api-version=2019-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjlmMTM4YTEtMWQ2NC00MTA4LTg0MTMtOWVhM2JlMWMxYjJkL3Jlc291cmNlZ3JvdXBzL3BzNjMwNC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMDI/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "eabb8e8e-9ead-409f-9b96-577117859751" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.27110.04", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.4.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11921" - ], - "x-ms-request-id": [ - "40167dcf-ec83-479c-8a53-49eee72625ce" - ], - "x-ms-correlation-request-id": [ - "40167dcf-ec83-479c-8a53-49eee72625ce" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20200325T091325Z:40167dcf-ec83-479c-8a53-49eee72625ce" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 25 Mar 2020 09:13:24 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "779" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Resources/deployments/ps7102\",\r\n \"name\": \"ps7102\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key2\": \"value2\",\r\n \"key1\": \"value1\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps2757\"\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-03-25T09:13:17.7308814Z\",\r\n \"duration\": \"PT6.5779187S\",\r\n \"correlationId\": \"d739b9ad-582a-4653-8eaf-c9d0298ba601\",\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/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourcegroups/ps6304/providers/Microsoft.Resources/deployments/ps7102?api-version=2019-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjlmMTM4YTEtMWQ2NC00MTA4LTg0MTMtOWVhM2JlMWMxYjJkL3Jlc291cmNlZ3JvdXBzL3BzNjMwNC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMDI/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "5feb709b-be62-44d4-86ce-b432192425a9" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.27110.04", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.4.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11919" - ], - "x-ms-request-id": [ - "a469684f-4cbf-4d89-9708-3b3a2bafa7b4" - ], - "x-ms-correlation-request-id": [ - "a469684f-4cbf-4d89-9708-3b3a2bafa7b4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20200325T091325Z:a469684f-4cbf-4d89-9708-3b3a2bafa7b4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 25 Mar 2020 09:13:24 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "779" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Resources/deployments/ps7102\",\r\n \"name\": \"ps7102\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key2\": \"value2\",\r\n \"key1\": \"value1\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps2757\"\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-03-25T09:13:17.7308814Z\",\r\n \"duration\": \"PT6.5779187S\",\r\n \"correlationId\": \"d739b9ad-582a-4653-8eaf-c9d0298ba601\",\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/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourcegroups/ps6304/providers/Microsoft.Resources/deployments/ps7102?api-version=2019-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjlmMTM4YTEtMWQ2NC00MTA4LTg0MTMtOWVhM2JlMWMxYjJkL3Jlc291cmNlZ3JvdXBzL3BzNjMwNC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMDI/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "06ec80e0-ca08-43b5-8fc1-f670df9373a7" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.27110.04", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.4.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11917" - ], - "x-ms-request-id": [ - "0725f149-9313-4319-aa93-edf363ea8daa" - ], - "x-ms-correlation-request-id": [ - "0725f149-9313-4319-aa93-edf363ea8daa" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20200325T091326Z:0725f149-9313-4319-aa93-edf363ea8daa" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 25 Mar 2020 09:13:25 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "779" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Resources/deployments/ps7102\",\r\n \"name\": \"ps7102\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key2\": \"value2\",\r\n \"key1\": \"value1\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps2757\"\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-03-25T09:13:17.7308814Z\",\r\n \"duration\": \"PT6.5779187S\",\r\n \"correlationId\": \"d739b9ad-582a-4653-8eaf-c9d0298ba601\",\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/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourcegroups/ps6304/providers/Microsoft.Resources/deployments/ps7102?api-version=2019-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjlmMTM4YTEtMWQ2NC00MTA4LTg0MTMtOWVhM2JlMWMxYjJkL3Jlc291cmNlZ3JvdXBzL3BzNjMwNC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMDI/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "2c5285af-4714-44aa-a677-89457c0dfe85" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.27110.04", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.4.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11915" - ], - "x-ms-request-id": [ - "4a333010-71dc-4598-9733-49da271cc200" - ], - "x-ms-correlation-request-id": [ - "4a333010-71dc-4598-9733-49da271cc200" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20200325T091326Z:4a333010-71dc-4598-9733-49da271cc200" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 25 Mar 2020 09:13:25 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "779" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Resources/deployments/ps7102\",\r\n \"name\": \"ps7102\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key2\": \"value2\",\r\n \"key1\": \"value1\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps2757\"\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-03-25T09:13:17.7308814Z\",\r\n \"duration\": \"PT6.5779187S\",\r\n \"correlationId\": \"d739b9ad-582a-4653-8eaf-c9d0298ba601\",\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/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourcegroups/ps6304/providers/Microsoft.Resources/deployments/ps7102?api-version=2019-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjlmMTM4YTEtMWQ2NC00MTA4LTg0MTMtOWVhM2JlMWMxYjJkL3Jlc291cmNlZ3JvdXBzL3BzNjMwNC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMDI/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "aaf200a8-283f-47fd-9a5a-7d002c53f6fa" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.27110.04", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.4.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11913" - ], - "x-ms-request-id": [ - "740d3e90-c3df-4432-8c8c-53ae3636cc4b" - ], - "x-ms-correlation-request-id": [ - "740d3e90-c3df-4432-8c8c-53ae3636cc4b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20200325T091326Z:740d3e90-c3df-4432-8c8c-53ae3636cc4b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 25 Mar 2020 09:13:25 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "779" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Resources/deployments/ps7102\",\r\n \"name\": \"ps7102\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key2\": \"value2\",\r\n \"key1\": \"value1\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps2757\"\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-03-25T09:13:17.7308814Z\",\r\n \"duration\": \"PT6.5779187S\",\r\n \"correlationId\": \"d739b9ad-582a-4653-8eaf-c9d0298ba601\",\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/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourcegroups/ps6304/providers/Microsoft.Resources/deployments/ps7102?api-version=2019-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjlmMTM4YTEtMWQ2NC00MTA4LTg0MTMtOWVhM2JlMWMxYjJkL3Jlc291cmNlZ3JvdXBzL3BzNjMwNC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMDI/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "94fdf8a6-df1d-41e3-83b7-132474532ad4" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.27110.04", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.4.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11911" - ], - "x-ms-request-id": [ - "ee17cd4f-a665-47e7-854a-28564f27c64c" - ], - "x-ms-correlation-request-id": [ - "ee17cd4f-a665-47e7-854a-28564f27c64c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20200325T091326Z:ee17cd4f-a665-47e7-854a-28564f27c64c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 25 Mar 2020 09:13:25 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "779" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Resources/deployments/ps7102\",\r\n \"name\": \"ps7102\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key2\": \"value2\",\r\n \"key1\": \"value1\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps2757\"\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-03-25T09:13:17.7308814Z\",\r\n \"duration\": \"PT6.5779187S\",\r\n \"correlationId\": \"d739b9ad-582a-4653-8eaf-c9d0298ba601\",\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/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourcegroups/ps6304/providers/Microsoft.Resources/deployments/ps7102?api-version=2019-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjlmMTM4YTEtMWQ2NC00MTA4LTg0MTMtOWVhM2JlMWMxYjJkL3Jlc291cmNlZ3JvdXBzL3BzNjMwNC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMDI/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "ef97616b-6a55-408b-a66a-d0ae52f632b1" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.27110.04", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.4.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11909" - ], - "x-ms-request-id": [ - "c51b425b-aeee-4143-a758-96689662c401" - ], - "x-ms-correlation-request-id": [ - "c51b425b-aeee-4143-a758-96689662c401" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20200325T091327Z:c51b425b-aeee-4143-a758-96689662c401" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 25 Mar 2020 09:13:26 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "779" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Resources/deployments/ps7102\",\r\n \"name\": \"ps7102\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key2\": \"value2\",\r\n \"key1\": \"value1\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps2757\"\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-03-25T09:13:17.7308814Z\",\r\n \"duration\": \"PT6.5779187S\",\r\n \"correlationId\": \"d739b9ad-582a-4653-8eaf-c9d0298ba601\",\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/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourcegroups/ps6304/providers/Microsoft.Resources/deployments/ps7102?api-version=2019-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjlmMTM4YTEtMWQ2NC00MTA4LTg0MTMtOWVhM2JlMWMxYjJkL3Jlc291cmNlZ3JvdXBzL3BzNjMwNC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMDI/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "a6835010-e73d-4a4b-9b3a-285e903a1f78" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.27110.04", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.4.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11907" - ], - "x-ms-request-id": [ - "6313f0e0-f3ea-408b-a36a-f78defe84f80" - ], - "x-ms-correlation-request-id": [ - "6313f0e0-f3ea-408b-a36a-f78defe84f80" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20200325T091327Z:6313f0e0-f3ea-408b-a36a-f78defe84f80" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 25 Mar 2020 09:13:26 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "779" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Resources/deployments/ps7102\",\r\n \"name\": \"ps7102\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key2\": \"value2\",\r\n \"key1\": \"value1\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps2757\"\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-03-25T09:13:17.7308814Z\",\r\n \"duration\": \"PT6.5779187S\",\r\n \"correlationId\": \"d739b9ad-582a-4653-8eaf-c9d0298ba601\",\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/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourcegroups/ps6304/providers/Microsoft.Resources/deployments/ps7102?api-version=2019-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjlmMTM4YTEtMWQ2NC00MTA4LTg0MTMtOWVhM2JlMWMxYjJkL3Jlc291cmNlZ3JvdXBzL3BzNjMwNC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMDI/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "21dfff12-26a8-44f8-a5bc-eab0f8b72b1d" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.27110.04", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.4.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11905" - ], - "x-ms-request-id": [ - "06e69d51-364b-4b06-bbe3-321db50dca94" - ], - "x-ms-correlation-request-id": [ - "06e69d51-364b-4b06-bbe3-321db50dca94" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20200325T091327Z:06e69d51-364b-4b06-bbe3-321db50dca94" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 25 Mar 2020 09:13:27 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "779" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Resources/deployments/ps7102\",\r\n \"name\": \"ps7102\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key2\": \"value2\",\r\n \"key1\": \"value1\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps2757\"\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-03-25T09:13:17.7308814Z\",\r\n \"duration\": \"PT6.5779187S\",\r\n \"correlationId\": \"d739b9ad-582a-4653-8eaf-c9d0298ba601\",\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/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourcegroups/ps6304/providers/Microsoft.Resources/deployments/ps7102?api-version=2019-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjlmMTM4YTEtMWQ2NC00MTA4LTg0MTMtOWVhM2JlMWMxYjJkL3Jlc291cmNlZ3JvdXBzL3BzNjMwNC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMDI/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "a1f74bd3-06f7-45a9-b39e-8c1e2d421678" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.27110.04", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.4.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11903" - ], - "x-ms-request-id": [ - "aae5d773-a1d7-4aa1-9e84-49c7645445f4" - ], - "x-ms-correlation-request-id": [ - "aae5d773-a1d7-4aa1-9e84-49c7645445f4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20200325T091328Z:aae5d773-a1d7-4aa1-9e84-49c7645445f4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 25 Mar 2020 09:13:27 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "779" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Resources/deployments/ps7102\",\r\n \"name\": \"ps7102\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key2\": \"value2\",\r\n \"key1\": \"value1\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps2757\"\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-03-25T09:13:17.7308814Z\",\r\n \"duration\": \"PT6.5779187S\",\r\n \"correlationId\": \"d739b9ad-582a-4653-8eaf-c9d0298ba601\",\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/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourcegroups/ps6304/providers/Microsoft.Resources/deployments/ps7102?api-version=2019-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjlmMTM4YTEtMWQ2NC00MTA4LTg0MTMtOWVhM2JlMWMxYjJkL3Jlc291cmNlZ3JvdXBzL3BzNjMwNC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMDI/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "29e3678a-6eb7-4459-90f5-33e86dec69f2" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.27110.04", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.4.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11901" - ], - "x-ms-request-id": [ - "ffd8628b-25fa-4669-b9bc-f41612a17e85" - ], - "x-ms-correlation-request-id": [ - "ffd8628b-25fa-4669-b9bc-f41612a17e85" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20200325T091328Z:ffd8628b-25fa-4669-b9bc-f41612a17e85" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 25 Mar 2020 09:13:27 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "779" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Resources/deployments/ps7102\",\r\n \"name\": \"ps7102\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key2\": \"value2\",\r\n \"key1\": \"value1\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps2757\"\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-03-25T09:13:17.7308814Z\",\r\n \"duration\": \"PT6.5779187S\",\r\n \"correlationId\": \"d739b9ad-582a-4653-8eaf-c9d0298ba601\",\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/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourcegroups/ps6304/providers/Microsoft.Resources/deployments/ps7102?api-version=2019-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjlmMTM4YTEtMWQ2NC00MTA4LTg0MTMtOWVhM2JlMWMxYjJkL3Jlc291cmNlZ3JvdXBzL3BzNjMwNC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMDI/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "4a0b83ce-b5e8-4e10-a5c8-1875eaf81141" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.27110.04", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.4.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11899" - ], - "x-ms-request-id": [ - "bc0518d6-b172-43f3-b6c3-84df5afd04f0" - ], - "x-ms-correlation-request-id": [ - "bc0518d6-b172-43f3-b6c3-84df5afd04f0" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20200325T091328Z:bc0518d6-b172-43f3-b6c3-84df5afd04f0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 25 Mar 2020 09:13:28 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "779" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Resources/deployments/ps7102\",\r\n \"name\": \"ps7102\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key2\": \"value2\",\r\n \"key1\": \"value1\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps2757\"\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-03-25T09:13:17.7308814Z\",\r\n \"duration\": \"PT6.5779187S\",\r\n \"correlationId\": \"d739b9ad-582a-4653-8eaf-c9d0298ba601\",\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/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourcegroups/ps6304/providers/Microsoft.Resources/deployments/ps7102?api-version=2019-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjlmMTM4YTEtMWQ2NC00MTA4LTg0MTMtOWVhM2JlMWMxYjJkL3Jlc291cmNlZ3JvdXBzL3BzNjMwNC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMDI/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "1ae97ccb-0948-4dc0-af08-0d29c46493e1" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.27110.04", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.4.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11897" - ], - "x-ms-request-id": [ - "0f38a615-e25a-4425-b191-71679c5d8068" - ], - "x-ms-correlation-request-id": [ - "0f38a615-e25a-4425-b191-71679c5d8068" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20200325T091329Z:0f38a615-e25a-4425-b191-71679c5d8068" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 25 Mar 2020 09:13:28 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "779" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Resources/deployments/ps7102\",\r\n \"name\": \"ps7102\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key2\": \"value2\",\r\n \"key1\": \"value1\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps2757\"\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-03-25T09:13:17.7308814Z\",\r\n \"duration\": \"PT6.5779187S\",\r\n \"correlationId\": \"d739b9ad-582a-4653-8eaf-c9d0298ba601\",\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/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourcegroups/ps6304/providers/Microsoft.Resources/deployments/ps7102?api-version=2019-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjlmMTM4YTEtMWQ2NC00MTA4LTg0MTMtOWVhM2JlMWMxYjJkL3Jlc291cmNlZ3JvdXBzL3BzNjMwNC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMDI/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "2eb09e84-f90f-4a9a-a6d4-8fa8303328f1" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.27110.04", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.4.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11895" - ], - "x-ms-request-id": [ - "bdeada03-0bbf-4292-a9a4-1627e6b36b07" - ], - "x-ms-correlation-request-id": [ - "bdeada03-0bbf-4292-a9a4-1627e6b36b07" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20200325T091329Z:bdeada03-0bbf-4292-a9a4-1627e6b36b07" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 25 Mar 2020 09:13:28 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "779" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Resources/deployments/ps7102\",\r\n \"name\": \"ps7102\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key2\": \"value2\",\r\n \"key1\": \"value1\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps2757\"\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-03-25T09:13:17.7308814Z\",\r\n \"duration\": \"PT6.5779187S\",\r\n \"correlationId\": \"d739b9ad-582a-4653-8eaf-c9d0298ba601\",\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/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourcegroups/ps6304/providers/Microsoft.Resources/deployments/ps7102?api-version=2019-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjlmMTM4YTEtMWQ2NC00MTA4LTg0MTMtOWVhM2JlMWMxYjJkL3Jlc291cmNlZ3JvdXBzL3BzNjMwNC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMDI/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "f270821d-477d-4138-8f07-fc9ec6f0e860" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.27110.04", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.4.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11893" - ], - "x-ms-request-id": [ - "63ef46f0-afbf-4f3d-8027-102250842571" - ], - "x-ms-correlation-request-id": [ - "63ef46f0-afbf-4f3d-8027-102250842571" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20200325T091330Z:63ef46f0-afbf-4f3d-8027-102250842571" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 25 Mar 2020 09:13:29 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "779" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Resources/deployments/ps7102\",\r\n \"name\": \"ps7102\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key2\": \"value2\",\r\n \"key1\": \"value1\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps2757\"\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-03-25T09:13:17.7308814Z\",\r\n \"duration\": \"PT6.5779187S\",\r\n \"correlationId\": \"d739b9ad-582a-4653-8eaf-c9d0298ba601\",\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/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourcegroups/ps6304/providers/Microsoft.Resources/deployments/ps7102?api-version=2019-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjlmMTM4YTEtMWQ2NC00MTA4LTg0MTMtOWVhM2JlMWMxYjJkL3Jlc291cmNlZ3JvdXBzL3BzNjMwNC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMDI/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "13795ad3-f641-4426-ba9c-991f8ac794de" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.27110.04", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.4.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11891" - ], - "x-ms-request-id": [ - "c4a3a656-0240-4de4-b961-896f9563dd87" - ], - "x-ms-correlation-request-id": [ - "c4a3a656-0240-4de4-b961-896f9563dd87" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20200325T091330Z:c4a3a656-0240-4de4-b961-896f9563dd87" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 25 Mar 2020 09:13:29 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "779" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Resources/deployments/ps7102\",\r\n \"name\": \"ps7102\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key2\": \"value2\",\r\n \"key1\": \"value1\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps2757\"\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-03-25T09:13:17.7308814Z\",\r\n \"duration\": \"PT6.5779187S\",\r\n \"correlationId\": \"d739b9ad-582a-4653-8eaf-c9d0298ba601\",\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/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourcegroups/ps6304/providers/Microsoft.Resources/deployments/ps7102?api-version=2019-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjlmMTM4YTEtMWQ2NC00MTA4LTg0MTMtOWVhM2JlMWMxYjJkL3Jlc291cmNlZ3JvdXBzL3BzNjMwNC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMDI/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "08a1b903-75af-4fe4-94ef-2c609e163925" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.27110.04", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.4.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11889" - ], - "x-ms-request-id": [ - "ee1cfa32-426e-4b06-a35f-6431aa78190c" - ], - "x-ms-correlation-request-id": [ - "ee1cfa32-426e-4b06-a35f-6431aa78190c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20200325T091330Z:ee1cfa32-426e-4b06-a35f-6431aa78190c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 25 Mar 2020 09:13:29 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "779" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Resources/deployments/ps7102\",\r\n \"name\": \"ps7102\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key2\": \"value2\",\r\n \"key1\": \"value1\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps2757\"\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-03-25T09:13:17.7308814Z\",\r\n \"duration\": \"PT6.5779187S\",\r\n \"correlationId\": \"d739b9ad-582a-4653-8eaf-c9d0298ba601\",\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/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourcegroups/ps6304/providers/Microsoft.Resources/deployments/ps7102?api-version=2019-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjlmMTM4YTEtMWQ2NC00MTA4LTg0MTMtOWVhM2JlMWMxYjJkL3Jlc291cmNlZ3JvdXBzL3BzNjMwNC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMDI/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "71bc5bae-a280-4327-b177-aa02d5c87370" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.27110.04", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.4.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11887" - ], - "x-ms-request-id": [ - "a724a2b9-b8bc-42fe-baf4-68ff7db1a177" - ], - "x-ms-correlation-request-id": [ - "a724a2b9-b8bc-42fe-baf4-68ff7db1a177" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20200325T091330Z:a724a2b9-b8bc-42fe-baf4-68ff7db1a177" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 25 Mar 2020 09:13:30 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "779" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Resources/deployments/ps7102\",\r\n \"name\": \"ps7102\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key2\": \"value2\",\r\n \"key1\": \"value1\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps2757\"\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-03-25T09:13:17.7308814Z\",\r\n \"duration\": \"PT6.5779187S\",\r\n \"correlationId\": \"d739b9ad-582a-4653-8eaf-c9d0298ba601\",\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/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourcegroups/ps6304/providers/Microsoft.Resources/deployments/ps7102?api-version=2019-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjlmMTM4YTEtMWQ2NC00MTA4LTg0MTMtOWVhM2JlMWMxYjJkL3Jlc291cmNlZ3JvdXBzL3BzNjMwNC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMDI/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "18250419-a055-4065-8255-14e40c81f9b6" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.27110.04", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.4.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11885" - ], - "x-ms-request-id": [ - "5be792f1-807d-445a-800f-ded5feb84ead" - ], - "x-ms-correlation-request-id": [ - "5be792f1-807d-445a-800f-ded5feb84ead" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20200325T091331Z:5be792f1-807d-445a-800f-ded5feb84ead" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 25 Mar 2020 09:13:30 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "779" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Resources/deployments/ps7102\",\r\n \"name\": \"ps7102\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key2\": \"value2\",\r\n \"key1\": \"value1\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps2757\"\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-03-25T09:13:17.7308814Z\",\r\n \"duration\": \"PT6.5779187S\",\r\n \"correlationId\": \"d739b9ad-582a-4653-8eaf-c9d0298ba601\",\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/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourcegroups/ps6304/providers/Microsoft.Resources/deployments/ps7102?api-version=2019-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjlmMTM4YTEtMWQ2NC00MTA4LTg0MTMtOWVhM2JlMWMxYjJkL3Jlc291cmNlZ3JvdXBzL3BzNjMwNC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMDI/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "6d965a93-1325-4e5c-8caa-bebdcbdd0e24" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.27110.04", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.4.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11883" - ], - "x-ms-request-id": [ - "39bf34d7-4b5f-4c70-bd8f-21060e1ecf3d" - ], - "x-ms-correlation-request-id": [ - "39bf34d7-4b5f-4c70-bd8f-21060e1ecf3d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20200325T091331Z:39bf34d7-4b5f-4c70-bd8f-21060e1ecf3d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 25 Mar 2020 09:13:30 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "779" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Resources/deployments/ps7102\",\r\n \"name\": \"ps7102\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key2\": \"value2\",\r\n \"key1\": \"value1\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps2757\"\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-03-25T09:13:17.7308814Z\",\r\n \"duration\": \"PT6.5779187S\",\r\n \"correlationId\": \"d739b9ad-582a-4653-8eaf-c9d0298ba601\",\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/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourcegroups/ps6304/providers/Microsoft.Resources/deployments/ps7102?api-version=2019-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjlmMTM4YTEtMWQ2NC00MTA4LTg0MTMtOWVhM2JlMWMxYjJkL3Jlc291cmNlZ3JvdXBzL3BzNjMwNC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMDI/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "2fab689f-6e9d-422b-9e0b-4c56c06bdd96" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.27110.04", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.4.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11881" - ], - "x-ms-request-id": [ - "75e8d8ae-0db8-4788-9e5e-78b251d7f4e0" - ], - "x-ms-correlation-request-id": [ - "75e8d8ae-0db8-4788-9e5e-78b251d7f4e0" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20200325T091331Z:75e8d8ae-0db8-4788-9e5e-78b251d7f4e0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 25 Mar 2020 09:13:30 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "779" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Resources/deployments/ps7102\",\r\n \"name\": \"ps7102\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key2\": \"value2\",\r\n \"key1\": \"value1\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps2757\"\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-03-25T09:13:17.7308814Z\",\r\n \"duration\": \"PT6.5779187S\",\r\n \"correlationId\": \"d739b9ad-582a-4653-8eaf-c9d0298ba601\",\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/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourcegroups/ps6304/providers/Microsoft.Resources/deployments/ps7102?api-version=2019-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjlmMTM4YTEtMWQ2NC00MTA4LTg0MTMtOWVhM2JlMWMxYjJkL3Jlc291cmNlZ3JvdXBzL3BzNjMwNC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMDI/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "a403cfe7-9f5f-4aac-b2b2-f0efd5e798d4" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.27110.04", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.4.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11879" - ], - "x-ms-request-id": [ - "4e144223-3cd6-40a9-bade-339e7472dc00" - ], - "x-ms-correlation-request-id": [ - "4e144223-3cd6-40a9-bade-339e7472dc00" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20200325T091332Z:4e144223-3cd6-40a9-bade-339e7472dc00" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 25 Mar 2020 09:13:31 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "779" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Resources/deployments/ps7102\",\r\n \"name\": \"ps7102\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key2\": \"value2\",\r\n \"key1\": \"value1\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps2757\"\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-03-25T09:13:17.7308814Z\",\r\n \"duration\": \"PT6.5779187S\",\r\n \"correlationId\": \"d739b9ad-582a-4653-8eaf-c9d0298ba601\",\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/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourcegroups/ps6304/providers/Microsoft.Resources/deployments/ps7102?api-version=2019-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjlmMTM4YTEtMWQ2NC00MTA4LTg0MTMtOWVhM2JlMWMxYjJkL3Jlc291cmNlZ3JvdXBzL3BzNjMwNC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMDI/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "ce00fc80-f988-40a8-91d9-2910df1ae8de" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.27110.04", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.4.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11877" - ], - "x-ms-request-id": [ - "42ce175c-f849-46eb-96c1-015354fc9b82" - ], - "x-ms-correlation-request-id": [ - "42ce175c-f849-46eb-96c1-015354fc9b82" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20200325T091332Z:42ce175c-f849-46eb-96c1-015354fc9b82" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 25 Mar 2020 09:13:31 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "779" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Resources/deployments/ps7102\",\r\n \"name\": \"ps7102\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key2\": \"value2\",\r\n \"key1\": \"value1\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps2757\"\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-03-25T09:13:17.7308814Z\",\r\n \"duration\": \"PT6.5779187S\",\r\n \"correlationId\": \"d739b9ad-582a-4653-8eaf-c9d0298ba601\",\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/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourcegroups/ps6304/providers/Microsoft.Resources/deployments/ps7102?api-version=2019-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjlmMTM4YTEtMWQ2NC00MTA4LTg0MTMtOWVhM2JlMWMxYjJkL3Jlc291cmNlZ3JvdXBzL3BzNjMwNC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMDI/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "b915ca54-4bb1-4f90-ac72-693f538efadb" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.27110.04", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.4.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11875" - ], - "x-ms-request-id": [ - "adabe672-eaac-473c-9d81-fb6cd5ea6cb4" - ], - "x-ms-correlation-request-id": [ - "adabe672-eaac-473c-9d81-fb6cd5ea6cb4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20200325T091332Z:adabe672-eaac-473c-9d81-fb6cd5ea6cb4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 25 Mar 2020 09:13:31 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "779" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Resources/deployments/ps7102\",\r\n \"name\": \"ps7102\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key2\": \"value2\",\r\n \"key1\": \"value1\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps2757\"\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-03-25T09:13:17.7308814Z\",\r\n \"duration\": \"PT6.5779187S\",\r\n \"correlationId\": \"d739b9ad-582a-4653-8eaf-c9d0298ba601\",\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/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourcegroups/ps6304/providers/Microsoft.Resources/deployments/ps7102?api-version=2019-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjlmMTM4YTEtMWQ2NC00MTA4LTg0MTMtOWVhM2JlMWMxYjJkL3Jlc291cmNlZ3JvdXBzL3BzNjMwNC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMDI/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "9630504f-5b05-439a-bd96-9b192ed102e4" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.27110.04", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.4.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11873" - ], - "x-ms-request-id": [ - "02738dfc-e2e1-4b5b-9a1b-1cdc99f9de38" - ], - "x-ms-correlation-request-id": [ - "02738dfc-e2e1-4b5b-9a1b-1cdc99f9de38" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20200325T091332Z:02738dfc-e2e1-4b5b-9a1b-1cdc99f9de38" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 25 Mar 2020 09:13:31 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "779" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Resources/deployments/ps7102\",\r\n \"name\": \"ps7102\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key2\": \"value2\",\r\n \"key1\": \"value1\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps2757\"\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-03-25T09:13:17.7308814Z\",\r\n \"duration\": \"PT6.5779187S\",\r\n \"correlationId\": \"d739b9ad-582a-4653-8eaf-c9d0298ba601\",\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/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourcegroups/ps6304/providers/Microsoft.Resources/deployments/ps7102?api-version=2019-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjlmMTM4YTEtMWQ2NC00MTA4LTg0MTMtOWVhM2JlMWMxYjJkL3Jlc291cmNlZ3JvdXBzL3BzNjMwNC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMDI/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "959e04b6-54a1-4253-aa69-e7c97e140262" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.27110.04", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.4.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11871" - ], - "x-ms-request-id": [ - "1e033a88-00d2-4bfb-8427-f651a45b3de1" - ], - "x-ms-correlation-request-id": [ - "1e033a88-00d2-4bfb-8427-f651a45b3de1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20200325T091333Z:1e033a88-00d2-4bfb-8427-f651a45b3de1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 25 Mar 2020 09:13:32 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "779" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Resources/deployments/ps7102\",\r\n \"name\": \"ps7102\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key2\": \"value2\",\r\n \"key1\": \"value1\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps2757\"\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-03-25T09:13:17.7308814Z\",\r\n \"duration\": \"PT6.5779187S\",\r\n \"correlationId\": \"d739b9ad-582a-4653-8eaf-c9d0298ba601\",\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/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourcegroups/ps6304/providers/Microsoft.Resources/deployments/ps7102?api-version=2019-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjlmMTM4YTEtMWQ2NC00MTA4LTg0MTMtOWVhM2JlMWMxYjJkL3Jlc291cmNlZ3JvdXBzL3BzNjMwNC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMDI/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "9122068b-e87d-4eea-9e5e-ac0ec07810d9" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.27110.04", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.4.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11869" - ], - "x-ms-request-id": [ - "035943c4-0a38-45c0-86e9-d09279264a60" - ], - "x-ms-correlation-request-id": [ - "035943c4-0a38-45c0-86e9-d09279264a60" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20200325T091333Z:035943c4-0a38-45c0-86e9-d09279264a60" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 25 Mar 2020 09:13:32 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "779" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Resources/deployments/ps7102\",\r\n \"name\": \"ps7102\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key2\": \"value2\",\r\n \"key1\": \"value1\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps2757\"\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-03-25T09:13:17.7308814Z\",\r\n \"duration\": \"PT6.5779187S\",\r\n \"correlationId\": \"d739b9ad-582a-4653-8eaf-c9d0298ba601\",\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/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourcegroups/ps6304/providers/Microsoft.Resources/deployments/ps7102?api-version=2019-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjlmMTM4YTEtMWQ2NC00MTA4LTg0MTMtOWVhM2JlMWMxYjJkL3Jlc291cmNlZ3JvdXBzL3BzNjMwNC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMDI/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "3b47bb18-dff3-46ee-9cb3-a1f304799357" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.27110.04", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.4.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11867" - ], - "x-ms-request-id": [ - "6d897308-810f-42d2-8367-db65f7eabe9f" - ], - "x-ms-correlation-request-id": [ - "6d897308-810f-42d2-8367-db65f7eabe9f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20200325T091333Z:6d897308-810f-42d2-8367-db65f7eabe9f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 25 Mar 2020 09:13:32 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "779" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Resources/deployments/ps7102\",\r\n \"name\": \"ps7102\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key2\": \"value2\",\r\n \"key1\": \"value1\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps2757\"\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-03-25T09:13:17.7308814Z\",\r\n \"duration\": \"PT6.5779187S\",\r\n \"correlationId\": \"d739b9ad-582a-4653-8eaf-c9d0298ba601\",\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/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourcegroups/ps6304/providers/Microsoft.Resources/deployments/ps7102?api-version=2019-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjlmMTM4YTEtMWQ2NC00MTA4LTg0MTMtOWVhM2JlMWMxYjJkL3Jlc291cmNlZ3JvdXBzL3BzNjMwNC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMDI/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "82281c1a-7a99-4725-879d-e0723f54941c" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.27110.04", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.4.0.0" + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0" ] }, "ResponseHeaders": { @@ -10320,16 +6099,16 @@ "0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11865" + "11933" ], "x-ms-request-id": [ - "3ede1d45-6ec6-4bb3-b589-a3d7cca56dc3" + "5c650251-b2c9-4ee0-a7ca-050a5af01833" ], "x-ms-correlation-request-id": [ - "3ede1d45-6ec6-4bb3-b589-a3d7cca56dc3" + "5c650251-b2c9-4ee0-a7ca-050a5af01833" ], "x-ms-routing-request-id": [ - "WESTUS2:20200325T091334Z:3ede1d45-6ec6-4bb3-b589-a3d7cca56dc3" + "NORTHCENTRALUS:20200612T213929Z:5c650251-b2c9-4ee0-a7ca-050a5af01833" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -10338,7 +6117,7 @@ "nosniff" ], "Date": [ - "Wed, 25 Mar 2020 09:13:33 GMT" + "Fri, 12 Jun 2020 21:39:29 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -10347,29 +6126,29 @@ "-1" ], "Content-Length": [ - "779" + "777" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Resources/deployments/ps7102\",\r\n \"name\": \"ps7102\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key2\": \"value2\",\r\n \"key1\": \"value1\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps2757\"\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-03-25T09:13:17.7308814Z\",\r\n \"duration\": \"PT6.5779187S\",\r\n \"correlationId\": \"d739b9ad-582a-4653-8eaf-c9d0298ba601\",\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/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/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourcegroups/ps6304/providers/Microsoft.Resources/deployments/ps7102?api-version=2019-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjlmMTM4YTEtMWQ2NC00MTA4LTg0MTMtOWVhM2JlMWMxYjJkL3Jlc291cmNlZ3JvdXBzL3BzNjMwNC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMDI/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==", + "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": [ - "68862290-69c3-4b4b-a91c-878ee0f5f203" + "69e94366-7a60-44e5-b804-e12969dd3909" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27110.04", + "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.4.0.0" + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0" ] }, "ResponseHeaders": { @@ -10383,16 +6162,16 @@ "0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11863" + "11931" ], "x-ms-request-id": [ - "b833cf86-df39-4d7e-b16b-be4fa7de6af1" + "0f962d8b-cb4e-4f97-8c23-9680042175e0" ], "x-ms-correlation-request-id": [ - "b833cf86-df39-4d7e-b16b-be4fa7de6af1" + "0f962d8b-cb4e-4f97-8c23-9680042175e0" ], "x-ms-routing-request-id": [ - "WESTUS2:20200325T091334Z:b833cf86-df39-4d7e-b16b-be4fa7de6af1" + "NORTHCENTRALUS:20200612T213930Z:0f962d8b-cb4e-4f97-8c23-9680042175e0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -10401,7 +6180,7 @@ "nosniff" ], "Date": [ - "Wed, 25 Mar 2020 09:13:33 GMT" + "Fri, 12 Jun 2020 21:39:29 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -10410,29 +6189,29 @@ "-1" ], "Content-Length": [ - "779" + "777" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Resources/deployments/ps7102\",\r\n \"name\": \"ps7102\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key2\": \"value2\",\r\n \"key1\": \"value1\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps2757\"\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-03-25T09:13:17.7308814Z\",\r\n \"duration\": \"PT6.5779187S\",\r\n \"correlationId\": \"d739b9ad-582a-4653-8eaf-c9d0298ba601\",\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/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/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourcegroups/ps6304/providers/Microsoft.Resources/deployments/ps7102?api-version=2019-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjlmMTM4YTEtMWQ2NC00MTA4LTg0MTMtOWVhM2JlMWMxYjJkL3Jlc291cmNlZ3JvdXBzL3BzNjMwNC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMDI/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==", + "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": [ - "435ec72b-8647-43c6-85ec-f71023329645" + "0814d369-b064-45ed-81a8-e4b00d0c5622" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27110.04", + "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.4.0.0" + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0" ] }, "ResponseHeaders": { @@ -10446,16 +6225,16 @@ "0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11861" + "11929" ], "x-ms-request-id": [ - "8aa1fbf1-d2d6-400d-acf7-f07f521ab77f" + "2468ebbc-0910-41dc-a137-028f9f709c18" ], "x-ms-correlation-request-id": [ - "8aa1fbf1-d2d6-400d-acf7-f07f521ab77f" + "2468ebbc-0910-41dc-a137-028f9f709c18" ], "x-ms-routing-request-id": [ - "WESTUS2:20200325T091334Z:8aa1fbf1-d2d6-400d-acf7-f07f521ab77f" + "NORTHCENTRALUS:20200612T213930Z:2468ebbc-0910-41dc-a137-028f9f709c18" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -10464,7 +6243,7 @@ "nosniff" ], "Date": [ - "Wed, 25 Mar 2020 09:13:33 GMT" + "Fri, 12 Jun 2020 21:39:29 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -10473,29 +6252,29 @@ "-1" ], "Content-Length": [ - "779" + "777" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Resources/deployments/ps7102\",\r\n \"name\": \"ps7102\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key2\": \"value2\",\r\n \"key1\": \"value1\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps2757\"\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-03-25T09:13:17.7308814Z\",\r\n \"duration\": \"PT6.5779187S\",\r\n \"correlationId\": \"d739b9ad-582a-4653-8eaf-c9d0298ba601\",\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/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/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourcegroups/ps6304/providers/Microsoft.Resources/deployments/ps7102?api-version=2019-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjlmMTM4YTEtMWQ2NC00MTA4LTg0MTMtOWVhM2JlMWMxYjJkL3Jlc291cmNlZ3JvdXBzL3BzNjMwNC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMDI/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==", + "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": [ - "1068314c-cc1d-4f60-9a44-97a5419618ec" + "55d1c925-39e0-46ad-bd7a-7717c0399952" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27110.04", + "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.4.0.0" + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0" ] }, "ResponseHeaders": { @@ -10509,16 +6288,16 @@ "0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11859" + "11927" ], "x-ms-request-id": [ - "1748efc2-5c93-40b5-87f9-ad16fe572561" + "25bb27fc-58e7-4ce3-80b5-ed85749fc26f" ], "x-ms-correlation-request-id": [ - "1748efc2-5c93-40b5-87f9-ad16fe572561" + "25bb27fc-58e7-4ce3-80b5-ed85749fc26f" ], "x-ms-routing-request-id": [ - "WESTUS2:20200325T091335Z:1748efc2-5c93-40b5-87f9-ad16fe572561" + "NORTHCENTRALUS:20200612T213930Z:25bb27fc-58e7-4ce3-80b5-ed85749fc26f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -10527,7 +6306,7 @@ "nosniff" ], "Date": [ - "Wed, 25 Mar 2020 09:13:34 GMT" + "Fri, 12 Jun 2020 21:39:30 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -10536,29 +6315,29 @@ "-1" ], "Content-Length": [ - "779" + "777" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Resources/deployments/ps7102\",\r\n \"name\": \"ps7102\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key2\": \"value2\",\r\n \"key1\": \"value1\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps2757\"\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-03-25T09:13:17.7308814Z\",\r\n \"duration\": \"PT6.5779187S\",\r\n \"correlationId\": \"d739b9ad-582a-4653-8eaf-c9d0298ba601\",\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/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/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourcegroups/ps6304/providers/Microsoft.Resources/deployments/ps7102?api-version=2019-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjlmMTM4YTEtMWQ2NC00MTA4LTg0MTMtOWVhM2JlMWMxYjJkL3Jlc291cmNlZ3JvdXBzL3BzNjMwNC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMDI/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==", + "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": [ - "c5026634-32f7-4a64-8a9c-276a02c20aee" + "4b13227a-07eb-4c10-a7eb-919cf48e1efe" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27110.04", + "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.4.0.0" + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0" ] }, "ResponseHeaders": { @@ -10572,16 +6351,16 @@ "0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11857" + "11925" ], "x-ms-request-id": [ - "cebd189c-86eb-4de1-9408-517845ca3cfd" + "b5206b1e-ff42-4a0f-9056-62758646d25d" ], "x-ms-correlation-request-id": [ - "cebd189c-86eb-4de1-9408-517845ca3cfd" + "b5206b1e-ff42-4a0f-9056-62758646d25d" ], "x-ms-routing-request-id": [ - "WESTUS2:20200325T091335Z:cebd189c-86eb-4de1-9408-517845ca3cfd" + "NORTHCENTRALUS:20200612T213931Z:b5206b1e-ff42-4a0f-9056-62758646d25d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -10590,7 +6369,7 @@ "nosniff" ], "Date": [ - "Wed, 25 Mar 2020 09:13:34 GMT" + "Fri, 12 Jun 2020 21:39:30 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -10599,29 +6378,29 @@ "-1" ], "Content-Length": [ - "779" + "777" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Resources/deployments/ps7102\",\r\n \"name\": \"ps7102\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key2\": \"value2\",\r\n \"key1\": \"value1\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps2757\"\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-03-25T09:13:17.7308814Z\",\r\n \"duration\": \"PT6.5779187S\",\r\n \"correlationId\": \"d739b9ad-582a-4653-8eaf-c9d0298ba601\",\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/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/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourcegroups/ps6304/providers/Microsoft.Resources/deployments/ps7102?api-version=2019-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjlmMTM4YTEtMWQ2NC00MTA4LTg0MTMtOWVhM2JlMWMxYjJkL3Jlc291cmNlZ3JvdXBzL3BzNjMwNC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMDI/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==", + "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": [ - "fc9ade77-85fa-4ddc-8e3c-0fb8fb10cb12" + "13c0dd9e-12ae-4756-a717-16d682e2e67a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27110.04", + "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.4.0.0" + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0" ] }, "ResponseHeaders": { @@ -10635,16 +6414,16 @@ "0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11855" + "11923" ], "x-ms-request-id": [ - "e7dd9457-2c4c-47b4-859f-ebbc86dc6565" + "0d784a15-8b7b-4e18-9eb3-656b42fea42c" ], "x-ms-correlation-request-id": [ - "e7dd9457-2c4c-47b4-859f-ebbc86dc6565" + "0d784a15-8b7b-4e18-9eb3-656b42fea42c" ], "x-ms-routing-request-id": [ - "WESTUS2:20200325T091336Z:e7dd9457-2c4c-47b4-859f-ebbc86dc6565" + "NORTHCENTRALUS:20200612T213931Z:0d784a15-8b7b-4e18-9eb3-656b42fea42c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -10653,7 +6432,7 @@ "nosniff" ], "Date": [ - "Wed, 25 Mar 2020 09:13:35 GMT" + "Fri, 12 Jun 2020 21:39:31 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -10662,29 +6441,29 @@ "-1" ], "Content-Length": [ - "779" + "777" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Resources/deployments/ps7102\",\r\n \"name\": \"ps7102\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key2\": \"value2\",\r\n \"key1\": \"value1\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps2757\"\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-03-25T09:13:17.7308814Z\",\r\n \"duration\": \"PT6.5779187S\",\r\n \"correlationId\": \"d739b9ad-582a-4653-8eaf-c9d0298ba601\",\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/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/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourcegroups/ps6304/providers/Microsoft.Resources/deployments/ps7102?api-version=2019-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjlmMTM4YTEtMWQ2NC00MTA4LTg0MTMtOWVhM2JlMWMxYjJkL3Jlc291cmNlZ3JvdXBzL3BzNjMwNC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMDI/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==", + "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": [ - "fcef06bc-469a-42d2-becf-64bc0eb76a64" + "bdffd3a1-eca7-4e2b-9317-6bf5708b5194" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27110.04", + "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.4.0.0" + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0" ] }, "ResponseHeaders": { @@ -10698,16 +6477,16 @@ "0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11853" + "11921" ], "x-ms-request-id": [ - "c7d94d94-7af7-4d5e-85d1-61f9370211a8" + "f0bff221-4a27-45aa-8ec3-e18c507af7ec" ], "x-ms-correlation-request-id": [ - "c7d94d94-7af7-4d5e-85d1-61f9370211a8" + "f0bff221-4a27-45aa-8ec3-e18c507af7ec" ], "x-ms-routing-request-id": [ - "WESTUS2:20200325T091336Z:c7d94d94-7af7-4d5e-85d1-61f9370211a8" + "NORTHCENTRALUS:20200612T213932Z:f0bff221-4a27-45aa-8ec3-e18c507af7ec" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -10716,7 +6495,7 @@ "nosniff" ], "Date": [ - "Wed, 25 Mar 2020 09:13:35 GMT" + "Fri, 12 Jun 2020 21:39:31 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -10725,29 +6504,29 @@ "-1" ], "Content-Length": [ - "779" + "777" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Resources/deployments/ps7102\",\r\n \"name\": \"ps7102\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key2\": \"value2\",\r\n \"key1\": \"value1\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps2757\"\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-03-25T09:13:17.7308814Z\",\r\n \"duration\": \"PT6.5779187S\",\r\n \"correlationId\": \"d739b9ad-582a-4653-8eaf-c9d0298ba601\",\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/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/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourcegroups/ps6304/providers/Microsoft.Resources/deployments/ps7102?api-version=2019-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjlmMTM4YTEtMWQ2NC00MTA4LTg0MTMtOWVhM2JlMWMxYjJkL3Jlc291cmNlZ3JvdXBzL3BzNjMwNC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMDI/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==", + "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": [ - "8059dacb-9110-4028-a79c-020f9298509b" + "88e23036-90fd-4e19-a97c-8c19838744d8" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27110.04", + "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.4.0.0" + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0" ] }, "ResponseHeaders": { @@ -10761,16 +6540,16 @@ "0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11851" + "11919" ], "x-ms-request-id": [ - "0cdaa73a-9530-4e28-bd01-9b82bee18378" + "6bd5c09b-f73a-460a-aa4d-be674fd31c3f" ], "x-ms-correlation-request-id": [ - "0cdaa73a-9530-4e28-bd01-9b82bee18378" + "6bd5c09b-f73a-460a-aa4d-be674fd31c3f" ], "x-ms-routing-request-id": [ - "WESTUS2:20200325T091336Z:0cdaa73a-9530-4e28-bd01-9b82bee18378" + "NORTHCENTRALUS:20200612T213932Z:6bd5c09b-f73a-460a-aa4d-be674fd31c3f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -10779,7 +6558,7 @@ "nosniff" ], "Date": [ - "Wed, 25 Mar 2020 09:13:35 GMT" + "Fri, 12 Jun 2020 21:39:31 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -10788,29 +6567,29 @@ "-1" ], "Content-Length": [ - "779" + "777" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Resources/deployments/ps7102\",\r\n \"name\": \"ps7102\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key2\": \"value2\",\r\n \"key1\": \"value1\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps2757\"\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-03-25T09:13:17.7308814Z\",\r\n \"duration\": \"PT6.5779187S\",\r\n \"correlationId\": \"d739b9ad-582a-4653-8eaf-c9d0298ba601\",\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/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/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourcegroups/ps6304/providers/Microsoft.Resources/deployments/ps7102?api-version=2019-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjlmMTM4YTEtMWQ2NC00MTA4LTg0MTMtOWVhM2JlMWMxYjJkL3Jlc291cmNlZ3JvdXBzL3BzNjMwNC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMDI/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==", + "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": [ - "521e1bb5-b31d-4d97-aaaa-a61ade2d7b33" + "3e9bba71-214c-44ea-8147-dc29d342619c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27110.04", + "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.4.0.0" + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0" ] }, "ResponseHeaders": { @@ -10824,16 +6603,16 @@ "0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11849" + "11917" ], "x-ms-request-id": [ - "96cc433a-5c3b-4bc2-95f9-fec487735643" + "dde485d2-bcac-4baa-b09a-e96a0ab38c59" ], "x-ms-correlation-request-id": [ - "96cc433a-5c3b-4bc2-95f9-fec487735643" + "dde485d2-bcac-4baa-b09a-e96a0ab38c59" ], "x-ms-routing-request-id": [ - "WESTUS2:20200325T091336Z:96cc433a-5c3b-4bc2-95f9-fec487735643" + "NORTHCENTRALUS:20200612T213932Z:dde485d2-bcac-4baa-b09a-e96a0ab38c59" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -10842,7 +6621,7 @@ "nosniff" ], "Date": [ - "Wed, 25 Mar 2020 09:13:35 GMT" + "Fri, 12 Jun 2020 21:39:32 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -10851,29 +6630,29 @@ "-1" ], "Content-Length": [ - "779" + "777" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Resources/deployments/ps7102\",\r\n \"name\": \"ps7102\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key2\": \"value2\",\r\n \"key1\": \"value1\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps2757\"\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-03-25T09:13:17.7308814Z\",\r\n \"duration\": \"PT6.5779187S\",\r\n \"correlationId\": \"d739b9ad-582a-4653-8eaf-c9d0298ba601\",\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/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/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourcegroups/ps6304/providers/Microsoft.Resources/deployments/ps7102?api-version=2019-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjlmMTM4YTEtMWQ2NC00MTA4LTg0MTMtOWVhM2JlMWMxYjJkL3Jlc291cmNlZ3JvdXBzL3BzNjMwNC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMDI/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==", + "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": [ - "e3233d94-6a54-433a-806c-132f7a2f5793" + "2df3aa57-93df-4a99-87ac-bf32564bcc55" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27110.04", + "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.4.0.0" + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0" ] }, "ResponseHeaders": { @@ -10887,16 +6666,16 @@ "0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11847" + "11915" ], "x-ms-request-id": [ - "a2de26ab-092d-4e90-b936-5ad11c52950b" + "8a8ba819-97b9-442e-b14a-9b6faf330191" ], "x-ms-correlation-request-id": [ - "a2de26ab-092d-4e90-b936-5ad11c52950b" + "8a8ba819-97b9-442e-b14a-9b6faf330191" ], "x-ms-routing-request-id": [ - "WESTUS2:20200325T091337Z:a2de26ab-092d-4e90-b936-5ad11c52950b" + "NORTHCENTRALUS:20200612T213933Z:8a8ba819-97b9-442e-b14a-9b6faf330191" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -10905,7 +6684,7 @@ "nosniff" ], "Date": [ - "Wed, 25 Mar 2020 09:13:36 GMT" + "Fri, 12 Jun 2020 21:39:32 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -10914,29 +6693,29 @@ "-1" ], "Content-Length": [ - "779" + "777" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Resources/deployments/ps7102\",\r\n \"name\": \"ps7102\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key2\": \"value2\",\r\n \"key1\": \"value1\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps2757\"\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-03-25T09:13:17.7308814Z\",\r\n \"duration\": \"PT6.5779187S\",\r\n \"correlationId\": \"d739b9ad-582a-4653-8eaf-c9d0298ba601\",\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/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/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourcegroups/ps6304/providers/Microsoft.Resources/deployments/ps7102?api-version=2019-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjlmMTM4YTEtMWQ2NC00MTA4LTg0MTMtOWVhM2JlMWMxYjJkL3Jlc291cmNlZ3JvdXBzL3BzNjMwNC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMDI/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==", + "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": [ - "2e0cbc6d-e151-4a49-b80e-5e3fd06c866a" + "faf3b0e2-463f-478b-9ed8-0e34fcdcdd63" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27110.04", + "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.4.0.0" + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0" ] }, "ResponseHeaders": { @@ -10950,16 +6729,16 @@ "0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11845" + "11913" ], "x-ms-request-id": [ - "69a924a7-6497-4d0c-9d05-9c19200232ba" + "670c581c-d575-4e23-8dee-c40554af463c" ], "x-ms-correlation-request-id": [ - "69a924a7-6497-4d0c-9d05-9c19200232ba" + "670c581c-d575-4e23-8dee-c40554af463c" ], "x-ms-routing-request-id": [ - "WESTUS2:20200325T091337Z:69a924a7-6497-4d0c-9d05-9c19200232ba" + "NORTHCENTRALUS:20200612T213933Z:670c581c-d575-4e23-8dee-c40554af463c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -10968,7 +6747,7 @@ "nosniff" ], "Date": [ - "Wed, 25 Mar 2020 09:13:36 GMT" + "Fri, 12 Jun 2020 21:39:33 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -10977,29 +6756,29 @@ "-1" ], "Content-Length": [ - "779" + "777" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Resources/deployments/ps7102\",\r\n \"name\": \"ps7102\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key2\": \"value2\",\r\n \"key1\": \"value1\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps2757\"\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-03-25T09:13:17.7308814Z\",\r\n \"duration\": \"PT6.5779187S\",\r\n \"correlationId\": \"d739b9ad-582a-4653-8eaf-c9d0298ba601\",\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/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/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourcegroups/ps6304/providers/Microsoft.Resources/deployments/ps7102?api-version=2019-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjlmMTM4YTEtMWQ2NC00MTA4LTg0MTMtOWVhM2JlMWMxYjJkL3Jlc291cmNlZ3JvdXBzL3BzNjMwNC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMDI/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==", + "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": [ - "bd31fd12-1f48-4ee4-a82e-7930f174001c" + "b27db740-c29e-4032-a4a0-3edff0bfde5b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27110.04", + "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.4.0.0" + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0" ] }, "ResponseHeaders": { @@ -11013,16 +6792,16 @@ "0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11843" + "11911" ], "x-ms-request-id": [ - "1aa3e2b9-c7b1-47b0-8814-47be552da658" + "f8604586-c5fb-46dd-949c-5f9d5decbef3" ], "x-ms-correlation-request-id": [ - "1aa3e2b9-c7b1-47b0-8814-47be552da658" + "f8604586-c5fb-46dd-949c-5f9d5decbef3" ], "x-ms-routing-request-id": [ - "WESTUS2:20200325T091337Z:1aa3e2b9-c7b1-47b0-8814-47be552da658" + "NORTHCENTRALUS:20200612T213934Z:f8604586-c5fb-46dd-949c-5f9d5decbef3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -11031,7 +6810,7 @@ "nosniff" ], "Date": [ - "Wed, 25 Mar 2020 09:13:36 GMT" + "Fri, 12 Jun 2020 21:39:33 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -11040,29 +6819,29 @@ "-1" ], "Content-Length": [ - "779" + "777" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Resources/deployments/ps7102\",\r\n \"name\": \"ps7102\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key2\": \"value2\",\r\n \"key1\": \"value1\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps2757\"\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-03-25T09:13:17.7308814Z\",\r\n \"duration\": \"PT6.5779187S\",\r\n \"correlationId\": \"d739b9ad-582a-4653-8eaf-c9d0298ba601\",\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/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/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourcegroups/ps6304/providers/Microsoft.Resources/deployments/ps7102?api-version=2019-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjlmMTM4YTEtMWQ2NC00MTA4LTg0MTMtOWVhM2JlMWMxYjJkL3Jlc291cmNlZ3JvdXBzL3BzNjMwNC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMDI/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==", + "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": [ - "2b7eeda0-d104-4670-8219-01d048664d25" + "d61a3afc-eee9-45f1-afe2-21573538deed" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27110.04", + "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.4.0.0" + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0" ] }, "ResponseHeaders": { @@ -11076,16 +6855,16 @@ "0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11841" + "11909" ], "x-ms-request-id": [ - "4001bd29-73c6-4bc7-98a8-299331cbf80b" + "99f1a98a-d344-4df4-ae33-15ec1e8ae342" ], "x-ms-correlation-request-id": [ - "4001bd29-73c6-4bc7-98a8-299331cbf80b" + "99f1a98a-d344-4df4-ae33-15ec1e8ae342" ], "x-ms-routing-request-id": [ - "WESTUS2:20200325T091337Z:4001bd29-73c6-4bc7-98a8-299331cbf80b" + "NORTHCENTRALUS:20200612T213934Z:99f1a98a-d344-4df4-ae33-15ec1e8ae342" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -11094,7 +6873,7 @@ "nosniff" ], "Date": [ - "Wed, 25 Mar 2020 09:13:37 GMT" + "Fri, 12 Jun 2020 21:39:33 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -11103,29 +6882,29 @@ "-1" ], "Content-Length": [ - "779" + "777" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Resources/deployments/ps7102\",\r\n \"name\": \"ps7102\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key2\": \"value2\",\r\n \"key1\": \"value1\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps2757\"\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-03-25T09:13:17.7308814Z\",\r\n \"duration\": \"PT6.5779187S\",\r\n \"correlationId\": \"d739b9ad-582a-4653-8eaf-c9d0298ba601\",\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/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/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourcegroups/ps6304/providers/Microsoft.Resources/deployments/ps7102?api-version=2019-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjlmMTM4YTEtMWQ2NC00MTA4LTg0MTMtOWVhM2JlMWMxYjJkL3Jlc291cmNlZ3JvdXBzL3BzNjMwNC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMDI/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==", + "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": [ - "b2d6b32e-3c03-4c49-a005-6ab849bb374e" + "8e825a8e-216d-437c-8a88-c607a848f850" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27110.04", + "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.4.0.0" + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0" ] }, "ResponseHeaders": { @@ -11139,16 +6918,16 @@ "0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11839" + "11907" ], "x-ms-request-id": [ - "4b46c46c-faee-4a57-98df-026c65bfeefa" + "f13b752c-d1ef-4841-92d5-aa07b23428a6" ], "x-ms-correlation-request-id": [ - "4b46c46c-faee-4a57-98df-026c65bfeefa" + "f13b752c-d1ef-4841-92d5-aa07b23428a6" ], "x-ms-routing-request-id": [ - "WESTUS2:20200325T091338Z:4b46c46c-faee-4a57-98df-026c65bfeefa" + "NORTHCENTRALUS:20200612T213934Z:f13b752c-d1ef-4841-92d5-aa07b23428a6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -11157,7 +6936,7 @@ "nosniff" ], "Date": [ - "Wed, 25 Mar 2020 09:13:37 GMT" + "Fri, 12 Jun 2020 21:39:34 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -11166,29 +6945,29 @@ "-1" ], "Content-Length": [ - "779" + "777" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Resources/deployments/ps7102\",\r\n \"name\": \"ps7102\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key2\": \"value2\",\r\n \"key1\": \"value1\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps2757\"\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-03-25T09:13:17.7308814Z\",\r\n \"duration\": \"PT6.5779187S\",\r\n \"correlationId\": \"d739b9ad-582a-4653-8eaf-c9d0298ba601\",\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/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/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourcegroups/ps6304/providers/Microsoft.Resources/deployments/ps7102?api-version=2019-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjlmMTM4YTEtMWQ2NC00MTA4LTg0MTMtOWVhM2JlMWMxYjJkL3Jlc291cmNlZ3JvdXBzL3BzNjMwNC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMDI/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==", + "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": [ - "4f0ff487-c79f-4011-b7c9-3f634a33ebf4" + "20b859a6-c76e-41c8-840a-eed117c512bd" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27110.04", + "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.4.0.0" + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0" ] }, "ResponseHeaders": { @@ -11202,16 +6981,16 @@ "0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11837" + "11905" ], "x-ms-request-id": [ - "a21dd475-ec57-4132-bcdc-005dd5da396c" + "3823fa1d-51d5-4372-a37f-975efc5ec50b" ], "x-ms-correlation-request-id": [ - "a21dd475-ec57-4132-bcdc-005dd5da396c" + "3823fa1d-51d5-4372-a37f-975efc5ec50b" ], "x-ms-routing-request-id": [ - "WESTUS2:20200325T091338Z:a21dd475-ec57-4132-bcdc-005dd5da396c" + "NORTHCENTRALUS:20200612T213935Z:3823fa1d-51d5-4372-a37f-975efc5ec50b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -11220,7 +6999,7 @@ "nosniff" ], "Date": [ - "Wed, 25 Mar 2020 09:13:37 GMT" + "Fri, 12 Jun 2020 21:39:34 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -11229,29 +7008,29 @@ "-1" ], "Content-Length": [ - "779" + "777" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Resources/deployments/ps7102\",\r\n \"name\": \"ps7102\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key2\": \"value2\",\r\n \"key1\": \"value1\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps2757\"\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-03-25T09:13:17.7308814Z\",\r\n \"duration\": \"PT6.5779187S\",\r\n \"correlationId\": \"d739b9ad-582a-4653-8eaf-c9d0298ba601\",\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/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/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourcegroups/ps6304/providers/Microsoft.Resources/deployments/ps7102?api-version=2019-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjlmMTM4YTEtMWQ2NC00MTA4LTg0MTMtOWVhM2JlMWMxYjJkL3Jlc291cmNlZ3JvdXBzL3BzNjMwNC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMDI/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==", + "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": [ - "7571a37e-41af-497d-bdf5-1801c4efd171" + "3cc2e38e-549f-4a21-b5f9-3891cd03c88a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27110.04", + "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.4.0.0" + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0" ] }, "ResponseHeaders": { @@ -11265,16 +7044,16 @@ "0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11835" + "11903" ], "x-ms-request-id": [ - "1e558204-0765-4f8f-b0fb-71d11d219218" + "5c914576-8dee-4e67-bb9e-04046c541106" ], "x-ms-correlation-request-id": [ - "1e558204-0765-4f8f-b0fb-71d11d219218" + "5c914576-8dee-4e67-bb9e-04046c541106" ], "x-ms-routing-request-id": [ - "WESTUS2:20200325T091338Z:1e558204-0765-4f8f-b0fb-71d11d219218" + "NORTHCENTRALUS:20200612T213935Z:5c914576-8dee-4e67-bb9e-04046c541106" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -11283,7 +7062,7 @@ "nosniff" ], "Date": [ - "Wed, 25 Mar 2020 09:13:37 GMT" + "Fri, 12 Jun 2020 21:39:35 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -11292,29 +7071,29 @@ "-1" ], "Content-Length": [ - "779" + "777" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Resources/deployments/ps7102\",\r\n \"name\": \"ps7102\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key2\": \"value2\",\r\n \"key1\": \"value1\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps2757\"\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-03-25T09:13:17.7308814Z\",\r\n \"duration\": \"PT6.5779187S\",\r\n \"correlationId\": \"d739b9ad-582a-4653-8eaf-c9d0298ba601\",\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/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/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourcegroups/ps6304/providers/Microsoft.Resources/deployments/ps7102?api-version=2019-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjlmMTM4YTEtMWQ2NC00MTA4LTg0MTMtOWVhM2JlMWMxYjJkL3Jlc291cmNlZ3JvdXBzL3BzNjMwNC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMDI/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==", + "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": [ - "aed15cf7-6e4d-4d97-a587-8b4fc387454d" + "8342b9dd-b164-4c21-a7d3-b2a023912b35" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27110.04", + "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.4.0.0" + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0" ] }, "ResponseHeaders": { @@ -11328,16 +7107,16 @@ "0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11833" + "11901" ], "x-ms-request-id": [ - "67f9c396-1346-497e-8219-89ac2fe2b1a6" + "e16c8ba8-10db-47e7-84ca-72d73b5f91be" ], "x-ms-correlation-request-id": [ - "67f9c396-1346-497e-8219-89ac2fe2b1a6" + "e16c8ba8-10db-47e7-84ca-72d73b5f91be" ], "x-ms-routing-request-id": [ - "WESTUS2:20200325T091339Z:67f9c396-1346-497e-8219-89ac2fe2b1a6" + "NORTHCENTRALUS:20200612T213936Z:e16c8ba8-10db-47e7-84ca-72d73b5f91be" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -11346,7 +7125,7 @@ "nosniff" ], "Date": [ - "Wed, 25 Mar 2020 09:13:38 GMT" + "Fri, 12 Jun 2020 21:39:35 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -11355,29 +7134,29 @@ "-1" ], "Content-Length": [ - "779" + "777" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Resources/deployments/ps7102\",\r\n \"name\": \"ps7102\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key2\": \"value2\",\r\n \"key1\": \"value1\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps2757\"\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-03-25T09:13:17.7308814Z\",\r\n \"duration\": \"PT6.5779187S\",\r\n \"correlationId\": \"d739b9ad-582a-4653-8eaf-c9d0298ba601\",\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/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/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourcegroups/ps6304/providers/Microsoft.Resources/deployments/ps7102?api-version=2019-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjlmMTM4YTEtMWQ2NC00MTA4LTg0MTMtOWVhM2JlMWMxYjJkL3Jlc291cmNlZ3JvdXBzL3BzNjMwNC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMDI/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==", + "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": [ - "afa77798-80b9-4b7d-8746-5b2a08027ff1" + "8a235260-be5b-4ed5-8150-aa07014c9ddd" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27110.04", + "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.4.0.0" + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0" ] }, "ResponseHeaders": { @@ -11391,16 +7170,16 @@ "0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11831" + "11899" ], "x-ms-request-id": [ - "666707f6-236c-4936-aedf-a322d7b09039" + "d124eff3-a1be-43d3-a70e-a8eba168bc9c" ], "x-ms-correlation-request-id": [ - "666707f6-236c-4936-aedf-a322d7b09039" + "d124eff3-a1be-43d3-a70e-a8eba168bc9c" ], "x-ms-routing-request-id": [ - "WESTUS2:20200325T091339Z:666707f6-236c-4936-aedf-a322d7b09039" + "NORTHCENTRALUS:20200612T213936Z:d124eff3-a1be-43d3-a70e-a8eba168bc9c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -11409,7 +7188,7 @@ "nosniff" ], "Date": [ - "Wed, 25 Mar 2020 09:13:38 GMT" + "Fri, 12 Jun 2020 21:39:35 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -11418,29 +7197,29 @@ "-1" ], "Content-Length": [ - "779" + "777" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Resources/deployments/ps7102\",\r\n \"name\": \"ps7102\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key2\": \"value2\",\r\n \"key1\": \"value1\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps2757\"\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-03-25T09:13:17.7308814Z\",\r\n \"duration\": \"PT6.5779187S\",\r\n \"correlationId\": \"d739b9ad-582a-4653-8eaf-c9d0298ba601\",\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/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/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourcegroups/ps6304/providers/Microsoft.Resources/deployments/ps7102?api-version=2019-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjlmMTM4YTEtMWQ2NC00MTA4LTg0MTMtOWVhM2JlMWMxYjJkL3Jlc291cmNlZ3JvdXBzL3BzNjMwNC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMDI/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==", + "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": [ - "23156317-1c86-47d1-aef4-0de82ba6030d" + "1eba44ea-fc3e-4e72-af97-5be66202b52f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27110.04", + "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.4.0.0" + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0" ] }, "ResponseHeaders": { @@ -11454,16 +7233,16 @@ "0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11829" + "11897" ], "x-ms-request-id": [ - "0ba9c0df-66cf-40ba-8094-70decf2d9b17" + "44168905-52d9-4b0f-b9ab-cb6fa3102db3" ], "x-ms-correlation-request-id": [ - "0ba9c0df-66cf-40ba-8094-70decf2d9b17" + "44168905-52d9-4b0f-b9ab-cb6fa3102db3" ], "x-ms-routing-request-id": [ - "WESTUS2:20200325T091340Z:0ba9c0df-66cf-40ba-8094-70decf2d9b17" + "NORTHCENTRALUS:20200612T213936Z:44168905-52d9-4b0f-b9ab-cb6fa3102db3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -11472,7 +7251,7 @@ "nosniff" ], "Date": [ - "Wed, 25 Mar 2020 09:13:39 GMT" + "Fri, 12 Jun 2020 21:39:36 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -11481,29 +7260,29 @@ "-1" ], "Content-Length": [ - "779" + "777" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Resources/deployments/ps7102\",\r\n \"name\": \"ps7102\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key2\": \"value2\",\r\n \"key1\": \"value1\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps2757\"\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-03-25T09:13:17.7308814Z\",\r\n \"duration\": \"PT6.5779187S\",\r\n \"correlationId\": \"d739b9ad-582a-4653-8eaf-c9d0298ba601\",\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/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/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourcegroups/ps6304/providers/Microsoft.Resources/deployments/ps7102?api-version=2019-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjlmMTM4YTEtMWQ2NC00MTA4LTg0MTMtOWVhM2JlMWMxYjJkL3Jlc291cmNlZ3JvdXBzL3BzNjMwNC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMDI/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==", + "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": [ - "eba8c6ad-8b1d-4bcd-ba6f-61fd42d744bc" + "a5bfae9d-a3e9-4326-932d-9df7520286de" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27110.04", + "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.4.0.0" + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0" ] }, "ResponseHeaders": { @@ -11517,16 +7296,16 @@ "0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11827" + "11895" ], "x-ms-request-id": [ - "afb5b9de-baf9-4f7d-9760-36ecf57071c4" + "9341c1d3-e1f1-4b2b-8748-758d03794afe" ], "x-ms-correlation-request-id": [ - "afb5b9de-baf9-4f7d-9760-36ecf57071c4" + "9341c1d3-e1f1-4b2b-8748-758d03794afe" ], "x-ms-routing-request-id": [ - "WESTUS2:20200325T091340Z:afb5b9de-baf9-4f7d-9760-36ecf57071c4" + "NORTHCENTRALUS:20200612T213937Z:9341c1d3-e1f1-4b2b-8748-758d03794afe" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -11535,7 +7314,7 @@ "nosniff" ], "Date": [ - "Wed, 25 Mar 2020 09:13:39 GMT" + "Fri, 12 Jun 2020 21:39:36 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -11544,29 +7323,29 @@ "-1" ], "Content-Length": [ - "779" + "777" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Resources/deployments/ps7102\",\r\n \"name\": \"ps7102\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key2\": \"value2\",\r\n \"key1\": \"value1\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps2757\"\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-03-25T09:13:17.7308814Z\",\r\n \"duration\": \"PT6.5779187S\",\r\n \"correlationId\": \"d739b9ad-582a-4653-8eaf-c9d0298ba601\",\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/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/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourcegroups/ps6304/providers/Microsoft.Resources/deployments/ps7102?api-version=2019-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjlmMTM4YTEtMWQ2NC00MTA4LTg0MTMtOWVhM2JlMWMxYjJkL3Jlc291cmNlZ3JvdXBzL3BzNjMwNC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMDI/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==", + "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": [ - "9a47dd3a-3da3-434a-86fe-8127e3b8a757" + "8ad91374-a0c8-4f19-996b-c06c0607a8a5" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27110.04", + "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.4.0.0" + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0" ] }, "ResponseHeaders": { @@ -11580,16 +7359,16 @@ "0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11825" + "11893" ], "x-ms-request-id": [ - "0e0446c1-3a04-4922-95fa-41ced2ab7476" + "18eee524-5d16-4af5-941a-ae99dea3ff02" ], "x-ms-correlation-request-id": [ - "0e0446c1-3a04-4922-95fa-41ced2ab7476" + "18eee524-5d16-4af5-941a-ae99dea3ff02" ], "x-ms-routing-request-id": [ - "WESTUS2:20200325T091340Z:0e0446c1-3a04-4922-95fa-41ced2ab7476" + "NORTHCENTRALUS:20200612T213937Z:18eee524-5d16-4af5-941a-ae99dea3ff02" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -11598,7 +7377,7 @@ "nosniff" ], "Date": [ - "Wed, 25 Mar 2020 09:13:39 GMT" + "Fri, 12 Jun 2020 21:39:37 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -11607,29 +7386,29 @@ "-1" ], "Content-Length": [ - "779" + "777" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Resources/deployments/ps7102\",\r\n \"name\": \"ps7102\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key2\": \"value2\",\r\n \"key1\": \"value1\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps2757\"\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-03-25T09:13:17.7308814Z\",\r\n \"duration\": \"PT6.5779187S\",\r\n \"correlationId\": \"d739b9ad-582a-4653-8eaf-c9d0298ba601\",\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/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/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourcegroups/ps6304/providers/Microsoft.Resources/deployments/ps7102?api-version=2019-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjlmMTM4YTEtMWQ2NC00MTA4LTg0MTMtOWVhM2JlMWMxYjJkL3Jlc291cmNlZ3JvdXBzL3BzNjMwNC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMDI/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==", + "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": [ - "63094590-42f6-4ac0-bf57-53819a02ab03" + "878fb5fa-bb55-43f2-a473-396ef454110f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27110.04", + "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.4.0.0" + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0" ] }, "ResponseHeaders": { @@ -11643,16 +7422,16 @@ "0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11823" + "11891" ], "x-ms-request-id": [ - "5990b488-d363-4b0e-ba89-6cd7eeccbe2b" + "d9b1cd0d-0ae3-45f1-a0ac-522b4773c102" ], "x-ms-correlation-request-id": [ - "5990b488-d363-4b0e-ba89-6cd7eeccbe2b" + "d9b1cd0d-0ae3-45f1-a0ac-522b4773c102" ], "x-ms-routing-request-id": [ - "WESTUS2:20200325T091341Z:5990b488-d363-4b0e-ba89-6cd7eeccbe2b" + "NORTHCENTRALUS:20200612T213938Z:d9b1cd0d-0ae3-45f1-a0ac-522b4773c102" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -11661,7 +7440,7 @@ "nosniff" ], "Date": [ - "Wed, 25 Mar 2020 09:13:40 GMT" + "Fri, 12 Jun 2020 21:39:37 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -11670,29 +7449,29 @@ "-1" ], "Content-Length": [ - "779" + "777" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Resources/deployments/ps7102\",\r\n \"name\": \"ps7102\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key2\": \"value2\",\r\n \"key1\": \"value1\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps2757\"\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-03-25T09:13:17.7308814Z\",\r\n \"duration\": \"PT6.5779187S\",\r\n \"correlationId\": \"d739b9ad-582a-4653-8eaf-c9d0298ba601\",\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/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/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourcegroups/ps6304/providers/Microsoft.Resources/deployments/ps7102?api-version=2019-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjlmMTM4YTEtMWQ2NC00MTA4LTg0MTMtOWVhM2JlMWMxYjJkL3Jlc291cmNlZ3JvdXBzL3BzNjMwNC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMDI/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==", + "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": [ - "839b76f5-704c-4c83-8bb0-db6266928753" + "c0b03b2c-55fc-42cb-8971-d76e75fafb0b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27110.04", + "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.4.0.0" + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0" ] }, "ResponseHeaders": { @@ -11706,16 +7485,16 @@ "0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11821" + "11889" ], "x-ms-request-id": [ - "9cceeff5-e7d6-4220-a7cf-6df29c9935b0" + "7d33b3b0-1f85-44d7-bd13-b59a83b42eeb" ], "x-ms-correlation-request-id": [ - "9cceeff5-e7d6-4220-a7cf-6df29c9935b0" + "7d33b3b0-1f85-44d7-bd13-b59a83b42eeb" ], "x-ms-routing-request-id": [ - "WESTUS2:20200325T091341Z:9cceeff5-e7d6-4220-a7cf-6df29c9935b0" + "NORTHCENTRALUS:20200612T213938Z:7d33b3b0-1f85-44d7-bd13-b59a83b42eeb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -11724,7 +7503,7 @@ "nosniff" ], "Date": [ - "Wed, 25 Mar 2020 09:13:40 GMT" + "Fri, 12 Jun 2020 21:39:37 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -11733,29 +7512,29 @@ "-1" ], "Content-Length": [ - "779" + "777" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Resources/deployments/ps7102\",\r\n \"name\": \"ps7102\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key2\": \"value2\",\r\n \"key1\": \"value1\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps2757\"\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-03-25T09:13:17.7308814Z\",\r\n \"duration\": \"PT6.5779187S\",\r\n \"correlationId\": \"d739b9ad-582a-4653-8eaf-c9d0298ba601\",\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/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/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourcegroups/ps6304/providers/Microsoft.Resources/deployments/ps7102?api-version=2019-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjlmMTM4YTEtMWQ2NC00MTA4LTg0MTMtOWVhM2JlMWMxYjJkL3Jlc291cmNlZ3JvdXBzL3BzNjMwNC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMDI/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==", + "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": [ - "450a27e3-3b12-4600-8539-1d42d7a2440a" + "0a45435f-a9b5-4464-837d-809cf7c68576" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27110.04", + "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.4.0.0" + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0" ] }, "ResponseHeaders": { @@ -11769,16 +7548,16 @@ "0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11819" + "11887" ], "x-ms-request-id": [ - "969f91a0-31c2-4334-9b65-e1707ce065f2" + "5695a31e-ae69-4ffb-aa37-054ab953bafd" ], "x-ms-correlation-request-id": [ - "969f91a0-31c2-4334-9b65-e1707ce065f2" + "5695a31e-ae69-4ffb-aa37-054ab953bafd" ], "x-ms-routing-request-id": [ - "WESTUS2:20200325T091341Z:969f91a0-31c2-4334-9b65-e1707ce065f2" + "NORTHCENTRALUS:20200612T213939Z:5695a31e-ae69-4ffb-aa37-054ab953bafd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -11787,7 +7566,7 @@ "nosniff" ], "Date": [ - "Wed, 25 Mar 2020 09:13:40 GMT" + "Fri, 12 Jun 2020 21:39:38 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -11796,29 +7575,29 @@ "-1" ], "Content-Length": [ - "779" + "777" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Resources/deployments/ps7102\",\r\n \"name\": \"ps7102\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key2\": \"value2\",\r\n \"key1\": \"value1\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps2757\"\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-03-25T09:13:17.7308814Z\",\r\n \"duration\": \"PT6.5779187S\",\r\n \"correlationId\": \"d739b9ad-582a-4653-8eaf-c9d0298ba601\",\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/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/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourcegroups/ps6304/providers/Microsoft.Resources/deployments/ps7102?api-version=2019-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjlmMTM4YTEtMWQ2NC00MTA4LTg0MTMtOWVhM2JlMWMxYjJkL3Jlc291cmNlZ3JvdXBzL3BzNjMwNC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMDI/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==", + "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": [ - "14201826-2691-468b-b34d-24dc3e6744de" + "3181bcc6-9413-4264-8205-6a2cb1b549d9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27110.04", + "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.4.0.0" + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0" ] }, "ResponseHeaders": { @@ -11832,16 +7611,16 @@ "0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11817" + "11885" ], "x-ms-request-id": [ - "aacb05ed-8f6f-4355-9207-608cafa379a1" + "c5538c5e-ea47-43ad-8fa0-438b4849d414" ], "x-ms-correlation-request-id": [ - "aacb05ed-8f6f-4355-9207-608cafa379a1" + "c5538c5e-ea47-43ad-8fa0-438b4849d414" ], "x-ms-routing-request-id": [ - "WESTUS2:20200325T091341Z:aacb05ed-8f6f-4355-9207-608cafa379a1" + "NORTHCENTRALUS:20200612T213939Z:c5538c5e-ea47-43ad-8fa0-438b4849d414" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -11850,7 +7629,7 @@ "nosniff" ], "Date": [ - "Wed, 25 Mar 2020 09:13:40 GMT" + "Fri, 12 Jun 2020 21:39:38 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -11859,29 +7638,29 @@ "-1" ], "Content-Length": [ - "779" + "777" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Resources/deployments/ps7102\",\r\n \"name\": \"ps7102\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key2\": \"value2\",\r\n \"key1\": \"value1\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps2757\"\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-03-25T09:13:17.7308814Z\",\r\n \"duration\": \"PT6.5779187S\",\r\n \"correlationId\": \"d739b9ad-582a-4653-8eaf-c9d0298ba601\",\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/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/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourcegroups/ps6304/providers/Microsoft.Resources/deployments/ps7102?api-version=2019-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjlmMTM4YTEtMWQ2NC00MTA4LTg0MTMtOWVhM2JlMWMxYjJkL3Jlc291cmNlZ3JvdXBzL3BzNjMwNC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMDI/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==", + "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": [ - "a3f9b3e3-52ed-4e21-bd0a-4beac90d8ba6" + "da91e654-3322-439b-89ad-493a5f6f0856" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27110.04", + "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.4.0.0" + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0" ] }, "ResponseHeaders": { @@ -11892,16 +7671,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11815" + "11883" ], "x-ms-request-id": [ - "52726461-ecd9-41f4-ab76-bcf0fc7c9c5d" + "57d281ce-a48a-44d2-804b-351ea8cc6284" ], "x-ms-correlation-request-id": [ - "52726461-ecd9-41f4-ab76-bcf0fc7c9c5d" + "57d281ce-a48a-44d2-804b-351ea8cc6284" ], "x-ms-routing-request-id": [ - "WESTUS2:20200325T091342Z:52726461-ecd9-41f4-ab76-bcf0fc7c9c5d" + "NORTHCENTRALUS:20200612T213939Z:57d281ce-a48a-44d2-804b-351ea8cc6284" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -11910,7 +7689,7 @@ "nosniff" ], "Date": [ - "Wed, 25 Mar 2020 09:13:42 GMT" + "Fri, 12 Jun 2020 21:39:39 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -11919,93 +7698,32 @@ "-1" ], "Content-Length": [ - "1758" + "1757" ], "Retry-After": [ "0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Resources/deployments/ps7102\",\r\n \"name\": \"ps7102\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key2\": \"value2\",\r\n \"key1\": \"value1\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps2757\"\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-03-25T09:13:41.6088857Z\",\r\n \"duration\": \"PT30.455923S\",\r\n \"correlationId\": \"d739b9ad-582a-4653-8eaf-c9d0298ba601\",\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-03-25T09:13:17.2457033Z\"\r\n },\r\n \"blob\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-03-25T09:13:17.2457033Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2020-03-25T09:13:17.1832192Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://ps2757.blob.core.windows.net/\",\r\n \"queue\": \"https://ps2757.queue.core.windows.net/\",\r\n \"table\": \"https://ps2757.table.core.windows.net/\",\r\n \"file\": \"https://ps2757.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/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Storage/storageAccounts/ps2757\"\r\n }\r\n ]\r\n }\r\n}", + "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}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourcegroups/ps6304/providers/Microsoft.Resources/deployments/ps7102?api-version=2019-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjlmMTM4YTEtMWQ2NC00MTA4LTg0MTMtOWVhM2JlMWMxYjJkL3Jlc291cmNlZ3JvdXBzL3BzNjMwNC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMDI/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==", + "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": [ - "e28298aa-14fc-4868-a179-5d86212b0dfc" + "b7346469-5f08-42a5-b650-f6ba6c6ac471" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27110.04", + "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.4.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11814" - ], - "x-ms-request-id": [ - "e4e414b6-2045-4b63-a799-3a651b7aac65" - ], - "x-ms-correlation-request-id": [ - "e4e414b6-2045-4b63-a799-3a651b7aac65" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20200325T091342Z:e4e414b6-2045-4b63-a799-3a651b7aac65" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 25 Mar 2020 09:13:42 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "1758" - ], - "Retry-After": [ - "0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Resources/deployments/ps7102\",\r\n \"name\": \"ps7102\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key2\": \"value2\",\r\n \"key1\": \"value1\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps2757\"\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-03-25T09:13:41.6088857Z\",\r\n \"duration\": \"PT30.455923S\",\r\n \"correlationId\": \"d739b9ad-582a-4653-8eaf-c9d0298ba601\",\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-03-25T09:13:17.2457033Z\"\r\n },\r\n \"blob\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-03-25T09:13:17.2457033Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2020-03-25T09:13:17.1832192Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://ps2757.blob.core.windows.net/\",\r\n \"queue\": \"https://ps2757.queue.core.windows.net/\",\r\n \"table\": \"https://ps2757.table.core.windows.net/\",\r\n \"file\": \"https://ps2757.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/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Storage/storageAccounts/ps2757\"\r\n }\r\n ]\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/providers?api-version=2016-07-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjlmMTM4YTEtMWQ2NC00MTA4LTg0MTMtOWVhM2JlMWMxYjJkL3Byb3ZpZGVycz9hcGktdmVyc2lvbj0yMDE2LTA3LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "AzurePowershell/v1.0.0", - "PSVersion/v6.2.3" - ], - "ParameterSetName": [ - "__AllParameterSets" - ], - "CommandName": [ - "Save-AzResourceGroupDeploymentTemplate" + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0" ] }, "ResponseHeaders": { @@ -12016,16 +7734,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11882" ], "x-ms-request-id": [ - "4f82cecd-2e6b-4037-8e7b-f73f343d714c" + "4b4261f8-0772-4d8f-a641-1f6caab7a069" ], "x-ms-correlation-request-id": [ - "4f82cecd-2e6b-4037-8e7b-f73f343d714c" + "4b4261f8-0772-4d8f-a641-1f6caab7a069" ], "x-ms-routing-request-id": [ - "WESTUS2:20200325T091344Z:4f82cecd-2e6b-4037-8e7b-f73f343d714c" + "NORTHCENTRALUS:20200612T213940Z:4b4261f8-0772-4d8f-a641-1f6caab7a069" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -12034,7 +7752,7 @@ "nosniff" ], "Date": [ - "Wed, 25 Mar 2020 09:13:43 GMT" + "Fri, 12 Jun 2020 21:39:39 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -12043,36 +7761,32 @@ "-1" ], "Content-Length": [ - "742622" + "1757" ], "Retry-After": [ "0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/providers/Microsoft.AppConfiguration\",\r\n \"namespace\": \"Microsoft.AppConfiguration\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"35ffadb3-7fc1-497e-b61b-381d28e744cc\",\r\n \"roleDefinitionId\": \"fffa409e-a8cc-4cbf-8e1c-6d940b33040e\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"configurationStores\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01-preview\",\r\n \"2019-10-01\",\r\n \"2019-02-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"configurationStores/eventGridFilters\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01-preview\",\r\n \"2019-10-01\",\r\n \"2019-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01-preview\",\r\n \"2019-10-01\",\r\n \"2019-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01-preview\",\r\n \"2019-10-01\",\r\n \"2019-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationsStatus\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01-preview\",\r\n \"2019-10-01\",\r\n \"2019-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01-preview\",\r\n \"2019-10-01\",\r\n \"2019-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/providers/Microsoft.KeyVault\",\r\n \"namespace\": \"Microsoft.KeyVault\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"cfa8b339-82a2-471a-a3c9-0fc0be7a4093\",\r\n \"roleDefinitionId\": \"1cf9858a-28a2-4228-abba-94e606305b95\"\r\n },\r\n {\r\n \"applicationId\": \"589d5083-6f11-4d30-a62a-a4b316a14abf\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\",\r\n \"2015-06-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"vaults/secrets\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/accessPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\",\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deletedVaults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deletedVaults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/eventGridFilters\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n {\r\n \"applicationId\": \"7c33bfcb-8d33-48d6-8e60-dc6404003489\",\r\n \"roleDefinitionId\": \"ad6261e4-fa9a-4642-aa5f-104f1b67e9e3\"\r\n },\r\n {\r\n \"applicationId\": \"1e3e4475-288f-4018-a376-df66fd7fac5f\",\r\n \"roleDefinitionId\": \"1d538b69-3d87-4e56-8ff8-25786fd48261\"\r\n },\r\n {\r\n \"applicationId\": \"a0be0c72-870e-46f0-9c49-c98333a996f7\",\r\n \"roleDefinitionId\": \"7ce22727-ffce-45a9-930c-ddb2e56fa131\"\r\n },\r\n {\r\n \"applicationId\": \"486c78bf-a0f7-45f1-92fd-37215929e116\",\r\n \"roleDefinitionId\": \"98a9e526-0a60-4c1f-a33a-ae46e1f8dc0d\"\r\n },\r\n {\r\n \"applicationId\": \"19947cfd-0303-466c-ac3c-fcc19a7a1570\",\r\n \"roleDefinitionId\": \"d813ab6c-bfb7-413e-9462-005b21f0ce09\"\r\n },\r\n {\r\n \"applicationId\": \"341b7f3d-69b3-47f9-9ce7-5b7f4945fdbd\",\r\n \"roleDefinitionId\": \"8141843c-c51c-4c1e-a5bf-0d351594b86c\"\r\n },\r\n {\r\n \"applicationId\": \"328fd23b-de6e-462c-9433-e207470a5727\",\r\n \"roleDefinitionId\": \"79e29e06-4056-41e5-a6b2-959f1f47747e\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"natGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"privateEndpoints\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"privateEndpointRedirectMaps\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"applicationSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"serviceEndpointPolicies\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkIntentPolicies\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPPrefixes\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"ddosCustomPolicies\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers/connectionMonitors\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers/flowLogs\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers/pingMeshes\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGatewayWebApplicationFirewallPolicies\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/virtualNetworkAvailableEndpointServices\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/availableDelegations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/serviceTags\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/availablePrivateEndpointTypes\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/availableServiceAliases\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkPrivateLinkServiceVisibility\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/autoApprovedPrivateLinkServices\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/batchValidatePrivateEndpointsForResourceMove\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/batchNotifyPrivateEndpointsForResourceMove\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/supportedVirtualMachineSizes\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkAcceleratedNetworkingSupport\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/validateResourceOwnership\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/setResourceOwnership\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/effectiveResourceOwnership\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnsOperationResults\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnsOperationStatuses\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"getDnsResourceReference\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"internalNotify\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SOA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/NS\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/recordsets\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/all\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateDnsZones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2018-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"privateDnsZones/virtualNetworkLinks\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2018-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"privateDnsOperationResults\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateDnsOperationStatuses\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateDnsZonesInternal\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateDnsZones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateDnsZones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateDnsZones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateDnsZones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateDnsZones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateDnsZones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateDnsZones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateDnsZones/SOA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateDnsZones/all\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles/heatMaps\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficManagerUserMetricsKeys\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\",\r\n \"2018-04-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficManagerGeographicHierarchies\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-05-01\",\r\n \"2017-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGatewayAvailableWafRuleSets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGatewayAvailableSslOptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGatewayAvailableServerVariables\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGatewayAvailableRequestHeaders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGatewayAvailableResponseHeaders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"routeFilters\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"bgpServiceCommunities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualWans\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"vpnSites\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"vpnServerConfigurations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"virtualHubs\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"vpnGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"p2sVpnGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"firewallPolicies\",\r\n \"locations\": [\r\n \"UAE North\",\r\n \"Australia Central 2\",\r\n \"UAE Central\",\r\n \"Germany North\",\r\n \"Central India\",\r\n \"Korea South\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Japan West\",\r\n \"France South\",\r\n \"South Africa West\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"South India\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Norway West\",\r\n \"South Africa North\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"UK West\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Central\",\r\n \"Australia Southeast\",\r\n \"UK South\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"Canada Central\",\r\n \"France Central\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"ipGroups\",\r\n \"locations\": [\r\n \"UAE North\",\r\n \"Australia Central 2\",\r\n \"UAE Central\",\r\n \"Germany North\",\r\n \"Central India\",\r\n \"Korea South\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Japan West\",\r\n \"France South\",\r\n \"South Africa West\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"South India\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Norway West\",\r\n \"South Africa North\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"UK West\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Central\",\r\n \"Australia Southeast\",\r\n \"UK South\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"Canada Central\",\r\n \"France Central\",\r\n \"West Central US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/nfvOperations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/nfvOperationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"azureFirewalls\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"azureFirewallFqdnTags\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkTaps\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"privateLinkServices\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"ddosProtectionPlans\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"networkProfiles\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"frontdoorOperationResults\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2019-11-01\",\r\n \"2019-10-01\",\r\n \"2019-08-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkFrontdoorNameAvailability\",\r\n \"locations\": [\r\n \"global\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2019-08-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2018-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"frontdoors\",\r\n \"locations\": [\r\n \"global\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2019-08-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2018-08-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"frontdoorWebApplicationFirewallPolicies\",\r\n \"locations\": [\r\n \"global\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-10-01\",\r\n \"2019-03-01\",\r\n \"2018-08-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"frontdoorWebApplicationFirewallManagedRuleSets\",\r\n \"locations\": [\r\n \"global\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-10-01\",\r\n \"2019-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webApplicationFirewallPolicies\",\r\n \"locations\": [\r\n \"global\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2018-08-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkExperimentProfiles\",\r\n \"locations\": [\r\n \"global\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/bareMetalTenants\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"bastionHosts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"virtualRouters\",\r\n \"locations\": [\r\n \"UAE North\",\r\n \"Australia Central 2\",\r\n \"UAE Central\",\r\n \"Germany North\",\r\n \"Central India\",\r\n \"Korea South\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Japan West\",\r\n \"France South\",\r\n \"South Africa West\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"South India\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Norway West\",\r\n \"South Africa North\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"UK West\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Central\",\r\n \"Australia Southeast\",\r\n \"UK South\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"Canada Central\",\r\n \"France Central\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-12-01\",\r\n \"2019-11-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/providers/Microsoft.Compute\",\r\n \"namespace\": \"Microsoft.Compute\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"60e6cd67-9c8c-4951-9b3c-23c25a2169af\",\r\n \"roleDefinitionId\": \"e4770acb-272e-4dc8-87f3-12f44a612224\"\r\n },\r\n {\r\n \"applicationId\": \"a303894e-f1d8-4a37-bf10-67aa654a0596\",\r\n \"roleDefinitionId\": \"903ac751-8ad5-4e5a-bfc2-5e49f450a241\"\r\n },\r\n {\r\n \"applicationId\": \"a8b6bf88-1d1a-4626-b040-9a729ea93c65\",\r\n \"roleDefinitionId\": \"45c8267c-80ba-4b96-9a43-115b8f49fccd\"\r\n },\r\n {\r\n \"applicationId\": \"184909ca-69f1-4368-a6a7-c558ee6eb0bd\",\r\n \"roleDefinitionId\": \"45c8267c-80ba-4b96-9a43-115b8f49fccd\"\r\n },\r\n {\r\n \"applicationId\": \"5e5e43d4-54da-4211-86a4-c6e7f3715801\",\r\n \"roleDefinitionId\": \"ffcd6e5b-8772-457d-bb17-89703c03428f\"\r\n },\r\n {\r\n \"applicationId\": \"ce6ff14a-7fdc-4685-bbe0-f6afdfcfa8e0\",\r\n \"roleDefinitionId\": \"cb17cddc-dbac-4ae0-ae79-8db34eddfca0\"\r\n },\r\n {\r\n \"applicationId\": \"372140e0-b3b7-4226-8ef9-d57986796201\",\r\n \"roleDefinitionId\": \"cb17cddc-dbac-4ae0-ae79-8db34eddfca0\"\r\n },\r\n {\r\n \"applicationId\": \"b9a92e36-2cf8-4f4e-bcb3-9d99e00e14ab\",\r\n \"roleDefinitionId\": \"6efa92ca-56b6-40af-a468-5e3d2b5232f0\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/extensions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-10-30-preview\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/extensions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-10-30-preview\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/virtualMachines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-10-30-preview\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/networkInterfaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/virtualMachines/networkInterfaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/publicIPAddresses\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-10-30-preview\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/vmSizes\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/runCommands\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/virtualMachines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/publishers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"restorePointCollections\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"restorePointCollections/restorePoints\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"proximityPlacementGroups\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"sshPublicKeys\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sharedVMImages\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"West India\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Australia Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-15-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"sharedVMImages/versions\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"West India\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Australia Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-15-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations/artifactPublishers\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"West India\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Australia Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capsoperations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"West India\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-06-01\",\r\n \"2017-10-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"galleries\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"West India\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-06-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"galleries/images\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"West India\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-06-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"galleries/images/versions\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"West India\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-06-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-09-30\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-03-30\",\r\n \"2016-04-30-preview\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-09-30\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-03-30\",\r\n \"2016-04-30-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/diskoperations\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-09-30\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-03-30\",\r\n \"2016-04-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"diskEncryptionSets\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-07-01\"\r\n ],\r\n \"capabilities\": \"SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"locations/vsmoperations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"UK West\",\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"France South\",\r\n \"West US 2\",\r\n \"Japan West\",\r\n \"France Central\",\r\n \"Central India\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Japan East\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"South Africa West\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"images\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/logAnalytics\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostGroups\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"France Central\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"hostGroups/hosts\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"France Central\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/providers/Microsoft.Security\",\r\n \"namespace\": \"Microsoft.Security\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"8edd93e1-2103-40b4-bd70-6e34e586362d\",\r\n \"roleDefinitionId\": \"855AF4C4-82F6-414C-B1A2-628025628B9A\"\r\n },\r\n {\r\n \"applicationId\": \"fc780465-2017-40d4-a0c5-307022471b92\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"securityStatuses\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"tasks\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"regulatoryComplianceStandards\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-01-preview\",\r\n \"2019-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"regulatoryComplianceStandards/regulatoryComplianceControls\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-01-preview\",\r\n \"2019-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"regulatoryComplianceStandards/regulatoryComplianceControls/regulatoryComplianceAssessments\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-01-preview\",\r\n \"2019-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alerts\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-01\",\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"autoDismissAlertsRules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataCollectionAgents\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"pricings\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"AutoProvisioningSettings\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-01\",\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Compliances\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"securityContacts\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"workspaceSettings\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-01\",\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"complianceResults\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"policies\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"assessments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2019-01-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"assessmentMetadata\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2019-01-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"subAssessments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2019-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"securitySolutions\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/securitySolutions\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"discoveredSecuritySolutions\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/discoveredSecuritySolutions\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"allowedConnections\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/allowedConnections\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"topologies\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/topologies\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"securitySolutionsReferenceData\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/securitySolutionsReferenceData\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"jitNetworkAccessPolicies\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/jitNetworkAccessPolicies\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"securityStatusesSummaries\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationWhitelistings\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/applicationWhitelistings\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/alerts\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-01\",\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/tasks\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"externalSecuritySolutions\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/externalSecuritySolutions\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"InformationProtectionPolicies\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"advancedThreatProtectionSettings\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-01\",\r\n \"2017-08-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"deviceSecurityGroups\",\r\n \"locations\": [\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"France South\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2017-08-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"iotSecuritySolutions\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"France South\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2017-08-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"iotSecuritySolutions/analyticsModels\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"iotSecuritySolutions/analyticsModels/aggregatedAlerts\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"iotSecuritySolutions/analyticsModels/aggregatedRecommendations\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"settings\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-01\",\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverVulnerabilityAssessments\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Switzerland North\",\r\n \"Germany West Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"adaptiveNetworkHardenings\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Switzerland North\",\r\n \"Germany West Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2015-06-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"automations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"France Central\",\r\n \"France South\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/providers/Microsoft.DevTestLab\",\r\n \"namespace\": \"Microsoft.DevTestLab\",\r\n \"authorization\": {\r\n \"applicationId\": \"1a14be2a-e903-4cec-99cf-b2e209259a0f\",\r\n \"roleDefinitionId\": \"8f2de81a-b9aa-49d8-b24c-11814d3ab525\",\r\n \"managedByRoleDefinitionId\": \"8f2de81a-b9aa-49d8-b24c-11814d3ab525\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"labs/environments\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-21-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"labs\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"Australia Central\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"UK West\",\r\n \"West India\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"East US 2\",\r\n \"France South\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-10-15-preview\",\r\n \"2018-09-15\",\r\n \"2017-04-26-preview\",\r\n \"2016-05-15\",\r\n \"2015-05-21-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"schedules\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"Australia Central\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"UK West\",\r\n \"West India\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"East US 2\",\r\n \"France South\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-10-15-preview\",\r\n \"2018-09-15\",\r\n \"2017-04-26-preview\",\r\n \"2016-05-15\",\r\n \"2015-05-21-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"labs/virtualMachines\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"Australia Central\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"UK West\",\r\n \"West India\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"East US 2\",\r\n \"France South\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-10-15-preview\",\r\n \"2018-09-15\",\r\n \"2017-04-26-preview\",\r\n \"2016-05-15\",\r\n \"2015-05-21-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"labs/serviceRunners\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"Australia Central\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"UK West\",\r\n \"West India\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"East US 2\",\r\n \"France South\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-10-15-preview\",\r\n \"2018-09-15\",\r\n \"2017-04-26-preview\",\r\n \"2016-05-15\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-10-15-preview\",\r\n \"2018-09-15\",\r\n \"2017-04-26-preview\",\r\n \"2016-05-15\",\r\n \"2015-05-21-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-10-15-preview\",\r\n \"2018-09-15\",\r\n \"2017-04-26-preview\",\r\n \"2016-05-15\",\r\n \"2015-05-21-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"Australia Central\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"UK West\",\r\n \"West India\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"East US 2\",\r\n \"France South\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-10-15-preview\",\r\n \"2018-09-15\",\r\n \"2017-04-26-preview\",\r\n \"2016-05-15\",\r\n \"2015-05-21-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/providers/Microsoft.ResourceHealth\",\r\n \"namespace\": \"Microsoft.ResourceHealth\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"8bdebf23-c0fe-4187-a378-717ad86f6a53\",\r\n \"roleDefinitionId\": \"cc026344-c8b1-4561-83ba-59eba84b27cc\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"availabilityStatuses\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-01-rc\",\r\n \"2018-08-01-preview\",\r\n \"2018-07-01-rc\",\r\n \"2018-07-01-preview\",\r\n \"2017-07-01\",\r\n \"2015-01-01\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"childAvailabilityStatuses\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-06-beta\",\r\n \"2018-08-01-rc\",\r\n \"2018-08-01-preview\",\r\n \"2018-07-01-rc\",\r\n \"2018-07-01-preview\",\r\n \"2018-07-01-beta\",\r\n \"2017-07-01-rc\",\r\n \"2017-07-01-preview\",\r\n \"2017-07-01-beta\",\r\n \"2015-01-01-rc\",\r\n \"2015-01-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"childResources\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-06-beta\",\r\n \"2018-08-01-rc\",\r\n \"2018-08-01-preview\",\r\n \"2018-07-01-rc\",\r\n \"2018-07-01-preview\",\r\n \"2018-07-01-beta\",\r\n \"2017-07-01-rc\",\r\n \"2017-07-01-preview\",\r\n \"2017-07-01-beta\",\r\n \"2015-01-01-rc\",\r\n \"2015-01-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"events\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01-rc\",\r\n \"2018-07-01\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"metadata\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01-rc\",\r\n \"2018-07-01-preview\",\r\n \"2018-07-01-beta\",\r\n \"2018-07-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"emergingissues\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-06-beta\",\r\n \"2018-07-01-rc\",\r\n \"2018-07-01-preview\",\r\n \"2018-07-01-beta\",\r\n \"2018-07-01-alpha\",\r\n \"2018-07-01\",\r\n \"2017-07-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"notifications\",\r\n \"locations\": [\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-06-01\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/providers/Microsoft.PolicyInsights\",\r\n \"namespace\": \"Microsoft.PolicyInsights\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"1d78a85d-813d-46f0-b496-dd72f50a3ec0\",\r\n \"roleDefinitionId\": \"63d2b225-4c34-4641-8768-21a1f7c68ce8\"\r\n },\r\n {\r\n \"applicationId\": \"8cae6e77-e04e-42ce-b5cb-50d82bce26b1\",\r\n \"roleDefinitionId\": \"4a2d3d6b-a6ea-45e2-9882-c9ba3e726ed7\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"policyEvents\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01\",\r\n \"2018-07-01-preview\",\r\n \"2018-04-04\",\r\n \"2017-12-12-preview\",\r\n \"2017-10-17-preview\",\r\n \"2017-08-09-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"policyStates\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01\",\r\n \"2018-07-01-preview\",\r\n \"2018-04-04\",\r\n \"2017-12-12-preview\",\r\n \"2017-10-17-preview\",\r\n \"2017-08-09-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01\",\r\n \"2018-07-01-preview\",\r\n \"2018-04-04\",\r\n \"2017-12-12-preview\",\r\n \"2017-10-17-preview\",\r\n \"2017-08-09-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"asyncOperationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01\",\r\n \"2018-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"remediations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2018-07-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"policyTrackedResources\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"policyMetadata\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"a6aa9161-5291-40bb-8c5c-923b567bee3b\",\r\n \"roleDefinitionId\": \"070ab87f-0efc-4423-b18b-756f3bdb0236\"\r\n },\r\n {\r\n \"applicationId\": \"e406a681-f3d4-42a8-90b6-c2b029497af1\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/asyncoperations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/blobServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/tableServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/queueServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/fileServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-07-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/providers/Microsoft.Web\",\r\n \"namespace\": \"Microsoft.Web\",\r\n \"authorization\": {\r\n \"applicationId\": \"abfa0a7c-a6b6-4736-8310-5855508787cd\",\r\n \"roleDefinitionId\": \"f47ed98b-b063-4a5b-9e10-4b9b44fa7735\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"publishingUsers\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ishostnameavailable\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validate\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"isusernameavailable\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sourceControls\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"availableStacks\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listSitesAssignedToHostName\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/getNetworkPolicies\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-02-01\",\r\n \"2016-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"South Africa North\",\r\n \"West US 2\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"Japan West\",\r\n \"Central India\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"West India\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"North Central US\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"South India\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01-preview\",\r\n \"2019-08-01\",\r\n \"2019-01-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"South Africa North\",\r\n \"West US 2\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"Japan West\",\r\n \"Central India\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"West India\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"North Central US\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"South India\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01-preview\",\r\n \"2019-08-01\",\r\n \"2019-01-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/networkConfig\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"South Africa North\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"Japan West\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"West India\",\r\n \"East US 2\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"North Central US\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"West Europe\",\r\n \"South India\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/networkConfig\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"South Africa North\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"Japan West\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"West India\",\r\n \"East US 2\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"North Central US\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"West Europe\",\r\n \"South India\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/hostNameBindings\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"South Africa North\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"Japan West\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"West India\",\r\n \"East US 2\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"North Central US\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"West Europe\",\r\n \"South India\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/hostNameBindings\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"South Africa North\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"Japan West\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"West India\",\r\n \"East US 2\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"North Central US\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"West Europe\",\r\n \"South India\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"certificates\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"South Africa North\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"Japan West\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"West India\",\r\n \"East US 2\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"North Central US\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"West Europe\",\r\n \"South India\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"serverFarms\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"South Africa North\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"Japan West\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"West India\",\r\n \"East US 2\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"North Central US\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"West Europe\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"South Africa North\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"Japan West\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"West India\",\r\n \"East US 2\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"North Central US\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"West Europe\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-11-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2015-01-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"sites/slots\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"South Africa North\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"Japan West\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"West India\",\r\n \"East US 2\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"North Central US\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"West Europe\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-11-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2015-01-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"runtimes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"recommendations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceHealthMetadata\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"georegions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/premieraddons\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"South Africa North\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"Japan West\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"West India\",\r\n \"East US 2\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"North Central US\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"West Europe\",\r\n \"South India\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"South Africa North\",\r\n \"West US 2\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"Japan West\",\r\n \"Central India\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"West India\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"North Central US\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"South India\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2019-02-01\",\r\n \"2019-01-01\",\r\n \"2018-11-01\",\r\n \"2018-08-01\",\r\n \"2018-05-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"South Africa North\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"Japan West\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"West India\",\r\n \"East US 2\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"North Central US\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"West Europe\",\r\n \"South India\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2019-02-01\",\r\n \"2018-11-01\",\r\n \"2018-08-01\",\r\n \"2018-02-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"South Africa North\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"Japan West\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"West India\",\r\n \"East US 2\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"North Central US\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"West Europe\",\r\n \"South India\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2019-02-01\",\r\n \"2018-11-01\",\r\n \"2018-08-01\",\r\n \"2018-02-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deploymentLocations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deletedSites\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"South Africa North\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"Japan West\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"West India\",\r\n \"East US 2\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"North Central US\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"West Europe\",\r\n \"South India\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deletedSites\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"South Africa North\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"Japan West\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"West India\",\r\n \"East US 2\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"North Central US\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"West Europe\",\r\n \"South India\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ishostingenvironmentnameavailable\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"South Africa North\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"Japan West\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"West India\",\r\n \"East US 2\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"North Central US\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"West Europe\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-11-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa West\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"customApis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa West\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/listWsdlInterfaces\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa West\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/extractApiDefinitionFromWsdl\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa West\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedApis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa West\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/runtimes\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa West\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/apiOperations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa West\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connectionGateways\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa West\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/connectionGatewayInstallations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa West\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingMeters\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"verifyHostingEnvironmentVnet\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/eventGridFilters\",\r\n \"locations\": [\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/eventGridFilters\",\r\n \"locations\": [\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-11-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2015-01-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/eventGridFilters\",\r\n \"locations\": [\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-11-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2015-01-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/providers/microsoft.insights\",\r\n \"namespace\": \"microsoft.insights\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"6bccf540-eb86-4037-af03-7fa058c2db75\",\r\n \"roleDefinitionId\": \"89dcede2-9219-403a-9723-d3c6473f9472\"\r\n },\r\n {\r\n \"applicationId\": \"11c174dc-1945-4a9a-a36b-c79a0f246b9b\",\r\n \"roleDefinitionId\": \"dd9d4347-f397-45f2-b538-85f21c90037b\"\r\n },\r\n {\r\n \"applicationId\": \"035f9e1d-4f00-4419-bf50-bf2d87eb4878\",\r\n \"roleDefinitionId\": \"323795fe-ba3d-4f5a-ad42-afb4e1ea9485\"\r\n },\r\n {\r\n \"applicationId\": \"f5c26e74-f226-4ae8-85f0-b4af0080ac9e\",\r\n \"roleDefinitionId\": \"529d7ae6-e892-4d43-809d-8547aeb90643\"\r\n },\r\n {\r\n \"applicationId\": \"b503eb83-1222-4dcc-b116-b98ed5216e05\",\r\n \"roleDefinitionId\": \"68699c37-c689-44d4-9248-494b782d46ae\"\r\n },\r\n {\r\n \"applicationId\": \"ca7f3f0b-7d91-482c-8e09-c5d840d0eac5\",\r\n \"roleDefinitionId\": \"5d5a2e56-9835-44aa-93db-d2f19e155438\"\r\n },\r\n {\r\n \"applicationId\": \"3af5a1e8-2459-45cb-8683-bcd6cccbcc13\",\r\n \"roleDefinitionId\": \"b1309299-720d-4159-9897-6158a61aee41\"\r\n },\r\n {\r\n \"applicationId\": \"6a0a243c-0886-468a-a4c2-eff52c7445da\",\r\n \"roleDefinitionId\": \"d2eda64b-c5e6-4930-8642-2d80ecd7c2e2\"\r\n },\r\n {\r\n \"applicationId\": \"707be275-6b9d-4ee7-88f9-c0c2bd646e0f\",\r\n \"roleDefinitionId\": \"fa027d90-6ba0-4c33-9a54-59edaf2327e7\"\r\n },\r\n {\r\n \"applicationId\": \"461e8683-5575-4561-ac7f-899cc907d62a\",\r\n \"roleDefinitionId\": \"68699c37-c689-44d4-9248-494b782d46ae\"\r\n },\r\n {\r\n \"applicationId\": \"562db366-1b96-45d2-aa4a-f2148cef2240\",\r\n \"roleDefinitionId\": \"4109c8be-c1c8-4be0-af52-9d3c76c140ab\"\r\n },\r\n {\r\n \"applicationId\": \"e933bd07-d2ee-4f1d-933c-3752b819567b\",\r\n \"roleDefinitionId\": \"abbcfd44-e662-419a-9b5a-478f8e2f57c9\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"components\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"East Asia\",\r\n \"West US\",\r\n \"South Africa North\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Switzerland North\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2015-05-01\",\r\n \"2014-12-01-preview\",\r\n \"2014-08-01\",\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"components/query\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"East US 2\",\r\n \"East Asia\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Africa North\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-20\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"components/metrics\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"East US 2\",\r\n \"East Asia\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Africa North\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Switzerland North\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-20\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"components/events\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"East US 2\",\r\n \"East Asia\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Africa North\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-20\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webtests\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"East Asia\",\r\n \"West US\",\r\n \"South Africa North\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Switzerland North\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2015-05-01\",\r\n \"2014-08-01\",\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"scheduledqueryrules\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"East Asia\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Africa North\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"Switzerland North\",\r\n \"Switzerland West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-16\",\r\n \"2017-09-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"components/pricingPlans\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"migrateToNewPricingModel\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"rollbackToLegacyPricingModel\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listMigrationdate\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"logprofiles\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"migratealertrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metricalerts\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"alertrules\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"autoscalesettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"France Central\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"Australia East\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"eventtypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\",\r\n \"2016-09-01-preview\",\r\n \"2015-04-01\",\r\n \"2014-11-01\",\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vmInsightsOnboardingStatuses\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-27-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"diagnosticSettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-05-01-preview\",\r\n \"2016-09-01\",\r\n \"2015-07-01\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"diagnosticSettingsCategories\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-05-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"extendedDiagnosticSettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-02-01\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01\",\r\n \"2017-12-01-preview\",\r\n \"2017-09-01-preview\",\r\n \"2017-05-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"logDefinitions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"eventCategories\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metrics\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2018-01-01\",\r\n \"2017-12-01-preview\",\r\n \"2017-09-01-preview\",\r\n \"2017-05-01-preview\",\r\n \"2016-09-01\",\r\n \"2016-06-01\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"metricbatch\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metricNamespaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01\",\r\n \"2017-12-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"actiongroups\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-03-01\",\r\n \"2018-09-01\",\r\n \"2018-03-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"activityLogAlerts\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2017-03-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"baseline\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\",\r\n \"2017-11-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"metricbaselines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-03-01\",\r\n \"2018-09-01\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"calculatebaseline\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-09-01\",\r\n \"2017-11-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"workbooks\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"East Asia\",\r\n \"West US\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"South Africa North\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Switzerland North\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-12\",\r\n \"2018-06-17-preview\",\r\n \"2018-06-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"workbooktemplates\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"East Asia\",\r\n \"West US\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"South Africa North\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Switzerland North\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-10-17-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"myWorkbooks\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"East Asia\",\r\n \"West US\",\r\n \"South Africa North\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Switzerland North\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-12\",\r\n \"2018-06-17-preview\",\r\n \"2018-06-15-preview\",\r\n \"2018-06-01-preview\",\r\n \"2016-06-15-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"logs\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Australia Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01-preview\",\r\n \"2018-03-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"transactions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"East US 2\",\r\n \"East Asia\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Africa North\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-10-17-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"topology\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"East US 2\",\r\n \"East Asia\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Africa North\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-10-17-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"privateLinkScopes\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-10-17-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"privateLinkScopes/privateEndpointConnections\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-10-17-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateLinkScopes/privateEndpointConnectionProxies\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-10-17-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateLinkScopes/scopedResources\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-10-17-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"components/linkedstorageaccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"East Asia\",\r\n \"West US\",\r\n \"South Africa North\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Switzerland North\",\r\n \"Norway East\",\r\n \"Norway West\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateLinkScopeOperationStatuses\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-10-17-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/providers/Sendgrid.Email\",\r\n \"namespace\": \"Sendgrid.Email\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/providers/Microsoft.Authorization\",\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"roleAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01-preview\",\r\n \"2018-12-01-preview\",\r\n \"2018-09-01-preview\",\r\n \"2018-07-01\",\r\n \"2018-01-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2016-07-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"roleDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-01-01-preview\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2016-07-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"classicAdministrators\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"permissions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-01-01-preview\",\r\n \"2017-05-01\",\r\n \"2016-07-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"denyAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-03-01-preview\",\r\n \"2018-07-01-preview\",\r\n \"2018-07-01\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"locks\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-09-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-05-01\",\r\n \"2016-07-01\",\r\n \"2015-07-01\",\r\n \"2015-01-01\",\r\n \"2014-10-01-preview\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2019-06-01\",\r\n \"2019-01-01\",\r\n \"2018-05-01\",\r\n \"2018-03-01\",\r\n \"2016-12-01\",\r\n \"2016-04-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"policySetDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2019-06-01\",\r\n \"2019-01-01\",\r\n \"2018-05-01\",\r\n \"2018-03-01\",\r\n \"2017-06-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"policyAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2019-06-01\",\r\n \"2019-01-01\",\r\n \"2018-05-01\",\r\n \"2018-03-01\",\r\n \"2017-06-01-preview\",\r\n \"2016-12-01\",\r\n \"2016-04-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"SystemAssignedResourceIdentity, SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"dataAliases\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providerOperations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-01-01-preview\",\r\n \"2017-05-01\",\r\n \"2016-07-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"elevateAccess\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-05-01\",\r\n \"2016-07-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkAccess\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"findOrphanRoleAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"roleAssignmentsUsageMetrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-08-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/providers/Microsoft.Advisor\",\r\n \"namespace\": \"Microsoft.Advisor\",\r\n \"authorization\": {\r\n \"applicationId\": \"c39c9bac-9d1f-4dfb-aa29-27f6365e5cb7\",\r\n \"roleDefinitionId\": \"8a63b04c-3731-409b-9765-f1175c047872\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"suppressions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2017-04-19\",\r\n \"2017-03-31\",\r\n \"2016-07-12-preview\",\r\n \"2016-05-09-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"configurations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2017-04-19\",\r\n \"2017-03-31\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"metadata\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-01-01-alpha\",\r\n \"2020-01-01\",\r\n \"2017-04-19-rc\",\r\n \"2017-04-19-alpha\",\r\n \"2017-04-19\",\r\n \"2017-03-31-alpha\",\r\n \"2017-03-31\",\r\n \"2016-07-12-rc\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"recommendations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2017-04-19\",\r\n \"2017-03-31\",\r\n \"2016-07-12-preview\",\r\n \"2016-05-09-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"generateRecommendations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2017-04-19\",\r\n \"2017-03-31\",\r\n \"2016-07-12-preview\",\r\n \"2016-05-09-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2017-04-19\",\r\n \"2017-03-31\",\r\n \"2016-07-12-preview\",\r\n \"2016-05-09-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/providers/Providers.Test\",\r\n \"namespace\": \"Providers.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"statelessResources\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West India\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"Australia Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"statefulResources\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West India\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"Australia Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"statefulResources/nestedResources\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West India\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"Australia Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"statefulIbizaEngines\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West India\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"Australia Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/providers/84codes.CloudAMQP\",\r\n \"namespace\": \"84codes.CloudAMQP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-08-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/providers/Conexlink.MyCloudIT\",\r\n \"namespace\": \"Conexlink.MyCloudIT\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/providers/Crypteron.DataSecurity\",\r\n \"namespace\": \"Crypteron.DataSecurity\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"apps\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-08-12\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-12\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-12\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-12\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/providers/LiveArena.Broadcast\",\r\n \"namespace\": \"LiveArena.Broadcast\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"Southeast Asia\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-15\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/providers/Mailjet.Email\",\r\n \"namespace\": \"Mailjet.Email\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-03\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2017-10-01\",\r\n \"2017-05-29\",\r\n \"2017-02-03\",\r\n \"2016-11-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-03\",\r\n \"2016-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-03\",\r\n \"2016-11-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/providers/Microsoft.AAD\",\r\n \"namespace\": \"Microsoft.AAD\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"443155a6-77f3-45e3-882b-22b3a8d431fb\",\r\n \"roleDefinitionId\": \"7389DE79-3180-4F07-B2BA-C5BA1F01B03A\"\r\n },\r\n {\r\n \"applicationId\": \"abba844e-bc0e-44b0-947a-dc74e5d09022\",\r\n \"roleDefinitionId\": \"63BC473E-7767-42A5-A3BF-08EB71200E04\"\r\n },\r\n {\r\n \"applicationId\": \"d87dcbc6-a371-462e-88e3-28ad15ec4e64\",\r\n \"roleDefinitionId\": \"861776c5-e0df-4f95-be4f-ac1eec193323\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"DomainServices\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Central US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"UK South\",\r\n \"South Africa North\",\r\n \"UAE North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2017-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"DomainServices/oucontainer\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Central US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"UK South\",\r\n \"South Africa North\",\r\n \"UAE North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Central US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"UK South\",\r\n \"South Africa North\",\r\n \"UAE North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2017-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Central US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"UK South\",\r\n \"South Africa North\",\r\n \"UAE North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2017-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Central US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"UK South\",\r\n \"South Africa North\",\r\n \"UAE North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2017-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/providers/Microsoft.Addons\",\r\n \"namespace\": \"Microsoft.Addons\",\r\n \"authorization\": {\r\n \"applicationId\": \"24d3987b-be4a-48e0-a3e7-11c186f39e41\",\r\n \"roleDefinitionId\": \"8004BAAB-A4CB-4981-8571-F7E44D039D93\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"supportProviders\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-05-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-05-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-05-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/providers/Microsoft.ADHybridHealthService\",\r\n \"namespace\": \"Microsoft.ADHybridHealthService\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"addsservices\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"configuration\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"agents\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"aadsupportcases\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reports\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servicehealthmetrics\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"logs\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"anonymousapiusers\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/providers/Microsoft.AlertsManagement\",\r\n \"namespace\": \"Microsoft.AlertsManagement\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"3af5a1e8-2459-45cb-8683-bcd6cccbcc13\",\r\n \"roleDefinitionId\": \"b1309299-720d-4159-9897-6158a61aee41\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"alerts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-05-05-preview\",\r\n \"2019-03-01-preview\",\r\n \"2019-03-01\",\r\n \"2018-11-02-privatepreview\",\r\n \"2018-05-05-preview\",\r\n \"2018-05-05\",\r\n \"2017-11-15-privatepreview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"alertsSummary\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-05-05-preview\",\r\n \"2019-03-01-preview\",\r\n \"2019-03-01\",\r\n \"2018-05-05-preview\",\r\n \"2018-05-05\",\r\n \"2017-11-15-privatepreview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"smartGroups\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-05-05-preview\",\r\n \"2018-05-05-preview\",\r\n \"2018-05-05\",\r\n \"2017-11-15-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"smartDetectorAlertRules\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-03-01\",\r\n \"2018-02-01-privatepreview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"actionRules\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-05-preview\",\r\n \"2018-11-02-privatepreview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"alertsList\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-02-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alertsSummaryList\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-02-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alertsMetaData\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-05-05-preview\",\r\n \"2019-03-01-preview\",\r\n \"2019-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-05-preview\",\r\n \"2018-05-05\",\r\n \"2017-11-15-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/providers/Microsoft.AnalysisServices\",\r\n \"namespace\": \"Microsoft.AnalysisServices\",\r\n \"authorization\": {\r\n \"applicationId\": \"4ac7d521-0382-477b-b0f8-7e1d95f85ca2\",\r\n \"roleDefinitionId\": \"490d5987-bcf6-4be6-b6b2-056a78cb693a\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"East US\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-beta\",\r\n \"2017-08-01\",\r\n \"2017-07-14\",\r\n \"2016-05-16\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-08-01-beta\",\r\n \"2017-08-01\",\r\n \"2017-07-14\",\r\n \"2016-05-16\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"East US\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-beta\",\r\n \"2017-08-01\",\r\n \"2017-07-14\",\r\n \"2016-05-16\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"East US\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-beta\",\r\n \"2017-08-01\",\r\n \"2017-07-14\",\r\n \"2016-05-16\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationstatuses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"East US\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-beta\",\r\n \"2017-08-01\",\r\n \"2017-07-14\",\r\n \"2016-05-16\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-beta\",\r\n \"2017-08-01\",\r\n \"2017-07-14\",\r\n \"2016-05-16\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"authorization\": {\r\n \"applicationId\": \"8602e328-9b72-4f2d-a4ae-1387d013a2b3\",\r\n \"roleDefinitionId\": \"e263b525-2e60-4418-b655-420bae0b172e\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"Canada East\",\r\n \"Central India\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"West Central US\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UK West\",\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"North Central US\",\r\n \"Southeast Asia\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Japan West\",\r\n \"West US\",\r\n \"France Central\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"validateServiceName\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-12-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reportFeedback\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-12-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkFeedbackRequired\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-12-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-12-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/providers/Microsoft.AppPlatform\",\r\n \"namespace\": \"Microsoft.AppPlatform\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"03b39d0f-4213-4864-a245-b1476ec03169\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Spring\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationStatus\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/providers/Microsoft.Attestation\",\r\n \"namespace\": \"Microsoft.Attestation\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"c61423b7-1d1f-430d-b444-0eee53298103\",\r\n \"roleDefinitionId\": \"7299b0b1-11da-4858-8943-7db197005959\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"attestationProviders\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/providers/Microsoft.Automation\",\r\n \"namespace\": \"Microsoft.Automation\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"fc75330b-179d-49af-87dd-3b1acf6827fa\",\r\n \"roleDefinitionId\": \"95fd5de3-d071-4362-92bf-cf341c1de832\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"automationAccounts\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"South Africa North\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Central US\",\r\n \"West US\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Korea Central\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-13-preview\",\r\n \"2018-06-30\",\r\n \"2018-01-15\",\r\n \"2017-05-15-preview\",\r\n \"2015-10-31\",\r\n \"2015-01-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/runbooks\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"South Africa North\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"West US\",\r\n \"Central US\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Korea Central\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-01-15\",\r\n \"2017-05-15-preview\",\r\n \"2015-10-31\",\r\n \"2015-01-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/configurations\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"South Africa North\",\r\n \"West US\",\r\n \"Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Korea Central\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"Central India\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-01-15\",\r\n \"2017-05-15-preview\",\r\n \"2015-10-31\",\r\n \"2015-01-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/webhooks\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"South Africa North\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Central US\",\r\n \"West US\",\r\n \"Australia Central\",\r\n \"Korea Central\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"Australia East\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-01-15\",\r\n \"2017-05-15-preview\",\r\n \"2015-10-31\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-01-15\",\r\n \"2017-05-15-preview\",\r\n \"2015-10-31\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/softwareUpdateConfigurations\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"South Africa North\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Central US\",\r\n \"West US\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Korea Central\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-01-15\",\r\n \"2017-05-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/jobs\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"South Africa North\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Central US\",\r\n \"West US\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Korea Central\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-01-15\",\r\n \"2017-05-15-preview\",\r\n \"2015-10-31\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/privateLinkResources\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"South Africa North\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Central US\",\r\n \"West US\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Korea Central\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-13-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/privateEndpointConnections\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"South Africa North\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Central US\",\r\n \"West US\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Korea Central\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-13-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/privateEndpointConnectionProxies\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"South Africa North\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Central US\",\r\n \"West US\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Korea Central\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-13-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/providers/Microsoft.AzureActiveDirectory\",\r\n \"namespace\": \"Microsoft.AzureActiveDirectory\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"b2cDirectories\",\r\n \"locations\": [\r\n \"Global\",\r\n \"United States\",\r\n \"Europe\",\r\n \"Asia Pacific\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-01-privatepreview\",\r\n \"2017-01-30\",\r\n \"2016-12-13-preview\",\r\n \"2016-02-10-privatepreview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Global\",\r\n \"United States\",\r\n \"Europe\",\r\n \"Asia Pacific\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Global\",\r\n \"United States\",\r\n \"Europe\",\r\n \"Asia Pacific\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-01-privatepreview\",\r\n \"2017-01-30\",\r\n \"2016-12-13-preview\",\r\n \"2016-02-10-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"b2ctenants\",\r\n \"locations\": [\r\n \"Global\",\r\n \"United States\",\r\n \"Europe\",\r\n \"Asia Pacific\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-02-10-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/providers/Microsoft.AzureData\",\r\n \"namespace\": \"Microsoft.AzureData\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sqlServerRegistrations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"East US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"West Europe\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-10-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"East US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"West Europe\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-10-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sqlServerRegistrations/sqlServers\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"East US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"West Europe\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-10-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/providers/Microsoft.AzureStack\",\r\n \"namespace\": \"Microsoft.AzureStack\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registrations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"registrations/products\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registrations/customerSubscriptions\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"cloudManifestFiles\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/providers/Microsoft.Batch\",\r\n \"namespace\": \"Microsoft.Batch\",\r\n \"authorization\": {\r\n \"applicationId\": \"ddbf3205-c6bd-46ae-8127-60eb93363864\",\r\n \"roleDefinitionId\": \"b7f84953-1d03-4eab-9ea4-45f065258ff8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"batchAccounts\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\",\r\n \"2015-07-01\",\r\n \"2014-05-01-privatepreview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/accountOperationResults\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\",\r\n \"2015-07-01\",\r\n \"2014-05-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/providers/Microsoft.BatchAI\",\r\n \"namespace\": \"Microsoft.BatchAI\",\r\n \"authorization\": {\r\n \"applicationId\": \"9fcb3732-5f52-4135-8c08-9d4bbaf203ea\",\r\n \"roleDefinitionId\": \"703B89C7-CE2C-431B-BDD8-FA34E39AF696\",\r\n \"managedByRoleDefinitionId\": \"90B8E153-EBFF-4073-A95F-4DAD56B14C78\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workspaces\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"workspaces/clusters\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"workspaces/fileservers\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"workspaces/experiments\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"workspaces/experiments/jobs\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/providers/Microsoft.Billing\",\r\n \"namespace\": \"Microsoft.Billing\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"80dbdb39-4f33-4799-8b6f-711b5e3e61b6\",\r\n \"roleDefinitionId\": \"acdc79db-513f-461d-a542-61908d543bdc\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"billingPeriods\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-04-24-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"invoices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\",\r\n \"2018-03-01-preview\",\r\n \"2017-04-24-preview\",\r\n \"2017-02-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"enrollmentAccounts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingRoleDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"billingRoleAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"createBillingRoleAssignment\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/createBillingRoleAssignment\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/createBillingRoleAssignment\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/invoiceSections/createBillingRoleAssignment\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingPermissions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingRoleDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingRoleAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingPermissions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\",\r\n \"2018-06-30\",\r\n \"2018-05-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/billingRoleDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/billingRoleAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/billingPermissions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/customers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/customers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/instructions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/customers/billingSubscriptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/customers/products\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/customers/transactions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/invoiceSections\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/invoiceSections\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/invoiceSections/billingRoleDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/invoiceSections/billingRoleAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/invoiceSections/billingPermissions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/customers/billingPermissions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/invoiceSections/elevate\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/createInvoiceSectionOperations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/patchOperations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/invoiceSections/patchOperations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/invoiceSections/productMoveOperations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/invoiceSections/billingSubscriptionMoveOperations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/listInvoiceSectionsWithCreateSubscriptionPermission\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/BillingProfiles/patchOperations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"departments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-05-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/departments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-06-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/enrollmentAccounts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-06-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/paymentMethods\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/availableBalance\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/invoices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/invoices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/transactions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/transactions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/invoiceSections/transactions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/invoiceSections/transactions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/invoices/transactions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingSubscriptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingSubscriptions/invoices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/billingSubscriptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/invoiceSections/billingSubscriptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/invoiceSections/billingSubscriptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationStatus\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/invoiceSections/products\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/invoiceSections/products\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/invoiceSections/products/updateAutoRenew\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/invoiceSections/products/updateAutoRenew\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/products\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/products\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\",\r\n \"2018-06-30\",\r\n \"2018-03-01-preview\",\r\n \"2017-04-24-preview\",\r\n \"2017-02-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/invoiceSections/initiateTransfer\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/invoiceSections/initiateTransfer\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/invoiceSections/transfers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/invoiceSections/transfers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"transfers/acceptTransfer\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"transfers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"transfers/declineTransfer\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"transfers/validateTransfer\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/customers/initiateTransfer\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/customers/transfers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingProperty\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/policies\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/customers/policies\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/invoices/pricesheet\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/pricesheet\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/pricesheetDownloadOperations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/invoiceSections/billingSubscriptions/transfer\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/invoiceSections/products/transfer\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/invoiceSections/products/transfer\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/invoiceSections/productTransfersResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"transfers/operationStatus\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/agreements\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/lineOfCredit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/paymentMethods\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateAddress\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/providers/Microsoft.BingMaps\",\r\n \"namespace\": \"Microsoft.BingMaps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"mapApis\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-08-18\",\r\n \"2015-07-02\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-18\",\r\n \"2015-07-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-18\",\r\n \"2015-07-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-18\",\r\n \"2015-07-02\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/providers/Microsoft.Blockchain\",\r\n \"namespace\": \"Microsoft.Blockchain\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"78827f38-7b69-4d5e-a627-d6fdd9c759a0\",\r\n \"roleDefinitionId\": \"9c68eaf3-8315-4e5c-b857-641b16b21f8f\"\r\n },\r\n {\r\n \"applicationId\": \"049d4938-2ef2-4274-aa8f-630fc9bc33d1\",\r\n \"roleDefinitionId\": \"c6dd0893-0495-488a-ac21-ee5f1ba89769\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"watchers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"blockchainMembers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations/watcherOperationResults\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"Japan East\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/blockchainMemberOperationResults\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/listConsortiums\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"Japan East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"Japan East\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/providers/Microsoft.BlockchainTokens\",\r\n \"namespace\": \"Microsoft.BlockchainTokens\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Operations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-19-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/providers/Microsoft.Blueprint\",\r\n \"namespace\": \"Microsoft.Blueprint\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"f71766dc-90d9-4b7d-bd9d-4499c4331c3f\",\r\n \"roleDefinitionId\": \"cb180127-cf6d-4672-9e75-e29a487f9658\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"blueprints\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\",\r\n \"2018-11-01-alpha\",\r\n \"2017-11-11-preview\",\r\n \"2017-11-11-alpha\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"blueprints/artifacts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\",\r\n \"2018-11-01-alpha\",\r\n \"2017-11-11-preview\",\r\n \"2017-11-11-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"blueprints/versions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\",\r\n \"2018-11-01-alpha\",\r\n \"2017-11-11-preview\",\r\n \"2017-11-11-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"blueprints/versions/artifacts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\",\r\n \"2018-11-01-alpha\",\r\n \"2017-11-11-preview\",\r\n \"2017-11-11-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"blueprintAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\",\r\n \"2018-11-01-alpha\",\r\n \"2017-11-11-preview\",\r\n \"2017-11-11-alpha\"\r\n ],\r\n \"capabilities\": \"SystemAssignedResourceIdentity, SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"blueprintAssignments/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-11-preview\",\r\n \"2017-11-11-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"blueprintAssignments/assignmentOperations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\",\r\n \"2018-11-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\",\r\n \"2018-11-01-alpha\",\r\n \"2017-11-11-preview\",\r\n \"2017-11-11-alpha\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/providers/Microsoft.BotService\",\r\n \"namespace\": \"Microsoft.BotService\",\r\n \"authorization\": {\r\n \"applicationId\": \"f3723d34-6ff5-4ceb-a148-d99dcd2511fc\",\r\n \"roleDefinitionId\": \"71213c26-43ed-41d8-9905-3c12971517a3\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"botServices\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-12\",\r\n \"2017-12-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"botServices/channels\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-12\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"botServices/connections\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-12\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listAuthServiceProviders\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-12\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-12\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-12\",\r\n \"2017-12-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/providers/Microsoft.Cache\",\r\n \"namespace\": \"Microsoft.Cache\",\r\n \"authorization\": {\r\n \"applicationId\": \"96231a05-34ce-4eb4-aa6a-70759cbb5e83\",\r\n \"roleDefinitionId\": \"4f731528-ba85-45c7-acfb-cd0a9b3cf31b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/providers/Microsoft.Capacity\",\r\n \"namespace\": \"Microsoft.Capacity\",\r\n \"authorization\": {\r\n \"applicationId\": \"4d0ad6c7-f6c3-46d8-ab0d-1406d5e6c86b\",\r\n \"roleDefinitionId\": \"FD9C0A9A-4DB9-4F41-8A61-98385DEB6E2D\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"resources\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\r\n \"2018-06-01\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01-beta\",\r\n \"2019-04-01\",\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/reservations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01-beta\",\r\n \"2019-04-01\",\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01-beta\",\r\n \"2019-04-01\",\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listBenefits\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01-beta\",\r\n \"2018-06-01-beta\",\r\n \"2017-11-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/reservations/revisions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01-beta\",\r\n \"2019-04-01\",\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01-beta\",\r\n \"2019-04-01\",\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"catalogs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01-beta\",\r\n \"2019-04-01\",\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"appliedReservations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01-beta\",\r\n \"2019-04-01\",\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkOffers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01-beta\",\r\n \"2019-04-01\",\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkScopes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01-beta\",\r\n \"2019-04-01\",\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"calculatePrice\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01-beta\",\r\n \"2019-04-01\",\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"calculateExchange\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01-beta\",\r\n \"2019-04-01\",\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"exchange\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01-beta\",\r\n \"2019-04-01\",\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/calculateRefund\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01-beta\",\r\n \"2019-04-01\",\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/return\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01-beta\",\r\n \"2019-04-01\",\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/split\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01-beta\",\r\n \"2019-04-01\",\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/merge\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01-beta\",\r\n \"2019-04-01\",\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/swap\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01-beta\",\r\n \"2019-04-01\",\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateReservationOrder\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01-beta\",\r\n \"2019-04-01\",\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/availableScopes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01-beta\",\r\n \"2019-04-01\",\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/reservations/availableScopes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01-beta\",\r\n \"2019-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"commercialReservationOrders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01-beta\",\r\n \"2019-04-01\",\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"calculatePurchasePrice\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-06-01-privatepreview\",\r\n \"2019-06-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"placePurchaseOrder\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-06-01-privatepreview\",\r\n \"2019-06-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkPurchaseStatus\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-06-01-privatepreview\",\r\n \"2019-06-01-beta\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/providers/Microsoft.Cdn\",\r\n \"namespace\": \"Microsoft.Cdn\",\r\n \"authorizations\": [],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"profiles\",\r\n \"locations\": [\r\n \"global\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-31\",\r\n \"2019-06-15-preview\",\r\n \"2019-04-15\",\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"profiles/endpoints\",\r\n \"locations\": [\r\n \"global\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-31\",\r\n \"2019-06-15-preview\",\r\n \"2019-04-15\",\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"profiles/endpoints/origins\",\r\n \"locations\": [\r\n \"global\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-31\",\r\n \"2019-06-15-preview\",\r\n \"2019-04-15\",\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"profiles/endpoints/origingroups\",\r\n \"locations\": [\r\n \"global\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"profiles/endpoints/customdomains\",\r\n \"locations\": [\r\n \"global\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-31\",\r\n \"2019-06-15-preview\",\r\n \"2019-04-15\",\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationresults\",\r\n \"locations\": [\r\n \"global\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-31\",\r\n \"2019-06-15-preview\",\r\n \"2019-04-15\",\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationresults/profileresults\",\r\n \"locations\": [\r\n \"global\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-31\",\r\n \"2019-06-15-preview\",\r\n \"2019-04-15\",\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationresults/profileresults/endpointresults\",\r\n \"locations\": [\r\n \"global\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-31\",\r\n \"2019-06-15-preview\",\r\n \"2019-04-15\",\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationresults/profileresults/endpointresults/originresults\",\r\n \"locations\": [\r\n \"global\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-31\",\r\n \"2019-06-15-preview\",\r\n \"2019-04-15\",\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationresults/profileresults/endpointresults/origingroupresults\",\r\n \"locations\": [\r\n \"global\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationresults/profileresults/endpointresults/customdomainresults\",\r\n \"locations\": [\r\n \"global\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-31\",\r\n \"2019-06-15-preview\",\r\n \"2019-04-15\",\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"global\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-31\",\r\n \"2019-06-15-preview\",\r\n \"2019-04-15\",\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkResourceUsage\",\r\n \"locations\": [\r\n \"global\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-31\",\r\n \"2019-06-15-preview\",\r\n \"2019-04-15\",\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateProbe\",\r\n \"locations\": [\r\n \"global\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-31\",\r\n \"2019-06-15-preview\",\r\n \"2019-04-15\",\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"global\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-31\",\r\n \"2019-06-15-preview\",\r\n \"2019-04-15\",\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"edgenodes\",\r\n \"locations\": [\r\n \"global\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-31\",\r\n \"2019-06-15-preview\",\r\n \"2019-04-15\",\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"CdnWebApplicationFirewallPolicies\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-15-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"CdnWebApplicationFirewallManagedRuleSets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-06-15-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/providers/Microsoft.CertificateRegistration\",\r\n \"namespace\": \"Microsoft.CertificateRegistration\",\r\n \"authorization\": {\r\n \"applicationId\": \"f3c21649-0979-4721-ac85-b0216b2cf413\",\r\n \"roleDefinitionId\": \"933fba7e-2ed3-4da8-973d-8bd8298a9b40\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"certificateOrders\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-02-01\",\r\n \"2015-08-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"certificateOrders/certificates\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-02-01\",\r\n \"2015-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateCertificateRegistrationInformation\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-02-01\",\r\n \"2015-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-02-01\",\r\n \"2015-08-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/providers/Microsoft.ChangeAnalysis\",\r\n \"namespace\": \"Microsoft.ChangeAnalysis\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"2cfc91a4-7baa-4a8f-a6c9-5f3d279060b8\",\r\n \"roleDefinitionId\": \"f5a6bd90-af71-455c-9030-c486e8c42c95\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/providers/Microsoft.ClassicCompute\",\r\n \"namespace\": \"Microsoft.ClassicCompute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domainNames\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-01\",\r\n \"2018-06-01\",\r\n \"2017-11-15\",\r\n \"2017-11-01\",\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"domainNames/internalLoadBalancers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-01\",\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Norway East\",\r\n \"Germany West Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-01\",\r\n \"2018-06-01\",\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/serviceCertificates\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceTypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"moveSubscriptionResources\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateSubscriptionMoveAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationStatuses\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operatingSystems\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operatingSystemFamilies\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/providers/Microsoft.ClassicInfrastructureMigrate\",\r\n \"namespace\": \"Microsoft.ClassicInfrastructureMigrate\",\r\n \"authorization\": {\r\n \"applicationId\": \"5e5abe2b-83cd-4786-826a-a05653ebb103\",\r\n \"roleDefinitionId\": \"766c4d9b-ef83-4f73-8352-1450a506a69b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"classicInfrastructureResources\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Australia Central\",\r\n \"Australia Central 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/providers/Microsoft.ClassicNetwork\",\r\n \"namespace\": \"Microsoft.ClassicNetwork\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-15\",\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworks/virtualNetworkPeerings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworks/remoteVirtualNetworkPeeringProxies\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservedIps\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gatewaySupportedDevices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01-beta\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCrossConnections\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCrossConnections/peerings\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/providers/Microsoft.ClassicStorage\",\r\n \"namespace\": \"Microsoft.ClassicStorage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-beta\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkStorageAccountAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/diagnosticSettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/blobServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/tableServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/fileServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/queueServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"images\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vmImages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/vmImages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-beta\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicImages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"osImages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"osPlatformImages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01-beta\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/providers/Microsoft.ClassicSubscription\",\r\n \"namespace\": \"Microsoft.ClassicSubscription\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-09-01\",\r\n \"2017-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/providers/Microsoft.CognitiveServices\",\r\n \"namespace\": \"Microsoft.CognitiveServices\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"7d312290-28c8-473c-a0ed-8e53749b6d6d\",\r\n \"roleDefinitionId\": \"5cb87f79-a7c3-4a95-9414-45b65974b51b\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"Global\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Africa North\",\r\n \"UAE North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-18\",\r\n \"2016-02-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Global\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Africa North\",\r\n \"UAE North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-18\",\r\n \"2016-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"Global\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Africa North\",\r\n \"UAE North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-18\",\r\n \"2016-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Global\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Africa North\",\r\n \"UAE North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-18\",\r\n \"2016-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [\r\n \"Global\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Africa North\",\r\n \"UAE North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-18\",\r\n \"2016-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkSkuAvailability\",\r\n \"locations\": [\r\n \"Global\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Africa North\",\r\n \"UAE North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-18\",\r\n \"2016-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-18\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/providers/Microsoft.Commerce\",\r\n \"namespace\": \"Microsoft.Commerce\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"UsageAggregates\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\",\r\n \"2015-03-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RateCard\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-31-preview\",\r\n \"2015-06-01-preview\",\r\n \"2015-05-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\",\r\n \"2015-03-31\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/providers/Microsoft.Consumption\",\r\n \"namespace\": \"Microsoft.Consumption\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"c5b17a4f-cc6f-4649-9480-684280a2af3a\",\r\n \"roleDefinitionId\": \"4a2e6ae9-2713-4cc9-a3b3-312899d687c3\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Forecasts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01\",\r\n \"2019-05-01\",\r\n \"2019-01-01\",\r\n \"2018-10-01\",\r\n \"2018-08-31\",\r\n \"2018-06-30\",\r\n \"2018-05-31\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"AggregatedCost\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01\",\r\n \"2019-05-01\",\r\n \"2019-01-01\",\r\n \"2018-10-01\",\r\n \"2018-08-31\",\r\n \"2018-06-30\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"tenants\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01\",\r\n \"2019-05-01\",\r\n \"2019-01-01\",\r\n \"2018-10-01\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"ReservationRecommendations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01\",\r\n \"2019-05-01\",\r\n \"2019-01-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-10-01\",\r\n \"2018-08-31\",\r\n \"2018-06-30\",\r\n \"2018-03-31\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"ReservationSummaries\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01\",\r\n \"2019-05-01\",\r\n \"2019-01-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-10-01\",\r\n \"2018-08-31\",\r\n \"2018-06-30\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\r\n \"2017-11-30\",\r\n \"2017-06-30-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"ReservationTransactions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01\",\r\n \"2019-05-01\",\r\n \"2019-01-01\",\r\n \"2018-10-01\",\r\n \"2018-08-31\",\r\n \"2018-06-30\",\r\n \"2018-05-31\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\r\n \"2017-11-30\",\r\n \"2017-06-30-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"Balances\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01\",\r\n \"2019-05-01\",\r\n \"2019-01-01\",\r\n \"2018-10-01\",\r\n \"2018-08-31\",\r\n \"2018-06-30\",\r\n \"2018-05-31\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\r\n \"2017-11-30\",\r\n \"2017-06-30-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"Marketplaces\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01\",\r\n \"2019-05-01\",\r\n \"2019-01-01\",\r\n \"2018-10-01\",\r\n \"2018-08-31\",\r\n \"2018-06-30\",\r\n \"2018-05-31\",\r\n \"2018-03-31\",\r\n \"2018-01-31\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"Pricesheets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-01-01-preview\",\r\n \"2019-10-01\",\r\n \"2019-05-01\",\r\n \"2019-01-01\",\r\n \"2018-10-01\",\r\n \"2018-08-31\",\r\n \"2018-06-30\",\r\n \"2018-05-31\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\r\n \"2017-11-30\",\r\n \"2017-06-30-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"ReservationDetails\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01\",\r\n \"2019-05-01\",\r\n \"2019-01-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-10-01\",\r\n \"2018-08-31\",\r\n \"2018-06-30\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\r\n \"2017-11-30\",\r\n \"2017-06-30-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"Budgets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01-preview\",\r\n \"2019-03-01-preview\",\r\n \"2019-01-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-12-01-preview\",\r\n \"2018-10-01\",\r\n \"2018-08-31\",\r\n \"2018-06-30\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\r\n \"2017-12-30-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"CostTags\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-10-01\",\r\n \"2019-05-01\",\r\n \"2018-10-01\",\r\n \"2018-08-31\",\r\n \"2018-06-30\",\r\n \"2018-05-31\",\r\n \"2018-03-31\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"Tags\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-10-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01-preview\",\r\n \"2019-03-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-12-01-preview\",\r\n \"2018-10-01\",\r\n \"2018-08-31\",\r\n \"2018-08-01-preview\",\r\n \"2018-06-30\",\r\n \"2018-05-31\",\r\n \"2018-03-31\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"Terms\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01\",\r\n \"2019-05-01\",\r\n \"2019-01-01\",\r\n \"2018-10-01\",\r\n \"2018-08-31\",\r\n \"2018-06-30\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\r\n \"2017-12-30-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"UsageDetails\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-10-01\",\r\n \"2019-05-01-preview\",\r\n \"2019-05-01\",\r\n \"2019-04-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-12-01-preview\",\r\n \"2018-11-01-preview\",\r\n \"2018-10-01\",\r\n \"2018-08-31\",\r\n \"2018-06-30\",\r\n \"2018-05-31\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\r\n \"2017-11-30\",\r\n \"2017-06-30-preview\",\r\n \"2017-04-24-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"Charges\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01\",\r\n \"2019-05-01-preview\",\r\n \"2019-05-01\",\r\n \"2019-01-01\",\r\n \"2018-11-01-preview\",\r\n \"2018-10-01\",\r\n \"2018-08-31\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"credits\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01\",\r\n \"2018-11-01-preview\",\r\n \"2018-10-01\",\r\n \"2018-08-31\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"events\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01\",\r\n \"2018-11-01-preview\",\r\n \"2018-10-01\",\r\n \"2018-08-31\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"lots\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01\",\r\n \"2018-11-01-preview\",\r\n \"2018-10-01\",\r\n \"2018-08-31\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"products\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01\",\r\n \"2018-10-01\",\r\n \"2018-08-31\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"OperationStatus\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-10-01\",\r\n \"2019-05-01-preview\",\r\n \"2019-05-01\",\r\n \"2019-04-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-11-01-preview\",\r\n \"2018-10-01\",\r\n \"2018-08-31\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"OperationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-10-01\",\r\n \"2019-05-01-preview\",\r\n \"2019-05-01\",\r\n \"2019-04-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-11-01-preview\",\r\n \"2018-10-01\",\r\n \"2018-08-31\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"Operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01\",\r\n \"2019-05-01\",\r\n \"2019-01-01\",\r\n \"2018-11-01-preview\",\r\n \"2018-10-01\",\r\n \"2018-08-31\",\r\n \"2018-06-30\",\r\n \"2018-05-31\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\r\n \"2017-11-30\",\r\n \"2017-06-30-preview\",\r\n \"2017-04-24-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/providers/Microsoft.ContainerInstance\",\r\n \"namespace\": \"Microsoft.ContainerInstance\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"6bb8e274-af5d-4df2-98a3-4fd78b4cafd9\",\r\n \"roleDefinitionId\": \"3c60422b-a83a-428d-9830-22609c77aa6c\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"containerGroups\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"Central India\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Korea Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2018-10-01\",\r\n \"2018-09-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2018-02-01-preview\",\r\n \"2017-12-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-08-01-preview\"\r\n ],\r\n \"capabilities\": \"SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"serviceAssociationLinks\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"Central India\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Korea Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2018-10-01\",\r\n \"2018-09-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2018-02-01-preview\",\r\n \"2017-12-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-08-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2018-10-01\",\r\n \"2018-09-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2018-02-01-preview\",\r\n \"2017-12-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capabilities\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"Central India\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Korea Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2018-10-01\",\r\n \"2018-09-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2018-02-01-preview\",\r\n \"2017-12-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"Central India\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Korea Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2018-10-01\",\r\n \"2018-09-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2018-02-01-preview\",\r\n \"2017-12-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Korea Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2018-10-01\",\r\n \"2018-09-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2018-02-01-preview\",\r\n \"2017-12-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2018-10-01\",\r\n \"2018-09-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2018-02-01-preview\",\r\n \"2017-12-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/cachedImages\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"Central India\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Korea Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2018-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"Central India\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Korea Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2018-12-01\",\r\n \"2018-10-01\",\r\n \"2018-09-01\",\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2018-02-01-preview\",\r\n \"2017-12-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/providers/Microsoft.ContainerRegistry\",\r\n \"namespace\": \"Microsoft.ContainerRegistry\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"6a0ec4d3-30cb-4a83-91c0-ae56bc0e3d26\",\r\n \"roleDefinitionId\": \"78e18383-93eb-418a-9887-bc9271046576\"\r\n },\r\n {\r\n \"applicationId\": \"737d58c1-397a-46e7-9d12-7d8c830883c2\",\r\n \"roleDefinitionId\": \"716bb53a-0390-4428-bf41-b1bedde7d751\"\r\n },\r\n {\r\n \"applicationId\": \"918d0db8-4a38-4938-93c1-9313bdfe0272\",\r\n \"roleDefinitionId\": \"dcd2d2c9-3f80-4d72-95a8-2593111b4b12\"\r\n },\r\n {\r\n \"applicationId\": \"d2fa1650-4805-4a83-bcb9-cf41fe63539c\",\r\n \"roleDefinitionId\": \"c15f8dab-b103-4f8d-9afb-fbe4b8e98de2\"\r\n },\r\n {\r\n \"applicationId\": \"a4c95b9e-3994-40cc-8953-5dc66d48348d\",\r\n \"roleDefinitionId\": \"dc88c655-90fa-48d9-8d51-003cc8738508\"\r\n },\r\n {\r\n \"applicationId\": \"62c559cd-db0c-4da0-bab2-972528c65d42\",\r\n \"roleDefinitionId\": \"437b639a-6d74-491d-959f-d172e8c5c1fc\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"registries\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01-preview\",\r\n \"2019-05-01\",\r\n \"2017-10-01\",\r\n \"2017-03-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"registries/scopeMaps\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/tokens\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/generateCredentials\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/privateEndpointConnections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"Switzerland North\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/privateEndpointConnectionProxies\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"Switzerland North\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/privateEndpointConnectionProxies/validate\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"Switzerland North\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/privateLinkResources\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"Switzerland North\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/importImage\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01-preview\",\r\n \"2019-05-01\",\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/listBuildSourceUploadUrl\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2019-04-01\",\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/scheduleRun\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2019-04-01\",\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/runs\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2019-04-01\",\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/taskRuns\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"registries/taskRuns/listDetails\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/runs/listLogSasUrl\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2019-04-01\",\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/runs/cancel\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2019-04-01\",\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/tasks\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2019-04-01\",\r\n \"2018-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"registries/tasks/listDetails\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2019-04-01\",\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/getBuildSourceUploadUrl\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/queueBuild\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/builds\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/builds/getLogLink\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/builds/cancel\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/buildTasks\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"registries/buildTasks/listSourceRepositoryProperties\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/buildTasks/steps\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/buildTasks/steps/listBuildArguments\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/replications\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01-preview\",\r\n \"2019-05-01\",\r\n \"2017-10-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"registries/webhooks\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01-preview\",\r\n \"2019-05-01\",\r\n \"2017-10-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"registries/webhooks/ping\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01-preview\",\r\n \"2019-05-01\",\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/webhooks/getCallbackConfig\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01-preview\",\r\n \"2019-05-01\",\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/webhooks/listEvents\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01-preview\",\r\n \"2019-05-01\",\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/setupAuth\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/authorize\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01-preview\",\r\n \"2019-05-01-preview\",\r\n \"2019-05-01\",\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/GetCredentials\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/listCredentials\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"France Central\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01-preview\",\r\n \"2019-05-01\",\r\n \"2017-10-01\",\r\n \"2017-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/regenerateCredential\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"France Central\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01-preview\",\r\n \"2019-05-01\",\r\n \"2017-10-01\",\r\n \"2017-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/listUsages\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01-preview\",\r\n \"2019-05-01\",\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/listPolicies\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"France Central\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/updatePolicies\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"France Central\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/regenerateCredentials\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/eventGridFilters\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01-preview\",\r\n \"2019-05-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01-preview\",\r\n \"2017-03-01\",\r\n \"2016-06-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01-preview\",\r\n \"2019-05-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01-preview\",\r\n \"2017-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01-preview\",\r\n \"2019-05-01-preview\",\r\n \"2019-05-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/providers/Microsoft.ContainerService\",\r\n \"namespace\": \"Microsoft.ContainerService\",\r\n \"authorization\": {\r\n \"applicationId\": \"7319c514-987d-4e9b-ac3d-d38c4f427f4c\",\r\n \"roleDefinitionId\": \"1b4a0c7f-2217-416f-acfa-cf73452fdc1c\",\r\n \"managedByRoleDefinitionId\": \"9e3af657-a8ff-583c-a75c-2fe7c4bcb635\",\r\n \"managedByAuthorization\": {\r\n \"allowManagedByInheritance\": true\r\n }\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"containerServices\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-31\",\r\n \"2016-09-30\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"managedClusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"Southeast Asia\",\r\n \"Australia Southeast\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"Brazil South\",\r\n \"Germany North\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Germany West Central\",\r\n \"UAE North\",\r\n \"Norway East\",\r\n \"Norway West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2020-02-01\",\r\n \"2020-01-01\",\r\n \"2019-11-01\",\r\n \"2019-10-01\",\r\n \"2019-08-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-08-01-preview\",\r\n \"2018-03-31\",\r\n \"2017-08-31\"\r\n ],\r\n \"capabilities\": \"SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"openShiftManagedClusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"Central India\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-30-preview\",\r\n \"2019-04-30\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations/openShiftClusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"Central India\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-30-preview\",\r\n \"2019-04-30\",\r\n \"2018-09-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-08-31\",\r\n \"2017-01-31\",\r\n \"2016-09-30\",\r\n \"2016-03-30\",\r\n \"2015-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"South Africa North\",\r\n \"Brazil South\",\r\n \"Germany North\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"UAE North\",\r\n \"Norway East\",\r\n \"Norway West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-31\",\r\n \"2016-03-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"France Central\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"South Africa North\",\r\n \"Brazil South\",\r\n \"Germany North\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"UAE North\",\r\n \"Norway East\",\r\n \"Norway West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-10-31\",\r\n \"2018-03-31\",\r\n \"2017-08-31\",\r\n \"2017-07-01\",\r\n \"2017-01-31\",\r\n \"2016-09-30\",\r\n \"2016-03-30\",\r\n \"2015-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/orchestrators\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"South Africa North\",\r\n \"Brazil South\",\r\n \"Germany North\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"UAE North\",\r\n \"Norway East\",\r\n \"Norway West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2020-02-01\",\r\n \"2020-01-01\",\r\n \"2019-11-01\",\r\n \"2019-10-01\",\r\n \"2019-08-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2017-09-30\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/providers/Microsoft.CostManagement\",\r\n \"namespace\": \"Microsoft.CostManagement\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"3184af01-7a88-49e0-8b55-8ecdce0aa950\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Connectors\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"CloudConnectors\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ExternalBillingAccounts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ExternalBillingAccounts/Dimensions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-10-01\",\r\n \"2019-05-01-preview\",\r\n \"2019-04-01-preview\",\r\n \"2019-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ExternalBillingAccounts/Query\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-10-01\",\r\n \"2019-05-01-preview\",\r\n \"2019-04-01-preview\",\r\n \"2019-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ExternalSubscriptions/Dimensions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-10-01\",\r\n \"2019-05-01-preview\",\r\n \"2019-04-01-preview\",\r\n \"2019-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ExternalSubscriptions/Query\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-10-01\",\r\n \"2019-05-01-preview\",\r\n \"2019-04-01-preview\",\r\n \"2019-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ExternalSubscriptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-03-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"Forecast\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-10-01\",\r\n \"2019-05-01-preview\",\r\n \"2019-04-01-preview\",\r\n \"2019-03-01-preview\",\r\n \"2018-12-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"ExternalSubscriptions/Forecast\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-10-01\",\r\n \"2019-05-01-preview\",\r\n \"2019-04-01-preview\",\r\n \"2019-03-01-preview\",\r\n \"2018-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ExternalBillingAccounts/Forecast\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-10-01\",\r\n \"2019-05-01-preview\",\r\n \"2019-04-01-preview\",\r\n \"2019-03-01-preview\",\r\n \"2018-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Settings\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01\",\r\n \"2019-01-01\",\r\n \"2018-10-01\",\r\n \"2018-08-31\",\r\n \"2018-08-01-preview\",\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"register\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-03-01-preview\",\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Query\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-10-01\",\r\n \"2019-05-01-preview\",\r\n \"2019-04-01-preview\",\r\n \"2019-03-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-12-01-preview\",\r\n \"2018-10-01-preview\",\r\n \"2018-08-31\",\r\n \"2018-08-01-preview\",\r\n \"2018-05-31\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"Dimensions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-10-01\",\r\n \"2019-05-01-preview\",\r\n \"2019-04-01-preview\",\r\n \"2019-03-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-12-01-preview\",\r\n \"2018-10-01-preview\",\r\n \"2018-08-31\",\r\n \"2018-08-01-preview\",\r\n \"2018-05-31\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"Budgets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01\",\r\n \"2019-04-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"ExternalSubscriptions/Alerts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01\",\r\n \"2018-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ExternalBillingAccounts/Alerts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01\",\r\n \"2018-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Alerts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01\",\r\n \"2018-08-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"showbackRules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-03-01-preview\",\r\n \"2019-02-03-alpha\",\r\n \"2019-02-02-alpha\",\r\n \"2019-02-01-alpha\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"Exports\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-10-01\",\r\n \"2019-09-01\",\r\n \"2019-01-01-preview\",\r\n \"2019-01-01\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"Reports\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-12-01-preview\",\r\n \"2018-08-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"Reportconfigs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-31\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"BillingAccounts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Departments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"EnrollmentAccounts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Views\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-10-01\",\r\n \"2019-04-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/providers/Microsoft.CostManagementExports\",\r\n \"namespace\": \"Microsoft.CostManagementExports\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"e5408ad0-c4e2-43aa-b6f2-3b4951286d99\",\r\n \"roleDefinitionId\": \"5e4888b3-2747-4e5b-9897-ec0865b91bcf\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/providers/Microsoft.CustomerLockbox\",\r\n \"namespace\": \"Microsoft.CustomerLockbox\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"a0551534-cfc9-4e1f-9a7a-65093b32bb38\"\r\n },\r\n {\r\n \"applicationId\": \"01fc33a7-78ba-4d2f-a4b7-768e336e890e\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"requests\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/providers/Microsoft.CustomProviders\",\r\n \"namespace\": \"Microsoft.CustomProviders\",\r\n \"authorization\": {\r\n \"applicationId\": \"bf8eb16c-7ba7-4b47-86be-ac5e4b2007a5\",\r\n \"roleDefinitionId\": \"FACF09C9-A5D0-4D34-8B1F-B623AC29C6F7\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"resourceProviders\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"associations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationStatuses\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/providers/Microsoft.DataBox\",\r\n \"namespace\": \"Microsoft.DataBox\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"5613cb5c-a7c9-4099-8034-511fd7616cb2\",\r\n \"roleDefinitionId\": \"382D72D1-63DC-4243-9B99-CB69FDD473D8\",\r\n \"managedByRoleDefinitionId\": \"f4c0a4f9-768c-4927-ab83-d319111d6ef4\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"jobs\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"South India\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"Korea Central\",\r\n \"Japan East\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/validateAddress\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"South India\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"Korea Central\",\r\n \"Japan East\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"South India\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"Korea Central\",\r\n \"Japan East\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"South India\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"Korea Central\",\r\n \"Japan East\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/availableSkus\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"South India\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"Korea Central\",\r\n \"Japan East\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/validateInputs\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"South India\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"Korea Central\",\r\n \"Japan East\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/regionConfiguration\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"South India\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"Korea Central\",\r\n \"Japan East\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/providers/Microsoft.DataBoxEdge\",\r\n \"namespace\": \"Microsoft.DataBoxEdge\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"2368d027-f996-4edb-bf48-928f98f2ab8c\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"DataBoxEdgeDevices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-07-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"DataBoxEdgeDevices/checkNameAvailability\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-07-01\",\r\n \"2017-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-07-01\",\r\n \"2017-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/providers/Microsoft.Databricks\",\r\n \"namespace\": \"Microsoft.Databricks\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"d9327919-6775-4843-9037-3fb0fb0473cb\",\r\n \"roleDefinitionId\": \"f31567d0-b61f-43c2-97a5-a98cdc3bfcb6\",\r\n \"managedByRoleDefinitionId\": \"8e3af657-a8ff-443c-a75c-2fe8c4bcb635\"\r\n },\r\n {\r\n \"applicationId\": \"2ff814a6-3304-4ab8-85cb-cd0e6f879c1d\",\r\n \"roleDefinitionId\": \"f31567d0-b61f-43c2-97a5-a98cdc3bfcb6\",\r\n \"managedByRoleDefinitionId\": \"8e3af657-a8ff-443c-a75c-2fe8c4bcb635\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workspaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa West\",\r\n \"South Africa North\",\r\n \"Brazil South\",\r\n \"France Central\",\r\n \"UAE North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"workspaces/virtualNetworkPeerings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"UAE North\",\r\n \"Brazil South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"workspaces/dbWorkspaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"UAE North\",\r\n \"Brazil South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"UAE North\",\r\n \"Brazil South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"UAE North\",\r\n \"Brazil South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-15\",\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\",\r\n \"2017-08-01-preview\",\r\n \"2016-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationstatuses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa West\",\r\n \"South Africa North\",\r\n \"Brazil South\",\r\n \"France Central\",\r\n \"UAE North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/getNetworkPolicies\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa West\",\r\n \"South Africa North\",\r\n \"Brazil South\",\r\n \"France Central\",\r\n \"UAE North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/providers/Microsoft.DataCatalog\",\r\n \"namespace\": \"Microsoft.DataCatalog\",\r\n \"authorization\": {\r\n \"applicationId\": \"213f5f78-fb30-46c7-9e98-91c720a1c026\",\r\n \"roleDefinitionId\": \"D55E2225-A6AB-481C-A5BE-1B7687C293FA\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"catalogs\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-30\",\r\n \"2015-07-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-12-01-preview\",\r\n \"2016-03-30\",\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-12-01-preview\",\r\n \"2016-03-30\",\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-30\",\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/jobs\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-30\",\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-12-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/providers/Microsoft.DataFactory\",\r\n \"namespace\": \"Microsoft.DataFactory\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"0947a342-ab4a-43be-93b3-b8243fc161e5\",\r\n \"roleDefinitionId\": \"f0a6aa2a-e9d8-4bae-bcc2-36b405e8a5da\"\r\n },\r\n {\r\n \"applicationId\": \"5d13f7d7-0567-429c-9880-320e9555e5fc\",\r\n \"roleDefinitionId\": \"956a8f20-9168-4c71-8e27-3c0460ac39a4\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dataFactories\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-10-01\",\r\n \"2015-09-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"factories\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Canada Central\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2017-09-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"factories/integrationRuntimes\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Central India\",\r\n \"Brazil South\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/diagnosticSettings\",\r\n \"locations\": [\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/metricDefinitions\",\r\n \"locations\": [\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkAzureDataFactoryNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-10-01\",\r\n \"2015-09-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactorySchema\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-10-01\",\r\n \"2015-09-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2017-09-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-10-01\",\r\n \"2015-09-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/configureFactoryRepo\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"Brazil South\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/getFeatureValue\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"Brazil South\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"West US 2\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/providers/Microsoft.DataLakeAnalytics\",\r\n \"namespace\": \"Microsoft.DataLakeAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/dataLakeStoreAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers/listSasTokens\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-01-preview\",\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-01-preview\",\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-01-preview\",\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-01-preview\",\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-01-preview\",\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-01-preview\",\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/eventGridFilters\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/providers/Microsoft.DataMigration\",\r\n \"namespace\": \"Microsoft.DataMigration\",\r\n \"authorization\": {\r\n \"applicationId\": \"a4bad4aa-bf02-4631-9f78-a64ffdba8150\",\r\n \"roleDefinitionId\": \"b831a21d-db98-4760-89cb-bef871952df1\",\r\n \"managedByRoleDefinitionId\": \"6256fb55-9e59-4018-a9e1-76b11c0a4c89\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-15-preview\",\r\n \"2018-04-19\",\r\n \"2018-03-31-preview\",\r\n \"2018-03-15-preview\",\r\n \"2017-11-15-privatepreview\",\r\n \"2017-11-15-preview\",\r\n \"2017-04-15-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-15-preview\",\r\n \"2018-04-19\",\r\n \"2018-03-31-preview\",\r\n \"2018-03-15-preview\",\r\n \"2017-11-15-privatepreview\",\r\n \"2017-11-15-preview\",\r\n \"2017-04-15-privatepreview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"services/projects\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-15-preview\",\r\n \"2018-04-19\",\r\n \"2018-03-31-preview\",\r\n \"2018-03-15-preview\",\r\n \"2017-11-15-privatepreview\",\r\n \"2017-11-15-preview\",\r\n \"2017-04-15-privatepreview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-15-preview\",\r\n \"2018-04-19\",\r\n \"2018-03-31-preview\",\r\n \"2018-03-15-preview\",\r\n \"2017-11-15-privatepreview\",\r\n \"2017-11-15-preview\",\r\n \"2017-04-15-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationStatuses\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-15-preview\",\r\n \"2018-04-19\",\r\n \"2018-03-31-preview\",\r\n \"2018-03-15-preview\",\r\n \"2017-11-15-privatepreview\",\r\n \"2017-11-15-preview\",\r\n \"2017-04-15-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-15-preview\",\r\n \"2018-04-19\",\r\n \"2018-03-31-preview\",\r\n \"2018-03-15-preview\",\r\n \"2017-11-15-privatepreview\",\r\n \"2017-11-15-preview\",\r\n \"2017-04-15-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-15-preview\",\r\n \"2018-04-19\",\r\n \"2018-03-31-preview\",\r\n \"2018-03-15-preview\",\r\n \"2017-11-15-privatepreview\",\r\n \"2017-11-15-preview\",\r\n \"2017-04-15-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/providers/Microsoft.DataShare\",\r\n \"namespace\": \"Microsoft.DataShare\",\r\n \"authorization\": {\r\n \"applicationId\": \"799f1985-1517-4fe1-af2b-ba3d87d4996b\",\r\n \"roleDefinitionId\": \"0146496b-e06f-439a-83be-49fac884edf5\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/shares\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/shares/datasets\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/shares/synchronizationSettings\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/shares/invitations\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/sharesubscriptions\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/shares/providersharesubscriptions\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/sharesubscriptions/datasetmappings\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/sharesubscriptions/triggers\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/sharesubscriptions/consumerSourceDataSets\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listinvitations\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"East US\",\r\n \"Australia East\",\r\n \"Southeast Asia\",\r\n \"West US 2\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-11-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/rejectInvitation\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"East US\",\r\n \"Australia East\",\r\n \"West US 2\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2018-11-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/consumerInvitations\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"East US\",\r\n \"Australia East\",\r\n \"West US 2\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2018-11-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2018-11-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/providers/Microsoft.DBforMariaDB\",\r\n \"namespace\": \"Microsoft.DBforMariaDB\",\r\n \"authorization\": {\r\n \"applicationId\": \"76cd24bf-a9fc-4344-b1dc-908275de6d6d\",\r\n \"roleDefinitionId\": \"c13b7b9c-2ed1-4901-b8a8-16f35468da29\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableServers\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/virtualNetworkRules\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/azureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/performanceTiers\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/securityAlertPoliciesAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/privateEndpointConnectionProxyOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/privateEndpointConnectionProxyAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/privateEndpointConnectionOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/privateEndpointConnectionAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/securityAlertPoliciesOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/recommendedActionSessionsAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/recommendedActionSessionsOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/topQueryStatistics\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/queryTexts\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/waitStatistics\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/advisors\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/privateLinkResources\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/privateEndpointConnections\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/privateEndpointConnectionProxies\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/serverKeyAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01-privatepreview\",\r\n \"2020-01-01-preview\",\r\n \"2020-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/serverKeyOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01-privatepreview\",\r\n \"2020-01-01-preview\",\r\n \"2020-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/providers/Microsoft.DBforMySQL\",\r\n \"namespace\": \"Microsoft.DBforMySQL\",\r\n \"authorization\": {\r\n \"applicationId\": \"76cd24bf-a9fc-4344-b1dc-908275de6d6d\",\r\n \"roleDefinitionId\": \"c13b7b9c-2ed1-4901-b8a8-16f35468da29\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableServers\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/virtualNetworkRules\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/azureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/administratorOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/administratorAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/privateEndpointConnectionProxyOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/privateEndpointConnectionProxyAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/privateEndpointConnectionOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/privateEndpointConnectionAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/performanceTiers\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UAE North\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/securityAlertPoliciesAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/securityAlertPoliciesOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/recommendedActionSessionsAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/recommendedActionSessionsOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/topQueryStatistics\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/queryTexts\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/waitStatistics\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/advisors\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/privateLinkResources\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/privateEndpointConnections\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/privateEndpointConnectionProxies\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/keys\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01-privatepreview\",\r\n \"2020-01-01-preview\",\r\n \"2020-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/serverKeyAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01-privatepreview\",\r\n \"2020-01-01-preview\",\r\n \"2020-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/serverKeyOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01-privatepreview\",\r\n \"2020-01-01-preview\",\r\n \"2020-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/providers/Microsoft.DBforPostgreSQL\",\r\n \"namespace\": \"Microsoft.DBforPostgreSQL\",\r\n \"authorization\": {\r\n \"applicationId\": \"76cd24bf-a9fc-4344-b1dc-908275de6d6d\",\r\n \"roleDefinitionId\": \"c13b7b9c-2ed1-4901-b8a8-16f35468da29\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"serversv2\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-29-privatepreview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"serverGroups\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"Southeast Asia\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-29-privatepreview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"singleServers\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-14-privatepreview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableServers\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/virtualNetworkRules\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/azureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/administratorOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/administratorAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/privateEndpointConnectionProxyOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/privateEndpointConnectionProxyAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/privateEndpointConnectionOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/privateEndpointConnectionAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/performanceTiers\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/securityAlertPoliciesAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/securityAlertPoliciesOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/recommendedActionSessionsAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/recommendedActionSessionsOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/topQueryStatistics\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/queryTexts\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/waitStatistics\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/advisors\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/privateLinkResources\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/privateEndpointConnections\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/privateEndpointConnectionProxies\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\",\r\n \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/keys\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01-privatepreview\",\r\n \"2020-01-01-preview\",\r\n \"2020-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/serverKeyAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01-privatepreview\",\r\n \"2020-01-01-preview\",\r\n \"2020-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/serverKeyOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Norway East\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01-privatepreview\",\r\n \"2020-01-01-preview\",\r\n \"2020-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/providers/Microsoft.DeploymentManager\",\r\n \"namespace\": \"Microsoft.DeploymentManager\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"5b306cba-9c71-49db-96c3-d17ca2379c4d\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"artifactSources\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01-preview\",\r\n \"2018-09-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"serviceTopologies\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01-preview\",\r\n \"2018-09-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"serviceTopologies/services\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01-preview\",\r\n \"2018-09-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"serviceTopologies/services/serviceUnits\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01-preview\",\r\n \"2018-09-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"steps\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01-preview\",\r\n \"2018-09-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01-preview\",\r\n \"2018-09-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01-preview\",\r\n \"2018-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01-preview\",\r\n \"2018-09-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/providers/Microsoft.DesktopVirtualization\",\r\n \"namespace\": \"Microsoft.DesktopVirtualization\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"50e95039-b200-4007-bc97-8d5790743a63\",\r\n \"roleDefinitionId\": \"CAD30215-AD1C-43BF-BE90-7BFA8B493E62\"\r\n },\r\n {\r\n \"applicationId\": \"9cdead84-a844-4324-93f2-b2e6bb768d07\"\r\n },\r\n {\r\n \"applicationId\": \"a85cf173-4192-42f8-81fa-777a763e6e2c\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-01-23-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/providers/Microsoft.Devices\",\r\n \"namespace\": \"Microsoft.Devices\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"0cd79364-7a90-4354-9984-6e36c841418d\",\r\n \"roleDefinitionId\": \"C121DF10-FE58-4BC4-97F9-8296879F7BBB\"\r\n },\r\n {\r\n \"applicationId\": \"29f411f1-b2cf-4043-8ac8-2185d7316811\"\r\n },\r\n {\r\n \"applicationId\": \"89d10474-74af-4874-99a7-c23c2f643083\",\r\n \"roleDefinitionId\": \"7df22794-26e3-4f94-9d50-a4f0f6e1cb41\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2019-11-04\",\r\n \"2019-07-01-preview\",\r\n \"2019-03-22-preview\",\r\n \"2019-03-22\",\r\n \"2018-12-01-preview\",\r\n \"2018-04-01\",\r\n \"2018-01-22\",\r\n \"2017-07-01\",\r\n \"2017-01-19\",\r\n \"2016-02-03\",\r\n \"2015-08-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkProvisioningServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-22\",\r\n \"2017-11-15\",\r\n \"2017-08-21-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2019-11-04\",\r\n \"2019-07-01-preview\",\r\n \"2019-03-22-preview\",\r\n \"2019-03-22\",\r\n \"2018-12-01-preview\",\r\n \"2018-04-01\",\r\n \"2018-01-22\",\r\n \"2017-07-01\",\r\n \"2017-01-19\",\r\n \"2016-02-03\",\r\n \"2015-08-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2019-11-04\",\r\n \"2019-07-01-preview\",\r\n \"2019-03-22-preview\",\r\n \"2019-03-22\",\r\n \"2018-12-01-preview\",\r\n \"2018-04-01\",\r\n \"2018-01-22\",\r\n \"2017-07-01\",\r\n \"2017-01-19\",\r\n \"2016-02-03\",\r\n \"2015-08-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-11-04\",\r\n \"2019-09-01\",\r\n \"2019-07-01-preview\",\r\n \"2019-03-22-preview\",\r\n \"2019-03-22\",\r\n \"2018-12-01-preview\",\r\n \"2018-04-01-preview\",\r\n \"2018-04-01\",\r\n \"2018-01-22-preview\",\r\n \"2018-01-22\",\r\n \"2017-11-15\",\r\n \"2017-09-25-preview\",\r\n \"2017-08-21-preview\",\r\n \"2017-07-01\",\r\n \"2017-01-19\",\r\n \"2016-02-03\",\r\n \"2015-08-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"IotHubs\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2019-11-04\",\r\n \"2019-07-01-preview\",\r\n \"2019-03-22-preview\",\r\n \"2019-03-22\",\r\n \"2018-12-01-preview\",\r\n \"2018-04-01-preview\",\r\n \"2018-04-01\",\r\n \"2018-01-22\",\r\n \"2017-07-01\",\r\n \"2017-01-19\",\r\n \"2016-02-03\",\r\n \"2015-08-15-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"IotHubs/eventGridFilters\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-31\",\r\n \"2018-01-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ProvisioningServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2018-01-22\",\r\n \"2017-11-15\",\r\n \"2017-08-21-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/providers/Microsoft.DevOps\",\r\n \"namespace\": \"Microsoft.DevOps\",\r\n \"authorization\": {\r\n \"applicationId\": \"499b84ac-1321-427f-aa17-267ca6975798\",\r\n \"roleDefinitionId\": \"6a18f445-86f0-4e2e-b8a9-6b9b5677e3d8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"pipelines\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/providers/Microsoft.DevSpaces\",\r\n \"namespace\": \"Microsoft.DevSpaces\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"controllers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Canada East\",\r\n \"West Europe\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia SouthEast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"controllers/listConnectionDetails\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Canada East\",\r\n \"West Europe\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia SouthEast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Canada East\",\r\n \"West Europe\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia SouthEast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Canada East\",\r\n \"West Europe\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia SouthEast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Canada East\",\r\n \"West Europe\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia SouthEast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkContainerHostMapping\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Canada East\",\r\n \"West Europe\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia SouthEast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/providers/Microsoft.DigitalTwins\",\r\n \"namespace\": \"Microsoft.DigitalTwins\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"0b07f429-9f4b-4714-9392-cc5e8e80c8b0\"\r\n },\r\n {\r\n \"applicationId\": \"c115998b-3d59-49b4-b55b-042a9ba1dbfe\",\r\n \"roleDefinitionId\": \"07af60d1-cd6d-4ad4-9b56-ece6c78a3fe1\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/providers/Microsoft.DocumentDB\",\r\n \"namespace\": \"Microsoft.DocumentDB\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"57c0fc58-a83a-41d0-8ae9-08952659bdfd\",\r\n \"roleDefinitionId\": \"FFFD5CF5-FFD3-4B24-B0E2-0715ADD4C282\"\r\n },\r\n {\r\n \"applicationId\": \"36e2398c-9dd3-4f29-9a72-d9f2cfc47ad9\",\r\n \"roleDefinitionId\": \"D5A795DE-916D-4818-B015-33C9E103E39B\"\r\n },\r\n {\r\n \"applicationId\": \"a232010e-820c-4083-83bb-3ace5fc29d0b\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databaseAccounts\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"UAE North\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Brazil South\",\r\n \"Korea South\",\r\n \"Korea Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2019-12-12\",\r\n \"2019-08-01-preview\",\r\n \"2019-08-01\",\r\n \"2016-03-31\",\r\n \"2016-03-19\",\r\n \"2015-11-06\",\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"databaseAccountNames\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"UAE North\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Brazil South\",\r\n \"Korea South\",\r\n \"Korea Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2019-12-12\",\r\n \"2019-08-01-preview\",\r\n \"2019-08-01\",\r\n \"2016-03-31\",\r\n \"2016-03-19\",\r\n \"2015-11-06\",\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"UAE North\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Brazil South\",\r\n \"Korea South\",\r\n \"Korea Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2019-12-12\",\r\n \"2019-08-01-preview\",\r\n \"2019-08-01\",\r\n \"2016-03-31\",\r\n \"2016-03-19\",\r\n \"2015-11-06\",\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"UAE North\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Brazil South\",\r\n \"Korea South\",\r\n \"Korea Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2019-12-12\",\r\n \"2019-08-01-preview\",\r\n \"2019-08-01\",\r\n \"2016-03-31\",\r\n \"2016-03-19\",\r\n \"2015-11-06\",\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationsStatus\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"UAE North\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Brazil South\",\r\n \"Korea South\",\r\n \"Korea Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2019-12-12\",\r\n \"2019-08-01-preview\",\r\n \"2019-08-01\",\r\n \"2016-03-31\",\r\n \"2016-03-19\",\r\n \"2015-11-06\",\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"UAE North\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Brazil South\",\r\n \"Korea South\",\r\n \"Korea Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2019-12-12\",\r\n \"2019-08-01-preview\",\r\n \"2019-08-01\",\r\n \"2016-03-31\",\r\n \"2016-03-19\",\r\n \"2015-11-06\",\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"UAE North\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Brazil South\",\r\n \"Korea South\",\r\n \"Korea Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2019-12-12\",\r\n \"2019-08-01-preview\",\r\n \"2019-08-01\",\r\n \"2016-03-31\",\r\n \"2016-03-19\",\r\n \"2015-11-06\",\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/providers/Microsoft.DomainRegistration\",\r\n \"namespace\": \"Microsoft.DomainRegistration\",\r\n \"authorization\": {\r\n \"applicationId\": \"ea2f600a-4980-45b7-89bf-d34da487bda1\",\r\n \"roleDefinitionId\": \"54d7f2e3-5040-48a7-ae90-eebf629cfa0b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domains\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-02-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"domains/domainOwnershipIdentifiers\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-02-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"topLevelDomains\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-02-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-02-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listDomainRecommendations\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-02-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateDomainRegistrationInformation\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-02-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"generateSsoRequest\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-02-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01\",\r\n \"2018-02-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/providers/Microsoft.EnterpriseKnowledgeGraph\",\r\n \"namespace\": \"Microsoft.EnterpriseKnowledgeGraph\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-12-03\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-12-03\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-12-03\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-12-03\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/providers/Microsoft.EventGrid\",\r\n \"namespace\": \"Microsoft.EventGrid\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"4962773b-9cdb-44cf-a8bf-237846a00ab7\",\r\n \"roleDefinitionId\": \"7FE036D8-246F-48BF-A78F-AB3EE699C8F3\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-04-01-preview\",\r\n \"2020-01-01-preview\",\r\n \"2019-06-01\",\r\n \"2019-02-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-09-15-preview\",\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/eventSubscriptions\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01-preview\",\r\n \"2020-01-01-preview\",\r\n \"2019-06-01\",\r\n \"2019-02-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-09-15-preview\",\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"eventSubscriptions\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01-preview\",\r\n \"2020-01-01-preview\",\r\n \"2019-06-01\",\r\n \"2019-02-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-09-15-preview\",\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"topics\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01-preview\",\r\n \"2020-01-01-preview\",\r\n \"2019-06-01\",\r\n \"2019-02-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-09-15-preview\",\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"domains\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01-preview\",\r\n \"2020-01-01-preview\",\r\n \"2019-06-01\",\r\n \"2019-02-01-preview\",\r\n \"2018-09-15-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"domains/topics\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01-preview\",\r\n \"2020-01-01-preview\",\r\n \"2019-06-01\",\r\n \"2019-02-01-preview\",\r\n \"2018-09-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"topicTypes\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01-preview\",\r\n \"2020-01-01-preview\",\r\n \"2019-06-01\",\r\n \"2019-02-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-09-15-preview\",\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01-preview\",\r\n \"2020-01-01-preview\",\r\n \"2019-06-01\",\r\n \"2019-02-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-09-15-preview\",\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationsStatus\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01-preview\",\r\n \"2020-01-01-preview\",\r\n \"2019-06-01\",\r\n \"2019-02-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-09-15-preview\",\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01-preview\",\r\n \"2020-01-01-preview\",\r\n \"2019-06-01\",\r\n \"2019-02-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-09-15-preview\",\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/topicTypes\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01-preview\",\r\n \"2020-01-01-preview\",\r\n \"2019-06-01\",\r\n \"2019-02-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-09-15-preview\",\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"extensionTopics\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01-preview\",\r\n \"2020-01-01-preview\",\r\n \"2019-06-01\",\r\n \"2019-02-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-09-15-preview\",\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-04-01-preview\",\r\n \"2020-01-01-preview\",\r\n \"2019-06-01\",\r\n \"2019-02-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-09-15-preview\",\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationsStatus\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-04-01-preview\",\r\n \"2020-01-01-preview\",\r\n \"2019-06-01\",\r\n \"2019-02-01-preview\",\r\n \"2019-01-01\",\r\n \"2018-09-15-preview\",\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"systemTopics\",\r\n \"locations\": [\r\n \"global\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"systemTopics/eventSubscriptions\",\r\n \"locations\": [\r\n \"global\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"partnerNamespaces\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Central US\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"partnerTopics\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Central US\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"partnerTopics/eventSubscriptions\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Central US\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"partnerNamespaces/eventChannels\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Central US\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/providers/Microsoft.EventHub\",\r\n \"namespace\": \"Microsoft.EventHub\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"80369ed6-5f11-4dd9-bef3-692475845e77\",\r\n \"roleDefinitionId\": \"eb8e1991-5de0-42a6-a64b-29b059341b7b\"\r\n },\r\n {\r\n \"applicationId\": \"6201d19e-14fb-4472-a2d6-5634a5c97568\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\",\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"namespaces/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/networkrulesets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\",\r\n \"2017-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/eventhubs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/eventhubs/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/eventhubs/consumergroups\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNamespaceAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sku\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/disasterrecoveryconfigs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/disasterrecoveryconfigs/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\",\r\n \"2017-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\",\r\n \"2017-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"availableClusterRegions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/providers/Microsoft.Experimentation\",\r\n \"namespace\": \"Microsoft.Experimentation\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"e00d2f8a-f6c8-46e4-b379-e66082e28ca8\",\r\n \"roleDefinitionId\": \"d3a360d9-17f9-410e-9465-5c914c8cf570\",\r\n \"managedByRoleDefinitionId\": \"fa096ccd-4e8f-49de-9594-64449b3ac6b3\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/providers/Microsoft.Falcon\",\r\n \"namespace\": \"Microsoft.Falcon\",\r\n \"authorizations\": [],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-20-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/providers/Microsoft.Features\",\r\n \"namespace\": \"Microsoft.Features\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"features\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-12-01\",\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-12-01\",\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"featureProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptionFeatureRegistrations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-12-01\",\r\n \"2014-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/providers/Microsoft.GuestConfiguration\",\r\n \"namespace\": \"Microsoft.GuestConfiguration\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"e935b4a5-8968-416d-8414-caed51c782a9\",\r\n \"roleDefinitionId\": \"9c6ffa40-421e-4dc0-9739-76b0699a11de\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"guestConfigurationAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-20\",\r\n \"2018-06-30-preview\",\r\n \"2018-01-20-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"software\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-30-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"softwareUpdates\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-30-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"softwareUpdateProfile\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-30-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-20\",\r\n \"2018-06-30-preview\",\r\n \"2018-01-20-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/providers/Microsoft.HanaOnAzure\",\r\n \"namespace\": \"Microsoft.HanaOnAzure\",\r\n \"authorization\": {\r\n \"applicationId\": \"cc5476ec-3074-44d1-8461-711f5d9b0e39\",\r\n \"roleDefinitionId\": \"4a10987e-dbcf-4c3d-8e3d-7ddcd9c771c2\",\r\n \"managedByRoleDefinitionId\": \"9e3af657-a8ff-583c-a75c-2fe7c4bcb635\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"hanaInstances\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-03-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"sapMonitors\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Southeast Asia\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-03-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/operationsStatus\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Southeast Asia\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-03-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-03-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Southeast Asia\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-03-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Southeast Asia\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-03-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/providers/Microsoft.HardwareSecurityModules\",\r\n \"namespace\": \"Microsoft.HardwareSecurityModules\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"0eb690b7-d23e-4fb0-b43e-cd161ac80cc3\",\r\n \"roleDefinitionId\": \"48397dc8-3910-486a-8165-ab2df987447f\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-10-31-preview\",\r\n \"2018-10-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US 2\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Switzerland North\",\r\n \"Switzerland West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-10-31-preview\",\r\n \"2018-10-31\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/providers/Microsoft.HDInsight\",\r\n \"namespace\": \"Microsoft.HDInsight\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"9191c4da-09fe-49d9-a5f1-d41cbe92ad95\",\r\n \"roleDefinitionId\": \"d102a6f3-d9cb-4633-8950-1243b975886c\",\r\n \"managedByRoleDefinitionId\": \"346da55d-e1db-4a5a-89db-33ab3cdb6fc6\"\r\n },\r\n {\r\n \"applicationId\": \"7865c1d2-f040-46cc-875f-831a1ef6a28a\",\r\n \"roleDefinitionId\": \"e27c0895-d168-46d5-8b65-870eb2350378\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"France Central\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2015-03-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"clusters/applications\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"France Central\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"France Central\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capabilities\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"France Central\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"France Central\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/billingSpecs\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"France Central\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"France Central\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/azureasyncoperations\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"France Central\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/validateCreateRequest\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"North Central US\",\r\n \"Central US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"France Central\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/providers/Microsoft.HealthcareApis\",\r\n \"namespace\": \"Microsoft.HealthcareApis\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"4f6778d8-5aef-43dc-a1ff-b073724b9495\"\r\n },\r\n {\r\n \"applicationId\": \"3274406e-4e0a-4852-ba4f-d7226630abb7\",\r\n \"roleDefinitionId\": \"e39edba5-cde8-4529-ba1f-159138220220\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"UK West\",\r\n \"North Central US\",\r\n \"West US 2\",\r\n \"Australia East\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-16\",\r\n \"2018-08-20-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"UK West\",\r\n \"North Central US\",\r\n \"West US 2\",\r\n \"Australia East\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-16\",\r\n \"2018-08-20-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [\r\n \"UK West\",\r\n \"North Central US\",\r\n \"West US 2\",\r\n \"Australia East\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-16\",\r\n \"2018-08-20-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"UK West\",\r\n \"North Central US\",\r\n \"West US 2\",\r\n \"Australia East\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-16\",\r\n \"2018-08-20-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"UK West\",\r\n \"North Central US\",\r\n \"West US 2\",\r\n \"Australia East\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-16\",\r\n \"2018-08-20-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/providers/Microsoft.HybridCompute\",\r\n \"namespace\": \"Microsoft.HybridCompute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"machines\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-03-11-preview\",\r\n \"2019-12-12\",\r\n \"2019-08-02-preview\",\r\n \"2019-03-18-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-03-11-preview\",\r\n \"2019-12-12\",\r\n \"2019-08-02-preview\",\r\n \"2019-03-18-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/providers/Microsoft.HybridData\",\r\n \"namespace\": \"Microsoft.HybridData\",\r\n \"authorization\": {\r\n \"applicationId\": \"621269cf-1195-44a3-a835-c613d103dd15\",\r\n \"roleDefinitionId\": \"00320cd4-8823-47f2-bbe4-5c9da031311d\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dataManagers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2016-06-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2016-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/providers/Microsoft.Hydra\",\r\n \"namespace\": \"Microsoft.Hydra\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"37ae09d4-a310-41e1-803d-8e85cec4bf23\",\r\n \"roleDefinitionId\": \"37ae09d4-a310-41e1-803d-8e85cec4bf23\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-08-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/providers/Microsoft.ImportExport\",\r\n \"namespace\": \"Microsoft.ImportExport\",\r\n \"authorization\": {\r\n \"applicationId\": \"7de4d5c5-5b32-4235-b8a9-33b34d6bcd2a\",\r\n \"roleDefinitionId\": \"9f7aa6bb-9454-46b6-8c01-a4b0f33ca151\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"jobs\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-07-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/providers/Microsoft.IoTCentral\",\r\n \"namespace\": \"Microsoft.IoTCentral\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"9edfcdd9-0bc5-4bd4-b287-c3afc716aac7\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"IoTApps\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"Central US\",\r\n \"West Central US\",\r\n \"Australia\",\r\n \"Asia Pacific\",\r\n \"Europe\",\r\n \"Japan\",\r\n \"UK\",\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\",\r\n \"2017-07-01-privatepreview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-09-01\",\r\n \"2017-07-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkSubdomainAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-09-01\",\r\n \"2017-07-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"appTemplates\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/providers/Microsoft.IoTSpaces\",\r\n \"namespace\": \"Microsoft.IoTSpaces\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"0b07f429-9f4b-4714-9392-cc5e8e80c8b0\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Australia East\",\r\n \"West US 2\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"Graph\",\r\n \"locations\": [\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Australia East\",\r\n \"West US 2\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/providers/Microsoft.Kubernetes\",\r\n \"namespace\": \"Microsoft.Kubernetes\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"64b12d6e-6549-484c-8cc6-6281839ba394\",\r\n \"roleDefinitionId\": \"1d1d44cf-68a1-4def-a2b6-cd7efc3515af\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01-preview\",\r\n \"2019-09-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/providers/Microsoft.Kusto\",\r\n \"namespace\": \"Microsoft.Kusto\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"2746ea77-4702-4b45-80ca-3c97e680e8b7\",\r\n \"roleDefinitionId\": \"dd9d4347-f397-45f2-b538-85f21c90037c\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Germany West Central\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"Korea South\",\r\n \"France South\",\r\n \"Australia Southeast\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"UAE North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-15\",\r\n \"2019-11-09\",\r\n \"2019-09-07\",\r\n \"2019-05-15\",\r\n \"2019-01-21\",\r\n \"2018-09-07-preview\",\r\n \"2017-09-07-privatepreview\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"clusters/databases\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Germany West Central\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"Korea South\",\r\n \"France South\",\r\n \"Australia Southeast\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"UAE North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-15\",\r\n \"2019-11-09\",\r\n \"2019-09-07\",\r\n \"2019-05-15\",\r\n \"2019-01-21\",\r\n \"2018-09-07-preview\",\r\n \"2017-09-07-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/attacheddatabaseconfigurations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Germany West Central\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"Korea South\",\r\n \"France South\",\r\n \"Australia Southeast\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"UAE North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-15\",\r\n \"2019-11-09\",\r\n \"2019-09-07\",\r\n \"2019-05-15\",\r\n \"2019-01-21\",\r\n \"2018-09-07-preview\",\r\n \"2017-09-07-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/principalassignments\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Germany West Central\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"Korea South\",\r\n \"France South\",\r\n \"Australia Southeast\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"UAE North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-15\",\r\n \"2019-11-09\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/databases/eventhubconnections\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Germany West Central\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"Korea South\",\r\n \"France South\",\r\n \"Australia Southeast\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"UAE North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-15\",\r\n \"2019-11-09\",\r\n \"2019-09-07\",\r\n \"2019-05-15\",\r\n \"2019-01-21\",\r\n \"2018-09-07-preview\",\r\n \"2017-09-07-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/databases/dataconnections\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Germany West Central\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"Korea South\",\r\n \"France South\",\r\n \"Australia Southeast\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"UAE North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-15\",\r\n \"2019-11-09\",\r\n \"2019-09-07\",\r\n \"2019-05-15\",\r\n \"2019-01-21\",\r\n \"2018-09-07-preview\",\r\n \"2017-09-07-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/databases/principalassignments\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Germany West Central\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"Korea South\",\r\n \"France South\",\r\n \"Australia Southeast\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"UAE North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-15\",\r\n \"2019-11-09\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Germany West Central\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"Korea South\",\r\n \"France South\",\r\n \"Australia Southeast\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"UAE North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-15\",\r\n \"2019-11-09\",\r\n \"2019-09-07\",\r\n \"2019-05-15\",\r\n \"2019-01-21\",\r\n \"2018-09-07-preview\",\r\n \"2017-09-07-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-02-15\",\r\n \"2019-11-09\",\r\n \"2019-09-07\",\r\n \"2019-05-15\",\r\n \"2019-01-21\",\r\n \"2018-09-07-preview\",\r\n \"2017-09-07-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Germany West Central\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"Korea South\",\r\n \"France South\",\r\n \"Australia Southeast\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"UAE North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-15\",\r\n \"2019-11-09\",\r\n \"2019-09-07\",\r\n \"2019-05-15\",\r\n \"2019-01-21\",\r\n \"2018-09-07-preview\",\r\n \"2017-09-07-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-02-15\",\r\n \"2019-11-09\",\r\n \"2019-09-07\",\r\n \"2019-05-15\",\r\n \"2019-01-21\",\r\n \"2018-09-07-preview\",\r\n \"2017-09-07-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/providers/Microsoft.LabServices\",\r\n \"namespace\": \"Microsoft.LabServices\",\r\n \"authorization\": {\r\n \"applicationId\": \"1a14be2a-e903-4cec-99cf-b2e209259a0f\",\r\n \"roleDefinitionId\": \"8f2de81a-b9aa-49d8-b24c-11814d3ab525\",\r\n \"managedByRoleDefinitionId\": \"8f2de81a-b9aa-49d8-b24c-11814d3ab525\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"labaccounts\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"UK West\",\r\n \"West India\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-01-preview\",\r\n \"2018-10-15\",\r\n \"2017-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"UK West\",\r\n \"West India\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-01-preview\",\r\n \"2018-10-15\",\r\n \"2017-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-01-01-preview\",\r\n \"2018-10-15\",\r\n \"2017-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"users\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-01-01-preview\",\r\n \"2019-01-01-beta\",\r\n \"2019-01-01-alpha\",\r\n \"2018-10-15\",\r\n \"2017-12-01-preview\",\r\n \"2017-12-01-beta\",\r\n \"2017-12-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-01-01-preview\",\r\n \"2018-10-15\",\r\n \"2017-12-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/providers/Microsoft.Logic\",\r\n \"namespace\": \"Microsoft.Logic\",\r\n \"authorization\": {\r\n \"applicationId\": \"7cd684f4-8a78-49b0-91ec-6a35d38739ba\",\r\n \"roleDefinitionId\": \"cb3ef1fb-6e31-49e2-9d87-ed821053fe58\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workflows\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa North\",\r\n \"South Africa West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2018-07-01-preview\",\r\n \"2017-07-01\",\r\n \"2016-10-01\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-02-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"locations/workflows\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa North\",\r\n \"South Africa West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2018-07-01-preview\",\r\n \"2017-07-01\",\r\n \"2016-10-01\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2018-07-01-preview\",\r\n \"2017-07-01\",\r\n \"2016-10-01\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"South Africa North\",\r\n \"South Africa West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2018-07-01-preview\",\r\n \"2017-07-01\",\r\n \"2016-10-01\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"integrationAccounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"South Africa West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2018-07-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"integrationServiceEnvironments\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2019-05-01\",\r\n \"2018-07-01-preview\",\r\n \"2018-03-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"integrationServiceEnvironments/managedApis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2019-05-01\",\r\n \"2018-07-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/providers/Microsoft.MachineLearning\",\r\n \"namespace\": \"Microsoft.MachineLearning\",\r\n \"authorization\": {\r\n \"applicationId\": \"0736f41a-0425-4b46-bdb5-1563eff02385\",\r\n \"roleDefinitionId\": \"1cc297bc-1829-4524-941f-966373421033\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Workspaces\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"webServices\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-01\",\r\n \"2016-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-01\",\r\n \"2016-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-01\",\r\n \"2016-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-01\",\r\n \"2016-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationsStatus\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-01\",\r\n \"2016-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"commitmentPlans\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-01\",\r\n \"2016-05-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/providers/Microsoft.MachineLearningServices\",\r\n \"namespace\": \"Microsoft.MachineLearningServices\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"0736f41a-0425-4b46-bdb5-1563eff02385\",\r\n \"roleDefinitionId\": \"376aa7d7-51a9-463d-bd4d-7e1691345612\",\r\n \"managedByRoleDefinitionId\": \"91d00862-cf55-46a5-9dce-260bbd92ce25\"\r\n },\r\n {\r\n \"applicationId\": \"18a66f5f-dbdf-4c17-9dd7-1634712a9cbe\",\r\n \"roleDefinitionId\": \"8b910db7-60f9-4c04-af30-71aab18eda90\",\r\n \"managedByRoleDefinitionId\": \"91d00862-cf55-46a5-9dce-260bbd92ce25\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workspaces\",\r\n \"locations\": [\r\n \"Canada Central\",\r\n \"North Central US\",\r\n \"UK South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"Korea Central\",\r\n \"Brazil South\",\r\n \"France Central\",\r\n \"Australia East\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2020-02-18-preview\",\r\n \"2020-02-02\",\r\n \"2020-01-01\",\r\n \"2019-11-01\",\r\n \"2019-10-01\",\r\n \"2019-06-01\",\r\n \"2019-05-01\",\r\n \"2018-11-19\",\r\n \"2018-03-01-preview\"\r\n ],\r\n \"capabilities\": \"SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"workspaces/computes\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"Korea Central\",\r\n \"Brazil South\",\r\n \"France Central\",\r\n \"Australia East\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2020-02-18-preview\",\r\n \"2020-02-02\",\r\n \"2020-01-01\",\r\n \"2019-11-01\",\r\n \"2019-06-01\",\r\n \"2019-05-01\",\r\n \"2018-11-19\",\r\n \"2018-03-01-preview\"\r\n ],\r\n \"capabilities\": \"SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"workspaces/eventGridFilters\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"Korea Central\",\r\n \"Brazil South\",\r\n \"France Central\",\r\n \"Australia East\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-18-preview\",\r\n \"2020-02-02\",\r\n \"2019-06-01\",\r\n \"2019-05-01\",\r\n \"2018-11-19\",\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2020-02-18-preview\",\r\n \"2020-02-02\",\r\n \"2020-01-01\",\r\n \"2019-11-01\",\r\n \"2019-06-01\",\r\n \"2019-05-01\",\r\n \"2018-11-19\",\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2020-02-18-preview\",\r\n \"2020-02-02\",\r\n \"2020-01-01\",\r\n \"2019-11-01\",\r\n \"2019-06-01\",\r\n \"2019-05-01\",\r\n \"2018-11-19\",\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/computeOperationsStatus\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"East US\",\r\n \"Australia East\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"Korea Central\",\r\n \"Brazil South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2020-02-18-preview\",\r\n \"2020-02-02\",\r\n \"2020-01-01\",\r\n \"2019-11-01\",\r\n \"2019-06-01\",\r\n \"2019-05-01\",\r\n \"2018-11-19\",\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/workspaceOperationsStatus\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"Korea Central\",\r\n \"Brazil South\",\r\n \"France Central\",\r\n \"Australia East\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2020-02-18-preview\",\r\n \"2020-02-02\",\r\n \"2020-01-01\",\r\n \"2019-11-01\",\r\n \"2019-06-01\",\r\n \"2019-05-01\",\r\n \"2018-11-19\",\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"Korea Central\",\r\n \"Brazil South\",\r\n \"France Central\",\r\n \"Australia East\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2020-02-18-preview\",\r\n \"2020-02-02\",\r\n \"2020-01-01\",\r\n \"2019-11-01\",\r\n \"2019-06-01\",\r\n \"2019-05-01\",\r\n \"2018-11-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/vmsizes\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"Korea Central\",\r\n \"Brazil South\",\r\n \"France Central\",\r\n \"Australia East\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2020-02-18-preview\",\r\n \"2020-02-02\",\r\n \"2020-01-01\",\r\n \"2019-11-01\",\r\n \"2019-06-01\",\r\n \"2019-05-01\",\r\n \"2018-11-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"Korea Central\",\r\n \"Brazil South\",\r\n \"France Central\",\r\n \"Australia East\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2020-02-18-preview\",\r\n \"2020-02-02\",\r\n \"2020-01-01\",\r\n \"2019-11-01\",\r\n \"2019-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/updatequotas\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"Korea Central\",\r\n \"Brazil South\",\r\n \"France Central\",\r\n \"Australia East\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2020-02-18-preview\",\r\n \"2020-02-02\",\r\n \"2020-01-01\",\r\n \"2019-11-01\",\r\n \"2019-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/providers/Microsoft.Maintenance\",\r\n \"namespace\": \"Microsoft.Maintenance\",\r\n \"authorization\": {\r\n \"applicationId\": \"f18474f2-a66a-4bb0-a3c9-9b8d892092fa\",\r\n \"roleDefinitionId\": \"2f1ef7b0-d5c4-4d3c-98fa-6a9fa8e74aa5\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"maintenanceConfigurations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-10-01\",\r\n \"2018-06-01-preview\",\r\n \"2017-04-26\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"updates\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-10-01\",\r\n \"2018-06-01-preview\",\r\n \"2017-04-26\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"configurationAssignments\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-10-01\",\r\n \"2018-06-01-preview\",\r\n \"2017-04-26\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"applyUpdates\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-10-01\",\r\n \"2018-06-01-preview\",\r\n \"2017-04-26\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/providers/Microsoft.ManagedIdentity\",\r\n \"namespace\": \"Microsoft.ManagedIdentity\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Identities\",\r\n \"locations\": [\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-11-30\",\r\n \"2015-08-31-PREVIEW\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"userAssignedIdentities\",\r\n \"locations\": [\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-11-30\",\r\n \"2015-08-31-PREVIEW\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-11-30\",\r\n \"2015-08-31-PREVIEW\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/providers/Microsoft.ManagedServices\",\r\n \"namespace\": \"Microsoft.ManagedServices\",\r\n \"authorization\": {\r\n \"applicationId\": \"66c6d0d1-f2e7-4a18-97a9-ed10f3347016\",\r\n \"roleDefinitionId\": \"1e86f807-6ec0-40b3-8b5f-686b7e43a0a2\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"registrationDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01-preview\",\r\n \"2018-06-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"registrationAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01-preview\",\r\n \"2018-06-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01-preview\",\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"marketplaceRegistrationDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01-preview\",\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationStatuses\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2019-06-01\",\r\n \"2019-04-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/providers/Microsoft.Management\",\r\n \"namespace\": \"Microsoft.Management\",\r\n \"authorization\": {\r\n \"applicationId\": \"f2c304cf-8e7e-4c3f-8164-16299ad9d272\",\r\n \"roleDefinitionId\": \"c1cf3708-588a-4647-be7f-f400bbe214cf\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"resources\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-01-preview\",\r\n \"2017-08-31-preview\",\r\n \"2017-06-30-preview\",\r\n \"2017-05-31-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"managementGroups\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-02-01\",\r\n \"2019-11-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-03-01-beta\",\r\n \"2018-01-01-preview\",\r\n \"2017-11-01-preview\",\r\n \"2017-08-31-preview\",\r\n \"2017-06-30-preview\",\r\n \"2017-05-31-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"getEntities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-02-01\",\r\n \"2019-11-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-03-01-beta\",\r\n \"2018-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"managementGroups/settings\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-02-01\",\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-02-01\",\r\n \"2019-11-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-03-01-beta\",\r\n \"2018-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-02-01\",\r\n \"2019-11-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-03-01-beta\",\r\n \"2018-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationResults/asyncOperation\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-02-01\",\r\n \"2019-11-01\",\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-02-01\",\r\n \"2019-11-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-03-01-beta\",\r\n \"2018-01-01-preview\",\r\n \"2017-11-01-preview\",\r\n \"2017-08-31-preview\",\r\n \"2017-06-30-preview\",\r\n \"2017-05-31-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"tenantBackfillStatus\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-02-01\",\r\n \"2019-11-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"startTenantBackfill\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-02-01\",\r\n \"2019-11-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-03-01-beta\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/providers/Microsoft.Maps\",\r\n \"namespace\": \"Microsoft.Maps\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"608f6f31-fed0-4f7b-809f-90f6c9b3de78\",\r\n \"roleDefinitionId\": \"3431F0E6-63BC-482D-A96E-0AB819610A5F\"\r\n },\r\n {\r\n \"applicationId\": \"ba1ea022-5807-41d5-bbeb-292c7e1cf5f6\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-01-preview\",\r\n \"2018-05-01\",\r\n \"2017-01-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/privateAtlases\",\r\n \"locations\": [\r\n \"United States\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-02-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/eventGridFilters\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-02-01-preview\",\r\n \"2018-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-02-01-preview\",\r\n \"2018-05-01\",\r\n \"2017-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/providers/Microsoft.Marketplace\",\r\n \"namespace\": \"Microsoft.Marketplace\",\r\n \"authorization\": {\r\n \"applicationId\": \"a0e1e353-1a3e-42cf-a8ea-3a9746eec58c\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"register\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privategalleryitems\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"products\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"offers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"offerTypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"offerTypes/publishers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"offerTypes/publishers/offers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"offerTypes/publishers/offers/plans\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"offerTypes/publishers/offers/plans/configs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"offerTypes/publishers/offers/plans/configs/importImage\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"offerTypes/publishers/offers/plans/agreements\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listAvailableOffers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publishers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-06-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publishers/offers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-06-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publishers/offers/amendments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-06-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateStoreClient\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-01-beta\",\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateStores\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"privateStores/offers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/providers/Microsoft.MarketplaceApps\",\r\n \"namespace\": \"Microsoft.MarketplaceApps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"classicDevServices\",\r\n \"locations\": [\r\n \"Northwest US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/providers/Microsoft.MarketplaceOrdering\",\r\n \"namespace\": \"Microsoft.MarketplaceOrdering\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"agreements\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"offertypes\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/providers/Microsoft.Media\",\r\n \"namespace\": \"Microsoft.Media\",\r\n \"authorization\": {\r\n \"applicationId\": \"374b2a64-3b6b-436b-934c-b820eacca870\",\r\n \"roleDefinitionId\": \"aab70789-0cec-44b5-95d7-84b64c9487af\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"mediaservices\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\",\r\n \"2015-10-01\",\r\n \"2015-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/assets\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/contentKeyPolicies\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/streamingLocators\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/streamingPolicies\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/eventGridFilters\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-05\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/transforms\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/transforms/jobs\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/streamingEndpoints\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-01-preview\",\r\n \"2018-07-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/liveEvents\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-01-preview\",\r\n \"2018-07-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/liveEvents/liveOutputs\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-01-preview\",\r\n \"2018-07-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/streamingEndpointOperations\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-01-preview\",\r\n \"2018-07-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/liveEventOperations\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-01-preview\",\r\n \"2018-07-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/liveOutputOperations\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-01-preview\",\r\n \"2018-07-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/assets/assetFilters\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/accountFilters\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\",\r\n \"2018-02-05\",\r\n \"2015-10-01\",\r\n \"2015-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checknameavailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-10-01\",\r\n \"2015-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/providers/Microsoft.Migrate\",\r\n \"namespace\": \"Microsoft.Migrate\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"e3bfd6ac-eace-4438-9dc1-eed439e738de\",\r\n \"roleDefinitionId\": \"e88f4159-1d71-4b12-8ef0-38c039cb051e\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"projects\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-02\",\r\n \"2017-11-11-preview\",\r\n \"2017-09-25-privatepreview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"migrateprojects\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"Australia Southeast\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2018-09-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"assessmentProjects\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-10-01\",\r\n \"2019-05-01\",\r\n \"2018-06-30-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-02\",\r\n \"2017-11-11-preview\",\r\n \"2017-09-25-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-02\",\r\n \"2017-11-11-preview\",\r\n \"2017-09-25-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-02\",\r\n \"2017-11-11-preview\",\r\n \"2017-09-25-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/assessmentOptions\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-02\",\r\n \"2017-11-11-preview\",\r\n \"2017-09-25-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/providers/Microsoft.MixedReality\",\r\n \"namespace\": \"Microsoft.MixedReality\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"c7ddd9b4-5172-4e28-bd29-1e0792947d18\",\r\n \"roleDefinitionId\": \"b67ee066-e058-4ddb-92bc-83cdd74bc38a\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-12-02-preview\",\r\n \"2019-02-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-02-preview\",\r\n \"2019-02-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-12-02-preview\",\r\n \"2019-02-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"spatialAnchorsAccounts\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-02-preview\",\r\n \"2019-02-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/providers/Microsoft.NetApp\",\r\n \"namespace\": \"Microsoft.NetApp\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"12fb057d-b751-47cd-857c-f2934bb677b4\",\r\n \"roleDefinitionId\": \"e4796bef-6b6d-4cbc-ba1e-27f1a308d860\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Germany North\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-10-01\",\r\n \"2019-08-01\",\r\n \"2019-07-01\",\r\n \"2019-06-01\",\r\n \"2019-05-01\",\r\n \"2017-08-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/providers/Microsoft.NotificationHubs\",\r\n \"namespace\": \"Microsoft.NotificationHubs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Germany West Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-03-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"namespaces/notificationHubs\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Germany West Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-03-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkNamespaceAvailability\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Germany West Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-03-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Germany West Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-03-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Germany West Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-03-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Germany West Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-03-01\",\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/providers/Microsoft.ObjectStore\",\r\n \"namespace\": \"Microsoft.ObjectStore\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"osNamespaces\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/providers/Microsoft.OffAzure\",\r\n \"namespace\": \"Microsoft.OffAzure\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"728a93e3-065d-4678-93b1-3cc281223341\",\r\n \"roleDefinitionId\": \"b9967bf7-a345-4af8-95f0-49916f760fc6\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"VMwareSites\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01-preview\",\r\n \"2020-01-01\",\r\n \"2019-06-06\",\r\n \"2019-05-01-preview\",\r\n \"2018-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"HyperVSites\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2019-06-06\",\r\n \"2018-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"ServerSites\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01-preview\",\r\n \"2019-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"ImportSites\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01-preview\",\r\n \"2019-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2019-06-06\",\r\n \"2018-05-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/providers/Microsoft.OperationalInsights\",\r\n \"namespace\": \"Microsoft.OperationalInsights\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"d2a0a418-0aac-4541-82b2-b3142c89da77\",\r\n \"roleDefinitionId\": \"86695298-2eb9-48a7-9ec3-2fdb38b6878b\"\r\n },\r\n {\r\n \"applicationId\": \"ca7f3f0b-7d91-482c-8e09-c5d840d0eac5\",\r\n \"roleDefinitionId\": \"5d5a2e56-9835-44aa-93db-d2f19e155438\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workspaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"UK West\",\r\n \"South Africa North\",\r\n \"Brazil South\",\r\n \"Switzerland North\",\r\n \"Switzerland West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-26-preview\",\r\n \"2017-03-15-preview\",\r\n \"2017-03-03-preview\",\r\n \"2017-01-01-preview\",\r\n \"2015-11-01-preview\",\r\n \"2015-03-20\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-08-01-preview\",\r\n \"2017-04-26-preview\",\r\n \"2017-03-15-preview\",\r\n \"2017-03-03-preview\",\r\n \"2017-01-01-preview\",\r\n \"2015-11-01-preview\",\r\n \"2015-03-20\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationStatuses\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"UK West\",\r\n \"South Africa North\",\r\n \"Brazil South\",\r\n \"Switzerland North\",\r\n \"Switzerland West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01-preview\",\r\n \"2017-04-26-preview\",\r\n \"2017-03-15-preview\",\r\n \"2017-03-03-preview\",\r\n \"2017-01-01-preview\",\r\n \"2015-11-01-preview\",\r\n \"2015-03-20\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"workspaces/scopedPrivateLinkProxies\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"UK West\",\r\n \"South Africa North\",\r\n \"Brazil South\",\r\n \"Switzerland North\",\r\n \"Switzerland West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01-preview\",\r\n \"2015-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"workspaces/query\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Australia Southeast\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"UK West\",\r\n \"South Africa North\",\r\n \"Brazil South\",\r\n \"Switzerland West\",\r\n \"Switzerland North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"workspaces/dataSources\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"UK West\",\r\n \"South Africa North\",\r\n \"Brazil South\",\r\n \"Switzerland North\",\r\n \"Switzerland West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageInsightConfigs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-10\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"workspaces/linkedServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"UK West\",\r\n \"South Africa North\",\r\n \"Brazil South\",\r\n \"Switzerland North\",\r\n \"Switzerland West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-08-01-preview\",\r\n \"2015-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"linkTargets\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-20\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-11-10\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/providers/Microsoft.OperationsManagement\",\r\n \"namespace\": \"Microsoft.OperationsManagement\",\r\n \"authorization\": {\r\n \"applicationId\": \"d2a0a418-0aac-4541-82b2-b3142c89da77\",\r\n \"roleDefinitionId\": \"aa249101-6816-4966-aafa-08175d795f14\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"solutions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"Australia East\",\r\n \"Australia Central\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"Central Us\",\r\n \"East Us 2\",\r\n \"East Asia\",\r\n \"West Us\",\r\n \"South Central Us\",\r\n \"North Central US\",\r\n \"UK West\",\r\n \"South Africa North\",\r\n \"Brazil South\",\r\n \"Switzerland North\",\r\n \"Switzerland West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"managementconfigurations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"Australia East\",\r\n \"Australia Central\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"Central Us\",\r\n \"East Us 2\",\r\n \"East Asia\",\r\n \"West Us\",\r\n \"South Central Us\",\r\n \"North Central US\",\r\n \"UK West\",\r\n \"South Africa North\",\r\n \"Brazil South\",\r\n \"Switzerland North\",\r\n \"Switzerland West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"managementassociations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-11-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"views\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"Australia East\",\r\n \"Australia Central\",\r\n \"France Central\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"Central Us\",\r\n \"East Us 2\",\r\n \"East Asia\",\r\n \"West Us\",\r\n \"South Central Us\",\r\n \"North Central US\",\r\n \"UK West\",\r\n \"South Africa North\",\r\n \"Brazil South\",\r\n \"Switzerland North\",\r\n \"Switzerland West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-21-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-11-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/providers/Microsoft.Peering\",\r\n \"namespace\": \"Microsoft.Peering\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"peerings\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"East Asia\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"West India\",\r\n \"South India\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada East\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"North Europe\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01-preview\",\r\n \"2019-09-01-preview\",\r\n \"2019-08-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"peeringLocations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-01-01-preview\",\r\n \"2019-09-01-preview\",\r\n \"2019-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"legacyPeerings\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-01-01-preview\",\r\n \"2019-09-01-preview\",\r\n \"2019-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"peerAsns\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-01-01-preview\",\r\n \"2019-09-01-preview\",\r\n \"2019-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"peeringServiceCountries\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"peeringServiceLocations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-01-01-preview\",\r\n \"2019-09-01-preview\",\r\n \"2019-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"peeringServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-01-01-preview\",\r\n \"2019-09-01-preview\",\r\n \"2019-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceProviderAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-01-01-preview\",\r\n \"2019-09-01-preview\",\r\n \"2019-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-01-01-preview\",\r\n \"2019-09-01-preview\",\r\n \"2019-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/providers/Microsoft.Portal\",\r\n \"namespace\": \"Microsoft.Portal\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dashboards\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-01-preview\",\r\n \"2018-10-01-preview\",\r\n \"2015-08-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-10-01\",\r\n \"2017-12-01-preview\",\r\n \"2017-08-01-preview\",\r\n \"2017-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"consoles\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-10-01\",\r\n \"2017-12-01-preview\",\r\n \"2017-08-01-preview\",\r\n \"2017-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/consoles\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"Central India\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-10-01\",\r\n \"2017-12-01-preview\",\r\n \"2017-08-01-preview\",\r\n \"2017-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"userSettings\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-10-01\",\r\n \"2017-12-01-preview\",\r\n \"2017-08-01-preview\",\r\n \"2017-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/userSettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"Central India\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-10-01\",\r\n \"2017-12-01-preview\",\r\n \"2017-08-01-preview\",\r\n \"2017-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/providers/Microsoft.PowerBI\",\r\n \"namespace\": \"Microsoft.PowerBI\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workspaceCollections\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-01-29\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-01-29\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-01-29\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/providers/Microsoft.PowerBIDedicated\",\r\n \"namespace\": \"Microsoft.PowerBIDedicated\",\r\n \"authorization\": {\r\n \"applicationId\": \"4ac7d521-0382-477b-b0f8-7e1d95f85ca2\",\r\n \"roleDefinitionId\": \"490d5987-bcf6-4be6-b6b2-056a78cb693a\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"capacities\",\r\n \"locations\": [\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"UAE North\",\r\n \"UAE Central\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Japan West\",\r\n \"South Africa North\",\r\n \"Canada East\",\r\n \"South Africa West\",\r\n \"UK West\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"Australia East\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-01-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"UAE North\",\r\n \"UAE Central\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Japan West\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"Australia East\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"South Africa West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"UAE North\",\r\n \"UAE Central\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Japan West\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"Australia East\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationstatuses\",\r\n \"locations\": [\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"UAE North\",\r\n \"UAE Central\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Japan West\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"Australia East\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"South Africa North\",\r\n \"South Africa West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/providers/Microsoft.ProjectBabylon\",\r\n \"namespace\": \"Microsoft.ProjectBabylon\",\r\n \"authorization\": {\r\n \"applicationId\": \"73c2949e-da2d-457a-9607-fcc665198967\",\r\n \"roleDefinitionId\": \"1BC09725-0C9B-4F57-A3D0-FCCF4EB40120\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/providers/Microsoft.ProviderHub\",\r\n \"namespace\": \"Microsoft.ProviderHub\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"providerRegistrations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providerRegistrations/resourceTypeRegistrations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-02-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"availableAccounts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-02-01-preview\",\r\n \"2018-11-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/providers/Microsoft.Quantum\",\r\n \"namespace\": \"Microsoft.Quantum\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"a77d91dc-971b-4cf7-90c8-f183194249bc\",\r\n \"roleDefinitionId\": \"915bd376-2da8-411d-9906-895a54086a66\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-11-04-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/providers/Microsoft.RecoveryServices\",\r\n \"namespace\": \"Microsoft.RecoveryServices\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"262044b1-e2ce-469f-a196-69ab7ada62d3\",\r\n \"roleDefinitionId\": \"21CEC436-F7D0-4ADE-8AD8-FEC5668484CC\"\r\n },\r\n {\r\n \"applicationId\": \"b8340c3b-9267-498f-b21a-15d5547fd85e\",\r\n \"roleDefinitionId\": \"8A00C8EA-8F1B-45A7-8F64-F4CC61EEE9B6\"\r\n },\r\n {\r\n \"applicationId\": \"3b2fa68d-a091-48c9-95be-88d572e08fb7\",\r\n \"roleDefinitionId\": \"47d68fae-99c7-4c10-b9db-2316116a061e\"\r\n },\r\n {\r\n \"applicationId\": \"9bdab391-7bbe-42e8-8132-e4491dc29cc0\",\r\n \"roleDefinitionId\": \"0383f7f5-023d-4379-b2c7-9ef786459969\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-15\",\r\n \"2019-05-13-preview\",\r\n \"2019-05-13\",\r\n \"2018-12-20-preview\",\r\n \"2018-07-10-preview\",\r\n \"2018-07-10\",\r\n \"2018-01-10\",\r\n \"2017-07-01-preview\",\r\n \"2017-07-01\",\r\n \"2016-12-01\",\r\n \"2016-08-10\",\r\n \"2016-06-01\",\r\n \"2016-05-01\",\r\n \"2015-12-15\",\r\n \"2015-12-10\",\r\n \"2015-11-10\",\r\n \"2015-08-15\",\r\n \"2015-08-10\",\r\n \"2015-06-10\",\r\n \"2015-03-15\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-10\",\r\n \"2016-06-01\",\r\n \"2015-12-15\",\r\n \"2015-12-10\",\r\n \"2015-11-10\",\r\n \"2015-08-15\",\r\n \"2015-08-10\",\r\n \"2015-06-10\",\r\n \"2015-03-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2016-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/backupStatus\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2016-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/allocatedStamp\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/allocateStamp\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/backupValidateFeatures\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/backupPreValidateProtection\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/backupCrrJobs\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-12-20-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/backupCrrJob\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-12-20-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/backupAadProperties\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-12-20-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/backupCrossRegionRestore\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-12-20-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/backupCrrOperationResults\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-12-20-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/backupCrrOperationsStatus\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-12-20-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"backupProtectedItems\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"replicationEligibilityResults\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-10\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/providers/Microsoft.RedHatOpenShift\",\r\n \"namespace\": \"Microsoft.RedHatOpenShift\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"f1dd0a37-89c6-4e07-bcd1-ffd3d43d8875\",\r\n \"roleDefinitionId\": \"640c5ac9-6f32-4891-94f4-d20f7aa9a7e6\",\r\n \"managedByRoleDefinitionId\": \"9e3af657-a8ff-583c-a75c-2fe7c4bcb635\",\r\n \"managedByAuthorization\": {\r\n \"allowManagedByInheritance\": true\r\n }\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-12-31-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/providers/Microsoft.Relay\",\r\n \"namespace\": \"Microsoft.Relay\",\r\n \"authorization\": {\r\n \"applicationId\": \"80369ed6-5f11-4dd9-bef3-692475845e77\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-07-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"namespaces/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-07-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/hybridconnections\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-07-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/hybridconnections/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-07-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/wcfrelays\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-07-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/wcfrelays/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-07-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-07-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/providers/Microsoft.ResourceGraph\",\r\n \"namespace\": \"Microsoft.ResourceGraph\",\r\n \"authorization\": {\r\n \"applicationId\": \"509e4652-da8d-478d-a730-e9d4a1996ca4\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"resources\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\r\n \"2018-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourcesHistory\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceChanges\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceChangeDetails\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\r\n \"2018-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptionsStatus\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\r\n \"2018-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"queries\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/providers/Microsoft.Resources\",\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"authorization\": {\r\n \"applicationId\": \"3b990c8b-9607-4c2a-8b04-1d41985facca\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"tenants\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2019-09-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"notifyResourceJobs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"tags\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"checkPolicyCompliance\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkresourcename\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resources\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01\",\r\n \"2019-09-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/resources\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/resourceGroups\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/resourcegroups/resources\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/tagnames\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/tagNames/tagValues\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deployments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deployments/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"links\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"deploymentScripts/logs\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deploymentScriptOperationResults\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/providers/Microsoft.SaaS\",\r\n \"namespace\": \"Microsoft.SaaS\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"f738ef14-47dc-4564-b53b-45069484ccc7\",\r\n \"roleDefinitionId\": \"b131dd2d-387a-4cae-bb9b-3d021f80d1e6\"\r\n },\r\n {\r\n \"applicationId\": \"20e940b3-4c77-4b0b-9a53-9e16a1b010a7\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"applications\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checknameavailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkModernEligibility\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"saasresources\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/providers/Microsoft.Scheduler\",\r\n \"namespace\": \"Microsoft.Scheduler\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"jobcollections\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2016-01-01\",\r\n \"2014-08-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2016-01-01\",\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2016-01-01\",\r\n \"2014-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/providers/Microsoft.Search\",\r\n \"namespace\": \"Microsoft.Search\",\r\n \"authorization\": {\r\n \"applicationId\": \"408992c7-2af6-4ff1-92e3-65b73d2b5092\",\r\n \"roleDefinitionId\": \"20FA3191-87CF-4C3D-9510-74CCB594A310\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"searchServices\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-10-01-Preview\",\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-03-13\",\r\n \"2019-10-01-Preview\",\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceHealthMetadata\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-10-01-Preview\",\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-03-13\",\r\n \"2019-10-01-Preview\",\r\n \"2015-08-19\",\r\n \"2015-02-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/providers/Microsoft.SecurityInsights\",\r\n \"namespace\": \"Microsoft.SecurityInsights\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"98785600-1bb7-4fb9-b9fa-19afe2c8a360\",\r\n \"roleDefinitionId\": \"ef1c46aa-ae81-4091-ab83-f75f28efb7b8\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2019-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alertRules\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"France Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France South\",\r\n \"Switzerland North\",\r\n \"Switzerland West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2019-01-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"alertRuleTemplates\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"France Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France South\",\r\n \"Switzerland North\",\r\n \"Switzerland West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"cases\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"France Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France South\",\r\n \"Switzerland North\",\r\n \"Switzerland West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"bookmarks\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"France Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France South\",\r\n \"Switzerland North\",\r\n \"Switzerland West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"dataConnectors\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"France Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France South\",\r\n \"Switzerland North\",\r\n \"Switzerland West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2019-01-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"dataConnectorsCheckRequirements\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"France Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France South\",\r\n \"Switzerland North\",\r\n \"Switzerland West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"entities\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"France Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France South\",\r\n \"Switzerland North\",\r\n \"Switzerland West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"incidents\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"France Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France South\",\r\n \"Switzerland North\",\r\n \"Switzerland West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"officeConsents\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"France Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France South\",\r\n \"Switzerland North\",\r\n \"Switzerland West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"settings\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"France Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France South\",\r\n \"Switzerland North\",\r\n \"Switzerland West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"aggregations\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"France Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France South\",\r\n \"Switzerland North\",\r\n \"Switzerland West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"entityQueries\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"France Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France South\",\r\n \"Switzerland North\",\r\n \"Switzerland West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-01-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/providers/Microsoft.SerialConsole\",\r\n \"namespace\": \"Microsoft.SerialConsole\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"consoleServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/consoleServices\",\r\n \"locations\": [\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/providers/Microsoft.ServiceBus\",\r\n \"namespace\": \"Microsoft.ServiceBus\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"80a10ef9-8168-493d-abf9-3297c4ef6e3c\",\r\n \"roleDefinitionId\": \"2b7763f7-bbe2-4e19-befe-28c79f1cf7f7\"\r\n },\r\n {\r\n \"applicationId\": \"eb070ea5-bd17-41f1-ad68-5851f6e71774\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\",\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"namespaces/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/networkrulesets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\",\r\n \"2017-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/queues\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/queues/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/topics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/topics/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/topics/subscriptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/topics/subscriptions/rules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNamespaceAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sku\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"premiumMessagingRegions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/eventgridfilters\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Germany West Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/disasterrecoveryconfigs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/disasterrecoveryconfigs/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\",\r\n \"2017-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\",\r\n \"2017-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/providers/Microsoft.ServiceFabric\",\r\n \"namespace\": \"Microsoft.ServiceFabric\",\r\n \"authorization\": {\r\n \"applicationId\": \"74cb6831-0dbb-4be1-8206-fd4df301cdc2\",\r\n \"roleDefinitionId\": \"e55cc65f-6903-4917-b4ef-f8d4640b57f5\",\r\n \"managedByRoleDefinitionId\": \"9e3af657-a8ff-583c-a75c-2fe7c4bcb635\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central India\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2019-03-01-privatepreview\",\r\n \"2019-03-01-preview\",\r\n \"2019-03-01\",\r\n \"2018-02-01-privatepreview\",\r\n \"2018-02-01\",\r\n \"2017-07-01-privatepreview\",\r\n \"2017-07-01-preview\",\r\n \"2016-09-01\",\r\n \"2016-03-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"clusters/applications\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central India\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2019-03-01-privatepreview\",\r\n \"2019-03-01-preview\",\r\n \"2019-03-01\",\r\n \"2017-07-01-preview\",\r\n \"2016-09-01\",\r\n \"2016-03-01\"\r\n ],\r\n \"capabilities\": \"SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2019-03-01-privatepreview\",\r\n \"2019-03-01-preview\",\r\n \"2019-03-01\",\r\n \"2018-02-01-privatepreview\",\r\n \"2018-02-01\",\r\n \"2017-07-01-privatepreview\",\r\n \"2017-07-01-preview\",\r\n \"2016-09-01\",\r\n \"2016-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/clusterVersions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central India\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-03-01-privatepreview\",\r\n \"2019-03-01-preview\",\r\n \"2019-03-01\",\r\n \"2018-02-01-privatepreview\",\r\n \"2018-02-01\",\r\n \"2017-07-01-privatepreview\",\r\n \"2017-07-01-preview\",\r\n \"2016-09-01\",\r\n \"2016-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/environments\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central India\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2019-03-01-privatepreview\",\r\n \"2019-03-01-preview\",\r\n \"2019-03-01\",\r\n \"2018-02-01-privatepreview\",\r\n \"2018-02-01\",\r\n \"2017-07-01-privatepreview\",\r\n \"2017-07-01-preview\",\r\n \"2016-09-01\",\r\n \"2016-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central India\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2019-03-01-privatepreview\",\r\n \"2019-03-01-preview\",\r\n \"2019-03-01\",\r\n \"2018-02-01-privatepreview\",\r\n \"2018-02-01\",\r\n \"2017-07-01-privatepreview\",\r\n \"2017-07-01-preview\",\r\n \"2016-09-01\",\r\n \"2016-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central India\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2019-03-01-privatepreview\",\r\n \"2019-03-01-preview\",\r\n \"2019-03-01\",\r\n \"2018-02-01-privatepreview\",\r\n \"2018-02-01\",\r\n \"2017-07-01-privatepreview\",\r\n \"2017-07-01-preview\",\r\n \"2016-09-01\",\r\n \"2016-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-03-01-privatepreview\",\r\n \"2019-03-01-preview\",\r\n \"2019-03-01\",\r\n \"2018-02-01-privatepreview\",\r\n \"2018-02-01\",\r\n \"2017-07-01-privatepreview\",\r\n \"2017-07-01-preview\",\r\n \"2016-09-01\",\r\n \"2016-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/providers/Microsoft.ServiceFabricMesh\",\r\n \"namespace\": \"Microsoft.ServiceFabricMesh\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"d10de03d-5ba3-497a-90e6-7ff8c9736059\",\r\n \"roleDefinitionId\": \"BC13595A-E262-4621-929E-56FF90E6BF18\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"applications\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"West India\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\",\r\n \"2018-07-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"networks\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"West India\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\",\r\n \"2018-07-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"volumes\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"West India\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\",\r\n \"2018-07-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"secrets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"West India\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\",\r\n \"2018-07-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"gateways\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"West India\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\",\r\n \"2018-07-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\",\r\n \"2018-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/applicationOperations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"West India\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\",\r\n \"2018-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/networkOperations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"West India\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\",\r\n \"2018-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/volumeOperations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"West India\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\",\r\n \"2018-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/gatewayOperations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"West India\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\",\r\n \"2018-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/secretOperations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"West India\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\",\r\n \"2018-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/providers/Microsoft.Services\",\r\n \"namespace\": \"Microsoft.Services\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"providerRegistrations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providerRegistrations/resourceTypeRegistrations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-02-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/providers/Microsoft.SignalRService\",\r\n \"namespace\": \"Microsoft.SignalRService\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"cdad765c-f191-43ba-b9f5-7aef392f811d\",\r\n \"roleDefinitionId\": \"346b504e-4aec-45d1-be25-a6e10f3cb4fe\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SignalR\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"France Central\",\r\n \"Korea Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-10-01\",\r\n \"2018-03-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-10-01\",\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"France Central\",\r\n \"Korea Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-10-01\",\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationStatuses\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"France Central\",\r\n \"Korea Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-10-01\",\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-10-01\",\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"France Central\",\r\n \"Korea Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-10-01\",\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"France Central\",\r\n \"Korea Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-10-01\",\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"SignalR/eventGridFilters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"France Central\",\r\n \"Korea Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-10-01\",\r\n \"2018-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/providers/Microsoft.SoftwarePlan\",\r\n \"namespace\": \"Microsoft.SoftwarePlan\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"hybridUseBenefits\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/providers/Microsoft.Solutions\",\r\n \"namespace\": \"Microsoft.Solutions\",\r\n \"authorization\": {\r\n \"applicationId\": \"ba4bc2bd-843f-4d61-9d33-199178eae34e\",\r\n \"roleDefinitionId\": \"6cb99a0b-29a8-49bc-b57b-057acc68cd9a\",\r\n \"managedByRoleDefinitionId\": \"9e3af657-a8ff-583c-a75c-2fe7c4bcb635\",\r\n \"managedByAuthorization\": {\r\n \"managedByResourceRoleDefinitionId\": \"9e3af657-a8ff-583c-a75c-2fe7c4bcb635\"\r\n }\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"applications\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2018-09-01-preview\",\r\n \"2018-06-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-12-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"applicationDefinitions\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2018-09-01-preview\",\r\n \"2018-06-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-12-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2018-09-01-preview\",\r\n \"2018-06-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-12-01\",\r\n \"2017-09-01\",\r\n \"2016-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"jitRequests\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2018-09-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations/operationstatuses\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2018-09-01-preview\",\r\n \"2018-06-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-12-01\",\r\n \"2017-09-01\",\r\n \"2016-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2018-09-01-preview\",\r\n \"2018-06-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-12-01\",\r\n \"2017-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/providers/Microsoft.Sql\",\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"e4ab13ed-33cb-41b4-9140-6e264582cf85\",\r\n \"roleDefinitionId\": \"ec3ddc95-44dc-47a2-9926-5e9f5ffd44ec\"\r\n },\r\n {\r\n \"applicationId\": \"0130cc9f-7ac5-4026-bd5f-80a08a54e6d9\",\r\n \"roleDefinitionId\": \"45e8abf8-0ec4-44f3-9c37-cff4f7779302\"\r\n },\r\n {\r\n \"applicationId\": \"76cd24bf-a9fc-4344-b1dc-908275de6d6d\",\r\n \"roleDefinitionId\": \"c13b7b9c-2ed1-4901-b8a8-16f35468da29\"\r\n },\r\n {\r\n \"applicationId\": \"76c7f279-7959-468f-8943-3954880e0d8c\",\r\n \"roleDefinitionId\": \"7f7513a8-73f9-4c5f-97a2-c41f0ea783ef\"\r\n },\r\n {\r\n \"applicationId\": \"022907d3-0f1b-48f7-badc-1ba6abab6d66\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capabilities\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/databaseAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/databaseOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/serverKeyAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/serverKeyOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/keys\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/encryptionProtector\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/encryptionProtectorOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/encryptionProtectorAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedInstanceKeyAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedInstanceKeyOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedInstanceEncryptionProtectorOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedInstanceEncryptionProtectorAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/tdeCertificates\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/tdeCertAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/tdeCertOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/serverAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/serverOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"servers/serviceObjectives\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/communicationLinks\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/administrators\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/administratorOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/serverAdministratorAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/serverAdministratorOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/restorableDroppedDatabases\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableDatabases\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/geoBackupPolicies\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/import\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/importExportOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/operationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/backupLongTermRetentionPolicies\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/backupShortTermRetentionPolicies\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityPolicies\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/automaticTuning\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/automaticTuning\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/transparentDataEncryption\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/auditingPolicies\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditingPolicies\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/connectionPolicies\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/connectionPolicies\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies/rules\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/securityAlertPolicies\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/securityAlertPolicies\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditingSettings\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/auditingSettings\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/extendedAuditingSettings\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/auditingSettingsAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/auditingSettingsOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/extendedAuditingSettingsAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/extendedAuditingSettingsOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/elasticPoolAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/elasticPoolOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-09-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"servers/jobAccounts\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"servers/jobAgents\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/jobAgentOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/jobAgentAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/jobAgents/jobs\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/jobAgents/jobs/steps\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/jobAgents/jobs/executions\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/disasterRecoveryConfiguration\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/dnsAliases\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/dnsAliasAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/dnsAliasOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/failoverGroups\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/failoverGroupAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/failoverGroupOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/firewallRulesOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/firewallRulesAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/virtualNetworkRules\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/virtualNetworkRulesOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/virtualNetworkRulesAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnetsOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnetsAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/databaseRestoreAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/usages\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metricDefinitions\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metrics\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/aggregatedDatabaseMetrics\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metrics\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metricdefinitions\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/topQueries\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/topQueries/queryText\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/advisors\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticPools/advisors\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/advisors\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/extensions\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticPoolEstimates\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditRecords\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/VulnerabilityAssessmentScans\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/workloadGroups\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/vulnerabilityAssessments\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/vulnerabilityAssessments\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"managedInstances/databases/vulnerabilityAssessments\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"managedInstances/vulnerabilityAssessments\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/VulnerabilityAssessmentSettings\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/VulnerabilityAssessment\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/vulnerabilityAssessmentScanAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/vulnerabilityAssessmentScanOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/recommendedSensitivityLabels\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/syncGroups\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/syncGroups/syncMembers\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/syncAgents\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"instancePools\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/instancePoolOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/instancePoolAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"managedInstances\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"managedInstances/administrators\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"managedInstances/databases\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"managedInstances/recoverableDatabases\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"managedInstances/metrics\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"managedInstances/metricDefinitions\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"managedInstances/databases/backupLongTermRetentionPolicies\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/longTermRetentionManagedInstances\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/longTermRetentionManagedInstanceBackups\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedInstanceLongTermRetentionPolicyOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedInstanceLongTermRetentionPolicyAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/longTermRetentionManagedInstanceBackupOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/longTermRetentionManagedInstanceBackupAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedDatabaseAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedDatabaseOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedDatabaseRestoreAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedDatabaseRestoreOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedDatabaseCompleteRestoreAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedDatabaseCompleteRestoreOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedServerSecurityAlertPoliciesAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"managedInstances/tdeCertificates\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedInstanceTdeCertAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedInstanceTdeCertOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedServerSecurityAlertPoliciesOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/securityAlertPoliciesAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/securityAlertPoliciesOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualClusters\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/virtualClusterAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/virtualClusterOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedInstanceAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedInstanceOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/administratorAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/administratorOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/syncGroupOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/syncMemberOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/syncAgentOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/syncDatabaseIds\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/longTermRetentionServers\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/longTermRetentionBackups\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/longTermRetentionPolicyOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/longTermRetentionPolicyAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/longTermRetentionBackupOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/longTermRetentionBackupAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/shortTermRetentionPolicyOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/shortTermRetentionPolicyAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedShortTermRetentionPolicyOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedShortTermRetentionPolicyAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/instanceFailoverGroups\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/instanceFailoverGroupAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/instanceFailoverGroupOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/privateEndpointConnectionProxyOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/privateEndpointConnectionProxyAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/privateEndpointConnectionOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/privateEndpointConnectionAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/notifyAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Germany West Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Norway East\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"Switzerland North\",\r\n \"UAE North\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/providers/Microsoft.SqlVirtualMachine\",\r\n \"namespace\": \"Microsoft.SqlVirtualMachine\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"bd93b475-f9e2-476e-963d-b2daf143ffb9\",\r\n \"roleDefinitionId\": \"f96bd990-ffdf-4c17-8ee3-77454d9c3f5d\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SqlVirtualMachineGroups\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"Australia Central 2\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"South Africa North\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"SqlVirtualMachines\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"Australia Central 2\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"South Africa North\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"SqlVirtualMachineGroups/AvailabilityGroupListeners\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"Australia Central 2\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"South Africa North\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"Australia Central 2\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"South Africa North\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Locations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"Australia Central 2\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"South Africa North\",\r\n \"UK West\",\r\n \"West US\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Locations/OperationTypes\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"Australia Central 2\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"South Africa North\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Locations/sqlVirtualMachineOperationResults\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"Australia Central 2\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"South Africa North\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Locations/sqlVirtualMachineGroupOperationResults\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"Australia Central 2\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"South Africa North\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Locations/availabilityGroupListenerOperationResults\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"Australia Central 2\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"France Central\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"South Africa North\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/providers/Microsoft.StorageCache\",\r\n \"namespace\": \"Microsoft.StorageCache\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"4392ab71-2ce2-4b0d-8770-b352745c73f5\",\r\n \"roleDefinitionId\": \"e27430df-bd6b-4f3a-bd6d-d52ad1a7d075\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"Korea Central\",\r\n \"South Central US\",\r\n \"West US 2\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-11-01\",\r\n \"2019-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/providers/Microsoft.StorageSync\",\r\n \"namespace\": \"Microsoft.StorageSync\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"9469b9f5-6722-4481-a2b2-14ed560b706f\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageSyncServices\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central India\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"UAE North\",\r\n \"UAE Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-03-01\",\r\n \"2019-02-01\",\r\n \"2018-10-01\",\r\n \"2018-07-01\",\r\n \"2018-04-02\",\r\n \"2018-01-01-preview\",\r\n \"2017-06-05-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"storageSyncServices/syncGroups\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central India\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"UAE North\",\r\n \"UAE Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-03-01\",\r\n \"2019-02-01\",\r\n \"2018-10-01\",\r\n \"2018-07-01\",\r\n \"2018-04-02\",\r\n \"2018-01-01-preview\",\r\n \"2017-06-05-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageSyncServices/syncGroups/cloudEndpoints\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central India\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"UAE North\",\r\n \"UAE Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-03-01\",\r\n \"2019-02-01\",\r\n \"2018-10-01\",\r\n \"2018-07-01\",\r\n \"2018-04-02\",\r\n \"2018-01-01-preview\",\r\n \"2017-06-05-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageSyncServices/syncGroups/serverEndpoints\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central India\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"UAE North\",\r\n \"UAE Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-03-01\",\r\n \"2019-02-01\",\r\n \"2018-10-01\",\r\n \"2018-07-01\",\r\n \"2018-04-02\",\r\n \"2018-01-01-preview\",\r\n \"2017-06-05-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageSyncServices/registeredServers\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central India\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"UAE North\",\r\n \"UAE Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-03-01\",\r\n \"2019-02-01\",\r\n \"2018-10-01\",\r\n \"2018-07-01\",\r\n \"2018-04-02\",\r\n \"2018-01-01-preview\",\r\n \"2017-06-05-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageSyncServices/workflows\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central India\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"UAE North\",\r\n \"UAE Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-03-01\",\r\n \"2019-02-01\",\r\n \"2018-10-01\",\r\n \"2018-07-01\",\r\n \"2018-04-02\",\r\n \"2018-01-01-preview\",\r\n \"2017-06-05-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-03-01\",\r\n \"2019-02-01\",\r\n \"2018-10-01\",\r\n \"2018-07-01\",\r\n \"2018-04-02\",\r\n \"2018-01-01-preview\",\r\n \"2017-06-05-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-03-01\",\r\n \"2019-02-01\",\r\n \"2018-10-01\",\r\n \"2018-07-01\",\r\n \"2018-04-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central India\",\r\n \"South India\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"UAE North\",\r\n \"UAE Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-03-01\",\r\n \"2019-02-01\",\r\n \"2018-10-01\",\r\n \"2018-07-01\",\r\n \"2018-04-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/workflows\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"UAE North\",\r\n \"UAE Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-03-01\",\r\n \"2019-02-01\",\r\n \"2018-10-01\",\r\n \"2018-07-01\",\r\n \"2018-04-02\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/providers/Microsoft.StorSimple\",\r\n \"namespace\": \"Microsoft.StorSimple\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"managers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2017-05-15\",\r\n \"2017-01-01\",\r\n \"2016-10-01\",\r\n \"2016-06-01\",\r\n \"2015-03-15\",\r\n \"2014-09-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2016-06-01\",\r\n \"2015-03-15\",\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/providers/Microsoft.StreamAnalytics\",\r\n \"namespace\": \"Microsoft.StreamAnalytics\",\r\n \"authorization\": {\r\n \"applicationId\": \"66f1e791-7bfb-4e18-aed8-1720056421c7\",\r\n \"roleDefinitionId\": \"15f6e7b0-eec0-4f18-a552-c97e000cbc61\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"streamingjobs\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2018-11-01\",\r\n \"2017-04-01-preview\",\r\n \"2016-03-01\",\r\n \"2015-11-01\",\r\n \"2015-10-01\",\r\n \"2015-09-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2018-11-01\",\r\n \"2017-04-01-preview\",\r\n \"2016-03-01\",\r\n \"2015-11-01\",\r\n \"2015-10-01\",\r\n \"2015-09-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2018-11-01\",\r\n \"2017-04-01-preview\",\r\n \"2016-03-01\",\r\n \"2015-11-01\",\r\n \"2015-10-01\",\r\n \"2015-09-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2018-11-01\",\r\n \"2017-04-01-preview\",\r\n \"2016-03-01\",\r\n \"2015-11-01\",\r\n \"2015-10-01\",\r\n \"2015-09-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/providers/Microsoft.Subscription\",\r\n \"namespace\": \"Microsoft.Subscription\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"e3335adb-5ca0-40dc-b8d3-bedc094e523b\"\r\n },\r\n {\r\n \"applicationId\": \"5da7367f-09c8-493e-8fd4-638089cddec3\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SubscriptionDefinitions\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"SubscriptionOperations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\",\r\n \"2018-03-01-preview\",\r\n \"2017-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"CreateSubscription\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2018-11-01-preview\",\r\n \"2018-03-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"cancel\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2019-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"rename\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2019-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"enable\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\",\r\n \"2019-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/providers/microsoft.support\",\r\n \"namespace\": \"microsoft.support\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"959678cf-d004-4c22-82a6-d2ce549a58b8\",\r\n \"roleDefinitionId\": \"81a3dd11-5123-4ec3-9485-772b0a27d1bd\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2019-05-01-preview\",\r\n \"2015-07-01-Preview\",\r\n \"2015-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2019-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2019-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"services/problemclassifications\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2019-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"supporttickets\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2019-05-01-preview\",\r\n \"2015-07-01-Preview\",\r\n \"2015-03-01\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"operationresults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2019-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationsstatus\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01\",\r\n \"2019-05-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/providers/Microsoft.Synapse\",\r\n \"namespace\": \"Microsoft.Synapse\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"9e09aefc-b2e5-4d19-9f74-3e3e8b11a57b\",\r\n \"roleDefinitionId\": \"a53b114a-452b-4d20-bcd6-c51c3c8c5878\",\r\n \"managedByRoleDefinitionId\": \"ede175bc-31e5-4074-ba98-e62b895797aa\"\r\n },\r\n {\r\n \"applicationId\": \"1ac05c7e-12d2-4605-bf9d-549d7041c6b3\",\r\n \"roleDefinitionId\": \"48e77487-c9fa-4abe-8484-71ebdebdbbc2\"\r\n },\r\n {\r\n \"applicationId\": \"ec52d13d-2e85-410e-a89a-8c79fb6a32ac\",\r\n \"roleDefinitionId\": \"c3a447c3-a63a-4905-a125-c6856f9d0e17\"\r\n },\r\n {\r\n \"applicationId\": \"5ebe1e69-13dd-4953-84fa-a74ed591db2e\",\r\n \"roleDefinitionId\": \"e8ebe3e8-569b-4ad3-bea1-5b274fe0c49f\"\r\n },\r\n {\r\n \"applicationId\": \"2e458d69-0892-4655-b713-4f7b182315dd\",\r\n \"roleDefinitionId\": \"45EA3B16-D4DD-48CA-BF0D-BBE644C0C0AF\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/providers/Microsoft.TimeSeriesInsights\",\r\n \"namespace\": \"Microsoft.TimeSeriesInsights\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"120d688d-1518-4cf7-bd38-182f158850b6\",\r\n \"roleDefinitionId\": \"5a43abdf-bb87-42c4-9e56-1c24bf364150\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"environments\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-15-preview\",\r\n \"2017-11-15\",\r\n \"2017-02-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"environments/eventsources\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-15-preview\",\r\n \"2017-11-15\",\r\n \"2017-02-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"environments/referenceDataSets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-15-preview\",\r\n \"2017-11-15\",\r\n \"2017-02-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"environments/accessPolicies\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-15-preview\",\r\n \"2017-11-15\",\r\n \"2017-02-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-15-preview\",\r\n \"2017-11-15\",\r\n \"2017-02-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/providers/Microsoft.Token\",\r\n \"namespace\": \"Microsoft.Token\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"fe053c5f-3692-4f14-aef2-ee34fc081cae\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"stores\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Japan West\",\r\n \"Australia Southeast\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"stores/accessPolicies\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Japan West\",\r\n \"Australia Southeast\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"stores/services\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Japan West\",\r\n \"Australia Southeast\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"stores/services/tokens\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Japan West\",\r\n \"Australia Southeast\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/providers/Microsoft.VirtualMachineImages\",\r\n \"namespace\": \"Microsoft.VirtualMachineImages\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"cf32a0cc-373c-47c9-9156-0db11f6a6dfc\",\r\n \"roleDefinitionId\": \"0ee55a0b-f45f-4392-92ec-e8bf1b4b5da5\",\r\n \"managedByRoleDefinitionId\": \"9e3af657-a8ff-583c-a75c-2fe7c4bcb635\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-01-preview\",\r\n \"2019-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/providers/microsoft.visualstudio\",\r\n \"namespace\": \"microsoft.visualstudio\",\r\n \"authorization\": {\r\n \"applicationId\": \"499b84ac-1321-427f-aa17-267ca6975798\",\r\n \"roleDefinitionId\": \"6a18f445-86f0-4e2e-b8a9-6b9b5677e3d8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West US 2\",\r\n \"Canada Central\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West US 2\",\r\n \"Canada Central\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"account/extension\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West US 2\",\r\n \"Canada Central\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West US 2\",\r\n \"Canada Central\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/providers/Microsoft.VMwareCloudSimple\",\r\n \"namespace\": \"Microsoft.VMwareCloudSimple\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"d96199e7-4674-4bbf-a1c6-ddf93682f5ee\",\r\n \"roleDefinitionId\": \"533012ca-a3e7-44e4-93b4-3143f8b9409d\",\r\n \"allowedThirdPartyExtensions\": [\r\n {\r\n \"name\": \"CloudSimpleExtension\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"Switzerland West\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dedicatedCloudNodes\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"Switzerland West\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dedicatedCloudServices\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"Switzerland West\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"Switzerland West\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/availabilities\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"Switzerland West\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/privateClouds\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"Switzerland West\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/privateClouds/virtualNetworks\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"Switzerland West\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/privateClouds/virtualMachineTemplates\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"Switzerland West\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/privateClouds/resourcePools\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"Switzerland West\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"Switzerland West\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/providers/Microsoft.VnfManager\",\r\n \"namespace\": \"Microsoft.VnfManager\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"b8ed041c-aa91-418e-8f47-20c70abc2de1\",\r\n \"roleDefinitionId\": \"c8d69fc0-f0ed-43b3-bf1d-4dfdaacc6d2d\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Locations\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Locations/OperationStatuses\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/providers/Microsoft.VSOnline\",\r\n \"namespace\": \"Microsoft.VSOnline\",\r\n \"authorizations\": [],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"West Us 2\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01-preview\",\r\n \"2019-07-01-beta\",\r\n \"2019-07-01-alpha\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"plans\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"West Us 2\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01-preview\",\r\n \"2019-07-01-beta\",\r\n \"2019-07-01-alpha\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-07-01-preview\",\r\n \"2019-07-01-beta\",\r\n \"2019-07-01-alpha\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/providers/Microsoft.WindowsESU\",\r\n \"namespace\": \"Microsoft.WindowsESU\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"e6c69915-bcc7-4335-b655-c62f949d691b\",\r\n \"roleDefinitionId\": \"9bccffcd-2d3d-4b7c-a2cb-bb26e77b4810\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-16-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-16-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Locations/OperationStatuses\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/providers/Microsoft.WindowsIoT\",\r\n \"namespace\": \"Microsoft.WindowsIoT\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"DeviceServices\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2018-02-16-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2018-02-16-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/providers/Microsoft.WorkloadMonitor\",\r\n \"namespace\": \"Microsoft.WorkloadMonitor\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-31-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"componentsSummary\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-31-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"monitorInstancesSummary\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-31-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"monitorInstances\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-31-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"components\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-31-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"monitors\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-31-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"notificationSettings\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-31-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/providers/Myget.PackageManagement\",\r\n \"namespace\": \"Myget.PackageManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/providers/Paraleap.CloudMonix\",\r\n \"namespace\": \"Paraleap.CloudMonix\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-08-10\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-10\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/providers/Pokitdok.Platform\",\r\n \"namespace\": \"Pokitdok.Platform\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-17\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-17\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-17\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-17\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/providers/RavenHq.Db\",\r\n \"namespace\": \"RavenHq.Db\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-18\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-18\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-18\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-18\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/providers/Raygun.CrashReporting\",\r\n \"namespace\": \"Raygun.CrashReporting\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"apps\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/providers/Sparkpost.Basic\",\r\n \"namespace\": \"Sparkpost.Basic\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-08-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/providers/stackify.retrace\",\r\n \"namespace\": \"stackify.retrace\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/providers/U2uconsult.TheIdentityHub\",\r\n \"namespace\": \"U2uconsult.TheIdentityHub\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n }\r\n ]\r\n}", + "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}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Resources/deployments/ps7102/exportTemplate?api-version=2019-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjlmMTM4YTEtMWQ2NC00MTA4LTg0MTMtOWVhM2JlMWMxYjJkL3Jlc291cmNlR3JvdXBzL3BzNjMwNC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMDIvZXhwb3J0VGVtcGxhdGU/YXBpLXZlcnNpb249MjAxOS0wOS0wMQ==", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2509/providers/Microsoft.Resources/deployments/ps296/exportTemplate?api-version=2019-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjUwOS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczI5Ni9leHBvcnRUZW1wbGF0ZT9hcGktdmVyc2lvbj0yMDE5LTEwLTAx", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { - "User-Agent": [ - "AzurePowershell/v1.0.0", - "PSVersion/v6.2.3" - ], - "ParameterSetName": [ - "__AllParameterSets" - ], - "CommandName": [ - "Save-AzResourceGroupDeploymentTemplate" + "x-ms-client-request-id": [ + "51455d1e-51a5-46dd-bcdb-8e4b7d1af5e2" ], - "Content-Type": [ - "application/json; charset=utf-8" + "Accept-Language": [ + "en-US" ], - "Content-Length": [ - "0" + "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": { @@ -12083,16 +7797,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1198" ], "x-ms-request-id": [ - "28785b57-932b-47c7-adb3-3e5f98920eaa" + "5013c1f7-f72b-4f67-8641-5256c83a70ec" ], "x-ms-correlation-request-id": [ - "28785b57-932b-47c7-adb3-3e5f98920eaa" + "5013c1f7-f72b-4f67-8641-5256c83a70ec" ], "x-ms-routing-request-id": [ - "WESTUS2:20200325T091346Z:28785b57-932b-47c7-adb3-3e5f98920eaa" + "NORTHCENTRALUS:20200612T213940Z:5013c1f7-f72b-4f67-8641-5256c83a70ec" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -12101,7 +7815,7 @@ "nosniff" ], "Date": [ - "Wed, 25 Mar 2020 09:13:45 GMT" + "Fri, 12 Jun 2020 21:39:39 GMT" ], "Content-Length": [ "862" @@ -12120,83 +7834,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Resources/deployments/ps7102/operations?api-version=2018-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjlmMTM4YTEtMWQ2NC00MTA4LTg0MTMtOWVhM2JlMWMxYjJkL3Jlc291cmNlR3JvdXBzL3BzNjMwNC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMDIvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "AzurePowershell/v1.0.0", - "PSVersion/v6.2.3" - ], - "ParameterSetName": [ - "__AllParameterSets" - ], - "CommandName": [ - "Get-AzResourceGroupDeploymentOperation" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" - ], - "x-ms-request-id": [ - "33031796-c9dd-4337-8eb9-8ae74d75f0a6" - ], - "x-ms-correlation-request-id": [ - "33031796-c9dd-4337-8eb9-8ae74d75f0a6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20200325T091346Z:33031796-c9dd-4337-8eb9-8ae74d75f0a6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 25 Mar 2020 09:13:46 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "1829" - ], - "Retry-After": [ - "0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Resources/deployments/ps7102/operations/9B87AD3AC82D5CB1\",\r\n \"operationId\": \"9B87AD3AC82D5CB1\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Read\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2020-03-25T09:13:40.2633922Z\",\r\n \"duration\": \"PT0.8840342S\",\r\n \"trackingId\": \"ef9a237a-cfde-4e0d-a76d-ebeb43788814\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Storage/storageAccounts/ps2757\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps2757\",\r\n \"apiVersion\": \"2019-06-01\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Resources/deployments/ps7102/operations/D60BABBFE7AE59B2\",\r\n \"operationId\": \"D60BABBFE7AE59B2\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2020-03-25T09:13:38.9206007Z\",\r\n \"duration\": \"PT22.8542458S\",\r\n \"trackingId\": \"f4194718-4948-424c-90b2-447aa5140319\",\r\n \"serviceRequestId\": \"e60d7e65-f3b9-4984-9501-ea7b36aedca4\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Storage/storageAccounts/ps2757\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps2757\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourceGroups/ps6304/providers/Microsoft.Resources/deployments/ps7102/operations/08586164792943246485\",\r\n \"operationId\": \"08586164792943246485\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"EvaluateDeploymentOutput\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2020-03-25T09:13:41.3973123Z\",\r\n \"duration\": \"PT0.8461635S\",\r\n \"trackingId\": \"1de0b83e-3943-4049-a50b-ebb965d6027e\",\r\n \"statusCode\": \"OK\",\r\n \"statusMessage\": null\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourcegroups/ps6304/providers/Microsoft.Resources/deployments/ps7102?api-version=2019-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjlmMTM4YTEtMWQ2NC00MTA4LTg0MTMtOWVhM2JlMWMxYjJkL3Jlc291cmNlZ3JvdXBzL3BzNjMwNC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMDI/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2509/providers/Microsoft.Resources/deployments/ps296?api-version=2019-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjUwOS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczI5Nj9hcGktdmVyc2lvbj0yMDE5LTEwLTAx", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "76e36e97-8d87-4b98-9557-781ac7849962" + "94a189e9-7ee2-41cc-b69b-23d7ab0d4525" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27110.04", + "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.4.0.0" + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0" ] }, "ResponseHeaders": { @@ -12207,16 +7860,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11813" + "11880" ], "x-ms-request-id": [ - "385623d4-24ff-484c-bce9-0c644082d12f" + "0bc325d3-2900-49b0-8973-6089528dcbac" ], "x-ms-correlation-request-id": [ - "385623d4-24ff-484c-bce9-0c644082d12f" + "0bc325d3-2900-49b0-8973-6089528dcbac" ], "x-ms-routing-request-id": [ - "WESTUS2:20200325T091346Z:385623d4-24ff-484c-bce9-0c644082d12f" + "NORTHCENTRALUS:20200612T213940Z:0bc325d3-2900-49b0-8973-6089528dcbac" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -12225,7 +7878,7 @@ "nosniff" ], "Date": [ - "Wed, 25 Mar 2020 09:13:46 GMT" + "Fri, 12 Jun 2020 21:39:40 GMT" ], "Content-Length": [ "0" @@ -12241,22 +7894,22 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourcegroups/ps6304/providers/Microsoft.Resources/deployments/ps7102?api-version=2019-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjlmMTM4YTEtMWQ2NC00MTA4LTg0MTMtOWVhM2JlMWMxYjJkL3Jlc291cmNlZ3JvdXBzL3BzNjMwNC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMDI/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2509/providers/Microsoft.Resources/deployments/ps296?api-version=2019-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjUwOS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczI5Nj9hcGktdmVyc2lvbj0yMDE5LTEwLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ed437546-0cad-4690-8b74-c1e120d05ab1" + "42543dd4-1b64-4e75-82d7-93ebdc30ff65" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27110.04", + "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.4.0.0" + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0" ] }, "ResponseHeaders": { @@ -12267,7 +7920,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/operationresults/eyJqb2JJZCI6IkRlcGxveW1lbnREZWxldGlvbkpvYi1HTlMtUFM2MzA0LVBTNzEwMi0iLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2019-10-01" + "https://management.azure.com/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IkRlcGxveW1lbnREZWxldGlvbkpvYi1HTlMtUFMyNTA5LVBTMjk2LSIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2019-10-01" ], "Retry-After": [ "0" @@ -12276,127 +7929,13 @@ "14999" ], "x-ms-request-id": [ - "da523d38-d3d7-4d75-804d-e575e5f7b4dc" - ], - "x-ms-correlation-request-id": [ - "da523d38-d3d7-4d75-804d-e575e5f7b4dc" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20200325T091347Z:da523d38-d3d7-4d75-804d-e575e5f7b4dc" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 25 Mar 2020 09:13:47 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/operationresults/eyJqb2JJZCI6IkRlcGxveW1lbnREZWxldGlvbkpvYi1HTlMtUFM2MzA0LVBTNzEwMi0iLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2019-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjlmMTM4YTEtMWQ2NC00MTA4LTg0MTMtOWVhM2JlMWMxYjJkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWtSbGNHeHZlVzFsYm5SRVpXeGxkR2x2YmtwdllpMUhUbE10VUZNMk16QTBMVkJUTnpFd01pMGlMQ0pxYjJKTWIyTmhkR2x2YmlJNkluZGxjM1IxY3lKOT9hcGktdmVyc2lvbj0yMDE5LTEwLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.27110.04", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.4.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/operationresults/eyJqb2JJZCI6IkRlcGxveW1lbnREZWxldGlvbkpvYi1HTlMtUFM2MzA0LVBTNzEwMi0iLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2019-10-01" - ], - "Retry-After": [ - "0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11812" - ], - "x-ms-request-id": [ - "ac38c211-a26d-4d1a-881b-3010aa9a9559" - ], - "x-ms-correlation-request-id": [ - "ac38c211-a26d-4d1a-881b-3010aa9a9559" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20200325T091402Z:ac38c211-a26d-4d1a-881b-3010aa9a9559" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 25 Mar 2020 09:14:02 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/operationresults/eyJqb2JJZCI6IkRlcGxveW1lbnREZWxldGlvbkpvYi1HTlMtUFM2MzA0LVBTNzEwMi0iLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2019-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjlmMTM4YTEtMWQ2NC00MTA4LTg0MTMtOWVhM2JlMWMxYjJkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWtSbGNHeHZlVzFsYm5SRVpXeGxkR2x2YmtwdllpMUhUbE10VUZNMk16QTBMVkJUTnpFd01pMGlMQ0pxYjJKTWIyTmhkR2x2YmlJNkluZGxjM1IxY3lKOT9hcGktdmVyc2lvbj0yMDE5LTEwLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.27110.04", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.4.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/operationresults/eyJqb2JJZCI6IkRlcGxveW1lbnREZWxldGlvbkpvYi1HTlMtUFM2MzA0LVBTNzEwMi0iLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2019-10-01" - ], - "Retry-After": [ - "0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11811" - ], - "x-ms-request-id": [ - "d8131cb9-2b02-45de-925b-f3ce89567eb3" + "18ad8dd9-ef27-4c63-885f-e474df921c52" ], "x-ms-correlation-request-id": [ - "d8131cb9-2b02-45de-925b-f3ce89567eb3" + "18ad8dd9-ef27-4c63-885f-e474df921c52" ], "x-ms-routing-request-id": [ - "WESTUS2:20200325T091417Z:d8131cb9-2b02-45de-925b-f3ce89567eb3" + "NORTHCENTRALUS:20200612T213942Z:18ad8dd9-ef27-4c63-885f-e474df921c52" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -12405,7 +7944,7 @@ "nosniff" ], "Date": [ - "Wed, 25 Mar 2020 09:14:17 GMT" + "Fri, 12 Jun 2020 21:39:41 GMT" ], "Expires": [ "-1" @@ -12418,16 +7957,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/operationresults/eyJqb2JJZCI6IkRlcGxveW1lbnREZWxldGlvbkpvYi1HTlMtUFM2MzA0LVBTNzEwMi0iLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2019-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjlmMTM4YTEtMWQ2NC00MTA4LTg0MTMtOWVhM2JlMWMxYjJkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWtSbGNHeHZlVzFsYm5SRVpXeGxkR2x2YmtwdllpMUhUbE10VUZNMk16QTBMVkJUTnpFd01pMGlMQ0pxYjJKTWIyTmhkR2x2YmlJNkluZGxjM1IxY3lKOT9hcGktdmVyc2lvbj0yMDE5LTEwLTAx", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IkRlcGxveW1lbnREZWxldGlvbkpvYi1HTlMtUFMyNTA5LVBTMjk2LSIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2019-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWtSbGNHeHZlVzFsYm5SRVpXeGxkR2x2YmtwdllpMUhUbE10VUZNeU5UQTVMVkJUTWprMkxTSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6SW4wP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27110.04", + "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.4.0.0" + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0" ] }, "ResponseHeaders": { @@ -12438,22 +7977,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/operationresults/eyJqb2JJZCI6IkRlcGxveW1lbnREZWxldGlvbkpvYi1HTlMtUFM2MzA0LVBTNzEwMi0iLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2019-10-01" + "https://management.azure.com/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IkRlcGxveW1lbnREZWxldGlvbkpvYi1HTlMtUFMyNTA5LVBTMjk2LSIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2019-10-01" ], "Retry-After": [ "0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11810" + "11879" ], "x-ms-request-id": [ - "1e8ff1a1-9100-4275-a947-68f130c3e848" + "da8f8fd2-b0b6-421b-8fab-2b5a7c8e5dfb" ], "x-ms-correlation-request-id": [ - "1e8ff1a1-9100-4275-a947-68f130c3e848" + "da8f8fd2-b0b6-421b-8fab-2b5a7c8e5dfb" ], "x-ms-routing-request-id": [ - "WESTUS2:20200325T091432Z:1e8ff1a1-9100-4275-a947-68f130c3e848" + "NORTHCENTRALUS:20200612T213957Z:da8f8fd2-b0b6-421b-8fab-2b5a7c8e5dfb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -12462,7 +8001,7 @@ "nosniff" ], "Date": [ - "Wed, 25 Mar 2020 09:14:32 GMT" + "Fri, 12 Jun 2020 21:39:57 GMT" ], "Expires": [ "-1" @@ -12475,16 +8014,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/operationresults/eyJqb2JJZCI6IkRlcGxveW1lbnREZWxldGlvbkpvYi1HTlMtUFM2MzA0LVBTNzEwMi0iLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2019-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjlmMTM4YTEtMWQ2NC00MTA4LTg0MTMtOWVhM2JlMWMxYjJkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWtSbGNHeHZlVzFsYm5SRVpXeGxkR2x2YmtwdllpMUhUbE10VUZNMk16QTBMVkJUTnpFd01pMGlMQ0pxYjJKTWIyTmhkR2x2YmlJNkluZGxjM1IxY3lKOT9hcGktdmVyc2lvbj0yMDE5LTEwLTAx", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IkRlcGxveW1lbnREZWxldGlvbkpvYi1HTlMtUFMyNTA5LVBTMjk2LSIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2019-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWtSbGNHeHZlVzFsYm5SRVpXeGxkR2x2YmtwdllpMUhUbE10VUZNeU5UQTVMVkJUTWprMkxTSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6SW4wP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27110.04", + "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.4.0.0" + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0" ] }, "ResponseHeaders": { @@ -12495,16 +8034,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11809" + "11878" ], "x-ms-request-id": [ - "64a621f4-2875-43b3-952d-6d6bc4057aa0" + "cf5e2769-516b-4a5d-955a-2b32dc575a2a" ], "x-ms-correlation-request-id": [ - "64a621f4-2875-43b3-952d-6d6bc4057aa0" + "cf5e2769-516b-4a5d-955a-2b32dc575a2a" ], "x-ms-routing-request-id": [ - "WESTUS2:20200325T091448Z:64a621f4-2875-43b3-952d-6d6bc4057aa0" + "NORTHCENTRALUS:20200612T214012Z:cf5e2769-516b-4a5d-955a-2b32dc575a2a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -12513,7 +8052,7 @@ "nosniff" ], "Date": [ - "Wed, 25 Mar 2020 09:14:47 GMT" + "Fri, 12 Jun 2020 21:40:12 GMT" ], "Expires": [ "-1" @@ -12526,16 +8065,16 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/operationresults/eyJqb2JJZCI6IkRlcGxveW1lbnREZWxldGlvbkpvYi1HTlMtUFM2MzA0LVBTNzEwMi0iLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2019-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjlmMTM4YTEtMWQ2NC00MTA4LTg0MTMtOWVhM2JlMWMxYjJkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWtSbGNHeHZlVzFsYm5SRVpXeGxkR2x2YmtwdllpMUhUbE10VUZNMk16QTBMVkJUTnpFd01pMGlMQ0pxYjJKTWIyTmhkR2x2YmlJNkluZGxjM1IxY3lKOT9hcGktdmVyc2lvbj0yMDE5LTEwLTAx", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IkRlcGxveW1lbnREZWxldGlvbkpvYi1HTlMtUFMyNTA5LVBTMjk2LSIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2019-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWtSbGNHeHZlVzFsYm5SRVpXeGxkR2x2YmtwdllpMUhUbE10VUZNeU5UQTVMVkJUTWprMkxTSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6SW4wP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27110.04", + "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.4.0.0" + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0" ] }, "ResponseHeaders": { @@ -12546,16 +8085,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11808" + "11877" ], "x-ms-request-id": [ - "cea6dadf-0282-4941-a03b-8af54b09757d" + "f9b8dedd-a0dd-40eb-bb89-e425b2d004c8" ], "x-ms-correlation-request-id": [ - "cea6dadf-0282-4941-a03b-8af54b09757d" + "f9b8dedd-a0dd-40eb-bb89-e425b2d004c8" ], "x-ms-routing-request-id": [ - "WESTUS2:20200325T091448Z:cea6dadf-0282-4941-a03b-8af54b09757d" + "NORTHCENTRALUS:20200612T214012Z:f9b8dedd-a0dd-40eb-bb89-e425b2d004c8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -12564,7 +8103,7 @@ "nosniff" ], "Date": [ - "Wed, 25 Mar 2020 09:14:47 GMT" + "Fri, 12 Jun 2020 21:40:12 GMT" ], "Expires": [ "-1" @@ -12577,22 +8116,22 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/resourcegroups/ps6304?api-version=2019-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjlmMTM4YTEtMWQ2NC00MTA4LTg0MTMtOWVhM2JlMWMxYjJkL3Jlc291cmNlZ3JvdXBzL3BzNjMwND9hcGktdmVyc2lvbj0yMDE5LTEwLTAx", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2509?api-version=2019-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjUwOT9hcGktdmVyc2lvbj0yMDE5LTEwLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1b5bc0e5-7e12-472f-8fcd-39ad32118f49" + "50239420-f1b5-41bc-a1a3-7319de21219e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27110.04", + "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.4.0.0" + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0" ] }, "ResponseHeaders": { @@ -12603,7 +8142,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYzMDQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2019-10-01" + "https://management.azure.com/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI1MDktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2019-10-01" ], "Retry-After": [ "0" @@ -12612,13 +8151,13 @@ "14998" ], "x-ms-request-id": [ - "010e6876-6c11-43c4-a020-24308591d912" + "06f60534-6198-466c-a06c-3cfad101964e" ], "x-ms-correlation-request-id": [ - "010e6876-6c11-43c4-a020-24308591d912" + "06f60534-6198-466c-a06c-3cfad101964e" ], "x-ms-routing-request-id": [ - "WESTUS2:20200325T091449Z:010e6876-6c11-43c4-a020-24308591d912" + "NORTHCENTRALUS:20200612T214013Z:06f60534-6198-466c-a06c-3cfad101964e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -12627,7 +8166,7 @@ "nosniff" ], "Date": [ - "Wed, 25 Mar 2020 09:14:48 GMT" + "Fri, 12 Jun 2020 21:40:13 GMT" ], "Expires": [ "-1" @@ -12640,16 +8179,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYzMDQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2019-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjlmMTM4YTEtMWQ2NC00MTA4LTg0MTMtOWVhM2JlMWMxYjJkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZek1EUXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI1MDktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2019-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJMU1Ea3RWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27110.04", + "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.4.0.0" + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0" ] }, "ResponseHeaders": { @@ -12660,22 +8199,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYzMDQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2019-10-01" + "https://management.azure.com/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI1MDktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2019-10-01" ], "Retry-After": [ "0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11806" + "11875" ], "x-ms-request-id": [ - "56aae2e2-b407-4822-b1b1-0b38285884b6" + "b1a8faaf-4308-4a35-9c70-6c15e25d3bce" ], "x-ms-correlation-request-id": [ - "56aae2e2-b407-4822-b1b1-0b38285884b6" + "b1a8faaf-4308-4a35-9c70-6c15e25d3bce" ], "x-ms-routing-request-id": [ - "WESTUS2:20200325T091504Z:56aae2e2-b407-4822-b1b1-0b38285884b6" + "NORTHCENTRALUS:20200612T214029Z:b1a8faaf-4308-4a35-9c70-6c15e25d3bce" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -12684,7 +8223,7 @@ "nosniff" ], "Date": [ - "Wed, 25 Mar 2020 09:15:03 GMT" + "Fri, 12 Jun 2020 21:40:28 GMT" ], "Expires": [ "-1" @@ -12697,16 +8236,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYzMDQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2019-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjlmMTM4YTEtMWQ2NC00MTA4LTg0MTMtOWVhM2JlMWMxYjJkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZek1EUXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI1MDktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2019-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJMU1Ea3RWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27110.04", + "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.4.0.0" + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0" ] }, "ResponseHeaders": { @@ -12717,22 +8256,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYzMDQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2019-10-01" + "https://management.azure.com/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI1MDktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2019-10-01" ], "Retry-After": [ "0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11805" + "11874" ], "x-ms-request-id": [ - "7bebea5f-475a-45a3-a633-f622a5db9106" + "87d72a3f-1f07-44a9-aed6-1aea24b98103" ], "x-ms-correlation-request-id": [ - "7bebea5f-475a-45a3-a633-f622a5db9106" + "87d72a3f-1f07-44a9-aed6-1aea24b98103" ], "x-ms-routing-request-id": [ - "WESTUS2:20200325T091519Z:7bebea5f-475a-45a3-a633-f622a5db9106" + "NORTHCENTRALUS:20200612T214044Z:87d72a3f-1f07-44a9-aed6-1aea24b98103" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -12741,7 +8280,7 @@ "nosniff" ], "Date": [ - "Wed, 25 Mar 2020 09:15:19 GMT" + "Fri, 12 Jun 2020 21:40:44 GMT" ], "Expires": [ "-1" @@ -12754,16 +8293,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYzMDQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2019-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjlmMTM4YTEtMWQ2NC00MTA4LTg0MTMtOWVhM2JlMWMxYjJkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZek1EUXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI1MDktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2019-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJMU1Ea3RWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27110.04", + "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.4.0.0" + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0" ] }, "ResponseHeaders": { @@ -12774,22 +8313,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYzMDQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2019-10-01" + "https://management.azure.com/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI1MDktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2019-10-01" ], "Retry-After": [ "0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11804" + "11873" ], "x-ms-request-id": [ - "b0bda2ed-23d2-4b34-928e-0c46240551ac" + "aad35098-0c68-4ce2-b0ab-3774c12dcbb8" ], "x-ms-correlation-request-id": [ - "b0bda2ed-23d2-4b34-928e-0c46240551ac" + "aad35098-0c68-4ce2-b0ab-3774c12dcbb8" ], "x-ms-routing-request-id": [ - "WESTUS2:20200325T091534Z:b0bda2ed-23d2-4b34-928e-0c46240551ac" + "NORTHCENTRALUS:20200612T214059Z:aad35098-0c68-4ce2-b0ab-3774c12dcbb8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -12798,7 +8337,7 @@ "nosniff" ], "Date": [ - "Wed, 25 Mar 2020 09:15:34 GMT" + "Fri, 12 Jun 2020 21:40:58 GMT" ], "Expires": [ "-1" @@ -12811,16 +8350,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYzMDQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2019-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjlmMTM4YTEtMWQ2NC00MTA4LTg0MTMtOWVhM2JlMWMxYjJkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZek1EUXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI1MDktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2019-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJMU1Ea3RWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27110.04", + "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.4.0.0" + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0" ] }, "ResponseHeaders": { @@ -12831,22 +8370,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYzMDQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2019-10-01" + "https://management.azure.com/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI1MDktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2019-10-01" ], "Retry-After": [ "0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11803" + "11872" ], "x-ms-request-id": [ - "e83fa2c0-76eb-43bd-9e5f-94a88bc4eaca" + "554dfab0-239e-45c1-a284-167e5c035156" ], "x-ms-correlation-request-id": [ - "e83fa2c0-76eb-43bd-9e5f-94a88bc4eaca" + "554dfab0-239e-45c1-a284-167e5c035156" ], "x-ms-routing-request-id": [ - "WESTUS2:20200325T091549Z:e83fa2c0-76eb-43bd-9e5f-94a88bc4eaca" + "NORTHCENTRALUS:20200612T214114Z:554dfab0-239e-45c1-a284-167e5c035156" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -12855,7 +8394,7 @@ "nosniff" ], "Date": [ - "Wed, 25 Mar 2020 09:15:49 GMT" + "Fri, 12 Jun 2020 21:41:13 GMT" ], "Expires": [ "-1" @@ -12868,16 +8407,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYzMDQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2019-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjlmMTM4YTEtMWQ2NC00MTA4LTg0MTMtOWVhM2JlMWMxYjJkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZek1EUXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI1MDktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2019-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJMU1Ea3RWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27110.04", + "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.4.0.0" + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0" ] }, "ResponseHeaders": { @@ -12888,22 +8427,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYzMDQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2019-10-01" + "https://management.azure.com/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI1MDktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2019-10-01" ], "Retry-After": [ "0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11802" + "11871" ], "x-ms-request-id": [ - "2d894ad9-240a-4aba-b5f5-d5a188e8f0ad" + "5762d361-6873-4c70-840f-d83221f0a21e" ], "x-ms-correlation-request-id": [ - "2d894ad9-240a-4aba-b5f5-d5a188e8f0ad" + "5762d361-6873-4c70-840f-d83221f0a21e" ], "x-ms-routing-request-id": [ - "WESTUS2:20200325T091604Z:2d894ad9-240a-4aba-b5f5-d5a188e8f0ad" + "NORTHCENTRALUS:20200612T214129Z:5762d361-6873-4c70-840f-d83221f0a21e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -12912,7 +8451,7 @@ "nosniff" ], "Date": [ - "Wed, 25 Mar 2020 09:16:04 GMT" + "Fri, 12 Jun 2020 21:41:29 GMT" ], "Expires": [ "-1" @@ -12925,16 +8464,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYzMDQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2019-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjlmMTM4YTEtMWQ2NC00MTA4LTg0MTMtOWVhM2JlMWMxYjJkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZek1EUXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI1MDktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2019-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJMU1Ea3RWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27110.04", + "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.4.0.0" + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0" ] }, "ResponseHeaders": { @@ -12945,22 +8484,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYzMDQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2019-10-01" + "https://management.azure.com/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI1MDktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2019-10-01" ], "Retry-After": [ "0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11801" + "11870" ], "x-ms-request-id": [ - "939988b3-2015-4fe0-bdb2-a9303a0963d6" + "a7aa03e5-7ab8-4070-a577-0db62382a1a8" ], "x-ms-correlation-request-id": [ - "939988b3-2015-4fe0-bdb2-a9303a0963d6" + "a7aa03e5-7ab8-4070-a577-0db62382a1a8" ], "x-ms-routing-request-id": [ - "WESTUS2:20200325T091620Z:939988b3-2015-4fe0-bdb2-a9303a0963d6" + "NORTHCENTRALUS:20200612T214144Z:a7aa03e5-7ab8-4070-a577-0db62382a1a8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -12969,7 +8508,7 @@ "nosniff" ], "Date": [ - "Wed, 25 Mar 2020 09:16:19 GMT" + "Fri, 12 Jun 2020 21:41:44 GMT" ], "Expires": [ "-1" @@ -12982,16 +8521,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYzMDQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2019-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjlmMTM4YTEtMWQ2NC00MTA4LTg0MTMtOWVhM2JlMWMxYjJkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZek1EUXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI1MDktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2019-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJMU1Ea3RWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27110.04", + "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.4.0.0" + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0" ] }, "ResponseHeaders": { @@ -13002,16 +8541,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11800" + "11869" ], "x-ms-request-id": [ - "104528e4-7029-4f37-86fe-5b8987b71abc" + "213d1a51-d9e3-41cb-9f1c-f673a36dc7a0" ], "x-ms-correlation-request-id": [ - "104528e4-7029-4f37-86fe-5b8987b71abc" + "213d1a51-d9e3-41cb-9f1c-f673a36dc7a0" ], "x-ms-routing-request-id": [ - "WESTUS2:20200325T091635Z:104528e4-7029-4f37-86fe-5b8987b71abc" + "NORTHCENTRALUS:20200612T214200Z:213d1a51-d9e3-41cb-9f1c-f673a36dc7a0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -13020,7 +8559,7 @@ "nosniff" ], "Date": [ - "Wed, 25 Mar 2020 09:16:34 GMT" + "Fri, 12 Jun 2020 21:41:59 GMT" ], "Expires": [ "-1" @@ -13036,16 +8575,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b9f138a1-1d64-4108-8413-9ea3be1c1b2d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYzMDQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2019-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjlmMTM4YTEtMWQ2NC00MTA4LTg0MTMtOWVhM2JlMWMxYjJkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZek1EUXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI1MDktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2019-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJMU1Ea3RWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27110.04", + "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.4.0.0" + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0" ] }, "ResponseHeaders": { @@ -13056,16 +8595,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11799" + "11868" ], "x-ms-request-id": [ - "42873e8b-7f36-42ef-89b5-a22ed2f57bf9" + "9fa5af55-ed4f-432e-83ea-c84f6a6f2a2b" ], "x-ms-correlation-request-id": [ - "42873e8b-7f36-42ef-89b5-a22ed2f57bf9" + "9fa5af55-ed4f-432e-83ea-c84f6a6f2a2b" ], "x-ms-routing-request-id": [ - "WESTUS2:20200325T091635Z:42873e8b-7f36-42ef-89b5-a22ed2f57bf9" + "NORTHCENTRALUS:20200612T214200Z:9fa5af55-ed4f-432e-83ea-c84f6a6f2a2b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -13074,7 +8613,7 @@ "nosniff" ], "Date": [ - "Wed, 25 Mar 2020 09:16:34 GMT" + "Fri, 12 Jun 2020 21:42:00 GMT" ], "Expires": [ "-1" @@ -13092,13 +8631,13 @@ ], "Names": { "Test-DeploymentEndToEnd-ResourceGroup": [ - "ps6304", - "ps7102", - "ps2757" + "ps2509", + "ps296", + "ps4924" ] }, "Variables": { - "SubscriptionId": "b9f138a1-1d64-4108-8413-9ea3be1c1b2d", + "SubscriptionId": "a1bfa635-f2bf-42f1-86b5-848c674fc321", "TenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", "Domain": "" } From f8f9c773b5757831462b637130965b07179c4ac6 Mon Sep 17 00:00:00 2001 From: Gokul Premraj Date: Mon, 15 Jun 2020 11:55:54 -0400 Subject: [PATCH 05/17] Include review fixes --- .../GetAzureResourceGroupDeploymentOperationCmdlet.cs | 11 ++++------- src/Resources/Resources/ChangeLog.md | 1 + 2 files changed, 5 insertions(+), 7 deletions(-) diff --git a/src/Resources/ResourceManager/Implementation/ResourceGroupDeployments/GetAzureResourceGroupDeploymentOperationCmdlet.cs b/src/Resources/ResourceManager/Implementation/ResourceGroupDeployments/GetAzureResourceGroupDeploymentOperationCmdlet.cs index 1069e182604d..0a05b38972a7 100644 --- a/src/Resources/ResourceManager/Implementation/ResourceGroupDeployments/GetAzureResourceGroupDeploymentOperationCmdlet.cs +++ b/src/Resources/ResourceManager/Implementation/ResourceGroupDeployments/GetAzureResourceGroupDeploymentOperationCmdlet.cs @@ -14,20 +14,16 @@ 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 System.Threading.Tasks; + using Microsoft.WindowsAzure.Commands.Common.CustomAttributes; + using Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels; /// /// Gets the deployment operation. /// - [Cmdlet("Get", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "ResourceGroupDeploymentOperation"), OutputType(typeof(PSObject))] + [Cmdlet("Get", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "ResourceGroupDeploymentOperation"), OutputType(typeof(PSDeploymentOperation))] public class GetAzureResourceGroupDeploymentOperationCmdlet : ResourceManagerCmdletBase { /// @@ -41,6 +37,7 @@ 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; } diff --git a/src/Resources/Resources/ChangeLog.md b/src/Resources/Resources/ChangeLog.md index 8e647d24dd36..ca8405f53d39 100644 --- a/src/Resources/Resources/ChangeLog.md +++ b/src/Resources/Resources/ChangeLog.md @@ -23,6 +23,7 @@ * Added `-ExcludeChangeType` parameter to `Get-AzDeploymentWhatIfResult` and `Get-AzResourceGroupDeploymentWhatIfResult` * Added `-WhatIfExcludeChangeType` parameter to `New-AzDeployment` and `New-AzResourceGroupDeployment` * Updated `Test-Az*Deployment` cmdlets to show better error messages +* Updated `Get-AzResourceGroupDeploymentOperation` and `Save-AzResourceGroupDeploymentTemplate` to use the SDK. ## Version 2.1.0 * Added Tail parameter to Get-AzDeploymentScriptLog and Save-AzDeploymentScriptLog cmdlets From 77798dc242cea45ff6c7b412abf86484acccd6d3 Mon Sep 17 00:00:00 2001 From: Gokul Premraj Date: Wed, 17 Jun 2020 16:44:20 -0400 Subject: [PATCH 06/17] Changed help file to reflect new output type --- .../Resources/help/Get-AzResourceGroupDeploymentOperation.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Resources/Resources/help/Get-AzResourceGroupDeploymentOperation.md b/src/Resources/Resources/help/Get-AzResourceGroupDeploymentOperation.md index 20c63b0ed412..779308415c89 100644 --- a/src/Resources/Resources/help/Get-AzResourceGroupDeploymentOperation.md +++ b/src/Resources/Resources/help/Get-AzResourceGroupDeploymentOperation.md @@ -55,7 +55,7 @@ Accept wildcard characters: False ``` ### -DefaultProfile -The credentials, account, tenant, and subscription used for communication with azure +The credentials, account, tenant, and subscription used for communication with Azure. ```yaml Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer @@ -140,7 +140,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### System.Management.Automation.PSObject +### Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeploymentOperation ## NOTES From e8556bd2e224a083b018ffc569afeca445ee9811 Mon Sep 17 00:00:00 2001 From: Gokul Premraj Date: Wed, 24 Jun 2020 17:40:36 -0400 Subject: [PATCH 07/17] Rollback breaking changes from PR #12141 --- ...eResourceGroupDeploymentOperationCmdlet.cs | 75 +- .../ResourceGroupDeploymentEndToEnd.json | 2636 ++++++++--------- src/Resources/Resources/ChangeLog.md | 2 +- .../Get-AzResourceGroupDeploymentOperation.md | 2 +- 4 files changed, 1261 insertions(+), 1454 deletions(-) diff --git a/src/Resources/ResourceManager/Implementation/ResourceGroupDeployments/GetAzureResourceGroupDeploymentOperationCmdlet.cs b/src/Resources/ResourceManager/Implementation/ResourceGroupDeployments/GetAzureResourceGroupDeploymentOperationCmdlet.cs index 0a05b38972a7..d93b1d2b2364 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,10 +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); } } 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 b2e96a6a0468..e4471f9f0180 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 From eefb5dc7c0bb2803e1d3f4f5f8885d0ef3287deb Mon Sep 17 00:00:00 2001 From: Gokul Premraj Date: Tue, 11 Aug 2020 14:20:10 -0400 Subject: [PATCH 08/17] Change Get-AzResourceGroupDeploymentOperation implementation to use SDK --- package-lock.json | 11 - ...eResourceGroupDeploymentOperationCmdlet.cs | 73 +- .../ResourceGroupDeploymentEndToEnd.json | 10838 ++-------------- .../Get-AzResourceGroupDeploymentOperation.md | 2 +- 4 files changed, 1270 insertions(+), 9654 deletions(-) delete mode 100644 package-lock.json diff --git a/package-lock.json b/package-lock.json deleted file mode 100644 index 2e26b1c31a06..000000000000 --- a/package-lock.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "requires": true, - "lockfileVersion": 1, - "dependencies": { - "autorest": { - "version": "3.0.6187", - "resolved": "https://registry.npmjs.org/autorest/-/autorest-3.0.6187.tgz", - "integrity": "sha512-Xk27qVfsAbmp95Kx+Wwr7LiKlwsoFtcixu46sEaXCRr9zS+lZJDO50uZLXa2ZIE8/z9accpNt3HTdv/9DHk7yg==" - } - } -} diff --git a/src/Resources/ResourceManager/Implementation/ResourceGroupDeployments/GetAzureResourceGroupDeploymentOperationCmdlet.cs b/src/Resources/ResourceManager/Implementation/ResourceGroupDeployments/GetAzureResourceGroupDeploymentOperationCmdlet.cs index 835bd10fd526..1999fca9449a 100644 --- a/src/Resources/ResourceManager/Implementation/ResourceGroupDeployments/GetAzureResourceGroupDeploymentOperationCmdlet.cs +++ b/src/Resources/ResourceManager/Implementation/ResourceGroupDeployments/GetAzureResourceGroupDeploymentOperationCmdlet.cs @@ -14,20 +14,17 @@ 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(PSObject))] + [Cmdlet("Get", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "ResourceGroupDeploymentOperation"), OutputType(typeof(PSDeploymentOperation))] public class GetAzureResourceGroupDeploymentOperationCmdlet : ResourceManagerCmdletBase { /// @@ -41,6 +38,7 @@ 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; } @@ -58,68 +56,11 @@ public class GetAzureResourceGroupDeploymentOperationCmdlet : ResourceManagerCmd /// protected override void OnProcessRecord() { + var deploymentOperations = ResourceManagerSdkClient.ListDeploymentOperationsAtResourceGroup( + ResourceGroupName, DeploymentName); base.OnProcessRecord(); - 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 = Constants.DeploymentOperationApiVersion; - - 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); + WriteObject(deploymentOperations, true); } } 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 6c32b2ae3eb9..524884ec44f8 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,21 +1,21 @@ { "Entries": [ { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9661?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY2MT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5770?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTc3MD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b03ad409-ec84-4d39-bc06-f63fcdae25f2" + "f427a9a3-1bac-458f-828d-1e588a586642" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.28207.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", + "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" ] }, @@ -33,13 +33,13 @@ "11999" ], "x-ms-request-id": [ - "98af0658-e1ab-4b8e-a009-9462c5164470" + "f8cb0de4-3ace-4d1f-ba7c-3a50d9713735" ], "x-ms-correlation-request-id": [ - "98af0658-e1ab-4b8e-a009-9462c5164470" + "f8cb0de4-3ace-4d1f-ba7c-3a50d9713735" ], "x-ms-routing-request-id": [ - "WESTUS2:20200724T233711Z:98af0658-e1ab-4b8e-a009-9462c5164470" + "CENTRALUS:20200811T181420Z:f8cb0de4-3ace-4d1f-ba7c-3a50d9713735" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -48,7 +48,7 @@ "nosniff" ], "Date": [ - "Fri, 24 Jul 2020 23:37:11 GMT" + "Tue, 11 Aug 2020 18:14:19 GMT" ], "Content-Length": [ "98" @@ -67,21 +67,21 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9661?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY2MT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5770?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTc3MD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "afdb0003-2301-437d-b10d-40641168c669" + "8745b8e8-3a62-40eb-b3e5-5985161f0764" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.28207.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", + "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" ] }, @@ -93,16 +93,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11774" + "11905" ], "x-ms-request-id": [ - "ebeec5ed-d13a-4726-8926-c136562a9f8c" + "1ce020f2-8516-488e-be2b-a27576df602e" ], "x-ms-correlation-request-id": [ - "ebeec5ed-d13a-4726-8926-c136562a9f8c" + "1ce020f2-8516-488e-be2b-a27576df602e" ], "x-ms-routing-request-id": [ - "WESTUS2:20200724T233756Z:ebeec5ed-d13a-4726-8926-c136562a9f8c" + "CENTRALUS:20200811T181510Z:1ce020f2-8516-488e-be2b-a27576df602e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -111,7 +111,7 @@ "nosniff" ], "Date": [ - "Fri, 24 Jul 2020 23:37:56 GMT" + "Tue, 11 Aug 2020 18:15:10 GMT" ], "Content-Length": [ "0" @@ -127,21 +127,21 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9661?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY2MT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5770?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTc3MD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"WestUS\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "71cf88fb-b1a3-4d12-816d-26ed11760924" + "7a24e501-881f-474b-a9ac-e8941bc7d8a3" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.28207.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", + "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" ], "Content-Type": [ @@ -162,13 +162,13 @@ "1199" ], "x-ms-request-id": [ - "01af1e2a-02fc-485c-be95-f116ec9075f3" + "c1c689be-cd8c-49c9-affe-ccc435d74f9f" ], "x-ms-correlation-request-id": [ - "01af1e2a-02fc-485c-be95-f116ec9075f3" + "c1c689be-cd8c-49c9-affe-ccc435d74f9f" ], "x-ms-routing-request-id": [ - "WESTUS2:20200724T233712Z:01af1e2a-02fc-485c-be95-f116ec9075f3" + "CENTRALUS:20200811T181421Z:c1c689be-cd8c-49c9-affe-ccc435d74f9f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -177,7 +177,7 @@ "nosniff" ], "Date": [ - "Fri, 24 Jul 2020 23:37:11 GMT" + "Tue, 11 Aug 2020 18:14:20 GMT" ], "Content-Length": [ "209" @@ -192,32 +192,32 @@ "0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661\",\r\n \"name\": \"ps9661\",\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/ps5770\",\r\n \"name\": \"ps5770\",\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/ps9661/providers/Microsoft.Resources/deployments/ps9855/validate?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY2MS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4NTUvdmFsaWRhdGU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5770/providers/Microsoft.Resources/deployments/ps9986/validate?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTc3MC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk5ODYvdmFsaWRhdGU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "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\": \"ps801\"\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\": \"ps5860\"\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": [ - "305aef3b-1417-4bbf-bb81-8e705769d399" + "690f1708-0479-4907-b814-2527e068c0dc" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.28207.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", + "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "1564" + "1565" ] }, "ResponseHeaders": { @@ -231,13 +231,13 @@ "1199" ], "x-ms-request-id": [ - "f1ac128e-7062-462b-83b0-374d1e527152" + "a069b31f-a5c4-40e8-ae82-46c887b823f7" ], "x-ms-correlation-request-id": [ - "f1ac128e-7062-462b-83b0-374d1e527152" + "a069b31f-a5c4-40e8-ae82-46c887b823f7" ], "x-ms-routing-request-id": [ - "WESTUS2:20200724T233713Z:f1ac128e-7062-462b-83b0-374d1e527152" + "CENTRALUS:20200811T181422Z:a069b31f-a5c4-40e8-ae82-46c887b823f7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -246,10 +246,10 @@ "nosniff" ], "Date": [ - "Fri, 24 Jul 2020 23:37:12 GMT" + "Tue, 11 Aug 2020 18:14:22 GMT" ], "Content-Length": [ - "927" + "930" ], "Content-Type": [ "application/json; charset=utf-8" @@ -261,32 +261,32 @@ "0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Resources/deployments/ps9855\",\r\n \"name\": \"ps9855\",\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\": \"ps801\"\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-07-24T23:37:13.174542Z\",\r\n \"duration\": \"PT0S\",\r\n \"correlationId\": \"f1ac128e-7062-462b-83b0-374d1e527152\",\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/ps9661/providers/Microsoft.Storage/storageAccounts/ps801\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5770/providers/Microsoft.Resources/deployments/ps9986\",\r\n \"name\": \"ps9986\",\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\": \"ps5860\"\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-08-11T18:14:22.5901915Z\",\r\n \"duration\": \"PT0S\",\r\n \"correlationId\": \"a069b31f-a5c4-40e8-ae82-46c887b823f7\",\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/ps5770/providers/Microsoft.Storage/storageAccounts/ps5860\"\r\n }\r\n ]\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9661/providers/Microsoft.Resources/deployments/ps9855?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY2MS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4NTU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5770/providers/Microsoft.Resources/deployments/ps9986?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTc3MC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk5ODY/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "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\": \"ps801\"\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\": \"ps5860\"\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": [ - "e28fe6d9-7122-408c-b88c-fa3216c902da" + "e2779d67-e337-4442-a71e-9c7b99e7ea7c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.28207.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", + "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "1564" + "1565" ] }, "ResponseHeaders": { @@ -297,19 +297,19 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9661/providers/Microsoft.Resources/deployments/ps9855/operationStatuses/08586059730511148456?api-version=2020-06-01" + "https://management.azure.com/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5770/providers/Microsoft.Resources/deployments/ps9986/operationStatuses/08586044372217355991?api-version=2020-06-01" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1198" ], "x-ms-request-id": [ - "b602692c-bfe5-45cb-bb08-9b959695368e" + "57b8974f-8450-4a6b-97a4-1e8cd8fc16ad" ], "x-ms-correlation-request-id": [ - "b602692c-bfe5-45cb-bb08-9b959695368e" + "57b8974f-8450-4a6b-97a4-1e8cd8fc16ad" ], "x-ms-routing-request-id": [ - "WESTUS2:20200724T233715Z:b602692c-bfe5-45cb-bb08-9b959695368e" + "CENTRALUS:20200811T181424Z:57b8974f-8450-4a6b-97a4-1e8cd8fc16ad" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -318,10 +318,10 @@ "nosniff" ], "Date": [ - "Fri, 24 Jul 2020 23:37:14 GMT" + "Tue, 11 Aug 2020 18:14:24 GMT" ], "Content-Length": [ - "779" + "780" ], "Content-Type": [ "application/json; charset=utf-8" @@ -333,25 +333,25 @@ "0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Resources/deployments/ps9855\",\r\n \"name\": \"ps9855\",\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\": \"ps801\"\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-07-24T23:37:14.8967665Z\",\r\n \"duration\": \"PT0.5337408S\",\r\n \"correlationId\": \"b602692c-bfe5-45cb-bb08-9b959695368e\",\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/ps5770/providers/Microsoft.Resources/deployments/ps9986\",\r\n \"name\": \"ps9986\",\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\": \"ps5860\"\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-08-11T18:14:24.2957553Z\",\r\n \"duration\": \"PT0.5537437S\",\r\n \"correlationId\": \"57b8974f-8450-4a6b-97a4-1e8cd8fc16ad\",\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/ps9661/deployments/ps9855/operations?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY2MS9kZXBsb3ltZW50cy9wczk4NTUvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5770/deployments/ps9986/operations?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTc3MC9kZXBsb3ltZW50cy9wczk5ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e4e60e8c-dbc5-4cb9-81cb-fabb46f6e273" + "60316772-4236-4143-b843-3e1b71f15a1a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.28207.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", + "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" ] }, @@ -366,13 +366,13 @@ "11998" ], "x-ms-request-id": [ - "5de23472-13c8-4875-a2c4-2b99dfc8aa29" + "48f468d1-5f77-4344-adef-777c0351825e" ], "x-ms-correlation-request-id": [ - "5de23472-13c8-4875-a2c4-2b99dfc8aa29" + "48f468d1-5f77-4344-adef-777c0351825e" ], "x-ms-routing-request-id": [ - "WESTUS2:20200724T233715Z:5de23472-13c8-4875-a2c4-2b99dfc8aa29" + "CENTRALUS:20200811T181425Z:48f468d1-5f77-4344-adef-777c0351825e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -381,7 +381,7 @@ "nosniff" ], "Date": [ - "Fri, 24 Jul 2020 23:37:14 GMT" + "Tue, 11 Aug 2020 18:14:24 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -400,21 +400,21 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9661/deployments/ps9855/operations?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY2MS9kZXBsb3ltZW50cy9wczk4NTUvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5770/deployments/ps9986/operations?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTc3MC9kZXBsb3ltZW50cy9wczk5ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "025f5ca1-91ff-486a-bee7-2fdfabe9e81e" + "40c553b2-d403-435c-9d7e-4b5f192aa20b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.28207.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", + "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" ] }, @@ -429,13 +429,13 @@ "11996" ], "x-ms-request-id": [ - "ef66400d-08b3-498f-9acf-e2b86cabc81a" + "1711f425-7ab4-4443-9afd-226f268a48fb" ], "x-ms-correlation-request-id": [ - "ef66400d-08b3-498f-9acf-e2b86cabc81a" + "1711f425-7ab4-4443-9afd-226f268a48fb" ], "x-ms-routing-request-id": [ - "WESTUS2:20200724T233716Z:ef66400d-08b3-498f-9acf-e2b86cabc81a" + "CENTRALUS:20200811T181425Z:1711f425-7ab4-4443-9afd-226f268a48fb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -444,7 +444,7 @@ "nosniff" ], "Date": [ - "Fri, 24 Jul 2020 23:37:15 GMT" + "Tue, 11 Aug 2020 18:14:25 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -463,21 +463,21 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9661/deployments/ps9855/operations?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY2MS9kZXBsb3ltZW50cy9wczk4NTUvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5770/deployments/ps9986/operations?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTc3MC9kZXBsb3ltZW50cy9wczk5ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "77a84e4d-705b-436d-b0b5-19ae2968f0ee" + "b494480c-998a-4ba8-88db-4ffb1b14edcf" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.28207.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", + "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" ] }, @@ -492,13 +492,13 @@ "11994" ], "x-ms-request-id": [ - "2fc5b9eb-3238-45b1-b180-e2f1ebcf9444" + "8ffafb5a-8839-43a8-a96f-24cb80e6e652" ], "x-ms-correlation-request-id": [ - "2fc5b9eb-3238-45b1-b180-e2f1ebcf9444" + "8ffafb5a-8839-43a8-a96f-24cb80e6e652" ], "x-ms-routing-request-id": [ - "WESTUS2:20200724T233716Z:2fc5b9eb-3238-45b1-b180-e2f1ebcf9444" + "CENTRALUS:20200811T181426Z:8ffafb5a-8839-43a8-a96f-24cb80e6e652" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -507,7 +507,7 @@ "nosniff" ], "Date": [ - "Fri, 24 Jul 2020 23:37:15 GMT" + "Tue, 11 Aug 2020 18:14:25 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -526,21 +526,21 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9661/deployments/ps9855/operations?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY2MS9kZXBsb3ltZW50cy9wczk4NTUvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5770/deployments/ps9986/operations?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTc3MC9kZXBsb3ltZW50cy9wczk5ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7962f6e6-2032-485f-b7a6-457020af8d23" + "9bba2923-6260-42ed-ab1e-970aebaafa4f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.28207.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", + "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" ] }, @@ -555,13 +555,13 @@ "11992" ], "x-ms-request-id": [ - "7b10b453-00bd-44da-86e7-d7e0ed378445" + "eb71f4e9-a893-4b0b-9ad4-601d7937c942" ], "x-ms-correlation-request-id": [ - "7b10b453-00bd-44da-86e7-d7e0ed378445" + "eb71f4e9-a893-4b0b-9ad4-601d7937c942" ], "x-ms-routing-request-id": [ - "WESTUS2:20200724T233716Z:7b10b453-00bd-44da-86e7-d7e0ed378445" + "CENTRALUS:20200811T181427Z:eb71f4e9-a893-4b0b-9ad4-601d7937c942" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -570,7 +570,7 @@ "nosniff" ], "Date": [ - "Fri, 24 Jul 2020 23:37:15 GMT" + "Tue, 11 Aug 2020 18:14:26 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -589,21 +589,21 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9661/deployments/ps9855/operations?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY2MS9kZXBsb3ltZW50cy9wczk4NTUvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5770/deployments/ps9986/operations?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTc3MC9kZXBsb3ltZW50cy9wczk5ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "71fed1cd-99ed-4565-ab8d-715b156f29d1" + "4d23e448-c90e-45f4-9cd3-73a509cf60a3" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.28207.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", + "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" ] }, @@ -618,13 +618,13 @@ "11990" ], "x-ms-request-id": [ - "f0f5acd9-4c31-4c16-8332-6cc48362e6ac" + "9824e2b4-6317-4099-be11-4b5fb773a7a1" ], "x-ms-correlation-request-id": [ - "f0f5acd9-4c31-4c16-8332-6cc48362e6ac" + "9824e2b4-6317-4099-be11-4b5fb773a7a1" ], "x-ms-routing-request-id": [ - "WESTUS2:20200724T233716Z:f0f5acd9-4c31-4c16-8332-6cc48362e6ac" + "CENTRALUS:20200811T181427Z:9824e2b4-6317-4099-be11-4b5fb773a7a1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -633,7 +633,7 @@ "nosniff" ], "Date": [ - "Fri, 24 Jul 2020 23:37:15 GMT" + "Tue, 11 Aug 2020 18:14:26 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -652,21 +652,21 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9661/deployments/ps9855/operations?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY2MS9kZXBsb3ltZW50cy9wczk4NTUvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5770/deployments/ps9986/operations?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTc3MC9kZXBsb3ltZW50cy9wczk5ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6a81f1b4-7645-49a5-b6c4-39191c077b38" + "98981698-f0b0-44b5-a204-e826f4504856" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.28207.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", + "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" ] }, @@ -681,13 +681,13 @@ "11988" ], "x-ms-request-id": [ - "0b54bd65-859a-447c-963e-14f2118a1dc4" + "0cd8d325-746c-4ba3-b888-6c62f2cd84a4" ], "x-ms-correlation-request-id": [ - "0b54bd65-859a-447c-963e-14f2118a1dc4" + "0cd8d325-746c-4ba3-b888-6c62f2cd84a4" ], "x-ms-routing-request-id": [ - "WESTUS2:20200724T233716Z:0b54bd65-859a-447c-963e-14f2118a1dc4" + "CENTRALUS:20200811T181428Z:0cd8d325-746c-4ba3-b888-6c62f2cd84a4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -696,7 +696,7 @@ "nosniff" ], "Date": [ - "Fri, 24 Jul 2020 23:37:16 GMT" + "Tue, 11 Aug 2020 18:14:27 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -715,21 +715,21 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9661/deployments/ps9855/operations?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY2MS9kZXBsb3ltZW50cy9wczk4NTUvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5770/deployments/ps9986/operations?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTc3MC9kZXBsb3ltZW50cy9wczk5ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0740fe66-b53d-43c7-8a6e-f25dc400fa3e" + "f5e7751f-e449-4b10-ae99-3151017f3f89" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.28207.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", + "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" ] }, @@ -744,13 +744,13 @@ "11986" ], "x-ms-request-id": [ - "70601566-7b5f-48c1-bcb3-ee4744c35e96" + "2957892f-483c-46bf-81f1-716d456d82bd" ], "x-ms-correlation-request-id": [ - "70601566-7b5f-48c1-bcb3-ee4744c35e96" + "2957892f-483c-46bf-81f1-716d456d82bd" ], "x-ms-routing-request-id": [ - "WESTUS2:20200724T233717Z:70601566-7b5f-48c1-bcb3-ee4744c35e96" + "CENTRALUS:20200811T181428Z:2957892f-483c-46bf-81f1-716d456d82bd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -759,7 +759,7 @@ "nosniff" ], "Date": [ - "Fri, 24 Jul 2020 23:37:16 GMT" + "Tue, 11 Aug 2020 18:14:27 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -778,21 +778,21 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9661/deployments/ps9855/operations?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY2MS9kZXBsb3ltZW50cy9wczk4NTUvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5770/deployments/ps9986/operations?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTc3MC9kZXBsb3ltZW50cy9wczk5ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ac7ee27b-10fa-455f-ad97-845b0dea1ae3" + "f5f2944c-6e14-4e5f-a2f5-ffda7e2b4548" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.28207.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", + "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" ] }, @@ -807,13 +807,13 @@ "11984" ], "x-ms-request-id": [ - "d5479ca3-78c3-4c95-8c30-b6a965b788eb" + "298f09c0-e2d8-4f75-a372-782d3ea126db" ], "x-ms-correlation-request-id": [ - "d5479ca3-78c3-4c95-8c30-b6a965b788eb" + "298f09c0-e2d8-4f75-a372-782d3ea126db" ], "x-ms-routing-request-id": [ - "WESTUS2:20200724T233717Z:d5479ca3-78c3-4c95-8c30-b6a965b788eb" + "CENTRALUS:20200811T181429Z:298f09c0-e2d8-4f75-a372-782d3ea126db" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -822,7 +822,7 @@ "nosniff" ], "Date": [ - "Fri, 24 Jul 2020 23:37:16 GMT" + "Tue, 11 Aug 2020 18:14:28 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -841,21 +841,21 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9661/deployments/ps9855/operations?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY2MS9kZXBsb3ltZW50cy9wczk4NTUvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5770/deployments/ps9986/operations?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTc3MC9kZXBsb3ltZW50cy9wczk5ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a36eb8f3-6371-4b0a-9e66-bcf8dc162a06" + "08baf3b3-cd2e-40f5-bfb6-6fed3c983e6b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.28207.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", + "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" ] }, @@ -870,13 +870,13 @@ "11982" ], "x-ms-request-id": [ - "dda5b569-c346-4cd2-94ea-1621ebaa5faf" + "50dd0fd3-8f49-4f0d-a04a-7a80b31605fd" ], "x-ms-correlation-request-id": [ - "dda5b569-c346-4cd2-94ea-1621ebaa5faf" + "50dd0fd3-8f49-4f0d-a04a-7a80b31605fd" ], "x-ms-routing-request-id": [ - "WESTUS2:20200724T233717Z:dda5b569-c346-4cd2-94ea-1621ebaa5faf" + "CENTRALUS:20200811T181430Z:50dd0fd3-8f49-4f0d-a04a-7a80b31605fd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -885,7 +885,7 @@ "nosniff" ], "Date": [ - "Fri, 24 Jul 2020 23:37:16 GMT" + "Tue, 11 Aug 2020 18:14:29 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -894,31 +894,31 @@ "-1" ], "Content-Length": [ - "709" + "12" ], "Retry-After": [ "0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Resources/deployments/ps9855/operations/327C8F30158C7963\",\r\n \"operationId\": \"327C8F30158C7963\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-07-24T23:37:17.4936364Z\",\r\n \"duration\": \"PT1.8350099S\",\r\n \"trackingId\": \"4d7646f9-1559-417d-9ba4-c23446e614dd\",\r\n \"serviceRequestId\": \"91cbd2a2-d685-44a9-8041-c80915402e6c\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Storage/storageAccounts/ps801\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps801\"\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/ps9661/deployments/ps9855/operations?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY2MS9kZXBsb3ltZW50cy9wczk4NTUvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5770/deployments/ps9986/operations?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTc3MC9kZXBsb3ltZW50cy9wczk5ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3dcbafe5-1bdc-46f0-911c-6252a1b218ea" + "98da5af2-fb85-4493-98a4-19a2641ce031" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.28207.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", + "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" ] }, @@ -933,13 +933,13 @@ "11980" ], "x-ms-request-id": [ - "d0f0fa9d-274e-497f-acf3-d85e2babdf4e" + "7bc83ab4-861e-407c-aece-c9f7c4a77ddb" ], "x-ms-correlation-request-id": [ - "d0f0fa9d-274e-497f-acf3-d85e2babdf4e" + "7bc83ab4-861e-407c-aece-c9f7c4a77ddb" ], "x-ms-routing-request-id": [ - "WESTUS2:20200724T233717Z:d0f0fa9d-274e-497f-acf3-d85e2babdf4e" + "CENTRALUS:20200811T181431Z:7bc83ab4-861e-407c-aece-c9f7c4a77ddb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -948,7 +948,7 @@ "nosniff" ], "Date": [ - "Fri, 24 Jul 2020 23:37:17 GMT" + "Tue, 11 Aug 2020 18:14:30 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -963,25 +963,25 @@ "0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Resources/deployments/ps9855/operations/327C8F30158C7963\",\r\n \"operationId\": \"327C8F30158C7963\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-07-24T23:37:17.4936364Z\",\r\n \"duration\": \"PT1.8350099S\",\r\n \"trackingId\": \"4d7646f9-1559-417d-9ba4-c23446e614dd\",\r\n \"serviceRequestId\": \"91cbd2a2-d685-44a9-8041-c80915402e6c\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Storage/storageAccounts/ps801\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps801\"\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/ps5770/providers/Microsoft.Resources/deployments/ps9986/operations/889A6DC112B9C3CB\",\r\n \"operationId\": \"889A6DC112B9C3CB\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-08-11T18:14:30.500943Z\",\r\n \"duration\": \"PT4.157745S\",\r\n \"trackingId\": \"406ebcef-64c8-439b-9263-b295eea47d22\",\r\n \"serviceRequestId\": \"e3d8e8e7-6bc1-4e52-9693-585a797dda0d\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5770/providers/Microsoft.Storage/storageAccounts/ps5860\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps5860\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9661/deployments/ps9855/operations?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY2MS9kZXBsb3ltZW50cy9wczk4NTUvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5770/deployments/ps9986/operations?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTc3MC9kZXBsb3ltZW50cy9wczk5ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6f0d3522-28de-41cc-83d7-4b7b903d0e3f" + "a7a6927e-3e2a-4cb5-9efe-ae806bd6efba" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.28207.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", + "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" ] }, @@ -996,13 +996,13 @@ "11978" ], "x-ms-request-id": [ - "58edb30d-8ff5-4b9b-8d79-e920cdc070c9" + "46e42972-26c2-46fe-9d82-1d11f8ee773a" ], "x-ms-correlation-request-id": [ - "58edb30d-8ff5-4b9b-8d79-e920cdc070c9" + "46e42972-26c2-46fe-9d82-1d11f8ee773a" ], "x-ms-routing-request-id": [ - "WESTUS2:20200724T233718Z:58edb30d-8ff5-4b9b-8d79-e920cdc070c9" + "CENTRALUS:20200811T181431Z:46e42972-26c2-46fe-9d82-1d11f8ee773a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1011,7 +1011,7 @@ "nosniff" ], "Date": [ - "Fri, 24 Jul 2020 23:37:17 GMT" + "Tue, 11 Aug 2020 18:14:31 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1026,25 +1026,25 @@ "0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Resources/deployments/ps9855/operations/327C8F30158C7963\",\r\n \"operationId\": \"327C8F30158C7963\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-07-24T23:37:17.4936364Z\",\r\n \"duration\": \"PT1.8350099S\",\r\n \"trackingId\": \"4d7646f9-1559-417d-9ba4-c23446e614dd\",\r\n \"serviceRequestId\": \"91cbd2a2-d685-44a9-8041-c80915402e6c\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Storage/storageAccounts/ps801\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps801\"\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/ps5770/providers/Microsoft.Resources/deployments/ps9986/operations/889A6DC112B9C3CB\",\r\n \"operationId\": \"889A6DC112B9C3CB\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-08-11T18:14:30.500943Z\",\r\n \"duration\": \"PT4.157745S\",\r\n \"trackingId\": \"406ebcef-64c8-439b-9263-b295eea47d22\",\r\n \"serviceRequestId\": \"e3d8e8e7-6bc1-4e52-9693-585a797dda0d\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5770/providers/Microsoft.Storage/storageAccounts/ps5860\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps5860\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9661/deployments/ps9855/operations?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY2MS9kZXBsb3ltZW50cy9wczk4NTUvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5770/deployments/ps9986/operations?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTc3MC9kZXBsb3ltZW50cy9wczk5ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c13ce697-8c58-40fa-b154-8d94666494f5" + "e3a7897c-e0f3-446d-9117-1eaed25cfb40" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.28207.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", + "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" ] }, @@ -1059,13 +1059,13 @@ "11976" ], "x-ms-request-id": [ - "6c3e1325-7a06-46c8-b443-6ea6267a9ef4" + "52ae1cbc-6ecd-4e86-9426-7f5125dce45b" ], "x-ms-correlation-request-id": [ - "6c3e1325-7a06-46c8-b443-6ea6267a9ef4" + "52ae1cbc-6ecd-4e86-9426-7f5125dce45b" ], "x-ms-routing-request-id": [ - "WESTUS2:20200724T233718Z:6c3e1325-7a06-46c8-b443-6ea6267a9ef4" + "CENTRALUS:20200811T181432Z:52ae1cbc-6ecd-4e86-9426-7f5125dce45b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1074,7 +1074,7 @@ "nosniff" ], "Date": [ - "Fri, 24 Jul 2020 23:37:17 GMT" + "Tue, 11 Aug 2020 18:14:31 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1089,25 +1089,25 @@ "0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Resources/deployments/ps9855/operations/327C8F30158C7963\",\r\n \"operationId\": \"327C8F30158C7963\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-07-24T23:37:17.4936364Z\",\r\n \"duration\": \"PT1.8350099S\",\r\n \"trackingId\": \"4d7646f9-1559-417d-9ba4-c23446e614dd\",\r\n \"serviceRequestId\": \"91cbd2a2-d685-44a9-8041-c80915402e6c\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Storage/storageAccounts/ps801\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps801\"\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/ps5770/providers/Microsoft.Resources/deployments/ps9986/operations/889A6DC112B9C3CB\",\r\n \"operationId\": \"889A6DC112B9C3CB\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-08-11T18:14:30.500943Z\",\r\n \"duration\": \"PT4.157745S\",\r\n \"trackingId\": \"406ebcef-64c8-439b-9263-b295eea47d22\",\r\n \"serviceRequestId\": \"e3d8e8e7-6bc1-4e52-9693-585a797dda0d\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5770/providers/Microsoft.Storage/storageAccounts/ps5860\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps5860\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9661/deployments/ps9855/operations?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY2MS9kZXBsb3ltZW50cy9wczk4NTUvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5770/deployments/ps9986/operations?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTc3MC9kZXBsb3ltZW50cy9wczk5ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "213e1b4e-4f9e-421a-8c19-e0ba983c4558" + "956b4cc2-f99b-4c70-9403-f0941e864abf" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.28207.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", + "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" ] }, @@ -1122,13 +1122,13 @@ "11974" ], "x-ms-request-id": [ - "4028c26f-6f4b-4528-a6d1-253a6790474f" + "45f63172-ca8a-4ee0-8490-09ce40fe5d3d" ], "x-ms-correlation-request-id": [ - "4028c26f-6f4b-4528-a6d1-253a6790474f" + "45f63172-ca8a-4ee0-8490-09ce40fe5d3d" ], "x-ms-routing-request-id": [ - "WESTUS2:20200724T233718Z:4028c26f-6f4b-4528-a6d1-253a6790474f" + "CENTRALUS:20200811T181433Z:45f63172-ca8a-4ee0-8490-09ce40fe5d3d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1137,7 +1137,7 @@ "nosniff" ], "Date": [ - "Fri, 24 Jul 2020 23:37:17 GMT" + "Tue, 11 Aug 2020 18:14:32 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1152,25 +1152,25 @@ "0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Resources/deployments/ps9855/operations/327C8F30158C7963\",\r\n \"operationId\": \"327C8F30158C7963\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-07-24T23:37:17.4936364Z\",\r\n \"duration\": \"PT1.8350099S\",\r\n \"trackingId\": \"4d7646f9-1559-417d-9ba4-c23446e614dd\",\r\n \"serviceRequestId\": \"91cbd2a2-d685-44a9-8041-c80915402e6c\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Storage/storageAccounts/ps801\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps801\"\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/ps5770/providers/Microsoft.Resources/deployments/ps9986/operations/889A6DC112B9C3CB\",\r\n \"operationId\": \"889A6DC112B9C3CB\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-08-11T18:14:30.500943Z\",\r\n \"duration\": \"PT4.157745S\",\r\n \"trackingId\": \"406ebcef-64c8-439b-9263-b295eea47d22\",\r\n \"serviceRequestId\": \"e3d8e8e7-6bc1-4e52-9693-585a797dda0d\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5770/providers/Microsoft.Storage/storageAccounts/ps5860\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps5860\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9661/deployments/ps9855/operations?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY2MS9kZXBsb3ltZW50cy9wczk4NTUvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5770/deployments/ps9986/operations?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTc3MC9kZXBsb3ltZW50cy9wczk5ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e04e4e96-b882-42b1-bb61-d8ee8bee1007" + "5e693eb7-7e8e-4772-b5c1-a493f231b26e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.28207.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", + "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" ] }, @@ -1185,13 +1185,13 @@ "11972" ], "x-ms-request-id": [ - "3c5bc128-65e2-497a-82d1-176a706e3e7b" + "9ae858be-11f2-45d3-8bc0-51ef5de622ae" ], "x-ms-correlation-request-id": [ - "3c5bc128-65e2-497a-82d1-176a706e3e7b" + "9ae858be-11f2-45d3-8bc0-51ef5de622ae" ], "x-ms-routing-request-id": [ - "WESTUS2:20200724T233718Z:3c5bc128-65e2-497a-82d1-176a706e3e7b" + "CENTRALUS:20200811T181433Z:9ae858be-11f2-45d3-8bc0-51ef5de622ae" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1200,7 +1200,7 @@ "nosniff" ], "Date": [ - "Fri, 24 Jul 2020 23:37:17 GMT" + "Tue, 11 Aug 2020 18:14:33 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1215,25 +1215,25 @@ "0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Resources/deployments/ps9855/operations/327C8F30158C7963\",\r\n \"operationId\": \"327C8F30158C7963\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-07-24T23:37:17.4936364Z\",\r\n \"duration\": \"PT1.8350099S\",\r\n \"trackingId\": \"4d7646f9-1559-417d-9ba4-c23446e614dd\",\r\n \"serviceRequestId\": \"91cbd2a2-d685-44a9-8041-c80915402e6c\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Storage/storageAccounts/ps801\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps801\"\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/ps5770/providers/Microsoft.Resources/deployments/ps9986/operations/889A6DC112B9C3CB\",\r\n \"operationId\": \"889A6DC112B9C3CB\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-08-11T18:14:30.500943Z\",\r\n \"duration\": \"PT4.157745S\",\r\n \"trackingId\": \"406ebcef-64c8-439b-9263-b295eea47d22\",\r\n \"serviceRequestId\": \"e3d8e8e7-6bc1-4e52-9693-585a797dda0d\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5770/providers/Microsoft.Storage/storageAccounts/ps5860\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps5860\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9661/deployments/ps9855/operations?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY2MS9kZXBsb3ltZW50cy9wczk4NTUvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5770/deployments/ps9986/operations?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTc3MC9kZXBsb3ltZW50cy9wczk5ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "93aee8db-62e0-46c1-8346-8964b42d2f55" + "d85114b5-c0b8-42db-8b3c-3bdec166017b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.28207.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", + "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" ] }, @@ -1248,13 +1248,13 @@ "11970" ], "x-ms-request-id": [ - "6789f6a9-1ba9-4dad-a14e-aaee6222b2dd" + "811350ac-ba0d-44a3-99b0-24268b11eb4a" ], "x-ms-correlation-request-id": [ - "6789f6a9-1ba9-4dad-a14e-aaee6222b2dd" + "811350ac-ba0d-44a3-99b0-24268b11eb4a" ], "x-ms-routing-request-id": [ - "WESTUS2:20200724T233718Z:6789f6a9-1ba9-4dad-a14e-aaee6222b2dd" + "CENTRALUS:20200811T181434Z:811350ac-ba0d-44a3-99b0-24268b11eb4a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1263,7 +1263,7 @@ "nosniff" ], "Date": [ - "Fri, 24 Jul 2020 23:37:18 GMT" + "Tue, 11 Aug 2020 18:14:33 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1278,25 +1278,25 @@ "0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Resources/deployments/ps9855/operations/327C8F30158C7963\",\r\n \"operationId\": \"327C8F30158C7963\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-07-24T23:37:17.4936364Z\",\r\n \"duration\": \"PT1.8350099S\",\r\n \"trackingId\": \"4d7646f9-1559-417d-9ba4-c23446e614dd\",\r\n \"serviceRequestId\": \"91cbd2a2-d685-44a9-8041-c80915402e6c\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Storage/storageAccounts/ps801\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps801\"\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/ps5770/providers/Microsoft.Resources/deployments/ps9986/operations/889A6DC112B9C3CB\",\r\n \"operationId\": \"889A6DC112B9C3CB\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-08-11T18:14:30.500943Z\",\r\n \"duration\": \"PT4.157745S\",\r\n \"trackingId\": \"406ebcef-64c8-439b-9263-b295eea47d22\",\r\n \"serviceRequestId\": \"e3d8e8e7-6bc1-4e52-9693-585a797dda0d\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5770/providers/Microsoft.Storage/storageAccounts/ps5860\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps5860\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9661/deployments/ps9855/operations?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY2MS9kZXBsb3ltZW50cy9wczk4NTUvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5770/deployments/ps9986/operations?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTc3MC9kZXBsb3ltZW50cy9wczk5ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4bf91604-0405-45fc-90e1-64ede0405f0e" + "a896de2e-cf5a-4322-8218-ce11ff0a6ef1" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.28207.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", + "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" ] }, @@ -1311,13 +1311,13 @@ "11968" ], "x-ms-request-id": [ - "362ec06a-baa9-4815-8f81-d13c5f230f21" + "11ed9218-0659-43bd-8f31-d1febcbe5fc1" ], "x-ms-correlation-request-id": [ - "362ec06a-baa9-4815-8f81-d13c5f230f21" + "11ed9218-0659-43bd-8f31-d1febcbe5fc1" ], "x-ms-routing-request-id": [ - "WESTUS2:20200724T233719Z:362ec06a-baa9-4815-8f81-d13c5f230f21" + "CENTRALUS:20200811T181435Z:11ed9218-0659-43bd-8f31-d1febcbe5fc1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1326,7 +1326,7 @@ "nosniff" ], "Date": [ - "Fri, 24 Jul 2020 23:37:18 GMT" + "Tue, 11 Aug 2020 18:14:34 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1341,25 +1341,25 @@ "0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Resources/deployments/ps9855/operations/327C8F30158C7963\",\r\n \"operationId\": \"327C8F30158C7963\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-07-24T23:37:17.4936364Z\",\r\n \"duration\": \"PT1.8350099S\",\r\n \"trackingId\": \"4d7646f9-1559-417d-9ba4-c23446e614dd\",\r\n \"serviceRequestId\": \"91cbd2a2-d685-44a9-8041-c80915402e6c\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Storage/storageAccounts/ps801\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps801\"\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/ps5770/providers/Microsoft.Resources/deployments/ps9986/operations/889A6DC112B9C3CB\",\r\n \"operationId\": \"889A6DC112B9C3CB\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-08-11T18:14:30.500943Z\",\r\n \"duration\": \"PT4.157745S\",\r\n \"trackingId\": \"406ebcef-64c8-439b-9263-b295eea47d22\",\r\n \"serviceRequestId\": \"e3d8e8e7-6bc1-4e52-9693-585a797dda0d\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5770/providers/Microsoft.Storage/storageAccounts/ps5860\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps5860\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9661/deployments/ps9855/operations?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY2MS9kZXBsb3ltZW50cy9wczk4NTUvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5770/deployments/ps9986/operations?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTc3MC9kZXBsb3ltZW50cy9wczk5ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ff4be997-fb36-4967-8cd6-583b427ca589" + "39d9d1ef-40d8-467e-8664-27656321bab7" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.28207.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", + "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" ] }, @@ -1374,13 +1374,13 @@ "11966" ], "x-ms-request-id": [ - "e1919ebc-b359-48fe-9e18-fa3b41a2e482" + "a2fd41b8-2e4f-43f4-997c-e9f383a5f497" ], "x-ms-correlation-request-id": [ - "e1919ebc-b359-48fe-9e18-fa3b41a2e482" + "a2fd41b8-2e4f-43f4-997c-e9f383a5f497" ], "x-ms-routing-request-id": [ - "WESTUS2:20200724T233719Z:e1919ebc-b359-48fe-9e18-fa3b41a2e482" + "CENTRALUS:20200811T181435Z:a2fd41b8-2e4f-43f4-997c-e9f383a5f497" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1389,7 +1389,7 @@ "nosniff" ], "Date": [ - "Fri, 24 Jul 2020 23:37:18 GMT" + "Tue, 11 Aug 2020 18:14:34 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1404,25 +1404,25 @@ "0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Resources/deployments/ps9855/operations/327C8F30158C7963\",\r\n \"operationId\": \"327C8F30158C7963\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-07-24T23:37:17.4936364Z\",\r\n \"duration\": \"PT1.8350099S\",\r\n \"trackingId\": \"4d7646f9-1559-417d-9ba4-c23446e614dd\",\r\n \"serviceRequestId\": \"91cbd2a2-d685-44a9-8041-c80915402e6c\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Storage/storageAccounts/ps801\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps801\"\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/ps5770/providers/Microsoft.Resources/deployments/ps9986/operations/889A6DC112B9C3CB\",\r\n \"operationId\": \"889A6DC112B9C3CB\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-08-11T18:14:30.500943Z\",\r\n \"duration\": \"PT4.157745S\",\r\n \"trackingId\": \"406ebcef-64c8-439b-9263-b295eea47d22\",\r\n \"serviceRequestId\": \"e3d8e8e7-6bc1-4e52-9693-585a797dda0d\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5770/providers/Microsoft.Storage/storageAccounts/ps5860\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps5860\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9661/deployments/ps9855/operations?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY2MS9kZXBsb3ltZW50cy9wczk4NTUvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5770/deployments/ps9986/operations?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTc3MC9kZXBsb3ltZW50cy9wczk5ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4b2dec66-8127-42a8-8d7c-2d2ee1922163" + "24ab4cb7-325f-4cc8-871c-2eee7448aee7" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.28207.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", + "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" ] }, @@ -1437,13 +1437,13 @@ "11964" ], "x-ms-request-id": [ - "649ef276-5b74-45af-ac53-015755882d0f" + "ae3eeee2-21e6-4257-a7fa-c0e26985bee7" ], "x-ms-correlation-request-id": [ - "649ef276-5b74-45af-ac53-015755882d0f" + "ae3eeee2-21e6-4257-a7fa-c0e26985bee7" ], "x-ms-routing-request-id": [ - "WESTUS2:20200724T233719Z:649ef276-5b74-45af-ac53-015755882d0f" + "CENTRALUS:20200811T181436Z:ae3eeee2-21e6-4257-a7fa-c0e26985bee7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1452,7 +1452,7 @@ "nosniff" ], "Date": [ - "Fri, 24 Jul 2020 23:37:18 GMT" + "Tue, 11 Aug 2020 18:14:35 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1467,25 +1467,25 @@ "0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Resources/deployments/ps9855/operations/327C8F30158C7963\",\r\n \"operationId\": \"327C8F30158C7963\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-07-24T23:37:17.4936364Z\",\r\n \"duration\": \"PT1.8350099S\",\r\n \"trackingId\": \"4d7646f9-1559-417d-9ba4-c23446e614dd\",\r\n \"serviceRequestId\": \"91cbd2a2-d685-44a9-8041-c80915402e6c\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Storage/storageAccounts/ps801\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps801\"\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/ps5770/providers/Microsoft.Resources/deployments/ps9986/operations/889A6DC112B9C3CB\",\r\n \"operationId\": \"889A6DC112B9C3CB\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-08-11T18:14:30.500943Z\",\r\n \"duration\": \"PT4.157745S\",\r\n \"trackingId\": \"406ebcef-64c8-439b-9263-b295eea47d22\",\r\n \"serviceRequestId\": \"e3d8e8e7-6bc1-4e52-9693-585a797dda0d\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5770/providers/Microsoft.Storage/storageAccounts/ps5860\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps5860\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9661/deployments/ps9855/operations?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY2MS9kZXBsb3ltZW50cy9wczk4NTUvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5770/deployments/ps9986/operations?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTc3MC9kZXBsb3ltZW50cy9wczk5ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "95126a89-3c08-4ec0-b001-2463324ad96a" + "c793929f-655d-432c-b5e2-58476bf9ffec" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.28207.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", + "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" ] }, @@ -1500,13 +1500,13 @@ "11962" ], "x-ms-request-id": [ - "346aadc1-91d2-4129-a3fb-772c3e064399" + "f5ac7180-ee18-4c8d-a424-56acd98b7652" ], "x-ms-correlation-request-id": [ - "346aadc1-91d2-4129-a3fb-772c3e064399" + "f5ac7180-ee18-4c8d-a424-56acd98b7652" ], "x-ms-routing-request-id": [ - "WESTUS2:20200724T233719Z:346aadc1-91d2-4129-a3fb-772c3e064399" + "CENTRALUS:20200811T181436Z:f5ac7180-ee18-4c8d-a424-56acd98b7652" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1515,7 +1515,7 @@ "nosniff" ], "Date": [ - "Fri, 24 Jul 2020 23:37:19 GMT" + "Tue, 11 Aug 2020 18:14:35 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1530,25 +1530,25 @@ "0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Resources/deployments/ps9855/operations/327C8F30158C7963\",\r\n \"operationId\": \"327C8F30158C7963\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-07-24T23:37:17.4936364Z\",\r\n \"duration\": \"PT1.8350099S\",\r\n \"trackingId\": \"4d7646f9-1559-417d-9ba4-c23446e614dd\",\r\n \"serviceRequestId\": \"91cbd2a2-d685-44a9-8041-c80915402e6c\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Storage/storageAccounts/ps801\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps801\"\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/ps5770/providers/Microsoft.Resources/deployments/ps9986/operations/889A6DC112B9C3CB\",\r\n \"operationId\": \"889A6DC112B9C3CB\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-08-11T18:14:30.500943Z\",\r\n \"duration\": \"PT4.157745S\",\r\n \"trackingId\": \"406ebcef-64c8-439b-9263-b295eea47d22\",\r\n \"serviceRequestId\": \"e3d8e8e7-6bc1-4e52-9693-585a797dda0d\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5770/providers/Microsoft.Storage/storageAccounts/ps5860\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps5860\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9661/deployments/ps9855/operations?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY2MS9kZXBsb3ltZW50cy9wczk4NTUvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5770/deployments/ps9986/operations?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTc3MC9kZXBsb3ltZW50cy9wczk5ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a59ec30c-cc2b-4a82-8062-5196303cd7b7" + "20c6bff0-7005-4b65-8787-2f8be2b0d531" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.28207.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", + "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" ] }, @@ -1563,13 +1563,13 @@ "11960" ], "x-ms-request-id": [ - "51842566-1f1a-4c58-baa5-62164282611a" + "66cb2c44-3d5f-4b46-9361-3fbf9ae77606" ], "x-ms-correlation-request-id": [ - "51842566-1f1a-4c58-baa5-62164282611a" + "66cb2c44-3d5f-4b46-9361-3fbf9ae77606" ], "x-ms-routing-request-id": [ - "WESTUS2:20200724T233720Z:51842566-1f1a-4c58-baa5-62164282611a" + "CENTRALUS:20200811T181437Z:66cb2c44-3d5f-4b46-9361-3fbf9ae77606" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1578,7 +1578,7 @@ "nosniff" ], "Date": [ - "Fri, 24 Jul 2020 23:37:19 GMT" + "Tue, 11 Aug 2020 18:14:36 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1593,25 +1593,25 @@ "0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Resources/deployments/ps9855/operations/327C8F30158C7963\",\r\n \"operationId\": \"327C8F30158C7963\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-07-24T23:37:17.4936364Z\",\r\n \"duration\": \"PT1.8350099S\",\r\n \"trackingId\": \"4d7646f9-1559-417d-9ba4-c23446e614dd\",\r\n \"serviceRequestId\": \"91cbd2a2-d685-44a9-8041-c80915402e6c\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Storage/storageAccounts/ps801\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps801\"\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/ps5770/providers/Microsoft.Resources/deployments/ps9986/operations/889A6DC112B9C3CB\",\r\n \"operationId\": \"889A6DC112B9C3CB\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-08-11T18:14:30.500943Z\",\r\n \"duration\": \"PT4.157745S\",\r\n \"trackingId\": \"406ebcef-64c8-439b-9263-b295eea47d22\",\r\n \"serviceRequestId\": \"e3d8e8e7-6bc1-4e52-9693-585a797dda0d\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5770/providers/Microsoft.Storage/storageAccounts/ps5860\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps5860\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9661/deployments/ps9855/operations?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY2MS9kZXBsb3ltZW50cy9wczk4NTUvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5770/deployments/ps9986/operations?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTc3MC9kZXBsb3ltZW50cy9wczk5ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6f2f9532-172d-4220-98ed-ade553726151" + "73eeccaa-0c10-498e-b2e3-1ba38b000e58" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.28207.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", + "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" ] }, @@ -1626,13 +1626,13 @@ "11958" ], "x-ms-request-id": [ - "4ab3ba20-d70a-4190-b5cc-f37f40ee6697" + "2919d641-61e6-4273-a59e-c186937aae84" ], "x-ms-correlation-request-id": [ - "4ab3ba20-d70a-4190-b5cc-f37f40ee6697" + "2919d641-61e6-4273-a59e-c186937aae84" ], "x-ms-routing-request-id": [ - "WESTUS2:20200724T233720Z:4ab3ba20-d70a-4190-b5cc-f37f40ee6697" + "CENTRALUS:20200811T181437Z:2919d641-61e6-4273-a59e-c186937aae84" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1641,7 +1641,7 @@ "nosniff" ], "Date": [ - "Fri, 24 Jul 2020 23:37:19 GMT" + "Tue, 11 Aug 2020 18:14:37 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1656,25 +1656,25 @@ "0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Resources/deployments/ps9855/operations/327C8F30158C7963\",\r\n \"operationId\": \"327C8F30158C7963\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-07-24T23:37:17.4936364Z\",\r\n \"duration\": \"PT1.8350099S\",\r\n \"trackingId\": \"4d7646f9-1559-417d-9ba4-c23446e614dd\",\r\n \"serviceRequestId\": \"91cbd2a2-d685-44a9-8041-c80915402e6c\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Storage/storageAccounts/ps801\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps801\"\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/ps5770/providers/Microsoft.Resources/deployments/ps9986/operations/889A6DC112B9C3CB\",\r\n \"operationId\": \"889A6DC112B9C3CB\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-08-11T18:14:30.500943Z\",\r\n \"duration\": \"PT4.157745S\",\r\n \"trackingId\": \"406ebcef-64c8-439b-9263-b295eea47d22\",\r\n \"serviceRequestId\": \"e3d8e8e7-6bc1-4e52-9693-585a797dda0d\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5770/providers/Microsoft.Storage/storageAccounts/ps5860\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps5860\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9661/deployments/ps9855/operations?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY2MS9kZXBsb3ltZW50cy9wczk4NTUvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5770/deployments/ps9986/operations?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTc3MC9kZXBsb3ltZW50cy9wczk5ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0e6fe9d9-a4bd-4496-ab83-990f46e91743" + "0d84fd34-d8bf-40a9-baab-6e28b0ad7fe0" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.28207.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", + "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" ] }, @@ -1689,13 +1689,13 @@ "11956" ], "x-ms-request-id": [ - "b8494691-d838-4149-ae4d-b13ac9916003" + "ee641750-b7bd-460e-bef4-c9ba765f7634" ], "x-ms-correlation-request-id": [ - "b8494691-d838-4149-ae4d-b13ac9916003" + "ee641750-b7bd-460e-bef4-c9ba765f7634" ], "x-ms-routing-request-id": [ - "WESTUS2:20200724T233720Z:b8494691-d838-4149-ae4d-b13ac9916003" + "CENTRALUS:20200811T181438Z:ee641750-b7bd-460e-bef4-c9ba765f7634" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1704,7 +1704,7 @@ "nosniff" ], "Date": [ - "Fri, 24 Jul 2020 23:37:19 GMT" + "Tue, 11 Aug 2020 18:14:37 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1719,25 +1719,25 @@ "0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Resources/deployments/ps9855/operations/327C8F30158C7963\",\r\n \"operationId\": \"327C8F30158C7963\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-07-24T23:37:17.4936364Z\",\r\n \"duration\": \"PT1.8350099S\",\r\n \"trackingId\": \"4d7646f9-1559-417d-9ba4-c23446e614dd\",\r\n \"serviceRequestId\": \"91cbd2a2-d685-44a9-8041-c80915402e6c\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Storage/storageAccounts/ps801\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps801\"\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/ps5770/providers/Microsoft.Resources/deployments/ps9986/operations/889A6DC112B9C3CB\",\r\n \"operationId\": \"889A6DC112B9C3CB\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-08-11T18:14:30.500943Z\",\r\n \"duration\": \"PT4.157745S\",\r\n \"trackingId\": \"406ebcef-64c8-439b-9263-b295eea47d22\",\r\n \"serviceRequestId\": \"e3d8e8e7-6bc1-4e52-9693-585a797dda0d\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5770/providers/Microsoft.Storage/storageAccounts/ps5860\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps5860\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9661/deployments/ps9855/operations?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY2MS9kZXBsb3ltZW50cy9wczk4NTUvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5770/deployments/ps9986/operations?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTc3MC9kZXBsb3ltZW50cy9wczk5ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cc0cb17e-b51f-44f3-8622-c70b3edd1cfb" + "95bcd858-1d19-451a-b69b-acc8a91a5a09" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.28207.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", + "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" ] }, @@ -1752,13 +1752,13 @@ "11954" ], "x-ms-request-id": [ - "b48567c4-5b66-48e5-950b-fb125c3b6c87" + "709f428e-dded-4bb1-ae3c-9ed1cdd3191c" ], "x-ms-correlation-request-id": [ - "b48567c4-5b66-48e5-950b-fb125c3b6c87" + "709f428e-dded-4bb1-ae3c-9ed1cdd3191c" ], "x-ms-routing-request-id": [ - "WESTUS2:20200724T233720Z:b48567c4-5b66-48e5-950b-fb125c3b6c87" + "CENTRALUS:20200811T181438Z:709f428e-dded-4bb1-ae3c-9ed1cdd3191c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1767,7 +1767,7 @@ "nosniff" ], "Date": [ - "Fri, 24 Jul 2020 23:37:19 GMT" + "Tue, 11 Aug 2020 18:14:38 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1782,25 +1782,25 @@ "0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Resources/deployments/ps9855/operations/327C8F30158C7963\",\r\n \"operationId\": \"327C8F30158C7963\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-07-24T23:37:17.4936364Z\",\r\n \"duration\": \"PT1.8350099S\",\r\n \"trackingId\": \"4d7646f9-1559-417d-9ba4-c23446e614dd\",\r\n \"serviceRequestId\": \"91cbd2a2-d685-44a9-8041-c80915402e6c\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Storage/storageAccounts/ps801\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps801\"\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/ps5770/providers/Microsoft.Resources/deployments/ps9986/operations/889A6DC112B9C3CB\",\r\n \"operationId\": \"889A6DC112B9C3CB\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-08-11T18:14:30.500943Z\",\r\n \"duration\": \"PT4.157745S\",\r\n \"trackingId\": \"406ebcef-64c8-439b-9263-b295eea47d22\",\r\n \"serviceRequestId\": \"e3d8e8e7-6bc1-4e52-9693-585a797dda0d\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5770/providers/Microsoft.Storage/storageAccounts/ps5860\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps5860\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9661/deployments/ps9855/operations?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY2MS9kZXBsb3ltZW50cy9wczk4NTUvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5770/deployments/ps9986/operations?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTc3MC9kZXBsb3ltZW50cy9wczk5ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "119c456a-edef-47c2-b2c1-2418e715ca0e" + "d0111e81-8734-4909-875a-007a9aaa1a69" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.28207.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", + "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" ] }, @@ -1815,13 +1815,13 @@ "11952" ], "x-ms-request-id": [ - "e875b0a2-231d-4731-b2f3-ab86cae04b0f" + "f5677ec3-1b0f-46fb-93ff-a84359d338e4" ], "x-ms-correlation-request-id": [ - "e875b0a2-231d-4731-b2f3-ab86cae04b0f" + "f5677ec3-1b0f-46fb-93ff-a84359d338e4" ], "x-ms-routing-request-id": [ - "WESTUS2:20200724T233720Z:e875b0a2-231d-4731-b2f3-ab86cae04b0f" + "CENTRALUS:20200811T181439Z:f5677ec3-1b0f-46fb-93ff-a84359d338e4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1830,7 +1830,7 @@ "nosniff" ], "Date": [ - "Fri, 24 Jul 2020 23:37:20 GMT" + "Tue, 11 Aug 2020 18:14:38 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1845,25 +1845,25 @@ "0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Resources/deployments/ps9855/operations/327C8F30158C7963\",\r\n \"operationId\": \"327C8F30158C7963\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-07-24T23:37:17.4936364Z\",\r\n \"duration\": \"PT1.8350099S\",\r\n \"trackingId\": \"4d7646f9-1559-417d-9ba4-c23446e614dd\",\r\n \"serviceRequestId\": \"91cbd2a2-d685-44a9-8041-c80915402e6c\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Storage/storageAccounts/ps801\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps801\"\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/ps5770/providers/Microsoft.Resources/deployments/ps9986/operations/889A6DC112B9C3CB\",\r\n \"operationId\": \"889A6DC112B9C3CB\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-08-11T18:14:30.500943Z\",\r\n \"duration\": \"PT4.157745S\",\r\n \"trackingId\": \"406ebcef-64c8-439b-9263-b295eea47d22\",\r\n \"serviceRequestId\": \"e3d8e8e7-6bc1-4e52-9693-585a797dda0d\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5770/providers/Microsoft.Storage/storageAccounts/ps5860\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps5860\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9661/deployments/ps9855/operations?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY2MS9kZXBsb3ltZW50cy9wczk4NTUvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5770/deployments/ps9986/operations?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTc3MC9kZXBsb3ltZW50cy9wczk5ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "278c6d69-bad8-4160-ba36-2a98177dc327" + "1d746f34-4112-4831-8b8c-5dbf9be18fcd" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.28207.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", + "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" ] }, @@ -1878,13 +1878,13 @@ "11950" ], "x-ms-request-id": [ - "4894e790-8f34-48f9-b609-642da67cde39" + "a162df4d-fdd9-4e73-8fdf-6236ffbd941d" ], "x-ms-correlation-request-id": [ - "4894e790-8f34-48f9-b609-642da67cde39" + "a162df4d-fdd9-4e73-8fdf-6236ffbd941d" ], "x-ms-routing-request-id": [ - "WESTUS2:20200724T233721Z:4894e790-8f34-48f9-b609-642da67cde39" + "CENTRALUS:20200811T181439Z:a162df4d-fdd9-4e73-8fdf-6236ffbd941d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1893,7 +1893,7 @@ "nosniff" ], "Date": [ - "Fri, 24 Jul 2020 23:37:20 GMT" + "Tue, 11 Aug 2020 18:14:39 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1908,25 +1908,25 @@ "0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Resources/deployments/ps9855/operations/327C8F30158C7963\",\r\n \"operationId\": \"327C8F30158C7963\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-07-24T23:37:17.4936364Z\",\r\n \"duration\": \"PT1.8350099S\",\r\n \"trackingId\": \"4d7646f9-1559-417d-9ba4-c23446e614dd\",\r\n \"serviceRequestId\": \"91cbd2a2-d685-44a9-8041-c80915402e6c\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Storage/storageAccounts/ps801\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps801\"\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/ps5770/providers/Microsoft.Resources/deployments/ps9986/operations/889A6DC112B9C3CB\",\r\n \"operationId\": \"889A6DC112B9C3CB\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-08-11T18:14:30.500943Z\",\r\n \"duration\": \"PT4.157745S\",\r\n \"trackingId\": \"406ebcef-64c8-439b-9263-b295eea47d22\",\r\n \"serviceRequestId\": \"e3d8e8e7-6bc1-4e52-9693-585a797dda0d\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5770/providers/Microsoft.Storage/storageAccounts/ps5860\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps5860\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9661/deployments/ps9855/operations?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY2MS9kZXBsb3ltZW50cy9wczk4NTUvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5770/deployments/ps9986/operations?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTc3MC9kZXBsb3ltZW50cy9wczk5ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "977082e2-c204-42bd-8703-ba9515ffe616" + "31f869a4-c44b-4848-9ece-990baf358dd3" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.28207.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", + "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" ] }, @@ -1941,13 +1941,13 @@ "11948" ], "x-ms-request-id": [ - "d3ea569d-f60a-47bc-8fb5-0ea00f7f9afe" + "fee71020-67b8-44db-bf1b-e231d8678c0a" ], "x-ms-correlation-request-id": [ - "d3ea569d-f60a-47bc-8fb5-0ea00f7f9afe" + "fee71020-67b8-44db-bf1b-e231d8678c0a" ], "x-ms-routing-request-id": [ - "WESTUS2:20200724T233721Z:d3ea569d-f60a-47bc-8fb5-0ea00f7f9afe" + "CENTRALUS:20200811T181440Z:fee71020-67b8-44db-bf1b-e231d8678c0a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1956,7 +1956,7 @@ "nosniff" ], "Date": [ - "Fri, 24 Jul 2020 23:37:20 GMT" + "Tue, 11 Aug 2020 18:14:39 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1971,25 +1971,25 @@ "0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Resources/deployments/ps9855/operations/327C8F30158C7963\",\r\n \"operationId\": \"327C8F30158C7963\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-07-24T23:37:17.4936364Z\",\r\n \"duration\": \"PT1.8350099S\",\r\n \"trackingId\": \"4d7646f9-1559-417d-9ba4-c23446e614dd\",\r\n \"serviceRequestId\": \"91cbd2a2-d685-44a9-8041-c80915402e6c\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Storage/storageAccounts/ps801\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps801\"\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/ps5770/providers/Microsoft.Resources/deployments/ps9986/operations/889A6DC112B9C3CB\",\r\n \"operationId\": \"889A6DC112B9C3CB\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-08-11T18:14:30.500943Z\",\r\n \"duration\": \"PT4.157745S\",\r\n \"trackingId\": \"406ebcef-64c8-439b-9263-b295eea47d22\",\r\n \"serviceRequestId\": \"e3d8e8e7-6bc1-4e52-9693-585a797dda0d\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5770/providers/Microsoft.Storage/storageAccounts/ps5860\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps5860\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9661/deployments/ps9855/operations?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY2MS9kZXBsb3ltZW50cy9wczk4NTUvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5770/deployments/ps9986/operations?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTc3MC9kZXBsb3ltZW50cy9wczk5ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2c582e21-efec-41b6-a252-019e9a2c3f4f" + "1b891aaa-16c7-4f58-bb25-caef80b21265" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.28207.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", + "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" ] }, @@ -2004,13 +2004,13 @@ "11946" ], "x-ms-request-id": [ - "004a7782-0488-42a7-8ba0-ba7fb0eeba1d" + "c7eef480-78a6-406d-a8d2-42e421d88b07" ], "x-ms-correlation-request-id": [ - "004a7782-0488-42a7-8ba0-ba7fb0eeba1d" + "c7eef480-78a6-406d-a8d2-42e421d88b07" ], "x-ms-routing-request-id": [ - "WESTUS2:20200724T233721Z:004a7782-0488-42a7-8ba0-ba7fb0eeba1d" + "CENTRALUS:20200811T181441Z:c7eef480-78a6-406d-a8d2-42e421d88b07" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2019,7 +2019,7 @@ "nosniff" ], "Date": [ - "Fri, 24 Jul 2020 23:37:20 GMT" + "Tue, 11 Aug 2020 18:14:40 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2034,25 +2034,25 @@ "0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Resources/deployments/ps9855/operations/327C8F30158C7963\",\r\n \"operationId\": \"327C8F30158C7963\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-07-24T23:37:17.4936364Z\",\r\n \"duration\": \"PT1.8350099S\",\r\n \"trackingId\": \"4d7646f9-1559-417d-9ba4-c23446e614dd\",\r\n \"serviceRequestId\": \"91cbd2a2-d685-44a9-8041-c80915402e6c\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Storage/storageAccounts/ps801\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps801\"\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/ps5770/providers/Microsoft.Resources/deployments/ps9986/operations/889A6DC112B9C3CB\",\r\n \"operationId\": \"889A6DC112B9C3CB\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-08-11T18:14:30.500943Z\",\r\n \"duration\": \"PT4.157745S\",\r\n \"trackingId\": \"406ebcef-64c8-439b-9263-b295eea47d22\",\r\n \"serviceRequestId\": \"e3d8e8e7-6bc1-4e52-9693-585a797dda0d\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5770/providers/Microsoft.Storage/storageAccounts/ps5860\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps5860\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9661/deployments/ps9855/operations?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY2MS9kZXBsb3ltZW50cy9wczk4NTUvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5770/deployments/ps9986/operations?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTc3MC9kZXBsb3ltZW50cy9wczk5ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "47224f8e-88b2-4731-b636-0d3c1f27f0ed" + "85983ab5-2066-46d2-9e3e-b403051016bf" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.28207.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", + "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" ] }, @@ -2067,13 +2067,13 @@ "11944" ], "x-ms-request-id": [ - "7bee108d-76b8-420e-b106-93d227edd61f" + "3f9ac4f3-b9d4-423a-a68f-52aea4493597" ], "x-ms-correlation-request-id": [ - "7bee108d-76b8-420e-b106-93d227edd61f" + "3f9ac4f3-b9d4-423a-a68f-52aea4493597" ], "x-ms-routing-request-id": [ - "WESTUS2:20200724T233721Z:7bee108d-76b8-420e-b106-93d227edd61f" + "CENTRALUS:20200811T181441Z:3f9ac4f3-b9d4-423a-a68f-52aea4493597" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2082,7 +2082,7 @@ "nosniff" ], "Date": [ - "Fri, 24 Jul 2020 23:37:21 GMT" + "Tue, 11 Aug 2020 18:14:40 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2097,25 +2097,25 @@ "0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Resources/deployments/ps9855/operations/327C8F30158C7963\",\r\n \"operationId\": \"327C8F30158C7963\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-07-24T23:37:17.4936364Z\",\r\n \"duration\": \"PT1.8350099S\",\r\n \"trackingId\": \"4d7646f9-1559-417d-9ba4-c23446e614dd\",\r\n \"serviceRequestId\": \"91cbd2a2-d685-44a9-8041-c80915402e6c\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Storage/storageAccounts/ps801\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps801\"\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/ps5770/providers/Microsoft.Resources/deployments/ps9986/operations/889A6DC112B9C3CB\",\r\n \"operationId\": \"889A6DC112B9C3CB\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-08-11T18:14:30.500943Z\",\r\n \"duration\": \"PT4.157745S\",\r\n \"trackingId\": \"406ebcef-64c8-439b-9263-b295eea47d22\",\r\n \"serviceRequestId\": \"e3d8e8e7-6bc1-4e52-9693-585a797dda0d\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5770/providers/Microsoft.Storage/storageAccounts/ps5860\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps5860\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9661/deployments/ps9855/operations?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY2MS9kZXBsb3ltZW50cy9wczk4NTUvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5770/deployments/ps9986/operations?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTc3MC9kZXBsb3ltZW50cy9wczk5ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a31ad635-8207-46ac-842b-06ef3ca0bc57" + "20e00b98-6249-443a-8481-d8e1738a9127" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.28207.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", + "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" ] }, @@ -2130,13 +2130,13 @@ "11942" ], "x-ms-request-id": [ - "5bb4db8e-d33d-4461-812b-936f2b68568b" + "ad293db5-59f1-429d-a66e-f0f01ca5fc16" ], "x-ms-correlation-request-id": [ - "5bb4db8e-d33d-4461-812b-936f2b68568b" + "ad293db5-59f1-429d-a66e-f0f01ca5fc16" ], "x-ms-routing-request-id": [ - "WESTUS2:20200724T233722Z:5bb4db8e-d33d-4461-812b-936f2b68568b" + "CENTRALUS:20200811T181442Z:ad293db5-59f1-429d-a66e-f0f01ca5fc16" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2145,7 +2145,7 @@ "nosniff" ], "Date": [ - "Fri, 24 Jul 2020 23:37:21 GMT" + "Tue, 11 Aug 2020 18:14:41 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2160,25 +2160,25 @@ "0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Resources/deployments/ps9855/operations/327C8F30158C7963\",\r\n \"operationId\": \"327C8F30158C7963\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-07-24T23:37:17.4936364Z\",\r\n \"duration\": \"PT1.8350099S\",\r\n \"trackingId\": \"4d7646f9-1559-417d-9ba4-c23446e614dd\",\r\n \"serviceRequestId\": \"91cbd2a2-d685-44a9-8041-c80915402e6c\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Storage/storageAccounts/ps801\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps801\"\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/ps5770/providers/Microsoft.Resources/deployments/ps9986/operations/889A6DC112B9C3CB\",\r\n \"operationId\": \"889A6DC112B9C3CB\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-08-11T18:14:30.500943Z\",\r\n \"duration\": \"PT4.157745S\",\r\n \"trackingId\": \"406ebcef-64c8-439b-9263-b295eea47d22\",\r\n \"serviceRequestId\": \"e3d8e8e7-6bc1-4e52-9693-585a797dda0d\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5770/providers/Microsoft.Storage/storageAccounts/ps5860\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps5860\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9661/deployments/ps9855/operations?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY2MS9kZXBsb3ltZW50cy9wczk4NTUvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5770/deployments/ps9986/operations?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTc3MC9kZXBsb3ltZW50cy9wczk5ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6c33e5c5-af27-4e66-afd2-c6ab0baeeea4" + "ddfcebcc-c7d8-4ba8-bc4b-349ce7fdfdc1" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.28207.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", + "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" ] }, @@ -2193,13 +2193,13 @@ "11940" ], "x-ms-request-id": [ - "0c22818f-7cf5-4ee0-a22d-96291a9feb6b" + "84e68e60-dadb-457c-83dd-2e86d1c7a60a" ], "x-ms-correlation-request-id": [ - "0c22818f-7cf5-4ee0-a22d-96291a9feb6b" + "84e68e60-dadb-457c-83dd-2e86d1c7a60a" ], "x-ms-routing-request-id": [ - "WESTUS2:20200724T233722Z:0c22818f-7cf5-4ee0-a22d-96291a9feb6b" + "CENTRALUS:20200811T181442Z:84e68e60-dadb-457c-83dd-2e86d1c7a60a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2208,7 +2208,7 @@ "nosniff" ], "Date": [ - "Fri, 24 Jul 2020 23:37:21 GMT" + "Tue, 11 Aug 2020 18:14:41 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2223,25 +2223,25 @@ "0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Resources/deployments/ps9855/operations/327C8F30158C7963\",\r\n \"operationId\": \"327C8F30158C7963\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-07-24T23:37:17.4936364Z\",\r\n \"duration\": \"PT1.8350099S\",\r\n \"trackingId\": \"4d7646f9-1559-417d-9ba4-c23446e614dd\",\r\n \"serviceRequestId\": \"91cbd2a2-d685-44a9-8041-c80915402e6c\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Storage/storageAccounts/ps801\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps801\"\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/ps5770/providers/Microsoft.Resources/deployments/ps9986/operations/889A6DC112B9C3CB\",\r\n \"operationId\": \"889A6DC112B9C3CB\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-08-11T18:14:30.500943Z\",\r\n \"duration\": \"PT4.157745S\",\r\n \"trackingId\": \"406ebcef-64c8-439b-9263-b295eea47d22\",\r\n \"serviceRequestId\": \"e3d8e8e7-6bc1-4e52-9693-585a797dda0d\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5770/providers/Microsoft.Storage/storageAccounts/ps5860\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps5860\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9661/deployments/ps9855/operations?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY2MS9kZXBsb3ltZW50cy9wczk4NTUvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5770/deployments/ps9986/operations?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTc3MC9kZXBsb3ltZW50cy9wczk5ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e01d9d99-fd49-4077-8099-c4b9508c72e0" + "0b93ff71-a888-494f-8625-5cce9eefc356" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.28207.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", + "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" ] }, @@ -2256,13 +2256,13 @@ "11938" ], "x-ms-request-id": [ - "51a1ee28-9e6f-4387-90cd-e14dc71b24d9" + "833858a0-36ec-4f50-951e-d6a8c4983c38" ], "x-ms-correlation-request-id": [ - "51a1ee28-9e6f-4387-90cd-e14dc71b24d9" + "833858a0-36ec-4f50-951e-d6a8c4983c38" ], "x-ms-routing-request-id": [ - "WESTUS2:20200724T233722Z:51a1ee28-9e6f-4387-90cd-e14dc71b24d9" + "CENTRALUS:20200811T181443Z:833858a0-36ec-4f50-951e-d6a8c4983c38" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2271,7 +2271,7 @@ "nosniff" ], "Date": [ - "Fri, 24 Jul 2020 23:37:21 GMT" + "Tue, 11 Aug 2020 18:14:42 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2286,25 +2286,25 @@ "0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Resources/deployments/ps9855/operations/327C8F30158C7963\",\r\n \"operationId\": \"327C8F30158C7963\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-07-24T23:37:17.4936364Z\",\r\n \"duration\": \"PT1.8350099S\",\r\n \"trackingId\": \"4d7646f9-1559-417d-9ba4-c23446e614dd\",\r\n \"serviceRequestId\": \"91cbd2a2-d685-44a9-8041-c80915402e6c\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Storage/storageAccounts/ps801\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps801\"\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/ps5770/providers/Microsoft.Resources/deployments/ps9986/operations/889A6DC112B9C3CB\",\r\n \"operationId\": \"889A6DC112B9C3CB\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-08-11T18:14:30.500943Z\",\r\n \"duration\": \"PT4.157745S\",\r\n \"trackingId\": \"406ebcef-64c8-439b-9263-b295eea47d22\",\r\n \"serviceRequestId\": \"e3d8e8e7-6bc1-4e52-9693-585a797dda0d\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5770/providers/Microsoft.Storage/storageAccounts/ps5860\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps5860\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9661/deployments/ps9855/operations?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY2MS9kZXBsb3ltZW50cy9wczk4NTUvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5770/deployments/ps9986/operations?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTc3MC9kZXBsb3ltZW50cy9wczk5ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0f76469e-6c20-49e1-a09b-070d7d8acea3" + "3d284b62-44e9-4d21-a130-c6ab55f539bf" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.28207.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", + "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" ] }, @@ -2319,13 +2319,13 @@ "11936" ], "x-ms-request-id": [ - "25024290-5a3a-4cb8-ab0d-a52d96088d10" + "9a2e3517-56b6-4d08-8d0c-5ae2aa6a7e0e" ], "x-ms-correlation-request-id": [ - "25024290-5a3a-4cb8-ab0d-a52d96088d10" + "9a2e3517-56b6-4d08-8d0c-5ae2aa6a7e0e" ], "x-ms-routing-request-id": [ - "WESTUS2:20200724T233722Z:25024290-5a3a-4cb8-ab0d-a52d96088d10" + "CENTRALUS:20200811T181444Z:9a2e3517-56b6-4d08-8d0c-5ae2aa6a7e0e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2334,7 +2334,7 @@ "nosniff" ], "Date": [ - "Fri, 24 Jul 2020 23:37:21 GMT" + "Tue, 11 Aug 2020 18:14:43 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2349,25 +2349,25 @@ "0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Resources/deployments/ps9855/operations/327C8F30158C7963\",\r\n \"operationId\": \"327C8F30158C7963\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-07-24T23:37:17.4936364Z\",\r\n \"duration\": \"PT1.8350099S\",\r\n \"trackingId\": \"4d7646f9-1559-417d-9ba4-c23446e614dd\",\r\n \"serviceRequestId\": \"91cbd2a2-d685-44a9-8041-c80915402e6c\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Storage/storageAccounts/ps801\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps801\"\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/ps5770/providers/Microsoft.Resources/deployments/ps9986/operations/889A6DC112B9C3CB\",\r\n \"operationId\": \"889A6DC112B9C3CB\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-08-11T18:14:30.500943Z\",\r\n \"duration\": \"PT4.157745S\",\r\n \"trackingId\": \"406ebcef-64c8-439b-9263-b295eea47d22\",\r\n \"serviceRequestId\": \"e3d8e8e7-6bc1-4e52-9693-585a797dda0d\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5770/providers/Microsoft.Storage/storageAccounts/ps5860\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps5860\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9661/deployments/ps9855/operations?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY2MS9kZXBsb3ltZW50cy9wczk4NTUvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5770/deployments/ps9986/operations?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTc3MC9kZXBsb3ltZW50cy9wczk5ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a52fca55-e25b-4c5b-a6ad-7f652ccc0b98" + "ef538d6a-7c41-4b55-9a12-4c8459bb96aa" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.28207.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", + "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" ] }, @@ -2382,13 +2382,13 @@ "11934" ], "x-ms-request-id": [ - "b8d37a30-52d5-4427-879a-a8804746408f" + "ba1bfaff-6501-4190-8ab4-73458f821e3b" ], "x-ms-correlation-request-id": [ - "b8d37a30-52d5-4427-879a-a8804746408f" + "ba1bfaff-6501-4190-8ab4-73458f821e3b" ], "x-ms-routing-request-id": [ - "WESTUS2:20200724T233723Z:b8d37a30-52d5-4427-879a-a8804746408f" + "CENTRALUS:20200811T181444Z:ba1bfaff-6501-4190-8ab4-73458f821e3b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2397,7 +2397,7 @@ "nosniff" ], "Date": [ - "Fri, 24 Jul 2020 23:37:22 GMT" + "Tue, 11 Aug 2020 18:14:43 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2412,25 +2412,25 @@ "0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Resources/deployments/ps9855/operations/327C8F30158C7963\",\r\n \"operationId\": \"327C8F30158C7963\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-07-24T23:37:17.4936364Z\",\r\n \"duration\": \"PT1.8350099S\",\r\n \"trackingId\": \"4d7646f9-1559-417d-9ba4-c23446e614dd\",\r\n \"serviceRequestId\": \"91cbd2a2-d685-44a9-8041-c80915402e6c\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Storage/storageAccounts/ps801\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps801\"\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/ps5770/providers/Microsoft.Resources/deployments/ps9986/operations/889A6DC112B9C3CB\",\r\n \"operationId\": \"889A6DC112B9C3CB\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-08-11T18:14:30.500943Z\",\r\n \"duration\": \"PT4.157745S\",\r\n \"trackingId\": \"406ebcef-64c8-439b-9263-b295eea47d22\",\r\n \"serviceRequestId\": \"e3d8e8e7-6bc1-4e52-9693-585a797dda0d\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5770/providers/Microsoft.Storage/storageAccounts/ps5860\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps5860\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9661/deployments/ps9855/operations?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY2MS9kZXBsb3ltZW50cy9wczk4NTUvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5770/deployments/ps9986/operations?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTc3MC9kZXBsb3ltZW50cy9wczk5ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c6bc5fd3-e66a-4182-9c81-c9b356f883cd" + "46e751ed-2e99-49d3-bb92-8973f8d0f1b4" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.28207.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", + "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" ] }, @@ -2445,13 +2445,13 @@ "11932" ], "x-ms-request-id": [ - "3e2290a1-c0be-46f8-a01a-b937c63a798e" + "5f699e54-2616-4b7d-beae-68e2e9c2c7d9" ], "x-ms-correlation-request-id": [ - "3e2290a1-c0be-46f8-a01a-b937c63a798e" + "5f699e54-2616-4b7d-beae-68e2e9c2c7d9" ], "x-ms-routing-request-id": [ - "WESTUS2:20200724T233723Z:3e2290a1-c0be-46f8-a01a-b937c63a798e" + "CENTRALUS:20200811T181445Z:5f699e54-2616-4b7d-beae-68e2e9c2c7d9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2460,7 +2460,7 @@ "nosniff" ], "Date": [ - "Fri, 24 Jul 2020 23:37:22 GMT" + "Tue, 11 Aug 2020 18:14:44 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2475,25 +2475,25 @@ "0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Resources/deployments/ps9855/operations/327C8F30158C7963\",\r\n \"operationId\": \"327C8F30158C7963\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-07-24T23:37:17.4936364Z\",\r\n \"duration\": \"PT1.8350099S\",\r\n \"trackingId\": \"4d7646f9-1559-417d-9ba4-c23446e614dd\",\r\n \"serviceRequestId\": \"91cbd2a2-d685-44a9-8041-c80915402e6c\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Storage/storageAccounts/ps801\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps801\"\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/ps5770/providers/Microsoft.Resources/deployments/ps9986/operations/889A6DC112B9C3CB\",\r\n \"operationId\": \"889A6DC112B9C3CB\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-08-11T18:14:30.500943Z\",\r\n \"duration\": \"PT4.157745S\",\r\n \"trackingId\": \"406ebcef-64c8-439b-9263-b295eea47d22\",\r\n \"serviceRequestId\": \"e3d8e8e7-6bc1-4e52-9693-585a797dda0d\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5770/providers/Microsoft.Storage/storageAccounts/ps5860\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps5860\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9661/deployments/ps9855/operations?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY2MS9kZXBsb3ltZW50cy9wczk4NTUvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5770/deployments/ps9986/operations?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTc3MC9kZXBsb3ltZW50cy9wczk5ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0f25dc20-a234-488a-af8a-48d56a1682f5" + "af614c05-1589-4d10-aedd-c9f7c1dff6ee" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.28207.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", + "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" ] }, @@ -2508,13 +2508,13 @@ "11930" ], "x-ms-request-id": [ - "0b00a0cd-40ef-4d1e-b5f5-bd2fffb1e1a2" + "08163017-367b-4d8d-abb6-16d5b360d2ff" ], "x-ms-correlation-request-id": [ - "0b00a0cd-40ef-4d1e-b5f5-bd2fffb1e1a2" + "08163017-367b-4d8d-abb6-16d5b360d2ff" ], "x-ms-routing-request-id": [ - "WESTUS2:20200724T233723Z:0b00a0cd-40ef-4d1e-b5f5-bd2fffb1e1a2" + "CENTRALUS:20200811T181445Z:08163017-367b-4d8d-abb6-16d5b360d2ff" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2523,7 +2523,7 @@ "nosniff" ], "Date": [ - "Fri, 24 Jul 2020 23:37:22 GMT" + "Tue, 11 Aug 2020 18:14:44 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2538,25 +2538,25 @@ "0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Resources/deployments/ps9855/operations/327C8F30158C7963\",\r\n \"operationId\": \"327C8F30158C7963\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-07-24T23:37:17.4936364Z\",\r\n \"duration\": \"PT1.8350099S\",\r\n \"trackingId\": \"4d7646f9-1559-417d-9ba4-c23446e614dd\",\r\n \"serviceRequestId\": \"91cbd2a2-d685-44a9-8041-c80915402e6c\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Storage/storageAccounts/ps801\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps801\"\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/ps5770/providers/Microsoft.Resources/deployments/ps9986/operations/889A6DC112B9C3CB\",\r\n \"operationId\": \"889A6DC112B9C3CB\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-08-11T18:14:30.500943Z\",\r\n \"duration\": \"PT4.157745S\",\r\n \"trackingId\": \"406ebcef-64c8-439b-9263-b295eea47d22\",\r\n \"serviceRequestId\": \"e3d8e8e7-6bc1-4e52-9693-585a797dda0d\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5770/providers/Microsoft.Storage/storageAccounts/ps5860\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps5860\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9661/deployments/ps9855/operations?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY2MS9kZXBsb3ltZW50cy9wczk4NTUvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5770/deployments/ps9986/operations?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTc3MC9kZXBsb3ltZW50cy9wczk5ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4e25c7e0-8057-43f8-bdb3-32152a8703cf" + "e3bcfbe6-368d-4b3e-84e6-4021de08b069" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.28207.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", + "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" ] }, @@ -2571,13 +2571,13 @@ "11928" ], "x-ms-request-id": [ - "f7d3d009-9a62-4f8a-8ad8-372758aeaf15" + "3fb5bcbe-e4b1-41dd-a95d-7ec238efbde0" ], "x-ms-correlation-request-id": [ - "f7d3d009-9a62-4f8a-8ad8-372758aeaf15" + "3fb5bcbe-e4b1-41dd-a95d-7ec238efbde0" ], "x-ms-routing-request-id": [ - "WESTUS2:20200724T233723Z:f7d3d009-9a62-4f8a-8ad8-372758aeaf15" + "CENTRALUS:20200811T181446Z:3fb5bcbe-e4b1-41dd-a95d-7ec238efbde0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2586,7 +2586,7 @@ "nosniff" ], "Date": [ - "Fri, 24 Jul 2020 23:37:22 GMT" + "Tue, 11 Aug 2020 18:14:45 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2601,25 +2601,25 @@ "0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Resources/deployments/ps9855/operations/327C8F30158C7963\",\r\n \"operationId\": \"327C8F30158C7963\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-07-24T23:37:17.4936364Z\",\r\n \"duration\": \"PT1.8350099S\",\r\n \"trackingId\": \"4d7646f9-1559-417d-9ba4-c23446e614dd\",\r\n \"serviceRequestId\": \"91cbd2a2-d685-44a9-8041-c80915402e6c\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Storage/storageAccounts/ps801\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps801\"\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/ps5770/providers/Microsoft.Resources/deployments/ps9986/operations/889A6DC112B9C3CB\",\r\n \"operationId\": \"889A6DC112B9C3CB\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-08-11T18:14:30.500943Z\",\r\n \"duration\": \"PT4.157745S\",\r\n \"trackingId\": \"406ebcef-64c8-439b-9263-b295eea47d22\",\r\n \"serviceRequestId\": \"e3d8e8e7-6bc1-4e52-9693-585a797dda0d\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5770/providers/Microsoft.Storage/storageAccounts/ps5860\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps5860\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9661/deployments/ps9855/operations?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY2MS9kZXBsb3ltZW50cy9wczk4NTUvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5770/deployments/ps9986/operations?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTc3MC9kZXBsb3ltZW50cy9wczk5ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ec5eb247-72ee-4cbd-9d30-c466607f3fdb" + "fa500d02-e184-479b-856e-aac1d49c0e47" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.28207.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", + "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" ] }, @@ -2634,13 +2634,13 @@ "11926" ], "x-ms-request-id": [ - "e6a2f90e-f577-42f1-ba38-d8d1adc4b080" + "a45e60e5-f5fe-48d0-a77b-3f8c81789fff" ], "x-ms-correlation-request-id": [ - "e6a2f90e-f577-42f1-ba38-d8d1adc4b080" + "a45e60e5-f5fe-48d0-a77b-3f8c81789fff" ], "x-ms-routing-request-id": [ - "WESTUS2:20200724T233723Z:e6a2f90e-f577-42f1-ba38-d8d1adc4b080" + "CENTRALUS:20200811T181446Z:a45e60e5-f5fe-48d0-a77b-3f8c81789fff" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2649,7 +2649,7 @@ "nosniff" ], "Date": [ - "Fri, 24 Jul 2020 23:37:23 GMT" + "Tue, 11 Aug 2020 18:14:45 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2664,25 +2664,25 @@ "0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Resources/deployments/ps9855/operations/327C8F30158C7963\",\r\n \"operationId\": \"327C8F30158C7963\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-07-24T23:37:17.4936364Z\",\r\n \"duration\": \"PT1.8350099S\",\r\n \"trackingId\": \"4d7646f9-1559-417d-9ba4-c23446e614dd\",\r\n \"serviceRequestId\": \"91cbd2a2-d685-44a9-8041-c80915402e6c\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Storage/storageAccounts/ps801\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps801\"\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/ps5770/providers/Microsoft.Resources/deployments/ps9986/operations/889A6DC112B9C3CB\",\r\n \"operationId\": \"889A6DC112B9C3CB\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-08-11T18:14:30.500943Z\",\r\n \"duration\": \"PT4.157745S\",\r\n \"trackingId\": \"406ebcef-64c8-439b-9263-b295eea47d22\",\r\n \"serviceRequestId\": \"e3d8e8e7-6bc1-4e52-9693-585a797dda0d\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5770/providers/Microsoft.Storage/storageAccounts/ps5860\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps5860\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9661/deployments/ps9855/operations?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY2MS9kZXBsb3ltZW50cy9wczk4NTUvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5770/deployments/ps9986/operations?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTc3MC9kZXBsb3ltZW50cy9wczk5ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c78fb089-9015-4fe7-a6ab-dd2968395ac3" + "eb67a081-6dfd-4e31-80e3-3cc65dc0ac4f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.28207.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", + "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" ] }, @@ -2697,13 +2697,13 @@ "11924" ], "x-ms-request-id": [ - "ffe58749-b328-4f33-8fd0-44fcde2ac204" + "22064de4-22da-4294-a1c5-c08762708fb1" ], "x-ms-correlation-request-id": [ - "ffe58749-b328-4f33-8fd0-44fcde2ac204" + "22064de4-22da-4294-a1c5-c08762708fb1" ], "x-ms-routing-request-id": [ - "WESTUS2:20200724T233724Z:ffe58749-b328-4f33-8fd0-44fcde2ac204" + "CENTRALUS:20200811T181447Z:22064de4-22da-4294-a1c5-c08762708fb1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2712,7 +2712,7 @@ "nosniff" ], "Date": [ - "Fri, 24 Jul 2020 23:37:23 GMT" + "Tue, 11 Aug 2020 18:14:46 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2727,25 +2727,25 @@ "0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Resources/deployments/ps9855/operations/327C8F30158C7963\",\r\n \"operationId\": \"327C8F30158C7963\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-07-24T23:37:17.4936364Z\",\r\n \"duration\": \"PT1.8350099S\",\r\n \"trackingId\": \"4d7646f9-1559-417d-9ba4-c23446e614dd\",\r\n \"serviceRequestId\": \"91cbd2a2-d685-44a9-8041-c80915402e6c\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Storage/storageAccounts/ps801\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps801\"\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/ps5770/providers/Microsoft.Resources/deployments/ps9986/operations/889A6DC112B9C3CB\",\r\n \"operationId\": \"889A6DC112B9C3CB\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-08-11T18:14:30.500943Z\",\r\n \"duration\": \"PT4.157745S\",\r\n \"trackingId\": \"406ebcef-64c8-439b-9263-b295eea47d22\",\r\n \"serviceRequestId\": \"e3d8e8e7-6bc1-4e52-9693-585a797dda0d\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5770/providers/Microsoft.Storage/storageAccounts/ps5860\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps5860\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9661/deployments/ps9855/operations?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY2MS9kZXBsb3ltZW50cy9wczk4NTUvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5770/deployments/ps9986/operations?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTc3MC9kZXBsb3ltZW50cy9wczk5ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "62cf9872-69ca-427e-a19f-7869734802b6" + "aa2ad949-b597-4f53-91d9-e1cb66115b95" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.28207.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", + "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" ] }, @@ -2760,13 +2760,13 @@ "11922" ], "x-ms-request-id": [ - "6b29b775-809d-4d62-9476-5fc55276aad0" + "294ee45f-6994-4af8-a46b-a37dc0d3ea42" ], "x-ms-correlation-request-id": [ - "6b29b775-809d-4d62-9476-5fc55276aad0" + "294ee45f-6994-4af8-a46b-a37dc0d3ea42" ], "x-ms-routing-request-id": [ - "WESTUS2:20200724T233724Z:6b29b775-809d-4d62-9476-5fc55276aad0" + "CENTRALUS:20200811T181447Z:294ee45f-6994-4af8-a46b-a37dc0d3ea42" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2775,7 +2775,7 @@ "nosniff" ], "Date": [ - "Fri, 24 Jul 2020 23:37:23 GMT" + "Tue, 11 Aug 2020 18:14:46 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2790,25 +2790,25 @@ "0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Resources/deployments/ps9855/operations/327C8F30158C7963\",\r\n \"operationId\": \"327C8F30158C7963\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-07-24T23:37:17.4936364Z\",\r\n \"duration\": \"PT1.8350099S\",\r\n \"trackingId\": \"4d7646f9-1559-417d-9ba4-c23446e614dd\",\r\n \"serviceRequestId\": \"91cbd2a2-d685-44a9-8041-c80915402e6c\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Storage/storageAccounts/ps801\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps801\"\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/ps5770/providers/Microsoft.Resources/deployments/ps9986/operations/889A6DC112B9C3CB\",\r\n \"operationId\": \"889A6DC112B9C3CB\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-08-11T18:14:30.500943Z\",\r\n \"duration\": \"PT4.157745S\",\r\n \"trackingId\": \"406ebcef-64c8-439b-9263-b295eea47d22\",\r\n \"serviceRequestId\": \"e3d8e8e7-6bc1-4e52-9693-585a797dda0d\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5770/providers/Microsoft.Storage/storageAccounts/ps5860\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps5860\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9661/deployments/ps9855/operations?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY2MS9kZXBsb3ltZW50cy9wczk4NTUvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5770/deployments/ps9986/operations?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTc3MC9kZXBsb3ltZW50cy9wczk5ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "317e617a-607b-4869-910d-f605e37d9028" + "4e82d7e3-b8c7-45da-898e-95b71e0c682a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.28207.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", + "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" ] }, @@ -2823,13 +2823,13 @@ "11920" ], "x-ms-request-id": [ - "79593992-cabd-41cd-b03f-f4227ef1fff9" + "71fe0355-37dc-493d-8c06-50f8b1da9e79" ], "x-ms-correlation-request-id": [ - "79593992-cabd-41cd-b03f-f4227ef1fff9" + "71fe0355-37dc-493d-8c06-50f8b1da9e79" ], "x-ms-routing-request-id": [ - "WESTUS2:20200724T233724Z:79593992-cabd-41cd-b03f-f4227ef1fff9" + "CENTRALUS:20200811T181448Z:71fe0355-37dc-493d-8c06-50f8b1da9e79" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2838,7 +2838,7 @@ "nosniff" ], "Date": [ - "Fri, 24 Jul 2020 23:37:23 GMT" + "Tue, 11 Aug 2020 18:14:47 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2853,25 +2853,25 @@ "0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Resources/deployments/ps9855/operations/327C8F30158C7963\",\r\n \"operationId\": \"327C8F30158C7963\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-07-24T23:37:17.4936364Z\",\r\n \"duration\": \"PT1.8350099S\",\r\n \"trackingId\": \"4d7646f9-1559-417d-9ba4-c23446e614dd\",\r\n \"serviceRequestId\": \"91cbd2a2-d685-44a9-8041-c80915402e6c\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Storage/storageAccounts/ps801\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps801\"\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/ps5770/providers/Microsoft.Resources/deployments/ps9986/operations/889A6DC112B9C3CB\",\r\n \"operationId\": \"889A6DC112B9C3CB\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-08-11T18:14:30.500943Z\",\r\n \"duration\": \"PT4.157745S\",\r\n \"trackingId\": \"406ebcef-64c8-439b-9263-b295eea47d22\",\r\n \"serviceRequestId\": \"e3d8e8e7-6bc1-4e52-9693-585a797dda0d\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5770/providers/Microsoft.Storage/storageAccounts/ps5860\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps5860\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9661/deployments/ps9855/operations?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY2MS9kZXBsb3ltZW50cy9wczk4NTUvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5770/deployments/ps9986/operations?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTc3MC9kZXBsb3ltZW50cy9wczk5ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "11179f17-4074-47f4-884d-9a9c3a5ba945" + "d639dbc9-fa65-4562-8663-b634c5901a5e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.28207.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", + "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" ] }, @@ -2886,13 +2886,13 @@ "11918" ], "x-ms-request-id": [ - "6014d75f-b8c2-41f9-8f46-bd0a92094df5" + "cbcfae0c-92d6-432d-9710-ceac526fbdee" ], "x-ms-correlation-request-id": [ - "6014d75f-b8c2-41f9-8f46-bd0a92094df5" + "cbcfae0c-92d6-432d-9710-ceac526fbdee" ], "x-ms-routing-request-id": [ - "WESTUS2:20200724T233724Z:6014d75f-b8c2-41f9-8f46-bd0a92094df5" + "CENTRALUS:20200811T181449Z:cbcfae0c-92d6-432d-9710-ceac526fbdee" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2901,7 +2901,7 @@ "nosniff" ], "Date": [ - "Fri, 24 Jul 2020 23:37:23 GMT" + "Tue, 11 Aug 2020 18:14:48 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2916,25 +2916,25 @@ "0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Resources/deployments/ps9855/operations/327C8F30158C7963\",\r\n \"operationId\": \"327C8F30158C7963\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-07-24T23:37:17.4936364Z\",\r\n \"duration\": \"PT1.8350099S\",\r\n \"trackingId\": \"4d7646f9-1559-417d-9ba4-c23446e614dd\",\r\n \"serviceRequestId\": \"91cbd2a2-d685-44a9-8041-c80915402e6c\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Storage/storageAccounts/ps801\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps801\"\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/ps5770/providers/Microsoft.Resources/deployments/ps9986/operations/889A6DC112B9C3CB\",\r\n \"operationId\": \"889A6DC112B9C3CB\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-08-11T18:14:30.500943Z\",\r\n \"duration\": \"PT4.157745S\",\r\n \"trackingId\": \"406ebcef-64c8-439b-9263-b295eea47d22\",\r\n \"serviceRequestId\": \"e3d8e8e7-6bc1-4e52-9693-585a797dda0d\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5770/providers/Microsoft.Storage/storageAccounts/ps5860\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps5860\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9661/deployments/ps9855/operations?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY2MS9kZXBsb3ltZW50cy9wczk4NTUvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5770/deployments/ps9986/operations?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTc3MC9kZXBsb3ltZW50cy9wczk5ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1cc37435-f896-4fd1-bb90-7cfbea846992" + "ae23ddb7-1688-499b-947f-ab41cac6a89e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.28207.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", + "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" ] }, @@ -2949,13 +2949,13 @@ "11916" ], "x-ms-request-id": [ - "044c14dd-6ecc-4c7e-b903-7f50562fe267" + "bc92789a-06a6-4547-9b12-f9cf282450ca" ], "x-ms-correlation-request-id": [ - "044c14dd-6ecc-4c7e-b903-7f50562fe267" + "bc92789a-06a6-4547-9b12-f9cf282450ca" ], "x-ms-routing-request-id": [ - "WESTUS2:20200724T233725Z:044c14dd-6ecc-4c7e-b903-7f50562fe267" + "CENTRALUS:20200811T181449Z:bc92789a-06a6-4547-9b12-f9cf282450ca" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2964,7 +2964,7 @@ "nosniff" ], "Date": [ - "Fri, 24 Jul 2020 23:37:24 GMT" + "Tue, 11 Aug 2020 18:14:48 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2979,25 +2979,25 @@ "0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Resources/deployments/ps9855/operations/327C8F30158C7963\",\r\n \"operationId\": \"327C8F30158C7963\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-07-24T23:37:17.4936364Z\",\r\n \"duration\": \"PT1.8350099S\",\r\n \"trackingId\": \"4d7646f9-1559-417d-9ba4-c23446e614dd\",\r\n \"serviceRequestId\": \"91cbd2a2-d685-44a9-8041-c80915402e6c\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Storage/storageAccounts/ps801\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps801\"\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/ps5770/providers/Microsoft.Resources/deployments/ps9986/operations/889A6DC112B9C3CB\",\r\n \"operationId\": \"889A6DC112B9C3CB\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-08-11T18:14:30.500943Z\",\r\n \"duration\": \"PT4.157745S\",\r\n \"trackingId\": \"406ebcef-64c8-439b-9263-b295eea47d22\",\r\n \"serviceRequestId\": \"e3d8e8e7-6bc1-4e52-9693-585a797dda0d\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5770/providers/Microsoft.Storage/storageAccounts/ps5860\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps5860\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9661/deployments/ps9855/operations?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY2MS9kZXBsb3ltZW50cy9wczk4NTUvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5770/deployments/ps9986/operations?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTc3MC9kZXBsb3ltZW50cy9wczk5ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4e2fddbf-9b22-4325-8ee3-d14f5e67cd3d" + "da1d91d5-d87a-47e4-90cf-af0c02889067" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.28207.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", + "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" ] }, @@ -3012,13 +3012,13 @@ "11914" ], "x-ms-request-id": [ - "fe270eaa-9ada-416b-a102-a5ef97533518" + "b7397427-d26e-4aea-a685-47e7317a7df3" ], "x-ms-correlation-request-id": [ - "fe270eaa-9ada-416b-a102-a5ef97533518" + "b7397427-d26e-4aea-a685-47e7317a7df3" ], "x-ms-routing-request-id": [ - "WESTUS2:20200724T233725Z:fe270eaa-9ada-416b-a102-a5ef97533518" + "CENTRALUS:20200811T181450Z:b7397427-d26e-4aea-a685-47e7317a7df3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3027,7 +3027,7 @@ "nosniff" ], "Date": [ - "Fri, 24 Jul 2020 23:37:24 GMT" + "Tue, 11 Aug 2020 18:14:49 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3036,31 +3036,31 @@ "-1" ], "Content-Length": [ - "709" + "708" ], "Retry-After": [ "0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Resources/deployments/ps9855/operations/327C8F30158C7963\",\r\n \"operationId\": \"327C8F30158C7963\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-07-24T23:37:17.4936364Z\",\r\n \"duration\": \"PT1.8350099S\",\r\n \"trackingId\": \"4d7646f9-1559-417d-9ba4-c23446e614dd\",\r\n \"serviceRequestId\": \"91cbd2a2-d685-44a9-8041-c80915402e6c\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Storage/storageAccounts/ps801\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps801\"\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/ps5770/providers/Microsoft.Resources/deployments/ps9986/operations/889A6DC112B9C3CB\",\r\n \"operationId\": \"889A6DC112B9C3CB\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2020-08-11T18:14:50.4468266Z\",\r\n \"duration\": \"PT24.1036286S\",\r\n \"trackingId\": \"1942dbc7-6209-4a22-9c5a-e2432d2f0762\",\r\n \"serviceRequestId\": \"e3d8e8e7-6bc1-4e52-9693-585a797dda0d\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5770/providers/Microsoft.Storage/storageAccounts/ps5860\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps5860\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9661/deployments/ps9855/operations?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY2MS9kZXBsb3ltZW50cy9wczk4NTUvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5770/deployments/ps9986/operations?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTc3MC9kZXBsb3ltZW50cy9wczk5ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "88ba4779-230b-4d71-914a-525772d95e7a" + "ae1fa959-9201-4df6-b8b8-3c01f8b0d416" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.28207.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", + "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" ] }, @@ -3075,13 +3075,13 @@ "11912" ], "x-ms-request-id": [ - "77de8098-a9f7-4855-b361-571123cc834c" + "eb170510-e303-43e9-86d7-788bf3e77a5e" ], "x-ms-correlation-request-id": [ - "77de8098-a9f7-4855-b361-571123cc834c" + "eb170510-e303-43e9-86d7-788bf3e77a5e" ], "x-ms-routing-request-id": [ - "WESTUS2:20200724T233725Z:77de8098-a9f7-4855-b361-571123cc834c" + "CENTRALUS:20200811T181451Z:eb170510-e303-43e9-86d7-788bf3e77a5e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3090,7 +3090,7 @@ "nosniff" ], "Date": [ - "Fri, 24 Jul 2020 23:37:24 GMT" + "Tue, 11 Aug 2020 18:14:50 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3099,31 +3099,31 @@ "-1" ], "Content-Length": [ - "709" + "1808" ], "Retry-After": [ "0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Resources/deployments/ps9855/operations/327C8F30158C7963\",\r\n \"operationId\": \"327C8F30158C7963\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-07-24T23:37:17.4936364Z\",\r\n \"duration\": \"PT1.8350099S\",\r\n \"trackingId\": \"4d7646f9-1559-417d-9ba4-c23446e614dd\",\r\n \"serviceRequestId\": \"91cbd2a2-d685-44a9-8041-c80915402e6c\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Storage/storageAccounts/ps801\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps801\"\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/ps5770/providers/Microsoft.Resources/deployments/ps9986/operations/452054A5644B07E4\",\r\n \"operationId\": \"452054A5644B07E4\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Read\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2020-08-11T18:14:50.6860687Z\",\r\n \"duration\": \"PT0.1915669S\",\r\n \"trackingId\": \"1b314327-d73e-4198-b6c7-b74edfe7121f\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5770/providers/Microsoft.Storage/storageAccounts/ps5860\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps5860\",\r\n \"apiVersion\": \"2019-06-01\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5770/providers/Microsoft.Resources/deployments/ps9986/operations/889A6DC112B9C3CB\",\r\n \"operationId\": \"889A6DC112B9C3CB\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2020-08-11T18:14:50.4468266Z\",\r\n \"duration\": \"PT24.1036286S\",\r\n \"trackingId\": \"1942dbc7-6209-4a22-9c5a-e2432d2f0762\",\r\n \"serviceRequestId\": \"e3d8e8e7-6bc1-4e52-9693-585a797dda0d\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5770/providers/Microsoft.Storage/storageAccounts/ps5860\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps5860\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5770/providers/Microsoft.Resources/deployments/ps9986/operations/08586044372217355991\",\r\n \"operationId\": \"08586044372217355991\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"EvaluateDeploymentOutput\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2020-08-11T18:14:50.9689903Z\",\r\n \"duration\": \"PT0.0967415S\",\r\n \"trackingId\": \"487ec4ec-6ef1-45b4-895a-ba2fff1fef61\",\r\n \"statusCode\": \"OK\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9661/deployments/ps9855/operations?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY2MS9kZXBsb3ltZW50cy9wczk4NTUvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5770/deployments/ps9986/operations?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTc3MC9kZXBsb3ltZW50cy9wczk5ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5e04432d-778c-44fa-854f-babd7c33f940" + "d53e45b2-ff51-46a8-a39c-7b3c89c61072" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.28207.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", + "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" ] }, @@ -3135,16 +3135,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11910" + "11909" ], "x-ms-request-id": [ - "f3e01215-041e-4c6e-8d53-910c52b1b989" + "49e03168-33b7-40cf-ad4f-c4bb41e33686" ], "x-ms-correlation-request-id": [ - "f3e01215-041e-4c6e-8d53-910c52b1b989" + "49e03168-33b7-40cf-ad4f-c4bb41e33686" ], "x-ms-routing-request-id": [ - "WESTUS2:20200724T233725Z:f3e01215-041e-4c6e-8d53-910c52b1b989" + "CENTRALUS:20200811T181453Z:49e03168-33b7-40cf-ad4f-c4bb41e33686" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3153,7 +3153,7 @@ "nosniff" ], "Date": [ - "Fri, 24 Jul 2020 23:37:24 GMT" + "Tue, 11 Aug 2020 18:14:52 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3162,31 +3162,31 @@ "-1" ], "Content-Length": [ - "709" + "1808" ], "Retry-After": [ "0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Resources/deployments/ps9855/operations/327C8F30158C7963\",\r\n \"operationId\": \"327C8F30158C7963\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-07-24T23:37:17.4936364Z\",\r\n \"duration\": \"PT1.8350099S\",\r\n \"trackingId\": \"4d7646f9-1559-417d-9ba4-c23446e614dd\",\r\n \"serviceRequestId\": \"91cbd2a2-d685-44a9-8041-c80915402e6c\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Storage/storageAccounts/ps801\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps801\"\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/ps5770/providers/Microsoft.Resources/deployments/ps9986/operations/452054A5644B07E4\",\r\n \"operationId\": \"452054A5644B07E4\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Read\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2020-08-11T18:14:50.6860687Z\",\r\n \"duration\": \"PT0.1915669S\",\r\n \"trackingId\": \"1b314327-d73e-4198-b6c7-b74edfe7121f\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5770/providers/Microsoft.Storage/storageAccounts/ps5860\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps5860\",\r\n \"apiVersion\": \"2019-06-01\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5770/providers/Microsoft.Resources/deployments/ps9986/operations/889A6DC112B9C3CB\",\r\n \"operationId\": \"889A6DC112B9C3CB\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2020-08-11T18:14:50.4468266Z\",\r\n \"duration\": \"PT24.1036286S\",\r\n \"trackingId\": \"1942dbc7-6209-4a22-9c5a-e2432d2f0762\",\r\n \"serviceRequestId\": \"e3d8e8e7-6bc1-4e52-9693-585a797dda0d\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5770/providers/Microsoft.Storage/storageAccounts/ps5860\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps5860\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5770/providers/Microsoft.Resources/deployments/ps9986/operations/08586044372217355991\",\r\n \"operationId\": \"08586044372217355991\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"EvaluateDeploymentOutput\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2020-08-11T18:14:50.9689903Z\",\r\n \"duration\": \"PT0.0967415S\",\r\n \"trackingId\": \"487ec4ec-6ef1-45b4-895a-ba2fff1fef61\",\r\n \"statusCode\": \"OK\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9661/deployments/ps9855/operations?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY2MS9kZXBsb3ltZW50cy9wczk4NTUvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5770/providers/Microsoft.Resources/deployments/ps9986?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTc3MC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk5ODY/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0d0a2aa5-b852-485c-93e4-82fa1c6e84da" + "0d066b18-207a-4c6a-8136-d18cfb56e188" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.28207.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", + "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" ] }, @@ -3197,17 +3197,20 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11908" + "11997" ], "x-ms-request-id": [ - "7454bcef-4ee9-40c6-b825-aa623340077d" + "e237c92d-f24b-402c-b52a-11bfdae0e405" ], "x-ms-correlation-request-id": [ - "7454bcef-4ee9-40c6-b825-aa623340077d" + "e237c92d-f24b-402c-b52a-11bfdae0e405" ], "x-ms-routing-request-id": [ - "WESTUS2:20200724T233726Z:7454bcef-4ee9-40c6-b825-aa623340077d" + "CENTRALUS:20200811T181425Z:e237c92d-f24b-402c-b52a-11bfdae0e405" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3216,7 +3219,7 @@ "nosniff" ], "Date": [ - "Fri, 24 Jul 2020 23:37:25 GMT" + "Tue, 11 Aug 2020 18:14:24 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3225,31 +3228,28 @@ "-1" ], "Content-Length": [ - "709" - ], - "Retry-After": [ - "0" + "780" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Resources/deployments/ps9855/operations/327C8F30158C7963\",\r\n \"operationId\": \"327C8F30158C7963\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-07-24T23:37:17.4936364Z\",\r\n \"duration\": \"PT1.8350099S\",\r\n \"trackingId\": \"4d7646f9-1559-417d-9ba4-c23446e614dd\",\r\n \"serviceRequestId\": \"91cbd2a2-d685-44a9-8041-c80915402e6c\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Storage/storageAccounts/ps801\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps801\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5770/providers/Microsoft.Resources/deployments/ps9986\",\r\n \"name\": \"ps9986\",\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\": \"ps5860\"\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-08-11T18:14:24.2957553Z\",\r\n \"duration\": \"PT0.5537437S\",\r\n \"correlationId\": \"57b8974f-8450-4a6b-97a4-1e8cd8fc16ad\",\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/ps9661/deployments/ps9855/operations?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY2MS9kZXBsb3ltZW50cy9wczk4NTUvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5770/providers/Microsoft.Resources/deployments/ps9986?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTc3MC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk5ODY/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8c1aea8e-2b78-43ab-b6ea-68241cff07a6" + "cdad7ac2-4c42-4f51-a195-59543a46b54f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.28207.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", + "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" ] }, @@ -3260,17 +3260,20 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11906" + "11995" ], "x-ms-request-id": [ - "2da79580-a54f-41ba-b16a-37130934faa4" + "50fe4150-daa9-4f6e-b3d6-1e1d32880f9f" ], "x-ms-correlation-request-id": [ - "2da79580-a54f-41ba-b16a-37130934faa4" + "50fe4150-daa9-4f6e-b3d6-1e1d32880f9f" ], "x-ms-routing-request-id": [ - "WESTUS2:20200724T233726Z:2da79580-a54f-41ba-b16a-37130934faa4" + "CENTRALUS:20200811T181426Z:50fe4150-daa9-4f6e-b3d6-1e1d32880f9f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3279,7 +3282,7 @@ "nosniff" ], "Date": [ - "Fri, 24 Jul 2020 23:37:25 GMT" + "Tue, 11 Aug 2020 18:14:25 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3288,31 +3291,28 @@ "-1" ], "Content-Length": [ - "709" - ], - "Retry-After": [ - "0" + "779" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Resources/deployments/ps9855/operations/327C8F30158C7963\",\r\n \"operationId\": \"327C8F30158C7963\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-07-24T23:37:17.4936364Z\",\r\n \"duration\": \"PT1.8350099S\",\r\n \"trackingId\": \"4d7646f9-1559-417d-9ba4-c23446e614dd\",\r\n \"serviceRequestId\": \"91cbd2a2-d685-44a9-8041-c80915402e6c\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Storage/storageAccounts/ps801\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps801\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5770/providers/Microsoft.Resources/deployments/ps9986\",\r\n \"name\": \"ps9986\",\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\": \"ps5860\"\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-08-11T18:14:25.5316554Z\",\r\n \"duration\": \"PT1.7896438S\",\r\n \"correlationId\": \"57b8974f-8450-4a6b-97a4-1e8cd8fc16ad\",\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/ps9661/deployments/ps9855/operations?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY2MS9kZXBsb3ltZW50cy9wczk4NTUvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5770/providers/Microsoft.Resources/deployments/ps9986?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTc3MC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk5ODY/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f1f7fb1b-10cc-4cfe-a7d1-a0a932266a61" + "cd4ff0f1-8f1b-40aa-8637-aae4f7c0c218" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.28207.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", + "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" ] }, @@ -3323,17 +3323,20 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11904" + "11993" ], "x-ms-request-id": [ - "f70aebf1-30aa-493c-9662-978fd32c2fdc" + "048d5257-0a72-4b39-8488-f4d1440b935e" ], "x-ms-correlation-request-id": [ - "f70aebf1-30aa-493c-9662-978fd32c2fdc" + "048d5257-0a72-4b39-8488-f4d1440b935e" ], "x-ms-routing-request-id": [ - "WESTUS2:20200724T233726Z:f70aebf1-30aa-493c-9662-978fd32c2fdc" + "CENTRALUS:20200811T181426Z:048d5257-0a72-4b39-8488-f4d1440b935e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3342,7 +3345,7 @@ "nosniff" ], "Date": [ - "Fri, 24 Jul 2020 23:37:25 GMT" + "Tue, 11 Aug 2020 18:14:25 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3351,31 +3354,28 @@ "-1" ], "Content-Length": [ - "709" - ], - "Retry-After": [ - "0" + "779" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Resources/deployments/ps9855/operations/327C8F30158C7963\",\r\n \"operationId\": \"327C8F30158C7963\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-07-24T23:37:17.4936364Z\",\r\n \"duration\": \"PT1.8350099S\",\r\n \"trackingId\": \"4d7646f9-1559-417d-9ba4-c23446e614dd\",\r\n \"serviceRequestId\": \"91cbd2a2-d685-44a9-8041-c80915402e6c\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Storage/storageAccounts/ps801\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps801\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5770/providers/Microsoft.Resources/deployments/ps9986\",\r\n \"name\": \"ps9986\",\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\": \"ps5860\"\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-08-11T18:14:25.5316554Z\",\r\n \"duration\": \"PT1.7896438S\",\r\n \"correlationId\": \"57b8974f-8450-4a6b-97a4-1e8cd8fc16ad\",\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/ps9661/deployments/ps9855/operations?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY2MS9kZXBsb3ltZW50cy9wczk4NTUvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5770/providers/Microsoft.Resources/deployments/ps9986?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTc3MC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk5ODY/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a7d5f869-93ca-4bfa-9de8-2726ce6da866" + "d223e1d6-a9cb-48c7-b063-3229f23896d7" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.28207.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", + "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" ] }, @@ -3386,17 +3386,20 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11902" + "11991" ], "x-ms-request-id": [ - "a349c417-9b35-411b-aecb-9dd58a7e068c" + "e3e6c368-f462-4736-9f50-74b8004e889e" ], "x-ms-correlation-request-id": [ - "a349c417-9b35-411b-aecb-9dd58a7e068c" + "e3e6c368-f462-4736-9f50-74b8004e889e" ], "x-ms-routing-request-id": [ - "WESTUS2:20200724T233726Z:a349c417-9b35-411b-aecb-9dd58a7e068c" + "CENTRALUS:20200811T181427Z:e3e6c368-f462-4736-9f50-74b8004e889e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3405,7 +3408,7 @@ "nosniff" ], "Date": [ - "Fri, 24 Jul 2020 23:37:25 GMT" + "Tue, 11 Aug 2020 18:14:26 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3414,31 +3417,28 @@ "-1" ], "Content-Length": [ - "709" - ], - "Retry-After": [ - "0" + "779" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Resources/deployments/ps9855/operations/327C8F30158C7963\",\r\n \"operationId\": \"327C8F30158C7963\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-07-24T23:37:17.4936364Z\",\r\n \"duration\": \"PT1.8350099S\",\r\n \"trackingId\": \"4d7646f9-1559-417d-9ba4-c23446e614dd\",\r\n \"serviceRequestId\": \"91cbd2a2-d685-44a9-8041-c80915402e6c\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Storage/storageAccounts/ps801\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps801\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5770/providers/Microsoft.Resources/deployments/ps9986\",\r\n \"name\": \"ps9986\",\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\": \"ps5860\"\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-08-11T18:14:25.5316554Z\",\r\n \"duration\": \"PT1.7896438S\",\r\n \"correlationId\": \"57b8974f-8450-4a6b-97a4-1e8cd8fc16ad\",\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/ps9661/deployments/ps9855/operations?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY2MS9kZXBsb3ltZW50cy9wczk4NTUvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5770/providers/Microsoft.Resources/deployments/ps9986?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTc3MC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk5ODY/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cbdb4ce2-aab2-4bc3-9c6e-31b13f59cb67" + "20ee5820-860f-4e66-87ef-6f4da5e32ace" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.28207.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", + "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" ] }, @@ -3449,17 +3449,20 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11900" + "11989" ], "x-ms-request-id": [ - "5f83e8e4-dd8e-46f6-a0ca-9ba0b74b21ff" + "23f22f82-ebd6-4f13-9d6e-9b1ccfa61752" ], "x-ms-correlation-request-id": [ - "5f83e8e4-dd8e-46f6-a0ca-9ba0b74b21ff" + "23f22f82-ebd6-4f13-9d6e-9b1ccfa61752" ], "x-ms-routing-request-id": [ - "WESTUS2:20200724T233726Z:5f83e8e4-dd8e-46f6-a0ca-9ba0b74b21ff" + "CENTRALUS:20200811T181427Z:23f22f82-ebd6-4f13-9d6e-9b1ccfa61752" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3468,7 +3471,7 @@ "nosniff" ], "Date": [ - "Fri, 24 Jul 2020 23:37:25 GMT" + "Tue, 11 Aug 2020 18:14:27 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3477,31 +3480,28 @@ "-1" ], "Content-Length": [ - "709" - ], - "Retry-After": [ - "0" + "779" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Resources/deployments/ps9855/operations/327C8F30158C7963\",\r\n \"operationId\": \"327C8F30158C7963\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-07-24T23:37:17.4936364Z\",\r\n \"duration\": \"PT1.8350099S\",\r\n \"trackingId\": \"4d7646f9-1559-417d-9ba4-c23446e614dd\",\r\n \"serviceRequestId\": \"91cbd2a2-d685-44a9-8041-c80915402e6c\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Storage/storageAccounts/ps801\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps801\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5770/providers/Microsoft.Resources/deployments/ps9986\",\r\n \"name\": \"ps9986\",\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\": \"ps5860\"\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-08-11T18:14:25.5316554Z\",\r\n \"duration\": \"PT1.7896438S\",\r\n \"correlationId\": \"57b8974f-8450-4a6b-97a4-1e8cd8fc16ad\",\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/ps9661/deployments/ps9855/operations?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY2MS9kZXBsb3ltZW50cy9wczk4NTUvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5770/providers/Microsoft.Resources/deployments/ps9986?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTc3MC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk5ODY/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "98c2dec6-3280-4886-84c8-b4777167a554" + "571f661f-8eab-4746-b35b-d93ee20b7d4a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.28207.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", + "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" ] }, @@ -3512,17 +3512,20 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11898" + "11987" ], "x-ms-request-id": [ - "2f3fd678-f439-4802-a57e-3fa6db44d991" + "f59c9720-b272-4f77-aef8-71ca1e337fd1" ], "x-ms-correlation-request-id": [ - "2f3fd678-f439-4802-a57e-3fa6db44d991" + "f59c9720-b272-4f77-aef8-71ca1e337fd1" ], "x-ms-routing-request-id": [ - "WESTUS2:20200724T233727Z:2f3fd678-f439-4802-a57e-3fa6db44d991" + "CENTRALUS:20200811T181428Z:f59c9720-b272-4f77-aef8-71ca1e337fd1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3531,7 +3534,7 @@ "nosniff" ], "Date": [ - "Fri, 24 Jul 2020 23:37:26 GMT" + "Tue, 11 Aug 2020 18:14:27 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3540,31 +3543,28 @@ "-1" ], "Content-Length": [ - "709" - ], - "Retry-After": [ - "0" + "779" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Resources/deployments/ps9855/operations/327C8F30158C7963\",\r\n \"operationId\": \"327C8F30158C7963\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-07-24T23:37:17.4936364Z\",\r\n \"duration\": \"PT1.8350099S\",\r\n \"trackingId\": \"4d7646f9-1559-417d-9ba4-c23446e614dd\",\r\n \"serviceRequestId\": \"91cbd2a2-d685-44a9-8041-c80915402e6c\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Storage/storageAccounts/ps801\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps801\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5770/providers/Microsoft.Resources/deployments/ps9986\",\r\n \"name\": \"ps9986\",\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\": \"ps5860\"\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-08-11T18:14:25.5316554Z\",\r\n \"duration\": \"PT1.7896438S\",\r\n \"correlationId\": \"57b8974f-8450-4a6b-97a4-1e8cd8fc16ad\",\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/ps9661/deployments/ps9855/operations?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY2MS9kZXBsb3ltZW50cy9wczk4NTUvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5770/providers/Microsoft.Resources/deployments/ps9986?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTc3MC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk5ODY/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e21f6e7c-6def-4683-a263-4d8b0ecb5d71" + "b4106356-42d3-468b-a823-46ceed5b7198" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.28207.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", + "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" ] }, @@ -3575,17 +3575,20 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11896" + "11985" ], "x-ms-request-id": [ - "75670e17-35fe-467e-8127-9bcc4a32362c" + "01440af8-0fc6-4879-b318-0ab719b2dd25" ], "x-ms-correlation-request-id": [ - "75670e17-35fe-467e-8127-9bcc4a32362c" + "01440af8-0fc6-4879-b318-0ab719b2dd25" ], "x-ms-routing-request-id": [ - "WESTUS2:20200724T233727Z:75670e17-35fe-467e-8127-9bcc4a32362c" + "CENTRALUS:20200811T181429Z:01440af8-0fc6-4879-b318-0ab719b2dd25" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3594,7 +3597,7 @@ "nosniff" ], "Date": [ - "Fri, 24 Jul 2020 23:37:26 GMT" + "Tue, 11 Aug 2020 18:14:28 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3603,31 +3606,28 @@ "-1" ], "Content-Length": [ - "709" - ], - "Retry-After": [ - "0" + "779" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Resources/deployments/ps9855/operations/327C8F30158C7963\",\r\n \"operationId\": \"327C8F30158C7963\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-07-24T23:37:17.4936364Z\",\r\n \"duration\": \"PT1.8350099S\",\r\n \"trackingId\": \"4d7646f9-1559-417d-9ba4-c23446e614dd\",\r\n \"serviceRequestId\": \"91cbd2a2-d685-44a9-8041-c80915402e6c\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Storage/storageAccounts/ps801\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps801\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5770/providers/Microsoft.Resources/deployments/ps9986\",\r\n \"name\": \"ps9986\",\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\": \"ps5860\"\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-08-11T18:14:25.5316554Z\",\r\n \"duration\": \"PT1.7896438S\",\r\n \"correlationId\": \"57b8974f-8450-4a6b-97a4-1e8cd8fc16ad\",\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/ps9661/deployments/ps9855/operations?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY2MS9kZXBsb3ltZW50cy9wczk4NTUvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5770/providers/Microsoft.Resources/deployments/ps9986?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTc3MC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk5ODY/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6221b577-feb8-43c0-ac3e-dfcad27adb3c" + "c24b902e-6da1-4cf4-9bcb-6293fa29a82d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.28207.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", + "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" ] }, @@ -3638,17 +3638,20 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11894" + "11983" ], "x-ms-request-id": [ - "11519c7d-da55-4333-99ac-88fe2b00df0a" + "0fd24796-7048-40d7-94e4-dd8b8b37b3d7" ], "x-ms-correlation-request-id": [ - "11519c7d-da55-4333-99ac-88fe2b00df0a" + "0fd24796-7048-40d7-94e4-dd8b8b37b3d7" ], "x-ms-routing-request-id": [ - "WESTUS2:20200724T233727Z:11519c7d-da55-4333-99ac-88fe2b00df0a" + "CENTRALUS:20200811T181429Z:0fd24796-7048-40d7-94e4-dd8b8b37b3d7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3657,7 +3660,7 @@ "nosniff" ], "Date": [ - "Fri, 24 Jul 2020 23:37:26 GMT" + "Tue, 11 Aug 2020 18:14:29 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3666,31 +3669,28 @@ "-1" ], "Content-Length": [ - "709" - ], - "Retry-After": [ - "0" + "779" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Resources/deployments/ps9855/operations/327C8F30158C7963\",\r\n \"operationId\": \"327C8F30158C7963\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-07-24T23:37:17.4936364Z\",\r\n \"duration\": \"PT1.8350099S\",\r\n \"trackingId\": \"4d7646f9-1559-417d-9ba4-c23446e614dd\",\r\n \"serviceRequestId\": \"91cbd2a2-d685-44a9-8041-c80915402e6c\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Storage/storageAccounts/ps801\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps801\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5770/providers/Microsoft.Resources/deployments/ps9986\",\r\n \"name\": \"ps9986\",\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\": \"ps5860\"\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-08-11T18:14:25.5316554Z\",\r\n \"duration\": \"PT1.7896438S\",\r\n \"correlationId\": \"57b8974f-8450-4a6b-97a4-1e8cd8fc16ad\",\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/ps9661/deployments/ps9855/operations?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY2MS9kZXBsb3ltZW50cy9wczk4NTUvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5770/providers/Microsoft.Resources/deployments/ps9986?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTc3MC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk5ODY/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "44289114-1b7e-4f85-bf42-84bdd38f8c56" + "cd336a8c-911f-4224-81e8-4cdd9f07926e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.28207.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", + "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" ] }, @@ -3701,17 +3701,20 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11892" + "11981" ], "x-ms-request-id": [ - "5d24c9a3-88c7-4b51-a22f-583cec75c2d9" + "1ef2f13d-ea55-47e6-b340-6a106068cc54" ], "x-ms-correlation-request-id": [ - "5d24c9a3-88c7-4b51-a22f-583cec75c2d9" + "1ef2f13d-ea55-47e6-b340-6a106068cc54" ], "x-ms-routing-request-id": [ - "WESTUS2:20200724T233727Z:5d24c9a3-88c7-4b51-a22f-583cec75c2d9" + "CENTRALUS:20200811T181430Z:1ef2f13d-ea55-47e6-b340-6a106068cc54" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3720,7 +3723,7 @@ "nosniff" ], "Date": [ - "Fri, 24 Jul 2020 23:37:26 GMT" + "Tue, 11 Aug 2020 18:14:29 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3729,31 +3732,28 @@ "-1" ], "Content-Length": [ - "709" - ], - "Retry-After": [ - "0" + "779" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Resources/deployments/ps9855/operations/327C8F30158C7963\",\r\n \"operationId\": \"327C8F30158C7963\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-07-24T23:37:17.4936364Z\",\r\n \"duration\": \"PT1.8350099S\",\r\n \"trackingId\": \"4d7646f9-1559-417d-9ba4-c23446e614dd\",\r\n \"serviceRequestId\": \"91cbd2a2-d685-44a9-8041-c80915402e6c\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Storage/storageAccounts/ps801\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps801\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5770/providers/Microsoft.Resources/deployments/ps9986\",\r\n \"name\": \"ps9986\",\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\": \"ps5860\"\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-08-11T18:14:30.0245424Z\",\r\n \"duration\": \"PT6.2825308S\",\r\n \"correlationId\": \"57b8974f-8450-4a6b-97a4-1e8cd8fc16ad\",\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/ps9661/deployments/ps9855/operations?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY2MS9kZXBsb3ltZW50cy9wczk4NTUvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5770/providers/Microsoft.Resources/deployments/ps9986?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTc3MC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk5ODY/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f68d23e1-e301-40a3-9ee6-999271bfa7ab" + "b6637c16-fa4e-4a17-aa6b-1a6f7cde2ef5" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.28207.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", + "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" ] }, @@ -3764,17 +3764,20 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11890" + "11979" ], "x-ms-request-id": [ - "643ddda7-5f4f-4af6-91cd-9ebf0053d532" + "126ae854-20b7-43fc-b316-56a027562a45" ], "x-ms-correlation-request-id": [ - "643ddda7-5f4f-4af6-91cd-9ebf0053d532" + "126ae854-20b7-43fc-b316-56a027562a45" ], "x-ms-routing-request-id": [ - "WESTUS2:20200724T233727Z:643ddda7-5f4f-4af6-91cd-9ebf0053d532" + "CENTRALUS:20200811T181431Z:126ae854-20b7-43fc-b316-56a027562a45" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3783,7 +3786,7 @@ "nosniff" ], "Date": [ - "Fri, 24 Jul 2020 23:37:26 GMT" + "Tue, 11 Aug 2020 18:14:30 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3792,31 +3795,28 @@ "-1" ], "Content-Length": [ - "709" - ], - "Retry-After": [ - "0" + "779" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Resources/deployments/ps9855/operations/327C8F30158C7963\",\r\n \"operationId\": \"327C8F30158C7963\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-07-24T23:37:17.4936364Z\",\r\n \"duration\": \"PT1.8350099S\",\r\n \"trackingId\": \"4d7646f9-1559-417d-9ba4-c23446e614dd\",\r\n \"serviceRequestId\": \"91cbd2a2-d685-44a9-8041-c80915402e6c\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Storage/storageAccounts/ps801\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps801\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5770/providers/Microsoft.Resources/deployments/ps9986\",\r\n \"name\": \"ps9986\",\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\": \"ps5860\"\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-08-11T18:14:30.0245424Z\",\r\n \"duration\": \"PT6.2825308S\",\r\n \"correlationId\": \"57b8974f-8450-4a6b-97a4-1e8cd8fc16ad\",\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/ps9661/deployments/ps9855/operations?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY2MS9kZXBsb3ltZW50cy9wczk4NTUvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5770/providers/Microsoft.Resources/deployments/ps9986?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTc3MC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk5ODY/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "000d45c3-0664-48a7-91c7-d317a2a88c06" + "3cbf5b3d-9ba9-47c4-944d-ea8e7e7a51a6" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.28207.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", + "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" ] }, @@ -3827,17 +3827,20 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11888" + "11977" ], "x-ms-request-id": [ - "a76e2c6f-1e90-41c5-8793-29b1e6cca96e" + "97ab3e17-4d7c-48e9-9198-8936ed838530" ], "x-ms-correlation-request-id": [ - "a76e2c6f-1e90-41c5-8793-29b1e6cca96e" + "97ab3e17-4d7c-48e9-9198-8936ed838530" ], "x-ms-routing-request-id": [ - "WESTUS2:20200724T233728Z:a76e2c6f-1e90-41c5-8793-29b1e6cca96e" + "CENTRALUS:20200811T181432Z:97ab3e17-4d7c-48e9-9198-8936ed838530" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3846,7 +3849,7 @@ "nosniff" ], "Date": [ - "Fri, 24 Jul 2020 23:37:28 GMT" + "Tue, 11 Aug 2020 18:14:31 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3855,31 +3858,28 @@ "-1" ], "Content-Length": [ - "709" - ], - "Retry-After": [ - "0" + "779" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Resources/deployments/ps9855/operations/327C8F30158C7963\",\r\n \"operationId\": \"327C8F30158C7963\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-07-24T23:37:17.4936364Z\",\r\n \"duration\": \"PT1.8350099S\",\r\n \"trackingId\": \"4d7646f9-1559-417d-9ba4-c23446e614dd\",\r\n \"serviceRequestId\": \"91cbd2a2-d685-44a9-8041-c80915402e6c\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Storage/storageAccounts/ps801\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps801\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5770/providers/Microsoft.Resources/deployments/ps9986\",\r\n \"name\": \"ps9986\",\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\": \"ps5860\"\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-08-11T18:14:30.0245424Z\",\r\n \"duration\": \"PT6.2825308S\",\r\n \"correlationId\": \"57b8974f-8450-4a6b-97a4-1e8cd8fc16ad\",\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/ps9661/deployments/ps9855/operations?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY2MS9kZXBsb3ltZW50cy9wczk4NTUvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5770/providers/Microsoft.Resources/deployments/ps9986?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTc3MC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk5ODY/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "61e0d6c9-ae83-418d-ad5c-bccfcecce22e" + "60a4ff3c-9171-458c-a6ab-416586268576" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.28207.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", + "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" ] }, @@ -3890,17 +3890,20 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11886" + "11975" ], "x-ms-request-id": [ - "6f35626b-b8f7-46a2-a060-2a2ec8505308" + "2c594003-f529-4c42-b9af-d1d50a01bdee" ], "x-ms-correlation-request-id": [ - "6f35626b-b8f7-46a2-a060-2a2ec8505308" + "2c594003-f529-4c42-b9af-d1d50a01bdee" ], "x-ms-routing-request-id": [ - "WESTUS2:20200724T233728Z:6f35626b-b8f7-46a2-a060-2a2ec8505308" + "CENTRALUS:20200811T181432Z:2c594003-f529-4c42-b9af-d1d50a01bdee" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3909,7 +3912,7 @@ "nosniff" ], "Date": [ - "Fri, 24 Jul 2020 23:37:28 GMT" + "Tue, 11 Aug 2020 18:14:32 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3918,31 +3921,28 @@ "-1" ], "Content-Length": [ - "709" - ], - "Retry-After": [ - "0" + "779" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Resources/deployments/ps9855/operations/327C8F30158C7963\",\r\n \"operationId\": \"327C8F30158C7963\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-07-24T23:37:17.4936364Z\",\r\n \"duration\": \"PT1.8350099S\",\r\n \"trackingId\": \"4d7646f9-1559-417d-9ba4-c23446e614dd\",\r\n \"serviceRequestId\": \"91cbd2a2-d685-44a9-8041-c80915402e6c\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Storage/storageAccounts/ps801\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps801\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5770/providers/Microsoft.Resources/deployments/ps9986\",\r\n \"name\": \"ps9986\",\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\": \"ps5860\"\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-08-11T18:14:30.0245424Z\",\r\n \"duration\": \"PT6.2825308S\",\r\n \"correlationId\": \"57b8974f-8450-4a6b-97a4-1e8cd8fc16ad\",\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/ps9661/deployments/ps9855/operations?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY2MS9kZXBsb3ltZW50cy9wczk4NTUvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5770/providers/Microsoft.Resources/deployments/ps9986?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTc3MC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk5ODY/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b8cd646c-32ea-4746-b507-8d9820bb826f" + "c3ee44f9-5686-4e70-912e-1383eac674c7" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.28207.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", + "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" ] }, @@ -3953,17 +3953,20 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11884" + "11973" ], "x-ms-request-id": [ - "c06898e0-e5e0-4391-a85a-ca120f9facfc" + "f6d30149-b4cd-40ac-b28e-95d2492fd94f" ], "x-ms-correlation-request-id": [ - "c06898e0-e5e0-4391-a85a-ca120f9facfc" + "f6d30149-b4cd-40ac-b28e-95d2492fd94f" ], "x-ms-routing-request-id": [ - "WESTUS2:20200724T233728Z:c06898e0-e5e0-4391-a85a-ca120f9facfc" + "CENTRALUS:20200811T181433Z:f6d30149-b4cd-40ac-b28e-95d2492fd94f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3972,7 +3975,7 @@ "nosniff" ], "Date": [ - "Fri, 24 Jul 2020 23:37:28 GMT" + "Tue, 11 Aug 2020 18:14:32 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3981,31 +3984,28 @@ "-1" ], "Content-Length": [ - "709" - ], - "Retry-After": [ - "0" + "779" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Resources/deployments/ps9855/operations/327C8F30158C7963\",\r\n \"operationId\": \"327C8F30158C7963\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-07-24T23:37:17.4936364Z\",\r\n \"duration\": \"PT1.8350099S\",\r\n \"trackingId\": \"4d7646f9-1559-417d-9ba4-c23446e614dd\",\r\n \"serviceRequestId\": \"91cbd2a2-d685-44a9-8041-c80915402e6c\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Storage/storageAccounts/ps801\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps801\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5770/providers/Microsoft.Resources/deployments/ps9986\",\r\n \"name\": \"ps9986\",\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\": \"ps5860\"\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-08-11T18:14:30.0245424Z\",\r\n \"duration\": \"PT6.2825308S\",\r\n \"correlationId\": \"57b8974f-8450-4a6b-97a4-1e8cd8fc16ad\",\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/ps9661/deployments/ps9855/operations?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY2MS9kZXBsb3ltZW50cy9wczk4NTUvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5770/providers/Microsoft.Resources/deployments/ps9986?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTc3MC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk5ODY/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "45b42b98-8a1e-4473-8aad-511cf2e9fd61" + "3973fdd2-fa6c-4177-b67b-5d6e1c4448f2" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.28207.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", + "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" ] }, @@ -4016,17 +4016,20 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11882" + "11971" ], "x-ms-request-id": [ - "a91d85a6-b431-4e28-9cfc-f3a53352b211" + "6960e140-0001-41a1-9c0d-fa87fa0eafaf" ], "x-ms-correlation-request-id": [ - "a91d85a6-b431-4e28-9cfc-f3a53352b211" + "6960e140-0001-41a1-9c0d-fa87fa0eafaf" ], "x-ms-routing-request-id": [ - "WESTUS2:20200724T233728Z:a91d85a6-b431-4e28-9cfc-f3a53352b211" + "CENTRALUS:20200811T181434Z:6960e140-0001-41a1-9c0d-fa87fa0eafaf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4035,7 +4038,7 @@ "nosniff" ], "Date": [ - "Fri, 24 Jul 2020 23:37:28 GMT" + "Tue, 11 Aug 2020 18:14:33 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4044,31 +4047,28 @@ "-1" ], "Content-Length": [ - "709" - ], - "Retry-After": [ - "0" + "779" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Resources/deployments/ps9855/operations/327C8F30158C7963\",\r\n \"operationId\": \"327C8F30158C7963\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-07-24T23:37:17.4936364Z\",\r\n \"duration\": \"PT1.8350099S\",\r\n \"trackingId\": \"4d7646f9-1559-417d-9ba4-c23446e614dd\",\r\n \"serviceRequestId\": \"91cbd2a2-d685-44a9-8041-c80915402e6c\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Storage/storageAccounts/ps801\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps801\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5770/providers/Microsoft.Resources/deployments/ps9986\",\r\n \"name\": \"ps9986\",\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\": \"ps5860\"\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-08-11T18:14:30.0245424Z\",\r\n \"duration\": \"PT6.2825308S\",\r\n \"correlationId\": \"57b8974f-8450-4a6b-97a4-1e8cd8fc16ad\",\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/ps9661/deployments/ps9855/operations?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY2MS9kZXBsb3ltZW50cy9wczk4NTUvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5770/providers/Microsoft.Resources/deployments/ps9986?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTc3MC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk5ODY/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "06f4c264-d320-4358-a5a3-a7ff756ec1db" + "f116f3cf-1bbf-42ee-a8f7-e3d352fbb77d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.28207.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", + "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" ] }, @@ -4079,17 +4079,20 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11880" + "11969" ], "x-ms-request-id": [ - "9cded794-6f6d-466a-a3d8-5e5c5bd34b9d" + "f2cf1ba7-cfaf-4754-96e2-2a94956da077" ], "x-ms-correlation-request-id": [ - "9cded794-6f6d-466a-a3d8-5e5c5bd34b9d" + "f2cf1ba7-cfaf-4754-96e2-2a94956da077" ], "x-ms-routing-request-id": [ - "WESTUS2:20200724T233729Z:9cded794-6f6d-466a-a3d8-5e5c5bd34b9d" + "CENTRALUS:20200811T181434Z:f2cf1ba7-cfaf-4754-96e2-2a94956da077" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4098,7 +4101,7 @@ "nosniff" ], "Date": [ - "Fri, 24 Jul 2020 23:37:29 GMT" + "Tue, 11 Aug 2020 18:14:34 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4107,31 +4110,28 @@ "-1" ], "Content-Length": [ - "709" - ], - "Retry-After": [ - "0" + "779" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Resources/deployments/ps9855/operations/327C8F30158C7963\",\r\n \"operationId\": \"327C8F30158C7963\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-07-24T23:37:17.4936364Z\",\r\n \"duration\": \"PT1.8350099S\",\r\n \"trackingId\": \"4d7646f9-1559-417d-9ba4-c23446e614dd\",\r\n \"serviceRequestId\": \"91cbd2a2-d685-44a9-8041-c80915402e6c\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Storage/storageAccounts/ps801\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps801\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5770/providers/Microsoft.Resources/deployments/ps9986\",\r\n \"name\": \"ps9986\",\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\": \"ps5860\"\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-08-11T18:14:30.0245424Z\",\r\n \"duration\": \"PT6.2825308S\",\r\n \"correlationId\": \"57b8974f-8450-4a6b-97a4-1e8cd8fc16ad\",\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/ps9661/deployments/ps9855/operations?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY2MS9kZXBsb3ltZW50cy9wczk4NTUvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5770/providers/Microsoft.Resources/deployments/ps9986?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTc3MC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk5ODY/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "09f96f6d-d3c8-4ad2-88f6-975653570015" + "33887565-9a07-4a4f-91b9-237ce955175a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.28207.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", + "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" ] }, @@ -4142,17 +4142,20 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11878" + "11967" ], "x-ms-request-id": [ - "146c3f6f-6e86-4e39-a1ad-334fc6470b47" + "ffa19bf7-4f0b-4dbc-8d95-96e46a57c9f5" ], "x-ms-correlation-request-id": [ - "146c3f6f-6e86-4e39-a1ad-334fc6470b47" + "ffa19bf7-4f0b-4dbc-8d95-96e46a57c9f5" ], "x-ms-routing-request-id": [ - "WESTUS2:20200724T233729Z:146c3f6f-6e86-4e39-a1ad-334fc6470b47" + "CENTRALUS:20200811T181435Z:ffa19bf7-4f0b-4dbc-8d95-96e46a57c9f5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4161,7 +4164,7 @@ "nosniff" ], "Date": [ - "Fri, 24 Jul 2020 23:37:29 GMT" + "Tue, 11 Aug 2020 18:14:34 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4170,31 +4173,28 @@ "-1" ], "Content-Length": [ - "709" - ], - "Retry-After": [ - "0" + "779" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Resources/deployments/ps9855/operations/327C8F30158C7963\",\r\n \"operationId\": \"327C8F30158C7963\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-07-24T23:37:17.4936364Z\",\r\n \"duration\": \"PT1.8350099S\",\r\n \"trackingId\": \"4d7646f9-1559-417d-9ba4-c23446e614dd\",\r\n \"serviceRequestId\": \"91cbd2a2-d685-44a9-8041-c80915402e6c\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Storage/storageAccounts/ps801\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps801\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5770/providers/Microsoft.Resources/deployments/ps9986\",\r\n \"name\": \"ps9986\",\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\": \"ps5860\"\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-08-11T18:14:30.0245424Z\",\r\n \"duration\": \"PT6.2825308S\",\r\n \"correlationId\": \"57b8974f-8450-4a6b-97a4-1e8cd8fc16ad\",\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/ps9661/deployments/ps9855/operations?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY2MS9kZXBsb3ltZW50cy9wczk4NTUvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5770/providers/Microsoft.Resources/deployments/ps9986?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTc3MC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk5ODY/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bb5d7751-dcfe-41a6-8e0d-c76308e0a552" + "60cc6747-2c7c-40a6-9a77-ada023780d26" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.28207.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", + "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" ] }, @@ -4205,17 +4205,20 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11876" + "11965" ], "x-ms-request-id": [ - "9ff2bec2-bcf0-42e8-bbba-ff3aa1c0adad" + "a8b74740-7f54-49c5-b029-0192c0a044f5" ], "x-ms-correlation-request-id": [ - "9ff2bec2-bcf0-42e8-bbba-ff3aa1c0adad" + "a8b74740-7f54-49c5-b029-0192c0a044f5" ], "x-ms-routing-request-id": [ - "WESTUS2:20200724T233729Z:9ff2bec2-bcf0-42e8-bbba-ff3aa1c0adad" + "CENTRALUS:20200811T181435Z:a8b74740-7f54-49c5-b029-0192c0a044f5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4224,7 +4227,7 @@ "nosniff" ], "Date": [ - "Fri, 24 Jul 2020 23:37:29 GMT" + "Tue, 11 Aug 2020 18:14:35 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4233,31 +4236,28 @@ "-1" ], "Content-Length": [ - "709" - ], - "Retry-After": [ - "0" + "779" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Resources/deployments/ps9855/operations/327C8F30158C7963\",\r\n \"operationId\": \"327C8F30158C7963\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-07-24T23:37:17.4936364Z\",\r\n \"duration\": \"PT1.8350099S\",\r\n \"trackingId\": \"4d7646f9-1559-417d-9ba4-c23446e614dd\",\r\n \"serviceRequestId\": \"91cbd2a2-d685-44a9-8041-c80915402e6c\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Storage/storageAccounts/ps801\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps801\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5770/providers/Microsoft.Resources/deployments/ps9986\",\r\n \"name\": \"ps9986\",\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\": \"ps5860\"\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-08-11T18:14:30.0245424Z\",\r\n \"duration\": \"PT6.2825308S\",\r\n \"correlationId\": \"57b8974f-8450-4a6b-97a4-1e8cd8fc16ad\",\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/ps9661/deployments/ps9855/operations?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY2MS9kZXBsb3ltZW50cy9wczk4NTUvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5770/providers/Microsoft.Resources/deployments/ps9986?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTc3MC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk5ODY/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "205ef05f-f564-4720-8590-8648309e09e2" + "46f577f9-e8fb-4f67-9b26-066ce97d32fa" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.28207.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", + "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" ] }, @@ -4268,17 +4268,20 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11874" + "11963" ], "x-ms-request-id": [ - "57810a4e-87cf-4f5a-93c5-d8c15a992cc4" + "706df011-1563-4e85-8003-fbb74ec2f7c5" ], "x-ms-correlation-request-id": [ - "57810a4e-87cf-4f5a-93c5-d8c15a992cc4" + "706df011-1563-4e85-8003-fbb74ec2f7c5" ], "x-ms-routing-request-id": [ - "WESTUS2:20200724T233729Z:57810a4e-87cf-4f5a-93c5-d8c15a992cc4" + "CENTRALUS:20200811T181436Z:706df011-1563-4e85-8003-fbb74ec2f7c5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4287,7 +4290,7 @@ "nosniff" ], "Date": [ - "Fri, 24 Jul 2020 23:37:29 GMT" + "Tue, 11 Aug 2020 18:14:35 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4296,31 +4299,28 @@ "-1" ], "Content-Length": [ - "709" - ], - "Retry-After": [ - "0" + "779" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Resources/deployments/ps9855/operations/327C8F30158C7963\",\r\n \"operationId\": \"327C8F30158C7963\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-07-24T23:37:17.4936364Z\",\r\n \"duration\": \"PT1.8350099S\",\r\n \"trackingId\": \"4d7646f9-1559-417d-9ba4-c23446e614dd\",\r\n \"serviceRequestId\": \"91cbd2a2-d685-44a9-8041-c80915402e6c\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Storage/storageAccounts/ps801\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps801\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5770/providers/Microsoft.Resources/deployments/ps9986\",\r\n \"name\": \"ps9986\",\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\": \"ps5860\"\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-08-11T18:14:30.0245424Z\",\r\n \"duration\": \"PT6.2825308S\",\r\n \"correlationId\": \"57b8974f-8450-4a6b-97a4-1e8cd8fc16ad\",\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/ps9661/deployments/ps9855/operations?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY2MS9kZXBsb3ltZW50cy9wczk4NTUvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5770/providers/Microsoft.Resources/deployments/ps9986?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTc3MC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk5ODY/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "df6389c7-8073-4321-8cf2-d06388f08138" + "cd7a40ff-031c-4296-9e9c-1798f798d003" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.28207.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", + "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" ] }, @@ -4331,17 +4331,20 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11872" + "11961" ], "x-ms-request-id": [ - "d6a2ea54-56f6-4d43-a122-af4df61ae3af" + "6f58fafc-4a4c-4abb-9820-413a7f0e90cd" ], "x-ms-correlation-request-id": [ - "d6a2ea54-56f6-4d43-a122-af4df61ae3af" + "6f58fafc-4a4c-4abb-9820-413a7f0e90cd" ], "x-ms-routing-request-id": [ - "WESTUS2:20200724T233729Z:d6a2ea54-56f6-4d43-a122-af4df61ae3af" + "CENTRALUS:20200811T181437Z:6f58fafc-4a4c-4abb-9820-413a7f0e90cd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4350,7 +4353,7 @@ "nosniff" ], "Date": [ - "Fri, 24 Jul 2020 23:37:29 GMT" + "Tue, 11 Aug 2020 18:14:36 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4359,31 +4362,28 @@ "-1" ], "Content-Length": [ - "709" - ], - "Retry-After": [ - "0" + "779" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Resources/deployments/ps9855/operations/327C8F30158C7963\",\r\n \"operationId\": \"327C8F30158C7963\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-07-24T23:37:17.4936364Z\",\r\n \"duration\": \"PT1.8350099S\",\r\n \"trackingId\": \"4d7646f9-1559-417d-9ba4-c23446e614dd\",\r\n \"serviceRequestId\": \"91cbd2a2-d685-44a9-8041-c80915402e6c\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Storage/storageAccounts/ps801\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps801\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5770/providers/Microsoft.Resources/deployments/ps9986\",\r\n \"name\": \"ps9986\",\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\": \"ps5860\"\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-08-11T18:14:30.0245424Z\",\r\n \"duration\": \"PT6.2825308S\",\r\n \"correlationId\": \"57b8974f-8450-4a6b-97a4-1e8cd8fc16ad\",\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/ps9661/deployments/ps9855/operations?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY2MS9kZXBsb3ltZW50cy9wczk4NTUvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5770/providers/Microsoft.Resources/deployments/ps9986?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTc3MC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk5ODY/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "40a9c138-3e31-45c3-899f-b077b9036102" + "015aad53-1416-4b30-a18d-19e6933b7082" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.28207.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", + "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" ] }, @@ -4394,17 +4394,20 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11870" + "11959" ], "x-ms-request-id": [ - "062abf31-ce50-499a-adbf-5f35d8a4f4f2" + "a35c80cd-9ef3-4297-baf1-4482c15fffcd" ], "x-ms-correlation-request-id": [ - "062abf31-ce50-499a-adbf-5f35d8a4f4f2" + "a35c80cd-9ef3-4297-baf1-4482c15fffcd" ], "x-ms-routing-request-id": [ - "WESTUS2:20200724T233730Z:062abf31-ce50-499a-adbf-5f35d8a4f4f2" + "CENTRALUS:20200811T181437Z:a35c80cd-9ef3-4297-baf1-4482c15fffcd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4413,7 +4416,7 @@ "nosniff" ], "Date": [ - "Fri, 24 Jul 2020 23:37:30 GMT" + "Tue, 11 Aug 2020 18:14:36 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4422,31 +4425,28 @@ "-1" ], "Content-Length": [ - "709" - ], - "Retry-After": [ - "0" + "779" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Resources/deployments/ps9855/operations/327C8F30158C7963\",\r\n \"operationId\": \"327C8F30158C7963\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-07-24T23:37:17.4936364Z\",\r\n \"duration\": \"PT1.8350099S\",\r\n \"trackingId\": \"4d7646f9-1559-417d-9ba4-c23446e614dd\",\r\n \"serviceRequestId\": \"91cbd2a2-d685-44a9-8041-c80915402e6c\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Storage/storageAccounts/ps801\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps801\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5770/providers/Microsoft.Resources/deployments/ps9986\",\r\n \"name\": \"ps9986\",\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\": \"ps5860\"\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-08-11T18:14:30.0245424Z\",\r\n \"duration\": \"PT6.2825308S\",\r\n \"correlationId\": \"57b8974f-8450-4a6b-97a4-1e8cd8fc16ad\",\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/ps9661/deployments/ps9855/operations?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY2MS9kZXBsb3ltZW50cy9wczk4NTUvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5770/providers/Microsoft.Resources/deployments/ps9986?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTc3MC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk5ODY/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "35bb2dfa-2440-40e4-b16d-5eb731c006b5" + "63519e38-8360-4110-b916-5ea6afa76ee7" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.28207.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", + "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" ] }, @@ -4457,17 +4457,20 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11868" + "11957" ], "x-ms-request-id": [ - "b7524e63-95e0-4c46-b886-25766373518e" + "d5fcd522-3a6b-4267-9c0e-680bb347c7f5" ], "x-ms-correlation-request-id": [ - "b7524e63-95e0-4c46-b886-25766373518e" + "d5fcd522-3a6b-4267-9c0e-680bb347c7f5" ], "x-ms-routing-request-id": [ - "WESTUS2:20200724T233730Z:b7524e63-95e0-4c46-b886-25766373518e" + "CENTRALUS:20200811T181438Z:d5fcd522-3a6b-4267-9c0e-680bb347c7f5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4476,7 +4479,7 @@ "nosniff" ], "Date": [ - "Fri, 24 Jul 2020 23:37:30 GMT" + "Tue, 11 Aug 2020 18:14:37 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4485,31 +4488,28 @@ "-1" ], "Content-Length": [ - "709" - ], - "Retry-After": [ - "0" + "779" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Resources/deployments/ps9855/operations/327C8F30158C7963\",\r\n \"operationId\": \"327C8F30158C7963\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-07-24T23:37:17.4936364Z\",\r\n \"duration\": \"PT1.8350099S\",\r\n \"trackingId\": \"4d7646f9-1559-417d-9ba4-c23446e614dd\",\r\n \"serviceRequestId\": \"91cbd2a2-d685-44a9-8041-c80915402e6c\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Storage/storageAccounts/ps801\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps801\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5770/providers/Microsoft.Resources/deployments/ps9986\",\r\n \"name\": \"ps9986\",\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\": \"ps5860\"\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-08-11T18:14:30.0245424Z\",\r\n \"duration\": \"PT6.2825308S\",\r\n \"correlationId\": \"57b8974f-8450-4a6b-97a4-1e8cd8fc16ad\",\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/ps9661/deployments/ps9855/operations?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY2MS9kZXBsb3ltZW50cy9wczk4NTUvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5770/providers/Microsoft.Resources/deployments/ps9986?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTc3MC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk5ODY/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a6551090-c577-4daf-8dc9-79e6ff904f1a" + "2a78eb47-77f2-4247-9834-e05df63a62e5" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.28207.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", + "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" ] }, @@ -4520,17 +4520,20 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11866" + "11955" ], "x-ms-request-id": [ - "53ebb11d-d1c6-40d3-bfc0-692209e2b964" + "64ab96a0-bb87-46ec-b9b4-bdb9d4e27e95" ], "x-ms-correlation-request-id": [ - "53ebb11d-d1c6-40d3-bfc0-692209e2b964" + "64ab96a0-bb87-46ec-b9b4-bdb9d4e27e95" ], "x-ms-routing-request-id": [ - "WESTUS2:20200724T233730Z:53ebb11d-d1c6-40d3-bfc0-692209e2b964" + "CENTRALUS:20200811T181438Z:64ab96a0-bb87-46ec-b9b4-bdb9d4e27e95" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4539,7 +4542,7 @@ "nosniff" ], "Date": [ - "Fri, 24 Jul 2020 23:37:30 GMT" + "Tue, 11 Aug 2020 18:14:37 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4548,31 +4551,28 @@ "-1" ], "Content-Length": [ - "709" - ], - "Retry-After": [ - "0" + "779" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Resources/deployments/ps9855/operations/327C8F30158C7963\",\r\n \"operationId\": \"327C8F30158C7963\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-07-24T23:37:17.4936364Z\",\r\n \"duration\": \"PT1.8350099S\",\r\n \"trackingId\": \"4d7646f9-1559-417d-9ba4-c23446e614dd\",\r\n \"serviceRequestId\": \"91cbd2a2-d685-44a9-8041-c80915402e6c\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Storage/storageAccounts/ps801\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps801\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5770/providers/Microsoft.Resources/deployments/ps9986\",\r\n \"name\": \"ps9986\",\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\": \"ps5860\"\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-08-11T18:14:30.0245424Z\",\r\n \"duration\": \"PT6.2825308S\",\r\n \"correlationId\": \"57b8974f-8450-4a6b-97a4-1e8cd8fc16ad\",\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/ps9661/deployments/ps9855/operations?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY2MS9kZXBsb3ltZW50cy9wczk4NTUvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5770/providers/Microsoft.Resources/deployments/ps9986?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTc3MC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk5ODY/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b3438374-6786-4dd3-b2e0-623cf7682018" + "4173fafb-7343-4f92-bc73-90d402d7d128" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.28207.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", + "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" ] }, @@ -4583,17 +4583,20 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11864" + "11953" ], "x-ms-request-id": [ - "6b2a5c79-84ac-483c-b3e7-eaae06c9f7a7" + "05ecb635-12f7-4ed5-940a-3e78efd2f985" ], "x-ms-correlation-request-id": [ - "6b2a5c79-84ac-483c-b3e7-eaae06c9f7a7" + "05ecb635-12f7-4ed5-940a-3e78efd2f985" ], "x-ms-routing-request-id": [ - "WESTUS2:20200724T233730Z:6b2a5c79-84ac-483c-b3e7-eaae06c9f7a7" + "CENTRALUS:20200811T181439Z:05ecb635-12f7-4ed5-940a-3e78efd2f985" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4602,7 +4605,7 @@ "nosniff" ], "Date": [ - "Fri, 24 Jul 2020 23:37:30 GMT" + "Tue, 11 Aug 2020 18:14:38 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4611,31 +4614,28 @@ "-1" ], "Content-Length": [ - "709" - ], - "Retry-After": [ - "0" + "779" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Resources/deployments/ps9855/operations/327C8F30158C7963\",\r\n \"operationId\": \"327C8F30158C7963\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-07-24T23:37:17.4936364Z\",\r\n \"duration\": \"PT1.8350099S\",\r\n \"trackingId\": \"4d7646f9-1559-417d-9ba4-c23446e614dd\",\r\n \"serviceRequestId\": \"91cbd2a2-d685-44a9-8041-c80915402e6c\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Storage/storageAccounts/ps801\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps801\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5770/providers/Microsoft.Resources/deployments/ps9986\",\r\n \"name\": \"ps9986\",\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\": \"ps5860\"\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-08-11T18:14:30.0245424Z\",\r\n \"duration\": \"PT6.2825308S\",\r\n \"correlationId\": \"57b8974f-8450-4a6b-97a4-1e8cd8fc16ad\",\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/ps9661/deployments/ps9855/operations?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY2MS9kZXBsb3ltZW50cy9wczk4NTUvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5770/providers/Microsoft.Resources/deployments/ps9986?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTc3MC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk5ODY/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7362e59c-3667-4628-946f-b71e0b3c7e5b" + "c714bcf2-03d8-4ad5-a9f4-8eb81be2958d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.28207.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", + "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" ] }, @@ -4646,17 +4646,20 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11862" + "11951" ], "x-ms-request-id": [ - "16173614-7b5f-4183-bd32-0074b6cb7163" + "f727bb9e-1868-47b3-9631-5f24c7566ccb" ], "x-ms-correlation-request-id": [ - "16173614-7b5f-4183-bd32-0074b6cb7163" + "f727bb9e-1868-47b3-9631-5f24c7566ccb" ], "x-ms-routing-request-id": [ - "WESTUS2:20200724T233731Z:16173614-7b5f-4183-bd32-0074b6cb7163" + "CENTRALUS:20200811T181439Z:f727bb9e-1868-47b3-9631-5f24c7566ccb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4665,7 +4668,7 @@ "nosniff" ], "Date": [ - "Fri, 24 Jul 2020 23:37:30 GMT" + "Tue, 11 Aug 2020 18:14:38 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4674,31 +4677,28 @@ "-1" ], "Content-Length": [ - "709" - ], - "Retry-After": [ - "0" + "779" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Resources/deployments/ps9855/operations/327C8F30158C7963\",\r\n \"operationId\": \"327C8F30158C7963\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-07-24T23:37:17.4936364Z\",\r\n \"duration\": \"PT1.8350099S\",\r\n \"trackingId\": \"4d7646f9-1559-417d-9ba4-c23446e614dd\",\r\n \"serviceRequestId\": \"91cbd2a2-d685-44a9-8041-c80915402e6c\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Storage/storageAccounts/ps801\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps801\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5770/providers/Microsoft.Resources/deployments/ps9986\",\r\n \"name\": \"ps9986\",\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\": \"ps5860\"\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-08-11T18:14:30.0245424Z\",\r\n \"duration\": \"PT6.2825308S\",\r\n \"correlationId\": \"57b8974f-8450-4a6b-97a4-1e8cd8fc16ad\",\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/ps9661/deployments/ps9855/operations?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY2MS9kZXBsb3ltZW50cy9wczk4NTUvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5770/providers/Microsoft.Resources/deployments/ps9986?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTc3MC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk5ODY/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c5b88005-641a-4030-9f25-b0c9adf09054" + "00e6c675-7565-49b6-bc03-2ff5b9b58d01" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.28207.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", + "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" ] }, @@ -4709,17 +4709,20 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11860" + "11949" ], "x-ms-request-id": [ - "c9f6e072-dc86-4a80-b0d5-d53700ef53e3" + "8a7b99c7-687c-4364-a5b0-1f44dda17cc3" ], "x-ms-correlation-request-id": [ - "c9f6e072-dc86-4a80-b0d5-d53700ef53e3" + "8a7b99c7-687c-4364-a5b0-1f44dda17cc3" ], "x-ms-routing-request-id": [ - "WESTUS2:20200724T233731Z:c9f6e072-dc86-4a80-b0d5-d53700ef53e3" + "CENTRALUS:20200811T181440Z:8a7b99c7-687c-4364-a5b0-1f44dda17cc3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4728,7 +4731,7 @@ "nosniff" ], "Date": [ - "Fri, 24 Jul 2020 23:37:31 GMT" + "Tue, 11 Aug 2020 18:14:39 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4737,31 +4740,28 @@ "-1" ], "Content-Length": [ - "709" - ], - "Retry-After": [ - "0" + "779" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Resources/deployments/ps9855/operations/327C8F30158C7963\",\r\n \"operationId\": \"327C8F30158C7963\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-07-24T23:37:17.4936364Z\",\r\n \"duration\": \"PT1.8350099S\",\r\n \"trackingId\": \"4d7646f9-1559-417d-9ba4-c23446e614dd\",\r\n \"serviceRequestId\": \"91cbd2a2-d685-44a9-8041-c80915402e6c\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Storage/storageAccounts/ps801\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps801\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5770/providers/Microsoft.Resources/deployments/ps9986\",\r\n \"name\": \"ps9986\",\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\": \"ps5860\"\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-08-11T18:14:30.0245424Z\",\r\n \"duration\": \"PT6.2825308S\",\r\n \"correlationId\": \"57b8974f-8450-4a6b-97a4-1e8cd8fc16ad\",\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/ps9661/deployments/ps9855/operations?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY2MS9kZXBsb3ltZW50cy9wczk4NTUvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5770/providers/Microsoft.Resources/deployments/ps9986?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTc3MC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk5ODY/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cac371f9-1c3b-4cf6-911f-0f14b326f44d" + "513dd651-6bbf-4210-92de-7cf5d5d6e25b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.28207.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", + "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" ] }, @@ -4772,17 +4772,20 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11858" + "11947" ], "x-ms-request-id": [ - "9eeea9bf-bbd2-4a67-a40c-c5a67a195c48" + "07bdc6ca-4566-466f-bc0e-39781beea973" ], "x-ms-correlation-request-id": [ - "9eeea9bf-bbd2-4a67-a40c-c5a67a195c48" + "07bdc6ca-4566-466f-bc0e-39781beea973" ], "x-ms-routing-request-id": [ - "WESTUS2:20200724T233731Z:9eeea9bf-bbd2-4a67-a40c-c5a67a195c48" + "CENTRALUS:20200811T181440Z:07bdc6ca-4566-466f-bc0e-39781beea973" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4791,7 +4794,7 @@ "nosniff" ], "Date": [ - "Fri, 24 Jul 2020 23:37:31 GMT" + "Tue, 11 Aug 2020 18:14:39 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4800,31 +4803,28 @@ "-1" ], "Content-Length": [ - "709" - ], - "Retry-After": [ - "0" + "779" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Resources/deployments/ps9855/operations/327C8F30158C7963\",\r\n \"operationId\": \"327C8F30158C7963\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-07-24T23:37:17.4936364Z\",\r\n \"duration\": \"PT1.8350099S\",\r\n \"trackingId\": \"4d7646f9-1559-417d-9ba4-c23446e614dd\",\r\n \"serviceRequestId\": \"91cbd2a2-d685-44a9-8041-c80915402e6c\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Storage/storageAccounts/ps801\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps801\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5770/providers/Microsoft.Resources/deployments/ps9986\",\r\n \"name\": \"ps9986\",\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\": \"ps5860\"\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-08-11T18:14:30.0245424Z\",\r\n \"duration\": \"PT6.2825308S\",\r\n \"correlationId\": \"57b8974f-8450-4a6b-97a4-1e8cd8fc16ad\",\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/ps9661/deployments/ps9855/operations?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY2MS9kZXBsb3ltZW50cy9wczk4NTUvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5770/providers/Microsoft.Resources/deployments/ps9986?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTc3MC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk5ODY/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2b4415b7-5c9c-482d-bd86-6b5b152c045d" + "2a32525d-9502-47b5-b718-b343ef68ecea" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.28207.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", + "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" ] }, @@ -4835,17 +4835,20 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11856" + "11945" ], "x-ms-request-id": [ - "1f60075d-b376-4eaa-b4da-07b01d5a0d78" + "db4b2605-a2c7-4f79-88d4-02bb979df9a7" ], "x-ms-correlation-request-id": [ - "1f60075d-b376-4eaa-b4da-07b01d5a0d78" + "db4b2605-a2c7-4f79-88d4-02bb979df9a7" ], "x-ms-routing-request-id": [ - "WESTUS2:20200724T233731Z:1f60075d-b376-4eaa-b4da-07b01d5a0d78" + "CENTRALUS:20200811T181441Z:db4b2605-a2c7-4f79-88d4-02bb979df9a7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4854,7 +4857,7 @@ "nosniff" ], "Date": [ - "Fri, 24 Jul 2020 23:37:31 GMT" + "Tue, 11 Aug 2020 18:14:40 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4863,8284 +4866,28 @@ "-1" ], "Content-Length": [ - "709" - ], - "Retry-After": [ - "0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Resources/deployments/ps9855/operations/327C8F30158C7963\",\r\n \"operationId\": \"327C8F30158C7963\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-07-24T23:37:17.4936364Z\",\r\n \"duration\": \"PT1.8350099S\",\r\n \"trackingId\": \"4d7646f9-1559-417d-9ba4-c23446e614dd\",\r\n \"serviceRequestId\": \"91cbd2a2-d685-44a9-8041-c80915402e6c\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Storage/storageAccounts/ps801\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps801\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9661/deployments/ps9855/operations?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY2MS9kZXBsb3ltZW50cy9wczk4NTUvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "09f62e1f-625f-4cf5-83ab-5c6dfa680bf0" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11854" - ], - "x-ms-request-id": [ - "aab30625-c4fb-4fb1-ae20-e822d5a30bbf" - ], - "x-ms-correlation-request-id": [ - "aab30625-c4fb-4fb1-ae20-e822d5a30bbf" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20200724T233731Z:aab30625-c4fb-4fb1-ae20-e822d5a30bbf" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 24 Jul 2020 23:37:31 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "709" - ], - "Retry-After": [ - "0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Resources/deployments/ps9855/operations/327C8F30158C7963\",\r\n \"operationId\": \"327C8F30158C7963\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-07-24T23:37:17.4936364Z\",\r\n \"duration\": \"PT1.8350099S\",\r\n \"trackingId\": \"4d7646f9-1559-417d-9ba4-c23446e614dd\",\r\n \"serviceRequestId\": \"91cbd2a2-d685-44a9-8041-c80915402e6c\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Storage/storageAccounts/ps801\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps801\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9661/deployments/ps9855/operations?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY2MS9kZXBsb3ltZW50cy9wczk4NTUvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "6aebbc2d-5217-4084-a3d2-9084c762131e" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11852" - ], - "x-ms-request-id": [ - "21ffcafc-38ee-4940-882f-9fa63b91b64f" - ], - "x-ms-correlation-request-id": [ - "21ffcafc-38ee-4940-882f-9fa63b91b64f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20200724T233732Z:21ffcafc-38ee-4940-882f-9fa63b91b64f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 24 Jul 2020 23:37:32 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "709" - ], - "Retry-After": [ - "0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Resources/deployments/ps9855/operations/327C8F30158C7963\",\r\n \"operationId\": \"327C8F30158C7963\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-07-24T23:37:17.4936364Z\",\r\n \"duration\": \"PT1.8350099S\",\r\n \"trackingId\": \"4d7646f9-1559-417d-9ba4-c23446e614dd\",\r\n \"serviceRequestId\": \"91cbd2a2-d685-44a9-8041-c80915402e6c\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Storage/storageAccounts/ps801\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps801\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9661/deployments/ps9855/operations?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY2MS9kZXBsb3ltZW50cy9wczk4NTUvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "a2aa48e1-f425-44a0-8534-cf2bc1bcc9d0" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11850" - ], - "x-ms-request-id": [ - "9aebc3a2-62e5-4e31-a8e6-007e40ebb939" - ], - "x-ms-correlation-request-id": [ - "9aebc3a2-62e5-4e31-a8e6-007e40ebb939" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20200724T233732Z:9aebc3a2-62e5-4e31-a8e6-007e40ebb939" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 24 Jul 2020 23:37:32 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "709" - ], - "Retry-After": [ - "0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Resources/deployments/ps9855/operations/327C8F30158C7963\",\r\n \"operationId\": \"327C8F30158C7963\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-07-24T23:37:17.4936364Z\",\r\n \"duration\": \"PT1.8350099S\",\r\n \"trackingId\": \"4d7646f9-1559-417d-9ba4-c23446e614dd\",\r\n \"serviceRequestId\": \"91cbd2a2-d685-44a9-8041-c80915402e6c\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Storage/storageAccounts/ps801\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps801\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9661/deployments/ps9855/operations?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY2MS9kZXBsb3ltZW50cy9wczk4NTUvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "2c29656b-694d-4ead-9f13-fe948f0c3d09" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11848" - ], - "x-ms-request-id": [ - "b02936bd-3f9f-4da1-8153-ca62f731533e" - ], - "x-ms-correlation-request-id": [ - "b02936bd-3f9f-4da1-8153-ca62f731533e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20200724T233732Z:b02936bd-3f9f-4da1-8153-ca62f731533e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 24 Jul 2020 23:37:32 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "709" - ], - "Retry-After": [ - "0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Resources/deployments/ps9855/operations/327C8F30158C7963\",\r\n \"operationId\": \"327C8F30158C7963\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-07-24T23:37:17.4936364Z\",\r\n \"duration\": \"PT1.8350099S\",\r\n \"trackingId\": \"4d7646f9-1559-417d-9ba4-c23446e614dd\",\r\n \"serviceRequestId\": \"91cbd2a2-d685-44a9-8041-c80915402e6c\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Storage/storageAccounts/ps801\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps801\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9661/deployments/ps9855/operations?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY2MS9kZXBsb3ltZW50cy9wczk4NTUvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "521ec858-1a09-422c-8a57-b6a6ad3fb98c" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11846" - ], - "x-ms-request-id": [ - "c2c35414-f7a5-4fed-9fa7-69a74e52db1c" - ], - "x-ms-correlation-request-id": [ - "c2c35414-f7a5-4fed-9fa7-69a74e52db1c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20200724T233732Z:c2c35414-f7a5-4fed-9fa7-69a74e52db1c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 24 Jul 2020 23:37:32 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "709" - ], - "Retry-After": [ - "0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Resources/deployments/ps9855/operations/327C8F30158C7963\",\r\n \"operationId\": \"327C8F30158C7963\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-07-24T23:37:17.4936364Z\",\r\n \"duration\": \"PT1.8350099S\",\r\n \"trackingId\": \"4d7646f9-1559-417d-9ba4-c23446e614dd\",\r\n \"serviceRequestId\": \"91cbd2a2-d685-44a9-8041-c80915402e6c\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Storage/storageAccounts/ps801\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps801\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9661/deployments/ps9855/operations?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY2MS9kZXBsb3ltZW50cy9wczk4NTUvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "507391d8-cbcc-4a73-977d-2176ac39bb83" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11844" - ], - "x-ms-request-id": [ - "349ff7b1-1a4c-4263-babe-dbf0a3affb60" - ], - "x-ms-correlation-request-id": [ - "349ff7b1-1a4c-4263-babe-dbf0a3affb60" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20200724T233733Z:349ff7b1-1a4c-4263-babe-dbf0a3affb60" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 24 Jul 2020 23:37:32 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "709" - ], - "Retry-After": [ - "0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Resources/deployments/ps9855/operations/327C8F30158C7963\",\r\n \"operationId\": \"327C8F30158C7963\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-07-24T23:37:17.4936364Z\",\r\n \"duration\": \"PT1.8350099S\",\r\n \"trackingId\": \"4d7646f9-1559-417d-9ba4-c23446e614dd\",\r\n \"serviceRequestId\": \"91cbd2a2-d685-44a9-8041-c80915402e6c\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Storage/storageAccounts/ps801\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps801\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9661/deployments/ps9855/operations?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY2MS9kZXBsb3ltZW50cy9wczk4NTUvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "4955edaf-48b7-490d-be6a-44d05edb5e13" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11842" - ], - "x-ms-request-id": [ - "bc29c9c2-f595-4ad2-a184-092f78f0ed2e" - ], - "x-ms-correlation-request-id": [ - "bc29c9c2-f595-4ad2-a184-092f78f0ed2e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20200724T233733Z:bc29c9c2-f595-4ad2-a184-092f78f0ed2e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 24 Jul 2020 23:37:33 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "709" - ], - "Retry-After": [ - "0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Resources/deployments/ps9855/operations/327C8F30158C7963\",\r\n \"operationId\": \"327C8F30158C7963\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-07-24T23:37:17.4936364Z\",\r\n \"duration\": \"PT1.8350099S\",\r\n \"trackingId\": \"4d7646f9-1559-417d-9ba4-c23446e614dd\",\r\n \"serviceRequestId\": \"91cbd2a2-d685-44a9-8041-c80915402e6c\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Storage/storageAccounts/ps801\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps801\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9661/deployments/ps9855/operations?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY2MS9kZXBsb3ltZW50cy9wczk4NTUvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "6e166248-8af3-4261-9b78-9a4567d53bc9" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11840" - ], - "x-ms-request-id": [ - "1a208463-dae6-4884-ae51-8154020e0cd9" - ], - "x-ms-correlation-request-id": [ - "1a208463-dae6-4884-ae51-8154020e0cd9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20200724T233733Z:1a208463-dae6-4884-ae51-8154020e0cd9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 24 Jul 2020 23:37:33 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "709" - ], - "Retry-After": [ - "0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Resources/deployments/ps9855/operations/327C8F30158C7963\",\r\n \"operationId\": \"327C8F30158C7963\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-07-24T23:37:17.4936364Z\",\r\n \"duration\": \"PT1.8350099S\",\r\n \"trackingId\": \"4d7646f9-1559-417d-9ba4-c23446e614dd\",\r\n \"serviceRequestId\": \"91cbd2a2-d685-44a9-8041-c80915402e6c\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Storage/storageAccounts/ps801\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps801\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9661/deployments/ps9855/operations?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY2MS9kZXBsb3ltZW50cy9wczk4NTUvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "3a3d803e-2536-428b-bc41-25f5f2af8faa" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11838" - ], - "x-ms-request-id": [ - "88dd3637-6db3-4dfd-b74a-83ced28ed1b0" - ], - "x-ms-correlation-request-id": [ - "88dd3637-6db3-4dfd-b74a-83ced28ed1b0" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20200724T233733Z:88dd3637-6db3-4dfd-b74a-83ced28ed1b0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 24 Jul 2020 23:37:33 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "709" - ], - "Retry-After": [ - "0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Resources/deployments/ps9855/operations/327C8F30158C7963\",\r\n \"operationId\": \"327C8F30158C7963\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-07-24T23:37:17.4936364Z\",\r\n \"duration\": \"PT1.8350099S\",\r\n \"trackingId\": \"4d7646f9-1559-417d-9ba4-c23446e614dd\",\r\n \"serviceRequestId\": \"91cbd2a2-d685-44a9-8041-c80915402e6c\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Storage/storageAccounts/ps801\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps801\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9661/deployments/ps9855/operations?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY2MS9kZXBsb3ltZW50cy9wczk4NTUvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "16a9a500-4700-4025-8624-41f22601f8dc" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11836" - ], - "x-ms-request-id": [ - "11e4e2fa-0bd9-472b-84d6-a998b2ffcb7b" - ], - "x-ms-correlation-request-id": [ - "11e4e2fa-0bd9-472b-84d6-a998b2ffcb7b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20200724T233733Z:11e4e2fa-0bd9-472b-84d6-a998b2ffcb7b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 24 Jul 2020 23:37:33 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "709" - ], - "Retry-After": [ - "0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Resources/deployments/ps9855/operations/327C8F30158C7963\",\r\n \"operationId\": \"327C8F30158C7963\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-07-24T23:37:17.4936364Z\",\r\n \"duration\": \"PT1.8350099S\",\r\n \"trackingId\": \"4d7646f9-1559-417d-9ba4-c23446e614dd\",\r\n \"serviceRequestId\": \"91cbd2a2-d685-44a9-8041-c80915402e6c\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Storage/storageAccounts/ps801\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps801\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9661/deployments/ps9855/operations?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY2MS9kZXBsb3ltZW50cy9wczk4NTUvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "cee7bb1e-445e-4ce6-b117-660720276995" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11834" - ], - "x-ms-request-id": [ - "fae7b119-a83d-49e0-90e1-bd7a2f5f7f0e" - ], - "x-ms-correlation-request-id": [ - "fae7b119-a83d-49e0-90e1-bd7a2f5f7f0e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20200724T233734Z:fae7b119-a83d-49e0-90e1-bd7a2f5f7f0e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 24 Jul 2020 23:37:34 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "709" - ], - "Retry-After": [ - "0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Resources/deployments/ps9855/operations/327C8F30158C7963\",\r\n \"operationId\": \"327C8F30158C7963\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-07-24T23:37:17.4936364Z\",\r\n \"duration\": \"PT1.8350099S\",\r\n \"trackingId\": \"4d7646f9-1559-417d-9ba4-c23446e614dd\",\r\n \"serviceRequestId\": \"91cbd2a2-d685-44a9-8041-c80915402e6c\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Storage/storageAccounts/ps801\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps801\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9661/deployments/ps9855/operations?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY2MS9kZXBsb3ltZW50cy9wczk4NTUvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "4de4f5c2-7d0d-4a0a-94c6-932498ae42ea" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11832" - ], - "x-ms-request-id": [ - "868bd70f-9531-456c-b928-f497f4be1b3f" - ], - "x-ms-correlation-request-id": [ - "868bd70f-9531-456c-b928-f497f4be1b3f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20200724T233734Z:868bd70f-9531-456c-b928-f497f4be1b3f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 24 Jul 2020 23:37:34 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "709" - ], - "Retry-After": [ - "0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Resources/deployments/ps9855/operations/327C8F30158C7963\",\r\n \"operationId\": \"327C8F30158C7963\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-07-24T23:37:17.4936364Z\",\r\n \"duration\": \"PT1.8350099S\",\r\n \"trackingId\": \"4d7646f9-1559-417d-9ba4-c23446e614dd\",\r\n \"serviceRequestId\": \"91cbd2a2-d685-44a9-8041-c80915402e6c\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Storage/storageAccounts/ps801\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps801\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9661/deployments/ps9855/operations?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY2MS9kZXBsb3ltZW50cy9wczk4NTUvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "cd14c447-ede5-4bbe-9cd2-679a75baea09" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11830" - ], - "x-ms-request-id": [ - "f94dd17c-e301-4d08-a4fe-ffd4e6192f43" - ], - "x-ms-correlation-request-id": [ - "f94dd17c-e301-4d08-a4fe-ffd4e6192f43" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20200724T233734Z:f94dd17c-e301-4d08-a4fe-ffd4e6192f43" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 24 Jul 2020 23:37:34 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "709" - ], - "Retry-After": [ - "0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Resources/deployments/ps9855/operations/327C8F30158C7963\",\r\n \"operationId\": \"327C8F30158C7963\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-07-24T23:37:17.4936364Z\",\r\n \"duration\": \"PT1.8350099S\",\r\n \"trackingId\": \"4d7646f9-1559-417d-9ba4-c23446e614dd\",\r\n \"serviceRequestId\": \"91cbd2a2-d685-44a9-8041-c80915402e6c\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Storage/storageAccounts/ps801\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps801\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9661/deployments/ps9855/operations?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY2MS9kZXBsb3ltZW50cy9wczk4NTUvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "1d585343-69c7-4887-96ac-9577abd55f7c" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11828" - ], - "x-ms-request-id": [ - "64d1d821-4d75-43e1-b61e-2a444b75b102" - ], - "x-ms-correlation-request-id": [ - "64d1d821-4d75-43e1-b61e-2a444b75b102" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20200724T233735Z:64d1d821-4d75-43e1-b61e-2a444b75b102" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 24 Jul 2020 23:37:34 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "709" - ], - "Retry-After": [ - "0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Resources/deployments/ps9855/operations/327C8F30158C7963\",\r\n \"operationId\": \"327C8F30158C7963\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-07-24T23:37:17.4936364Z\",\r\n \"duration\": \"PT1.8350099S\",\r\n \"trackingId\": \"4d7646f9-1559-417d-9ba4-c23446e614dd\",\r\n \"serviceRequestId\": \"91cbd2a2-d685-44a9-8041-c80915402e6c\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Storage/storageAccounts/ps801\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps801\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9661/deployments/ps9855/operations?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY2MS9kZXBsb3ltZW50cy9wczk4NTUvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "031cdbc8-5cfc-4882-8fb0-2f3a9a148f76" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11826" - ], - "x-ms-request-id": [ - "48903e52-193f-483c-aa70-520958c7801e" - ], - "x-ms-correlation-request-id": [ - "48903e52-193f-483c-aa70-520958c7801e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20200724T233735Z:48903e52-193f-483c-aa70-520958c7801e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 24 Jul 2020 23:37:34 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "709" - ], - "Retry-After": [ - "0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Resources/deployments/ps9855/operations/327C8F30158C7963\",\r\n \"operationId\": \"327C8F30158C7963\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-07-24T23:37:17.4936364Z\",\r\n \"duration\": \"PT1.8350099S\",\r\n \"trackingId\": \"4d7646f9-1559-417d-9ba4-c23446e614dd\",\r\n \"serviceRequestId\": \"91cbd2a2-d685-44a9-8041-c80915402e6c\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Storage/storageAccounts/ps801\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps801\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9661/deployments/ps9855/operations?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY2MS9kZXBsb3ltZW50cy9wczk4NTUvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "e1e285b4-e4e7-4408-b611-27c021511014" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11824" - ], - "x-ms-request-id": [ - "bfcdf26a-5347-467f-b5db-18e5641ed1c1" - ], - "x-ms-correlation-request-id": [ - "bfcdf26a-5347-467f-b5db-18e5641ed1c1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20200724T233735Z:bfcdf26a-5347-467f-b5db-18e5641ed1c1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 24 Jul 2020 23:37:35 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "709" - ], - "Retry-After": [ - "0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Resources/deployments/ps9855/operations/327C8F30158C7963\",\r\n \"operationId\": \"327C8F30158C7963\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-07-24T23:37:17.4936364Z\",\r\n \"duration\": \"PT1.8350099S\",\r\n \"trackingId\": \"4d7646f9-1559-417d-9ba4-c23446e614dd\",\r\n \"serviceRequestId\": \"91cbd2a2-d685-44a9-8041-c80915402e6c\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Storage/storageAccounts/ps801\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps801\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9661/deployments/ps9855/operations?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY2MS9kZXBsb3ltZW50cy9wczk4NTUvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "fab0bc1e-e16c-45b6-abd3-263b008843b7" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11822" - ], - "x-ms-request-id": [ - "14b7b5ed-02b8-45bc-a33b-c16d579ab4f0" - ], - "x-ms-correlation-request-id": [ - "14b7b5ed-02b8-45bc-a33b-c16d579ab4f0" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20200724T233735Z:14b7b5ed-02b8-45bc-a33b-c16d579ab4f0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 24 Jul 2020 23:37:35 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "709" - ], - "Retry-After": [ - "0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Resources/deployments/ps9855/operations/327C8F30158C7963\",\r\n \"operationId\": \"327C8F30158C7963\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-07-24T23:37:17.4936364Z\",\r\n \"duration\": \"PT1.8350099S\",\r\n \"trackingId\": \"4d7646f9-1559-417d-9ba4-c23446e614dd\",\r\n \"serviceRequestId\": \"91cbd2a2-d685-44a9-8041-c80915402e6c\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Storage/storageAccounts/ps801\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps801\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9661/deployments/ps9855/operations?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY2MS9kZXBsb3ltZW50cy9wczk4NTUvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "b46af437-a029-46c4-9d77-752d8f881016" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11820" - ], - "x-ms-request-id": [ - "7de5d91f-32f2-4b56-8f9b-838fd035163e" - ], - "x-ms-correlation-request-id": [ - "7de5d91f-32f2-4b56-8f9b-838fd035163e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20200724T233735Z:7de5d91f-32f2-4b56-8f9b-838fd035163e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 24 Jul 2020 23:37:35 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "709" - ], - "Retry-After": [ - "0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Resources/deployments/ps9855/operations/327C8F30158C7963\",\r\n \"operationId\": \"327C8F30158C7963\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-07-24T23:37:17.4936364Z\",\r\n \"duration\": \"PT1.8350099S\",\r\n \"trackingId\": \"4d7646f9-1559-417d-9ba4-c23446e614dd\",\r\n \"serviceRequestId\": \"91cbd2a2-d685-44a9-8041-c80915402e6c\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Storage/storageAccounts/ps801\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps801\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9661/deployments/ps9855/operations?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY2MS9kZXBsb3ltZW50cy9wczk4NTUvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "d4cc32fc-55f0-4449-8de4-4c4139b54b0d" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11818" - ], - "x-ms-request-id": [ - "85f5e0af-8f34-452b-a396-acba61437662" - ], - "x-ms-correlation-request-id": [ - "85f5e0af-8f34-452b-a396-acba61437662" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20200724T233736Z:85f5e0af-8f34-452b-a396-acba61437662" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 24 Jul 2020 23:37:35 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "709" - ], - "Retry-After": [ - "0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Resources/deployments/ps9855/operations/327C8F30158C7963\",\r\n \"operationId\": \"327C8F30158C7963\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-07-24T23:37:17.4936364Z\",\r\n \"duration\": \"PT1.8350099S\",\r\n \"trackingId\": \"4d7646f9-1559-417d-9ba4-c23446e614dd\",\r\n \"serviceRequestId\": \"91cbd2a2-d685-44a9-8041-c80915402e6c\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Storage/storageAccounts/ps801\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps801\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9661/deployments/ps9855/operations?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY2MS9kZXBsb3ltZW50cy9wczk4NTUvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "d7f7d5d2-255e-43c2-ad52-85214f52735b" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11816" - ], - "x-ms-request-id": [ - "af2367fa-c8de-4e0b-b8f7-7202ef8a17d7" - ], - "x-ms-correlation-request-id": [ - "af2367fa-c8de-4e0b-b8f7-7202ef8a17d7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20200724T233736Z:af2367fa-c8de-4e0b-b8f7-7202ef8a17d7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 24 Jul 2020 23:37:36 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "709" - ], - "Retry-After": [ - "0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Resources/deployments/ps9855/operations/327C8F30158C7963\",\r\n \"operationId\": \"327C8F30158C7963\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-07-24T23:37:17.4936364Z\",\r\n \"duration\": \"PT1.8350099S\",\r\n \"trackingId\": \"4d7646f9-1559-417d-9ba4-c23446e614dd\",\r\n \"serviceRequestId\": \"91cbd2a2-d685-44a9-8041-c80915402e6c\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Storage/storageAccounts/ps801\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps801\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9661/deployments/ps9855/operations?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY2MS9kZXBsb3ltZW50cy9wczk4NTUvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "dc0ee997-9263-431b-b812-475aa78f75f8" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11814" - ], - "x-ms-request-id": [ - "47bafeac-dcb0-4b0a-a7fb-e9d2e3f00fcc" - ], - "x-ms-correlation-request-id": [ - "47bafeac-dcb0-4b0a-a7fb-e9d2e3f00fcc" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20200724T233736Z:47bafeac-dcb0-4b0a-a7fb-e9d2e3f00fcc" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 24 Jul 2020 23:37:36 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "709" - ], - "Retry-After": [ - "0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Resources/deployments/ps9855/operations/327C8F30158C7963\",\r\n \"operationId\": \"327C8F30158C7963\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-07-24T23:37:17.4936364Z\",\r\n \"duration\": \"PT1.8350099S\",\r\n \"trackingId\": \"4d7646f9-1559-417d-9ba4-c23446e614dd\",\r\n \"serviceRequestId\": \"91cbd2a2-d685-44a9-8041-c80915402e6c\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Storage/storageAccounts/ps801\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps801\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9661/deployments/ps9855/operations?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY2MS9kZXBsb3ltZW50cy9wczk4NTUvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "c9a557a4-1d0a-4c6b-9f47-dc140bfe2b39" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11812" - ], - "x-ms-request-id": [ - "aa63bc94-c010-4f8b-83fe-f85eefa526dc" - ], - "x-ms-correlation-request-id": [ - "aa63bc94-c010-4f8b-83fe-f85eefa526dc" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20200724T233736Z:aa63bc94-c010-4f8b-83fe-f85eefa526dc" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 24 Jul 2020 23:37:36 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "709" - ], - "Retry-After": [ - "0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Resources/deployments/ps9855/operations/327C8F30158C7963\",\r\n \"operationId\": \"327C8F30158C7963\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-07-24T23:37:17.4936364Z\",\r\n \"duration\": \"PT1.8350099S\",\r\n \"trackingId\": \"4d7646f9-1559-417d-9ba4-c23446e614dd\",\r\n \"serviceRequestId\": \"91cbd2a2-d685-44a9-8041-c80915402e6c\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Storage/storageAccounts/ps801\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps801\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9661/deployments/ps9855/operations?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY2MS9kZXBsb3ltZW50cy9wczk4NTUvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "ac5e8c1b-8bba-4e84-9cf4-e5320fd7687c" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11810" - ], - "x-ms-request-id": [ - "2b126f23-ff6e-4b38-9523-0bbed98abde8" - ], - "x-ms-correlation-request-id": [ - "2b126f23-ff6e-4b38-9523-0bbed98abde8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20200724T233736Z:2b126f23-ff6e-4b38-9523-0bbed98abde8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 24 Jul 2020 23:37:36 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "709" - ], - "Retry-After": [ - "0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Resources/deployments/ps9855/operations/327C8F30158C7963\",\r\n \"operationId\": \"327C8F30158C7963\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-07-24T23:37:17.4936364Z\",\r\n \"duration\": \"PT1.8350099S\",\r\n \"trackingId\": \"4d7646f9-1559-417d-9ba4-c23446e614dd\",\r\n \"serviceRequestId\": \"91cbd2a2-d685-44a9-8041-c80915402e6c\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Storage/storageAccounts/ps801\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps801\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9661/deployments/ps9855/operations?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY2MS9kZXBsb3ltZW50cy9wczk4NTUvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "f412df6c-f78b-40fc-b408-62e93b548727" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11808" - ], - "x-ms-request-id": [ - "b4db30dc-bbdd-47fb-bfe1-a326b1d8ffbf" - ], - "x-ms-correlation-request-id": [ - "b4db30dc-bbdd-47fb-bfe1-a326b1d8ffbf" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20200724T233737Z:b4db30dc-bbdd-47fb-bfe1-a326b1d8ffbf" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 24 Jul 2020 23:37:36 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "709" - ], - "Retry-After": [ - "0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Resources/deployments/ps9855/operations/327C8F30158C7963\",\r\n \"operationId\": \"327C8F30158C7963\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-07-24T23:37:17.4936364Z\",\r\n \"duration\": \"PT1.8350099S\",\r\n \"trackingId\": \"4d7646f9-1559-417d-9ba4-c23446e614dd\",\r\n \"serviceRequestId\": \"91cbd2a2-d685-44a9-8041-c80915402e6c\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Storage/storageAccounts/ps801\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps801\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9661/deployments/ps9855/operations?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY2MS9kZXBsb3ltZW50cy9wczk4NTUvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "407eb5e9-23db-4c91-a101-19e1448b994a" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11806" - ], - "x-ms-request-id": [ - "952842bc-ee47-4fbb-be2c-edf790eab154" - ], - "x-ms-correlation-request-id": [ - "952842bc-ee47-4fbb-be2c-edf790eab154" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20200724T233737Z:952842bc-ee47-4fbb-be2c-edf790eab154" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 24 Jul 2020 23:37:37 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "709" - ], - "Retry-After": [ - "0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Resources/deployments/ps9855/operations/327C8F30158C7963\",\r\n \"operationId\": \"327C8F30158C7963\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-07-24T23:37:17.4936364Z\",\r\n \"duration\": \"PT1.8350099S\",\r\n \"trackingId\": \"4d7646f9-1559-417d-9ba4-c23446e614dd\",\r\n \"serviceRequestId\": \"91cbd2a2-d685-44a9-8041-c80915402e6c\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Storage/storageAccounts/ps801\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps801\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9661/deployments/ps9855/operations?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY2MS9kZXBsb3ltZW50cy9wczk4NTUvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "1c1785f5-50cb-4c9b-9ce7-c762f7f7a56c" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11804" - ], - "x-ms-request-id": [ - "01a1d9f6-14f6-4ffc-ac94-b192c0b412e1" - ], - "x-ms-correlation-request-id": [ - "01a1d9f6-14f6-4ffc-ac94-b192c0b412e1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20200724T233737Z:01a1d9f6-14f6-4ffc-ac94-b192c0b412e1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 24 Jul 2020 23:37:37 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "709" - ], - "Retry-After": [ - "0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Resources/deployments/ps9855/operations/327C8F30158C7963\",\r\n \"operationId\": \"327C8F30158C7963\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-07-24T23:37:17.4936364Z\",\r\n \"duration\": \"PT1.8350099S\",\r\n \"trackingId\": \"4d7646f9-1559-417d-9ba4-c23446e614dd\",\r\n \"serviceRequestId\": \"91cbd2a2-d685-44a9-8041-c80915402e6c\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Storage/storageAccounts/ps801\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps801\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9661/deployments/ps9855/operations?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY2MS9kZXBsb3ltZW50cy9wczk4NTUvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "3f16b689-cc44-4a31-abd2-32b6cca23a25" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11802" - ], - "x-ms-request-id": [ - "6fe71636-1e1c-4993-87d4-f199edfb31c3" - ], - "x-ms-correlation-request-id": [ - "6fe71636-1e1c-4993-87d4-f199edfb31c3" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20200724T233737Z:6fe71636-1e1c-4993-87d4-f199edfb31c3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 24 Jul 2020 23:37:37 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "704" - ], - "Retry-After": [ - "0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Resources/deployments/ps9855/operations/327C8F30158C7963\",\r\n \"operationId\": \"327C8F30158C7963\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-07-24T23:37:37.4169844Z\",\r\n \"duration\": \"PT21.7583579S\",\r\n \"trackingId\": \"37ea3251-158e-47fa-ae9c-eda3e499828e\",\r\n \"serviceRequestId\": \"91cbd2a2-d685-44a9-8041-c80915402e6c\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Storage/storageAccounts/ps801\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps801\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9661/deployments/ps9855/operations?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY2MS9kZXBsb3ltZW50cy9wczk4NTUvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "c4a1bfd0-ada6-4bd7-84e9-08f8139ed79b" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11800" - ], - "x-ms-request-id": [ - "8592c8c6-c2ed-4f55-b2d3-0809227632d5" - ], - "x-ms-correlation-request-id": [ - "8592c8c6-c2ed-4f55-b2d3-0809227632d5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20200724T233738Z:8592c8c6-c2ed-4f55-b2d3-0809227632d5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 24 Jul 2020 23:37:37 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "704" - ], - "Retry-After": [ - "0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Resources/deployments/ps9855/operations/327C8F30158C7963\",\r\n \"operationId\": \"327C8F30158C7963\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-07-24T23:37:37.4169844Z\",\r\n \"duration\": \"PT21.7583579S\",\r\n \"trackingId\": \"37ea3251-158e-47fa-ae9c-eda3e499828e\",\r\n \"serviceRequestId\": \"91cbd2a2-d685-44a9-8041-c80915402e6c\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Storage/storageAccounts/ps801\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps801\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9661/deployments/ps9855/operations?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY2MS9kZXBsb3ltZW50cy9wczk4NTUvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "d4804ad9-c8ce-42f8-a2d9-3ae579960de7" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11798" - ], - "x-ms-request-id": [ - "e5f6716b-dd45-4dc7-8cab-47d408131c80" - ], - "x-ms-correlation-request-id": [ - "e5f6716b-dd45-4dc7-8cab-47d408131c80" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20200724T233738Z:e5f6716b-dd45-4dc7-8cab-47d408131c80" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 24 Jul 2020 23:37:37 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "704" - ], - "Retry-After": [ - "0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Resources/deployments/ps9855/operations/327C8F30158C7963\",\r\n \"operationId\": \"327C8F30158C7963\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-07-24T23:37:37.4169844Z\",\r\n \"duration\": \"PT21.7583579S\",\r\n \"trackingId\": \"37ea3251-158e-47fa-ae9c-eda3e499828e\",\r\n \"serviceRequestId\": \"91cbd2a2-d685-44a9-8041-c80915402e6c\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Storage/storageAccounts/ps801\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps801\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9661/deployments/ps9855/operations?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY2MS9kZXBsb3ltZW50cy9wczk4NTUvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "eec2e0f7-9e5e-40b4-aab1-f0e288339445" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11796" - ], - "x-ms-request-id": [ - "841d0fcb-6294-4d03-8208-d51a075e53a5" - ], - "x-ms-correlation-request-id": [ - "841d0fcb-6294-4d03-8208-d51a075e53a5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20200724T233738Z:841d0fcb-6294-4d03-8208-d51a075e53a5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 24 Jul 2020 23:37:38 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "706" - ], - "Retry-After": [ - "0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Resources/deployments/ps9855/operations/327C8F30158C7963\",\r\n \"operationId\": \"327C8F30158C7963\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2020-07-24T23:37:38.1159561Z\",\r\n \"duration\": \"PT22.4573296S\",\r\n \"trackingId\": \"05e52c2f-4fd9-4a38-9721-77788a162456\",\r\n \"serviceRequestId\": \"91cbd2a2-d685-44a9-8041-c80915402e6c\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Storage/storageAccounts/ps801\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps801\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9661/deployments/ps9855/operations?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY2MS9kZXBsb3ltZW50cy9wczk4NTUvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "25cc50f2-b36c-4fb7-b0f2-107d48197adc" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11794" - ], - "x-ms-request-id": [ - "c1941dc0-f160-47cf-9eed-6330784e9f1c" - ], - "x-ms-correlation-request-id": [ - "c1941dc0-f160-47cf-9eed-6330784e9f1c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20200724T233738Z:c1941dc0-f160-47cf-9eed-6330784e9f1c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 24 Jul 2020 23:37:38 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "706" - ], - "Retry-After": [ - "0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Resources/deployments/ps9855/operations/327C8F30158C7963\",\r\n \"operationId\": \"327C8F30158C7963\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2020-07-24T23:37:38.1159561Z\",\r\n \"duration\": \"PT22.4573296S\",\r\n \"trackingId\": \"05e52c2f-4fd9-4a38-9721-77788a162456\",\r\n \"serviceRequestId\": \"91cbd2a2-d685-44a9-8041-c80915402e6c\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Storage/storageAccounts/ps801\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps801\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9661/deployments/ps9855/operations?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY2MS9kZXBsb3ltZW50cy9wczk4NTUvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "4bc54942-cca7-4b6b-8b1c-cf1f39522189" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11792" - ], - "x-ms-request-id": [ - "318c0350-f5e7-40f2-a849-85bd746227fd" - ], - "x-ms-correlation-request-id": [ - "318c0350-f5e7-40f2-a849-85bd746227fd" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20200724T233738Z:318c0350-f5e7-40f2-a849-85bd746227fd" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 24 Jul 2020 23:37:38 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "706" - ], - "Retry-After": [ - "0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Resources/deployments/ps9855/operations/327C8F30158C7963\",\r\n \"operationId\": \"327C8F30158C7963\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2020-07-24T23:37:38.1159561Z\",\r\n \"duration\": \"PT22.4573296S\",\r\n \"trackingId\": \"05e52c2f-4fd9-4a38-9721-77788a162456\",\r\n \"serviceRequestId\": \"91cbd2a2-d685-44a9-8041-c80915402e6c\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Storage/storageAccounts/ps801\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps801\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9661/deployments/ps9855/operations?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY2MS9kZXBsb3ltZW50cy9wczk4NTUvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "58c8c792-725e-4a1e-a3e2-48983e3a420e" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11790" - ], - "x-ms-request-id": [ - "402055e6-a7e4-4079-bf3f-2bb17b994c82" - ], - "x-ms-correlation-request-id": [ - "402055e6-a7e4-4079-bf3f-2bb17b994c82" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20200724T233739Z:402055e6-a7e4-4079-bf3f-2bb17b994c82" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 24 Jul 2020 23:37:38 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "1366" - ], - "Retry-After": [ - "0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Resources/deployments/ps9855/operations/C5FC4B6F495EE612\",\r\n \"operationId\": \"C5FC4B6F495EE612\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Read\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2020-07-24T23:37:38.9137302Z\",\r\n \"duration\": \"PT0.3753989S\",\r\n \"trackingId\": \"8f8b9708-df6b-475a-9bb9-105b892ccb07\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Storage/storageAccounts/ps801\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps801\",\r\n \"apiVersion\": \"2019-06-01\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Resources/deployments/ps9855/operations/327C8F30158C7963\",\r\n \"operationId\": \"327C8F30158C7963\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2020-07-24T23:37:38.1159561Z\",\r\n \"duration\": \"PT22.4573296S\",\r\n \"trackingId\": \"05e52c2f-4fd9-4a38-9721-77788a162456\",\r\n \"serviceRequestId\": \"91cbd2a2-d685-44a9-8041-c80915402e6c\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Storage/storageAccounts/ps801\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps801\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9661/deployments/ps9855/operations?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY2MS9kZXBsb3ltZW50cy9wczk4NTUvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "ae8ca231-16c3-4807-9cde-881dc25422a0" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11788" - ], - "x-ms-request-id": [ - "dbc01a7c-7200-4d15-90ed-e89d20f61dec" - ], - "x-ms-correlation-request-id": [ - "dbc01a7c-7200-4d15-90ed-e89d20f61dec" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20200724T233739Z:dbc01a7c-7200-4d15-90ed-e89d20f61dec" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 24 Jul 2020 23:37:39 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "1366" - ], - "Retry-After": [ - "0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Resources/deployments/ps9855/operations/C5FC4B6F495EE612\",\r\n \"operationId\": \"C5FC4B6F495EE612\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Read\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2020-07-24T23:37:38.9137302Z\",\r\n \"duration\": \"PT0.3753989S\",\r\n \"trackingId\": \"8f8b9708-df6b-475a-9bb9-105b892ccb07\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Storage/storageAccounts/ps801\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps801\",\r\n \"apiVersion\": \"2019-06-01\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Resources/deployments/ps9855/operations/327C8F30158C7963\",\r\n \"operationId\": \"327C8F30158C7963\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2020-07-24T23:37:38.1159561Z\",\r\n \"duration\": \"PT22.4573296S\",\r\n \"trackingId\": \"05e52c2f-4fd9-4a38-9721-77788a162456\",\r\n \"serviceRequestId\": \"91cbd2a2-d685-44a9-8041-c80915402e6c\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Storage/storageAccounts/ps801\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps801\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9661/deployments/ps9855/operations?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY2MS9kZXBsb3ltZW50cy9wczk4NTUvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "1dc0cedd-5e73-4727-ad96-eb995f59e6ca" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11786" - ], - "x-ms-request-id": [ - "f04e838f-0d7a-4de9-9a2d-51d754980f1b" - ], - "x-ms-correlation-request-id": [ - "f04e838f-0d7a-4de9-9a2d-51d754980f1b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20200724T233739Z:f04e838f-0d7a-4de9-9a2d-51d754980f1b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 24 Jul 2020 23:37:39 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "1366" - ], - "Retry-After": [ - "0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Resources/deployments/ps9855/operations/C5FC4B6F495EE612\",\r\n \"operationId\": \"C5FC4B6F495EE612\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Read\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2020-07-24T23:37:38.9137302Z\",\r\n \"duration\": \"PT0.3753989S\",\r\n \"trackingId\": \"8f8b9708-df6b-475a-9bb9-105b892ccb07\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Storage/storageAccounts/ps801\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps801\",\r\n \"apiVersion\": \"2019-06-01\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Resources/deployments/ps9855/operations/327C8F30158C7963\",\r\n \"operationId\": \"327C8F30158C7963\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2020-07-24T23:37:38.1159561Z\",\r\n \"duration\": \"PT22.4573296S\",\r\n \"trackingId\": \"05e52c2f-4fd9-4a38-9721-77788a162456\",\r\n \"serviceRequestId\": \"91cbd2a2-d685-44a9-8041-c80915402e6c\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Storage/storageAccounts/ps801\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps801\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9661/deployments/ps9855/operations?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY2MS9kZXBsb3ltZW50cy9wczk4NTUvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "b7aaab18-bd39-48f8-8e8e-176d9181cd69" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11784" - ], - "x-ms-request-id": [ - "85a7854d-087d-443d-9ee4-c8780b6d5f13" - ], - "x-ms-correlation-request-id": [ - "85a7854d-087d-443d-9ee4-c8780b6d5f13" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20200724T233739Z:85a7854d-087d-443d-9ee4-c8780b6d5f13" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 24 Jul 2020 23:37:39 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "1366" - ], - "Retry-After": [ - "0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Resources/deployments/ps9855/operations/C5FC4B6F495EE612\",\r\n \"operationId\": \"C5FC4B6F495EE612\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Read\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2020-07-24T23:37:38.9137302Z\",\r\n \"duration\": \"PT0.3753989S\",\r\n \"trackingId\": \"8f8b9708-df6b-475a-9bb9-105b892ccb07\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Storage/storageAccounts/ps801\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps801\",\r\n \"apiVersion\": \"2019-06-01\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Resources/deployments/ps9855/operations/327C8F30158C7963\",\r\n \"operationId\": \"327C8F30158C7963\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2020-07-24T23:37:38.1159561Z\",\r\n \"duration\": \"PT22.4573296S\",\r\n \"trackingId\": \"05e52c2f-4fd9-4a38-9721-77788a162456\",\r\n \"serviceRequestId\": \"91cbd2a2-d685-44a9-8041-c80915402e6c\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Storage/storageAccounts/ps801\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps801\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9661/deployments/ps9855/operations?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY2MS9kZXBsb3ltZW50cy9wczk4NTUvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "233d113e-a8f9-4b32-baeb-a6d4d7baf053" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11782" - ], - "x-ms-request-id": [ - "4187dc4d-ea4f-4d89-80d3-60268909804b" - ], - "x-ms-correlation-request-id": [ - "4187dc4d-ea4f-4d89-80d3-60268909804b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20200724T233740Z:4187dc4d-ea4f-4d89-80d3-60268909804b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 24 Jul 2020 23:37:39 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "1803" - ], - "Retry-After": [ - "0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Resources/deployments/ps9855/operations/C5FC4B6F495EE612\",\r\n \"operationId\": \"C5FC4B6F495EE612\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Read\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2020-07-24T23:37:38.9137302Z\",\r\n \"duration\": \"PT0.3753989S\",\r\n \"trackingId\": \"8f8b9708-df6b-475a-9bb9-105b892ccb07\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Storage/storageAccounts/ps801\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps801\",\r\n \"apiVersion\": \"2019-06-01\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Resources/deployments/ps9855/operations/327C8F30158C7963\",\r\n \"operationId\": \"327C8F30158C7963\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2020-07-24T23:37:38.1159561Z\",\r\n \"duration\": \"PT22.4573296S\",\r\n \"trackingId\": \"05e52c2f-4fd9-4a38-9721-77788a162456\",\r\n \"serviceRequestId\": \"91cbd2a2-d685-44a9-8041-c80915402e6c\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Storage/storageAccounts/ps801\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps801\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Resources/deployments/ps9855/operations/08586059730511148456\",\r\n \"operationId\": \"08586059730511148456\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"EvaluateDeploymentOutput\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2020-07-24T23:37:39.723252Z\",\r\n \"duration\": \"PT0.4544505S\",\r\n \"trackingId\": \"78ee17f3-7aae-4c4d-8071-72f054958d96\",\r\n \"statusCode\": \"OK\"\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9661/deployments/ps9855/operations?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY2MS9kZXBsb3ltZW50cy9wczk4NTUvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "cad4a17e-b5b3-4c65-b921-6901a9208a93" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11780" - ], - "x-ms-request-id": [ - "f7695238-8da5-4344-825d-b8f90334dd2a" - ], - "x-ms-correlation-request-id": [ - "f7695238-8da5-4344-825d-b8f90334dd2a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20200724T233740Z:f7695238-8da5-4344-825d-b8f90334dd2a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 24 Jul 2020 23:37:39 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "1803" - ], - "Retry-After": [ - "0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Resources/deployments/ps9855/operations/C5FC4B6F495EE612\",\r\n \"operationId\": \"C5FC4B6F495EE612\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Read\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2020-07-24T23:37:38.9137302Z\",\r\n \"duration\": \"PT0.3753989S\",\r\n \"trackingId\": \"8f8b9708-df6b-475a-9bb9-105b892ccb07\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Storage/storageAccounts/ps801\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps801\",\r\n \"apiVersion\": \"2019-06-01\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Resources/deployments/ps9855/operations/327C8F30158C7963\",\r\n \"operationId\": \"327C8F30158C7963\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2020-07-24T23:37:38.1159561Z\",\r\n \"duration\": \"PT22.4573296S\",\r\n \"trackingId\": \"05e52c2f-4fd9-4a38-9721-77788a162456\",\r\n \"serviceRequestId\": \"91cbd2a2-d685-44a9-8041-c80915402e6c\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Storage/storageAccounts/ps801\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps801\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Resources/deployments/ps9855/operations/08586059730511148456\",\r\n \"operationId\": \"08586059730511148456\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"EvaluateDeploymentOutput\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2020-07-24T23:37:39.723252Z\",\r\n \"duration\": \"PT0.4544505S\",\r\n \"trackingId\": \"78ee17f3-7aae-4c4d-8071-72f054958d96\",\r\n \"statusCode\": \"OK\"\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9661/providers/Microsoft.Resources/deployments/ps9855?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY2MS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4NTU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "95d9502e-c16f-48b7-abdf-dbed40564878" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" - ], - "x-ms-request-id": [ - "1ff243a6-a4f3-4ac5-93f7-7cd22226f31a" - ], - "x-ms-correlation-request-id": [ - "1ff243a6-a4f3-4ac5-93f7-7cd22226f31a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20200724T233715Z:1ff243a6-a4f3-4ac5-93f7-7cd22226f31a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 24 Jul 2020 23:37:15 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "778" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Resources/deployments/ps9855\",\r\n \"name\": \"ps9855\",\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\": \"ps801\"\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-07-24T23:37:15.4273245Z\",\r\n \"duration\": \"PT1.0642988S\",\r\n \"correlationId\": \"b602692c-bfe5-45cb-bb08-9b959695368e\",\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/ps9661/providers/Microsoft.Resources/deployments/ps9855?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY2MS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4NTU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "a5b9c182-5bd2-41b7-a3d8-045e29f1a45d" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" - ], - "x-ms-request-id": [ - "41f168df-bb73-4288-821b-37decdfca288" - ], - "x-ms-correlation-request-id": [ - "41f168df-bb73-4288-821b-37decdfca288" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20200724T233716Z:41f168df-bb73-4288-821b-37decdfca288" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 24 Jul 2020 23:37:15 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "778" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Resources/deployments/ps9855\",\r\n \"name\": \"ps9855\",\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\": \"ps801\"\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-07-24T23:37:15.4273245Z\",\r\n \"duration\": \"PT1.0642988S\",\r\n \"correlationId\": \"b602692c-bfe5-45cb-bb08-9b959695368e\",\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/ps9661/providers/Microsoft.Resources/deployments/ps9855?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY2MS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4NTU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "e2b3bfd1-d8d6-4827-b9d4-905b3f419c74" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" - ], - "x-ms-request-id": [ - "1d1dcbb6-cbcc-489e-b746-6b60ab32511d" - ], - "x-ms-correlation-request-id": [ - "1d1dcbb6-cbcc-489e-b746-6b60ab32511d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20200724T233716Z:1d1dcbb6-cbcc-489e-b746-6b60ab32511d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 24 Jul 2020 23:37:15 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "778" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Resources/deployments/ps9855\",\r\n \"name\": \"ps9855\",\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\": \"ps801\"\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-07-24T23:37:15.4273245Z\",\r\n \"duration\": \"PT1.0642988S\",\r\n \"correlationId\": \"b602692c-bfe5-45cb-bb08-9b959695368e\",\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/ps9661/providers/Microsoft.Resources/deployments/ps9855?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY2MS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4NTU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "8492a9a6-d471-40d0-ae31-a0ee9ff3eed7" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" - ], - "x-ms-request-id": [ - "5bc1d356-9786-4031-8dd5-943ca16ec481" - ], - "x-ms-correlation-request-id": [ - "5bc1d356-9786-4031-8dd5-943ca16ec481" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20200724T233716Z:5bc1d356-9786-4031-8dd5-943ca16ec481" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 24 Jul 2020 23:37:15 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "778" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Resources/deployments/ps9855\",\r\n \"name\": \"ps9855\",\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\": \"ps801\"\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-07-24T23:37:15.4273245Z\",\r\n \"duration\": \"PT1.0642988S\",\r\n \"correlationId\": \"b602692c-bfe5-45cb-bb08-9b959695368e\",\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/ps9661/providers/Microsoft.Resources/deployments/ps9855?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY2MS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4NTU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "a1220ddb-1465-4606-af05-088095af2ef3" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" - ], - "x-ms-request-id": [ - "9d711ad6-4abb-455e-be1d-cd1b871cfdb6" - ], - "x-ms-correlation-request-id": [ - "9d711ad6-4abb-455e-be1d-cd1b871cfdb6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20200724T233716Z:9d711ad6-4abb-455e-be1d-cd1b871cfdb6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 24 Jul 2020 23:37:16 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "778" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Resources/deployments/ps9855\",\r\n \"name\": \"ps9855\",\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\": \"ps801\"\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-07-24T23:37:15.4273245Z\",\r\n \"duration\": \"PT1.0642988S\",\r\n \"correlationId\": \"b602692c-bfe5-45cb-bb08-9b959695368e\",\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/ps9661/providers/Microsoft.Resources/deployments/ps9855?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY2MS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4NTU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "2b673487-f75b-49db-b298-eacb8e0c4fe9" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" - ], - "x-ms-request-id": [ - "b03a3de4-cc8b-4c81-8e2b-ec0ce22190e2" - ], - "x-ms-correlation-request-id": [ - "b03a3de4-cc8b-4c81-8e2b-ec0ce22190e2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20200724T233716Z:b03a3de4-cc8b-4c81-8e2b-ec0ce22190e2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 24 Jul 2020 23:37:16 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "778" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Resources/deployments/ps9855\",\r\n \"name\": \"ps9855\",\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\": \"ps801\"\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-07-24T23:37:15.4273245Z\",\r\n \"duration\": \"PT1.0642988S\",\r\n \"correlationId\": \"b602692c-bfe5-45cb-bb08-9b959695368e\",\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/ps9661/providers/Microsoft.Resources/deployments/ps9855?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY2MS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4NTU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "dca10e38-806b-4563-b960-b0e25baa0253" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" - ], - "x-ms-request-id": [ - "18c62796-904a-4da7-a79c-8b4b5748a4a6" - ], - "x-ms-correlation-request-id": [ - "18c62796-904a-4da7-a79c-8b4b5748a4a6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20200724T233717Z:18c62796-904a-4da7-a79c-8b4b5748a4a6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 24 Jul 2020 23:37:16 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "778" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Resources/deployments/ps9855\",\r\n \"name\": \"ps9855\",\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\": \"ps801\"\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-07-24T23:37:15.4273245Z\",\r\n \"duration\": \"PT1.0642988S\",\r\n \"correlationId\": \"b602692c-bfe5-45cb-bb08-9b959695368e\",\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/ps9661/providers/Microsoft.Resources/deployments/ps9855?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY2MS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4NTU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "3b7d73e5-631a-46fa-aea4-47bf87ae65e9" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11983" - ], - "x-ms-request-id": [ - "97ea11b4-493e-47f3-97ec-48e60a9bcbe5" - ], - "x-ms-correlation-request-id": [ - "97ea11b4-493e-47f3-97ec-48e60a9bcbe5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20200724T233717Z:97ea11b4-493e-47f3-97ec-48e60a9bcbe5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 24 Jul 2020 23:37:16 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "778" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Resources/deployments/ps9855\",\r\n \"name\": \"ps9855\",\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\": \"ps801\"\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-07-24T23:37:15.4273245Z\",\r\n \"duration\": \"PT1.0642988S\",\r\n \"correlationId\": \"b602692c-bfe5-45cb-bb08-9b959695368e\",\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/ps9661/providers/Microsoft.Resources/deployments/ps9855?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY2MS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4NTU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "daf0f8ca-f464-43c7-8395-0aa2a1691421" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11981" - ], - "x-ms-request-id": [ - "91ea9c57-f612-4d49-9146-fd13d224cfcf" - ], - "x-ms-correlation-request-id": [ - "91ea9c57-f612-4d49-9146-fd13d224cfcf" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20200724T233717Z:91ea9c57-f612-4d49-9146-fd13d224cfcf" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 24 Jul 2020 23:37:16 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "778" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Resources/deployments/ps9855\",\r\n \"name\": \"ps9855\",\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\": \"ps801\"\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-07-24T23:37:17.3706132Z\",\r\n \"duration\": \"PT3.0075875S\",\r\n \"correlationId\": \"b602692c-bfe5-45cb-bb08-9b959695368e\",\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/ps9661/providers/Microsoft.Resources/deployments/ps9855?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY2MS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4NTU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "ef54a13b-8bc1-477f-b50f-10fbf311ce6e" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11979" - ], - "x-ms-request-id": [ - "be1a3738-d404-4dd0-966e-363e2120111b" - ], - "x-ms-correlation-request-id": [ - "be1a3738-d404-4dd0-966e-363e2120111b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20200724T233717Z:be1a3738-d404-4dd0-966e-363e2120111b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 24 Jul 2020 23:37:17 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "778" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Resources/deployments/ps9855\",\r\n \"name\": \"ps9855\",\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\": \"ps801\"\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-07-24T23:37:17.3706132Z\",\r\n \"duration\": \"PT3.0075875S\",\r\n \"correlationId\": \"b602692c-bfe5-45cb-bb08-9b959695368e\",\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/ps9661/providers/Microsoft.Resources/deployments/ps9855?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY2MS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4NTU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "3dccad3a-2b5b-405c-8b94-5a0db82d7680" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11977" - ], - "x-ms-request-id": [ - "7ef726cf-c9a4-45ac-955d-899cd788d86e" - ], - "x-ms-correlation-request-id": [ - "7ef726cf-c9a4-45ac-955d-899cd788d86e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20200724T233718Z:7ef726cf-c9a4-45ac-955d-899cd788d86e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 24 Jul 2020 23:37:17 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "778" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Resources/deployments/ps9855\",\r\n \"name\": \"ps9855\",\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\": \"ps801\"\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-07-24T23:37:17.3706132Z\",\r\n \"duration\": \"PT3.0075875S\",\r\n \"correlationId\": \"b602692c-bfe5-45cb-bb08-9b959695368e\",\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/ps9661/providers/Microsoft.Resources/deployments/ps9855?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY2MS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4NTU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "d8c8e2fe-f538-4de8-9f38-6b4125d41d00" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11975" - ], - "x-ms-request-id": [ - "17382b5d-b856-42f0-b92e-724b7d3755a5" - ], - "x-ms-correlation-request-id": [ - "17382b5d-b856-42f0-b92e-724b7d3755a5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20200724T233718Z:17382b5d-b856-42f0-b92e-724b7d3755a5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 24 Jul 2020 23:37:17 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "778" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Resources/deployments/ps9855\",\r\n \"name\": \"ps9855\",\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\": \"ps801\"\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-07-24T23:37:17.3706132Z\",\r\n \"duration\": \"PT3.0075875S\",\r\n \"correlationId\": \"b602692c-bfe5-45cb-bb08-9b959695368e\",\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/ps9661/providers/Microsoft.Resources/deployments/ps9855?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY2MS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4NTU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "e7d3f70e-3f7b-4355-b36b-d13b23cea54d" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11973" - ], - "x-ms-request-id": [ - "0caf45b8-0c90-4e47-a86b-879e4a40eaf5" - ], - "x-ms-correlation-request-id": [ - "0caf45b8-0c90-4e47-a86b-879e4a40eaf5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20200724T233718Z:0caf45b8-0c90-4e47-a86b-879e4a40eaf5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 24 Jul 2020 23:37:17 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "778" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Resources/deployments/ps9855\",\r\n \"name\": \"ps9855\",\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\": \"ps801\"\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-07-24T23:37:17.3706132Z\",\r\n \"duration\": \"PT3.0075875S\",\r\n \"correlationId\": \"b602692c-bfe5-45cb-bb08-9b959695368e\",\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/ps9661/providers/Microsoft.Resources/deployments/ps9855?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY2MS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4NTU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "506366df-e66c-4054-a17b-6386b1f953f7" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11971" - ], - "x-ms-request-id": [ - "c8adbe06-0795-4bad-813e-24df5dad091d" - ], - "x-ms-correlation-request-id": [ - "c8adbe06-0795-4bad-813e-24df5dad091d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20200724T233718Z:c8adbe06-0795-4bad-813e-24df5dad091d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 24 Jul 2020 23:37:18 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "778" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Resources/deployments/ps9855\",\r\n \"name\": \"ps9855\",\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\": \"ps801\"\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-07-24T23:37:17.3706132Z\",\r\n \"duration\": \"PT3.0075875S\",\r\n \"correlationId\": \"b602692c-bfe5-45cb-bb08-9b959695368e\",\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/ps9661/providers/Microsoft.Resources/deployments/ps9855?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY2MS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4NTU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "a4b9f54a-79a3-44bc-8047-d7f69dafd18b" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11969" - ], - "x-ms-request-id": [ - "85c0c32f-d10a-4daf-b422-6692a11751b0" - ], - "x-ms-correlation-request-id": [ - "85c0c32f-d10a-4daf-b422-6692a11751b0" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20200724T233719Z:85c0c32f-d10a-4daf-b422-6692a11751b0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 24 Jul 2020 23:37:18 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "778" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Resources/deployments/ps9855\",\r\n \"name\": \"ps9855\",\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\": \"ps801\"\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-07-24T23:37:17.3706132Z\",\r\n \"duration\": \"PT3.0075875S\",\r\n \"correlationId\": \"b602692c-bfe5-45cb-bb08-9b959695368e\",\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/ps9661/providers/Microsoft.Resources/deployments/ps9855?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY2MS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4NTU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "40d3ae19-8901-400c-bf4d-f11ee1f48370" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11967" - ], - "x-ms-request-id": [ - "d81fb447-f120-4396-9502-d177b78a2100" - ], - "x-ms-correlation-request-id": [ - "d81fb447-f120-4396-9502-d177b78a2100" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20200724T233719Z:d81fb447-f120-4396-9502-d177b78a2100" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 24 Jul 2020 23:37:18 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "778" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Resources/deployments/ps9855\",\r\n \"name\": \"ps9855\",\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\": \"ps801\"\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-07-24T23:37:17.3706132Z\",\r\n \"duration\": \"PT3.0075875S\",\r\n \"correlationId\": \"b602692c-bfe5-45cb-bb08-9b959695368e\",\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/ps9661/providers/Microsoft.Resources/deployments/ps9855?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY2MS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4NTU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "43a7f8bd-c854-4bb7-aeea-b82b6195570e" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11965" - ], - "x-ms-request-id": [ - "24eba58c-298d-4432-911f-7b93b9f3fcb3" - ], - "x-ms-correlation-request-id": [ - "24eba58c-298d-4432-911f-7b93b9f3fcb3" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20200724T233719Z:24eba58c-298d-4432-911f-7b93b9f3fcb3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 24 Jul 2020 23:37:18 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "778" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Resources/deployments/ps9855\",\r\n \"name\": \"ps9855\",\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\": \"ps801\"\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-07-24T23:37:17.3706132Z\",\r\n \"duration\": \"PT3.0075875S\",\r\n \"correlationId\": \"b602692c-bfe5-45cb-bb08-9b959695368e\",\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/ps9661/providers/Microsoft.Resources/deployments/ps9855?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY2MS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4NTU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "ccacec11-a2db-4216-a059-03f971c280e5" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11963" - ], - "x-ms-request-id": [ - "43637304-e56c-4139-979b-c5437da6ab7b" - ], - "x-ms-correlation-request-id": [ - "43637304-e56c-4139-979b-c5437da6ab7b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20200724T233719Z:43637304-e56c-4139-979b-c5437da6ab7b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 24 Jul 2020 23:37:18 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "778" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Resources/deployments/ps9855\",\r\n \"name\": \"ps9855\",\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\": \"ps801\"\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-07-24T23:37:17.3706132Z\",\r\n \"duration\": \"PT3.0075875S\",\r\n \"correlationId\": \"b602692c-bfe5-45cb-bb08-9b959695368e\",\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/ps9661/providers/Microsoft.Resources/deployments/ps9855?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY2MS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4NTU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "19e06585-8af2-420e-a9e3-3d21ea62cc87" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11961" - ], - "x-ms-request-id": [ - "a4c477eb-7656-480a-8491-73246d4ed53e" - ], - "x-ms-correlation-request-id": [ - "a4c477eb-7656-480a-8491-73246d4ed53e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20200724T233719Z:a4c477eb-7656-480a-8491-73246d4ed53e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 24 Jul 2020 23:37:19 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "778" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Resources/deployments/ps9855\",\r\n \"name\": \"ps9855\",\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\": \"ps801\"\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-07-24T23:37:17.3706132Z\",\r\n \"duration\": \"PT3.0075875S\",\r\n \"correlationId\": \"b602692c-bfe5-45cb-bb08-9b959695368e\",\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/ps9661/providers/Microsoft.Resources/deployments/ps9855?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY2MS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4NTU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "acd9b1e0-94bb-4abe-ad70-1388d2d4ed20" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11959" - ], - "x-ms-request-id": [ - "427f4610-297c-45a4-870d-d7797f4260e0" - ], - "x-ms-correlation-request-id": [ - "427f4610-297c-45a4-870d-d7797f4260e0" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20200724T233720Z:427f4610-297c-45a4-870d-d7797f4260e0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 24 Jul 2020 23:37:19 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "778" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Resources/deployments/ps9855\",\r\n \"name\": \"ps9855\",\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\": \"ps801\"\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-07-24T23:37:17.3706132Z\",\r\n \"duration\": \"PT3.0075875S\",\r\n \"correlationId\": \"b602692c-bfe5-45cb-bb08-9b959695368e\",\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/ps9661/providers/Microsoft.Resources/deployments/ps9855?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY2MS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4NTU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "d1f8544c-8148-4878-bd1f-796ee1929cf0" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11957" - ], - "x-ms-request-id": [ - "0208afbd-9838-4e4d-9325-58474a4a6091" - ], - "x-ms-correlation-request-id": [ - "0208afbd-9838-4e4d-9325-58474a4a6091" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20200724T233720Z:0208afbd-9838-4e4d-9325-58474a4a6091" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 24 Jul 2020 23:37:19 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "778" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Resources/deployments/ps9855\",\r\n \"name\": \"ps9855\",\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\": \"ps801\"\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-07-24T23:37:17.3706132Z\",\r\n \"duration\": \"PT3.0075875S\",\r\n \"correlationId\": \"b602692c-bfe5-45cb-bb08-9b959695368e\",\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/ps9661/providers/Microsoft.Resources/deployments/ps9855?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY2MS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4NTU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "31fa2d73-8748-4e50-ad79-7e6d01d15c0e" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11955" - ], - "x-ms-request-id": [ - "cbc4abed-f071-4342-b4e2-9383864d1835" - ], - "x-ms-correlation-request-id": [ - "cbc4abed-f071-4342-b4e2-9383864d1835" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20200724T233720Z:cbc4abed-f071-4342-b4e2-9383864d1835" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 24 Jul 2020 23:37:19 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "778" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Resources/deployments/ps9855\",\r\n \"name\": \"ps9855\",\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\": \"ps801\"\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-07-24T23:37:17.3706132Z\",\r\n \"duration\": \"PT3.0075875S\",\r\n \"correlationId\": \"b602692c-bfe5-45cb-bb08-9b959695368e\",\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/ps9661/providers/Microsoft.Resources/deployments/ps9855?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY2MS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4NTU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "694fa215-1c19-4d3b-9ab8-eedfc8fc8f33" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11953" - ], - "x-ms-request-id": [ - "d5310f6e-a817-4e75-9a22-4e6c18d0d1d1" - ], - "x-ms-correlation-request-id": [ - "d5310f6e-a817-4e75-9a22-4e6c18d0d1d1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20200724T233720Z:d5310f6e-a817-4e75-9a22-4e6c18d0d1d1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 24 Jul 2020 23:37:19 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "778" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Resources/deployments/ps9855\",\r\n \"name\": \"ps9855\",\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\": \"ps801\"\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-07-24T23:37:17.3706132Z\",\r\n \"duration\": \"PT3.0075875S\",\r\n \"correlationId\": \"b602692c-bfe5-45cb-bb08-9b959695368e\",\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/ps9661/providers/Microsoft.Resources/deployments/ps9855?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY2MS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4NTU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "740e14ec-a297-4d81-b991-3c088f93531c" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11951" - ], - "x-ms-request-id": [ - "bbe92c88-a3ad-438c-abe8-dfac5e6e554e" - ], - "x-ms-correlation-request-id": [ - "bbe92c88-a3ad-438c-abe8-dfac5e6e554e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20200724T233721Z:bbe92c88-a3ad-438c-abe8-dfac5e6e554e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 24 Jul 2020 23:37:20 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "778" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Resources/deployments/ps9855\",\r\n \"name\": \"ps9855\",\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\": \"ps801\"\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-07-24T23:37:17.3706132Z\",\r\n \"duration\": \"PT3.0075875S\",\r\n \"correlationId\": \"b602692c-bfe5-45cb-bb08-9b959695368e\",\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/ps9661/providers/Microsoft.Resources/deployments/ps9855?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY2MS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4NTU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "cd491cef-9396-48fb-9349-9a2e5f758c82" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11949" - ], - "x-ms-request-id": [ - "5a77497c-582c-42ed-94ab-82ffa7580591" - ], - "x-ms-correlation-request-id": [ - "5a77497c-582c-42ed-94ab-82ffa7580591" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20200724T233721Z:5a77497c-582c-42ed-94ab-82ffa7580591" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 24 Jul 2020 23:37:20 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "778" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Resources/deployments/ps9855\",\r\n \"name\": \"ps9855\",\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\": \"ps801\"\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-07-24T23:37:17.3706132Z\",\r\n \"duration\": \"PT3.0075875S\",\r\n \"correlationId\": \"b602692c-bfe5-45cb-bb08-9b959695368e\",\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/ps9661/providers/Microsoft.Resources/deployments/ps9855?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY2MS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4NTU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "31a835f3-4b23-4eab-96d6-fe3348c913d5" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11947" - ], - "x-ms-request-id": [ - "41afc697-9e68-49d0-9d7a-d152576a9ad8" - ], - "x-ms-correlation-request-id": [ - "41afc697-9e68-49d0-9d7a-d152576a9ad8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20200724T233721Z:41afc697-9e68-49d0-9d7a-d152576a9ad8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 24 Jul 2020 23:37:20 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "778" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Resources/deployments/ps9855\",\r\n \"name\": \"ps9855\",\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\": \"ps801\"\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-07-24T23:37:17.3706132Z\",\r\n \"duration\": \"PT3.0075875S\",\r\n \"correlationId\": \"b602692c-bfe5-45cb-bb08-9b959695368e\",\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/ps9661/providers/Microsoft.Resources/deployments/ps9855?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY2MS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4NTU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "12e9bd81-5b64-4a6b-8ad6-bed965ec5ca0" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11945" - ], - "x-ms-request-id": [ - "1ca8d514-fe1b-4ef1-b1d2-65c2efd8e166" - ], - "x-ms-correlation-request-id": [ - "1ca8d514-fe1b-4ef1-b1d2-65c2efd8e166" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20200724T233721Z:1ca8d514-fe1b-4ef1-b1d2-65c2efd8e166" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 24 Jul 2020 23:37:20 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "778" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Resources/deployments/ps9855\",\r\n \"name\": \"ps9855\",\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\": \"ps801\"\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-07-24T23:37:17.3706132Z\",\r\n \"duration\": \"PT3.0075875S\",\r\n \"correlationId\": \"b602692c-bfe5-45cb-bb08-9b959695368e\",\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/ps9661/providers/Microsoft.Resources/deployments/ps9855?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY2MS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4NTU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "b1ee01eb-49e1-4612-a35c-a00862d9540b" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11943" - ], - "x-ms-request-id": [ - "200b18e6-d018-4879-b20c-a71e15abd857" - ], - "x-ms-correlation-request-id": [ - "200b18e6-d018-4879-b20c-a71e15abd857" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20200724T233721Z:200b18e6-d018-4879-b20c-a71e15abd857" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 24 Jul 2020 23:37:21 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "778" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Resources/deployments/ps9855\",\r\n \"name\": \"ps9855\",\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\": \"ps801\"\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-07-24T23:37:17.3706132Z\",\r\n \"duration\": \"PT3.0075875S\",\r\n \"correlationId\": \"b602692c-bfe5-45cb-bb08-9b959695368e\",\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/ps9661/providers/Microsoft.Resources/deployments/ps9855?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY2MS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4NTU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "10c2a4a7-6a46-425b-854c-ef4098e21337" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11941" - ], - "x-ms-request-id": [ - "ffa15dc1-4e39-45b6-b8bb-513c273464be" - ], - "x-ms-correlation-request-id": [ - "ffa15dc1-4e39-45b6-b8bb-513c273464be" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20200724T233722Z:ffa15dc1-4e39-45b6-b8bb-513c273464be" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 24 Jul 2020 23:37:21 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "778" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Resources/deployments/ps9855\",\r\n \"name\": \"ps9855\",\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\": \"ps801\"\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-07-24T23:37:17.3706132Z\",\r\n \"duration\": \"PT3.0075875S\",\r\n \"correlationId\": \"b602692c-bfe5-45cb-bb08-9b959695368e\",\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/ps9661/providers/Microsoft.Resources/deployments/ps9855?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY2MS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4NTU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "11513e79-c28a-4bef-847b-ed05e7382be5" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11939" - ], - "x-ms-request-id": [ - "b240ee58-40c2-4817-89cb-cb9eba511a63" - ], - "x-ms-correlation-request-id": [ - "b240ee58-40c2-4817-89cb-cb9eba511a63" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20200724T233722Z:b240ee58-40c2-4817-89cb-cb9eba511a63" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 24 Jul 2020 23:37:21 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "778" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Resources/deployments/ps9855\",\r\n \"name\": \"ps9855\",\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\": \"ps801\"\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-07-24T23:37:17.3706132Z\",\r\n \"duration\": \"PT3.0075875S\",\r\n \"correlationId\": \"b602692c-bfe5-45cb-bb08-9b959695368e\",\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/ps9661/providers/Microsoft.Resources/deployments/ps9855?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY2MS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4NTU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "e75e9341-a35f-4338-9c2a-68a14023e0c3" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11937" - ], - "x-ms-request-id": [ - "d99f450c-2669-4567-bb96-430d3113039e" - ], - "x-ms-correlation-request-id": [ - "d99f450c-2669-4567-bb96-430d3113039e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20200724T233722Z:d99f450c-2669-4567-bb96-430d3113039e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 24 Jul 2020 23:37:21 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "778" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Resources/deployments/ps9855\",\r\n \"name\": \"ps9855\",\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\": \"ps801\"\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-07-24T23:37:17.3706132Z\",\r\n \"duration\": \"PT3.0075875S\",\r\n \"correlationId\": \"b602692c-bfe5-45cb-bb08-9b959695368e\",\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/ps9661/providers/Microsoft.Resources/deployments/ps9855?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY2MS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4NTU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "e74d251c-9e08-4f68-9e2a-9a134813c403" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11935" - ], - "x-ms-request-id": [ - "92716c32-c3b0-4f79-8975-638409359a21" - ], - "x-ms-correlation-request-id": [ - "92716c32-c3b0-4f79-8975-638409359a21" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20200724T233722Z:92716c32-c3b0-4f79-8975-638409359a21" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 24 Jul 2020 23:37:22 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "778" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Resources/deployments/ps9855\",\r\n \"name\": \"ps9855\",\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\": \"ps801\"\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-07-24T23:37:17.3706132Z\",\r\n \"duration\": \"PT3.0075875S\",\r\n \"correlationId\": \"b602692c-bfe5-45cb-bb08-9b959695368e\",\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/ps9661/providers/Microsoft.Resources/deployments/ps9855?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY2MS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4NTU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "4e8cfce8-53c1-432e-a0ef-e6bfaae97c79" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11933" - ], - "x-ms-request-id": [ - "8c751dd1-b6b7-4862-9c1e-5ce5bb684e6f" - ], - "x-ms-correlation-request-id": [ - "8c751dd1-b6b7-4862-9c1e-5ce5bb684e6f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20200724T233723Z:8c751dd1-b6b7-4862-9c1e-5ce5bb684e6f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 24 Jul 2020 23:37:22 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "778" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Resources/deployments/ps9855\",\r\n \"name\": \"ps9855\",\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\": \"ps801\"\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-07-24T23:37:17.3706132Z\",\r\n \"duration\": \"PT3.0075875S\",\r\n \"correlationId\": \"b602692c-bfe5-45cb-bb08-9b959695368e\",\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/ps9661/providers/Microsoft.Resources/deployments/ps9855?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY2MS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4NTU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "7fe3845f-999c-4a4e-aa65-37a7b913750f" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11931" - ], - "x-ms-request-id": [ - "1fe8df1e-1b25-4b63-b211-2272bcebf7ed" - ], - "x-ms-correlation-request-id": [ - "1fe8df1e-1b25-4b63-b211-2272bcebf7ed" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20200724T233723Z:1fe8df1e-1b25-4b63-b211-2272bcebf7ed" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 24 Jul 2020 23:37:22 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "778" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Resources/deployments/ps9855\",\r\n \"name\": \"ps9855\",\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\": \"ps801\"\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-07-24T23:37:17.3706132Z\",\r\n \"duration\": \"PT3.0075875S\",\r\n \"correlationId\": \"b602692c-bfe5-45cb-bb08-9b959695368e\",\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/ps9661/providers/Microsoft.Resources/deployments/ps9855?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY2MS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4NTU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "c94d1014-d7f3-41de-812d-d99c56c7aa77" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11929" - ], - "x-ms-request-id": [ - "eca9a49a-f629-4e13-b7c1-8f45c8c15d2f" - ], - "x-ms-correlation-request-id": [ - "eca9a49a-f629-4e13-b7c1-8f45c8c15d2f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20200724T233723Z:eca9a49a-f629-4e13-b7c1-8f45c8c15d2f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 24 Jul 2020 23:37:22 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "778" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Resources/deployments/ps9855\",\r\n \"name\": \"ps9855\",\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\": \"ps801\"\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-07-24T23:37:17.3706132Z\",\r\n \"duration\": \"PT3.0075875S\",\r\n \"correlationId\": \"b602692c-bfe5-45cb-bb08-9b959695368e\",\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/ps9661/providers/Microsoft.Resources/deployments/ps9855?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY2MS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4NTU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "e2ece76b-33c9-43d2-beb8-ccad53bafacb" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11927" - ], - "x-ms-request-id": [ - "7a441b12-c009-482c-9409-2002c6418416" - ], - "x-ms-correlation-request-id": [ - "7a441b12-c009-482c-9409-2002c6418416" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20200724T233723Z:7a441b12-c009-482c-9409-2002c6418416" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 24 Jul 2020 23:37:22 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "778" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Resources/deployments/ps9855\",\r\n \"name\": \"ps9855\",\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\": \"ps801\"\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-07-24T23:37:17.3706132Z\",\r\n \"duration\": \"PT3.0075875S\",\r\n \"correlationId\": \"b602692c-bfe5-45cb-bb08-9b959695368e\",\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/ps9661/providers/Microsoft.Resources/deployments/ps9855?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY2MS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4NTU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "0fbc52f1-b109-4528-8888-b22d82162116" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11925" - ], - "x-ms-request-id": [ - "eb4dce9c-c787-46da-92c4-d8e717bba21f" - ], - "x-ms-correlation-request-id": [ - "eb4dce9c-c787-46da-92c4-d8e717bba21f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20200724T233724Z:eb4dce9c-c787-46da-92c4-d8e717bba21f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 24 Jul 2020 23:37:23 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "778" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Resources/deployments/ps9855\",\r\n \"name\": \"ps9855\",\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\": \"ps801\"\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-07-24T23:37:17.3706132Z\",\r\n \"duration\": \"PT3.0075875S\",\r\n \"correlationId\": \"b602692c-bfe5-45cb-bb08-9b959695368e\",\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/ps9661/providers/Microsoft.Resources/deployments/ps9855?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY2MS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4NTU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "986b1049-8584-4fbd-8fea-1111637df46f" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11923" - ], - "x-ms-request-id": [ - "97bd2ae7-53e3-4d7b-a43a-19dacbcd9cd2" - ], - "x-ms-correlation-request-id": [ - "97bd2ae7-53e3-4d7b-a43a-19dacbcd9cd2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20200724T233724Z:97bd2ae7-53e3-4d7b-a43a-19dacbcd9cd2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 24 Jul 2020 23:37:23 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "778" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Resources/deployments/ps9855\",\r\n \"name\": \"ps9855\",\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\": \"ps801\"\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-07-24T23:37:17.3706132Z\",\r\n \"duration\": \"PT3.0075875S\",\r\n \"correlationId\": \"b602692c-bfe5-45cb-bb08-9b959695368e\",\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/ps9661/providers/Microsoft.Resources/deployments/ps9855?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY2MS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4NTU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "9de1b544-a9a4-4ca2-aa80-c68ec072c39e" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11921" - ], - "x-ms-request-id": [ - "a834de39-6704-460e-8a29-a454e0536d31" - ], - "x-ms-correlation-request-id": [ - "a834de39-6704-460e-8a29-a454e0536d31" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20200724T233724Z:a834de39-6704-460e-8a29-a454e0536d31" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 24 Jul 2020 23:37:23 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "778" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Resources/deployments/ps9855\",\r\n \"name\": \"ps9855\",\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\": \"ps801\"\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-07-24T23:37:17.3706132Z\",\r\n \"duration\": \"PT3.0075875S\",\r\n \"correlationId\": \"b602692c-bfe5-45cb-bb08-9b959695368e\",\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/ps9661/providers/Microsoft.Resources/deployments/ps9855?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY2MS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4NTU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "70609ef5-2945-4e1c-a77d-5eec2d563275" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11919" - ], - "x-ms-request-id": [ - "beeed881-1caa-46a5-9a76-1d96560e4086" - ], - "x-ms-correlation-request-id": [ - "beeed881-1caa-46a5-9a76-1d96560e4086" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20200724T233724Z:beeed881-1caa-46a5-9a76-1d96560e4086" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 24 Jul 2020 23:37:23 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "778" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Resources/deployments/ps9855\",\r\n \"name\": \"ps9855\",\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\": \"ps801\"\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-07-24T23:37:17.3706132Z\",\r\n \"duration\": \"PT3.0075875S\",\r\n \"correlationId\": \"b602692c-bfe5-45cb-bb08-9b959695368e\",\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/ps9661/providers/Microsoft.Resources/deployments/ps9855?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY2MS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4NTU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "264a4d08-ce9c-4d82-ad93-110f801e9b3d" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11917" - ], - "x-ms-request-id": [ - "b7327b2c-d239-4141-8399-1ee35ac9e472" - ], - "x-ms-correlation-request-id": [ - "b7327b2c-d239-4141-8399-1ee35ac9e472" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20200724T233725Z:b7327b2c-d239-4141-8399-1ee35ac9e472" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 24 Jul 2020 23:37:24 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "778" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Resources/deployments/ps9855\",\r\n \"name\": \"ps9855\",\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\": \"ps801\"\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-07-24T23:37:17.3706132Z\",\r\n \"duration\": \"PT3.0075875S\",\r\n \"correlationId\": \"b602692c-bfe5-45cb-bb08-9b959695368e\",\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/ps9661/providers/Microsoft.Resources/deployments/ps9855?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY2MS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4NTU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "d215b6ee-737a-46f2-bdd2-4c3b5a88defb" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11915" - ], - "x-ms-request-id": [ - "0468203c-3f03-4ea1-a3d2-17401c1054dd" - ], - "x-ms-correlation-request-id": [ - "0468203c-3f03-4ea1-a3d2-17401c1054dd" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20200724T233725Z:0468203c-3f03-4ea1-a3d2-17401c1054dd" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 24 Jul 2020 23:37:24 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "778" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Resources/deployments/ps9855\",\r\n \"name\": \"ps9855\",\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\": \"ps801\"\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-07-24T23:37:17.3706132Z\",\r\n \"duration\": \"PT3.0075875S\",\r\n \"correlationId\": \"b602692c-bfe5-45cb-bb08-9b959695368e\",\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/ps9661/providers/Microsoft.Resources/deployments/ps9855?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY2MS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4NTU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "0b63eb8f-b6aa-4f74-a64f-ef9a01b82959" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11913" - ], - "x-ms-request-id": [ - "403e4967-e5dc-4d86-8d4d-5fa82cb2c7ea" - ], - "x-ms-correlation-request-id": [ - "403e4967-e5dc-4d86-8d4d-5fa82cb2c7ea" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20200724T233725Z:403e4967-e5dc-4d86-8d4d-5fa82cb2c7ea" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 24 Jul 2020 23:37:24 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "778" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Resources/deployments/ps9855\",\r\n \"name\": \"ps9855\",\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\": \"ps801\"\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-07-24T23:37:17.3706132Z\",\r\n \"duration\": \"PT3.0075875S\",\r\n \"correlationId\": \"b602692c-bfe5-45cb-bb08-9b959695368e\",\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/ps9661/providers/Microsoft.Resources/deployments/ps9855?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY2MS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4NTU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "d8bfe109-f07a-46f4-a664-0b850534feaf" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11911" - ], - "x-ms-request-id": [ - "2a919f90-1fb6-4d0c-b934-c2cc74be30db" - ], - "x-ms-correlation-request-id": [ - "2a919f90-1fb6-4d0c-b934-c2cc74be30db" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20200724T233725Z:2a919f90-1fb6-4d0c-b934-c2cc74be30db" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 24 Jul 2020 23:37:24 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "778" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Resources/deployments/ps9855\",\r\n \"name\": \"ps9855\",\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\": \"ps801\"\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-07-24T23:37:17.3706132Z\",\r\n \"duration\": \"PT3.0075875S\",\r\n \"correlationId\": \"b602692c-bfe5-45cb-bb08-9b959695368e\",\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/ps9661/providers/Microsoft.Resources/deployments/ps9855?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY2MS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4NTU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "8b4acd66-f560-4a5f-80ba-70b3bbe647e5" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11909" - ], - "x-ms-request-id": [ - "463cb4c7-b333-48ee-a4d4-406f14bf1f75" - ], - "x-ms-correlation-request-id": [ - "463cb4c7-b333-48ee-a4d4-406f14bf1f75" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20200724T233725Z:463cb4c7-b333-48ee-a4d4-406f14bf1f75" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 24 Jul 2020 23:37:24 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "778" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Resources/deployments/ps9855\",\r\n \"name\": \"ps9855\",\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\": \"ps801\"\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-07-24T23:37:17.3706132Z\",\r\n \"duration\": \"PT3.0075875S\",\r\n \"correlationId\": \"b602692c-bfe5-45cb-bb08-9b959695368e\",\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/ps9661/providers/Microsoft.Resources/deployments/ps9855?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY2MS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4NTU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "07b33d60-7619-4757-b1e8-9975f490427d" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11907" - ], - "x-ms-request-id": [ - "efbb9944-e053-460f-ae3c-13c5433def8b" - ], - "x-ms-correlation-request-id": [ - "efbb9944-e053-460f-ae3c-13c5433def8b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20200724T233726Z:efbb9944-e053-460f-ae3c-13c5433def8b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 24 Jul 2020 23:37:25 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "778" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Resources/deployments/ps9855\",\r\n \"name\": \"ps9855\",\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\": \"ps801\"\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-07-24T23:37:17.3706132Z\",\r\n \"duration\": \"PT3.0075875S\",\r\n \"correlationId\": \"b602692c-bfe5-45cb-bb08-9b959695368e\",\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/ps9661/providers/Microsoft.Resources/deployments/ps9855?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY2MS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4NTU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "3543de99-5b0d-4bf7-8d2d-fda15dacc6fb" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11905" - ], - "x-ms-request-id": [ - "75a88143-2b32-4e99-b2c9-07329b1e528b" - ], - "x-ms-correlation-request-id": [ - "75a88143-2b32-4e99-b2c9-07329b1e528b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20200724T233726Z:75a88143-2b32-4e99-b2c9-07329b1e528b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 24 Jul 2020 23:37:25 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "778" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Resources/deployments/ps9855\",\r\n \"name\": \"ps9855\",\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\": \"ps801\"\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-07-24T23:37:17.3706132Z\",\r\n \"duration\": \"PT3.0075875S\",\r\n \"correlationId\": \"b602692c-bfe5-45cb-bb08-9b959695368e\",\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/ps9661/providers/Microsoft.Resources/deployments/ps9855?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY2MS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4NTU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "e5b37873-8cda-4baa-81ef-05b8514ebf41" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11903" - ], - "x-ms-request-id": [ - "d5cd34b5-d344-40ee-8265-b016303a88f6" - ], - "x-ms-correlation-request-id": [ - "d5cd34b5-d344-40ee-8265-b016303a88f6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20200724T233726Z:d5cd34b5-d344-40ee-8265-b016303a88f6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 24 Jul 2020 23:37:25 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "778" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Resources/deployments/ps9855\",\r\n \"name\": \"ps9855\",\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\": \"ps801\"\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-07-24T23:37:17.3706132Z\",\r\n \"duration\": \"PT3.0075875S\",\r\n \"correlationId\": \"b602692c-bfe5-45cb-bb08-9b959695368e\",\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/ps9661/providers/Microsoft.Resources/deployments/ps9855?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY2MS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4NTU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "43a7ced1-28d0-49a5-ab57-e26cfccf8eda" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11901" - ], - "x-ms-request-id": [ - "f5fe2337-53bb-45bb-bd30-a3b655155466" - ], - "x-ms-correlation-request-id": [ - "f5fe2337-53bb-45bb-bd30-a3b655155466" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20200724T233726Z:f5fe2337-53bb-45bb-bd30-a3b655155466" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 24 Jul 2020 23:37:25 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "778" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Resources/deployments/ps9855\",\r\n \"name\": \"ps9855\",\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\": \"ps801\"\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-07-24T23:37:17.3706132Z\",\r\n \"duration\": \"PT3.0075875S\",\r\n \"correlationId\": \"b602692c-bfe5-45cb-bb08-9b959695368e\",\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/ps9661/providers/Microsoft.Resources/deployments/ps9855?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY2MS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4NTU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "fdef9e8e-d460-4bf3-8ba1-9feeca5029a7" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11899" - ], - "x-ms-request-id": [ - "94eeec27-b22d-4f42-94e6-6ea48a05ffc7" - ], - "x-ms-correlation-request-id": [ - "94eeec27-b22d-4f42-94e6-6ea48a05ffc7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20200724T233726Z:94eeec27-b22d-4f42-94e6-6ea48a05ffc7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 24 Jul 2020 23:37:26 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "778" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Resources/deployments/ps9855\",\r\n \"name\": \"ps9855\",\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\": \"ps801\"\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-07-24T23:37:17.3706132Z\",\r\n \"duration\": \"PT3.0075875S\",\r\n \"correlationId\": \"b602692c-bfe5-45cb-bb08-9b959695368e\",\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/ps9661/providers/Microsoft.Resources/deployments/ps9855?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY2MS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4NTU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "14065ef6-1cc6-4b99-beb2-ea67174e30cc" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11897" - ], - "x-ms-request-id": [ - "ac7a515e-941d-40ce-958d-1db9005a722b" - ], - "x-ms-correlation-request-id": [ - "ac7a515e-941d-40ce-958d-1db9005a722b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20200724T233727Z:ac7a515e-941d-40ce-958d-1db9005a722b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 24 Jul 2020 23:37:26 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "778" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Resources/deployments/ps9855\",\r\n \"name\": \"ps9855\",\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\": \"ps801\"\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-07-24T23:37:17.3706132Z\",\r\n \"duration\": \"PT3.0075875S\",\r\n \"correlationId\": \"b602692c-bfe5-45cb-bb08-9b959695368e\",\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/ps9661/providers/Microsoft.Resources/deployments/ps9855?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY2MS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4NTU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "350ec2c6-ae98-4bc7-ae73-9924081963ff" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11895" - ], - "x-ms-request-id": [ - "6f338215-b87c-44bd-8b0a-919366f1e470" - ], - "x-ms-correlation-request-id": [ - "6f338215-b87c-44bd-8b0a-919366f1e470" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20200724T233727Z:6f338215-b87c-44bd-8b0a-919366f1e470" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 24 Jul 2020 23:37:26 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "778" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Resources/deployments/ps9855\",\r\n \"name\": \"ps9855\",\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\": \"ps801\"\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-07-24T23:37:17.3706132Z\",\r\n \"duration\": \"PT3.0075875S\",\r\n \"correlationId\": \"b602692c-bfe5-45cb-bb08-9b959695368e\",\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/ps9661/providers/Microsoft.Resources/deployments/ps9855?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY2MS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4NTU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "5f3dd0ef-3a72-4715-892c-4f21c448dec6" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11893" - ], - "x-ms-request-id": [ - "695a3a4c-b9be-431a-9ad1-729d69adec36" - ], - "x-ms-correlation-request-id": [ - "695a3a4c-b9be-431a-9ad1-729d69adec36" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20200724T233727Z:695a3a4c-b9be-431a-9ad1-729d69adec36" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 24 Jul 2020 23:37:26 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "778" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Resources/deployments/ps9855\",\r\n \"name\": \"ps9855\",\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\": \"ps801\"\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-07-24T23:37:17.3706132Z\",\r\n \"duration\": \"PT3.0075875S\",\r\n \"correlationId\": \"b602692c-bfe5-45cb-bb08-9b959695368e\",\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/ps9661/providers/Microsoft.Resources/deployments/ps9855?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY2MS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4NTU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "1a1adea6-9270-40d0-92c0-91afe7eabe5a" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11891" - ], - "x-ms-request-id": [ - "3c01788a-c86d-4bc8-871a-5b199216db9e" - ], - "x-ms-correlation-request-id": [ - "3c01788a-c86d-4bc8-871a-5b199216db9e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20200724T233727Z:3c01788a-c86d-4bc8-871a-5b199216db9e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 24 Jul 2020 23:37:26 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "778" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Resources/deployments/ps9855\",\r\n \"name\": \"ps9855\",\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\": \"ps801\"\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-07-24T23:37:17.3706132Z\",\r\n \"duration\": \"PT3.0075875S\",\r\n \"correlationId\": \"b602692c-bfe5-45cb-bb08-9b959695368e\",\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/ps9661/providers/Microsoft.Resources/deployments/ps9855?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY2MS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4NTU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "bf432f9f-f018-4452-8ca9-1147141a5211" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11889" - ], - "x-ms-request-id": [ - "a4dd0672-7a07-4923-9a12-b34ded2df17c" - ], - "x-ms-correlation-request-id": [ - "a4dd0672-7a07-4923-9a12-b34ded2df17c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20200724T233728Z:a4dd0672-7a07-4923-9a12-b34ded2df17c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 24 Jul 2020 23:37:28 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "778" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Resources/deployments/ps9855\",\r\n \"name\": \"ps9855\",\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\": \"ps801\"\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-07-24T23:37:17.3706132Z\",\r\n \"duration\": \"PT3.0075875S\",\r\n \"correlationId\": \"b602692c-bfe5-45cb-bb08-9b959695368e\",\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/ps9661/providers/Microsoft.Resources/deployments/ps9855?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY2MS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4NTU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "163c6959-ed9b-4b66-9ba8-478539258b0b" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11887" - ], - "x-ms-request-id": [ - "2177accb-0572-4dd3-b53a-d5719d7da879" - ], - "x-ms-correlation-request-id": [ - "2177accb-0572-4dd3-b53a-d5719d7da879" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20200724T233728Z:2177accb-0572-4dd3-b53a-d5719d7da879" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 24 Jul 2020 23:37:28 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "778" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Resources/deployments/ps9855\",\r\n \"name\": \"ps9855\",\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\": \"ps801\"\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-07-24T23:37:17.3706132Z\",\r\n \"duration\": \"PT3.0075875S\",\r\n \"correlationId\": \"b602692c-bfe5-45cb-bb08-9b959695368e\",\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/ps9661/providers/Microsoft.Resources/deployments/ps9855?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY2MS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4NTU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "f8f4169c-d91a-4b86-8a27-caefd541395d" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11885" - ], - "x-ms-request-id": [ - "7786c1bc-5e64-4904-bc61-14ea04c51be2" - ], - "x-ms-correlation-request-id": [ - "7786c1bc-5e64-4904-bc61-14ea04c51be2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20200724T233728Z:7786c1bc-5e64-4904-bc61-14ea04c51be2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 24 Jul 2020 23:37:28 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "778" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Resources/deployments/ps9855\",\r\n \"name\": \"ps9855\",\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\": \"ps801\"\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-07-24T23:37:17.3706132Z\",\r\n \"duration\": \"PT3.0075875S\",\r\n \"correlationId\": \"b602692c-bfe5-45cb-bb08-9b959695368e\",\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/ps9661/providers/Microsoft.Resources/deployments/ps9855?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY2MS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4NTU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "4df53d1c-0d30-44f9-83be-e47455729baa" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11883" - ], - "x-ms-request-id": [ - "e6205888-4669-4e06-96f3-f3f4e68cf4c0" - ], - "x-ms-correlation-request-id": [ - "e6205888-4669-4e06-96f3-f3f4e68cf4c0" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20200724T233728Z:e6205888-4669-4e06-96f3-f3f4e68cf4c0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 24 Jul 2020 23:37:28 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "778" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Resources/deployments/ps9855\",\r\n \"name\": \"ps9855\",\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\": \"ps801\"\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-07-24T23:37:17.3706132Z\",\r\n \"duration\": \"PT3.0075875S\",\r\n \"correlationId\": \"b602692c-bfe5-45cb-bb08-9b959695368e\",\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/ps9661/providers/Microsoft.Resources/deployments/ps9855?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY2MS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4NTU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "ca567d8d-0ffe-42f4-8492-9913d4ec814b" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11881" - ], - "x-ms-request-id": [ - "bbacad77-6be9-4f45-be54-fa50b9f2a655" - ], - "x-ms-correlation-request-id": [ - "bbacad77-6be9-4f45-be54-fa50b9f2a655" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20200724T233728Z:bbacad77-6be9-4f45-be54-fa50b9f2a655" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 24 Jul 2020 23:37:28 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "778" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Resources/deployments/ps9855\",\r\n \"name\": \"ps9855\",\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\": \"ps801\"\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-07-24T23:37:17.3706132Z\",\r\n \"duration\": \"PT3.0075875S\",\r\n \"correlationId\": \"b602692c-bfe5-45cb-bb08-9b959695368e\",\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/ps9661/providers/Microsoft.Resources/deployments/ps9855?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY2MS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4NTU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "7ce17d1d-849b-4a79-b02f-065ee6898b0e" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11879" - ], - "x-ms-request-id": [ - "dbd00821-b7d9-45c4-9b43-0d1f924bab05" - ], - "x-ms-correlation-request-id": [ - "dbd00821-b7d9-45c4-9b43-0d1f924bab05" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20200724T233729Z:dbd00821-b7d9-45c4-9b43-0d1f924bab05" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 24 Jul 2020 23:37:29 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "778" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Resources/deployments/ps9855\",\r\n \"name\": \"ps9855\",\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\": \"ps801\"\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-07-24T23:37:17.3706132Z\",\r\n \"duration\": \"PT3.0075875S\",\r\n \"correlationId\": \"b602692c-bfe5-45cb-bb08-9b959695368e\",\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/ps9661/providers/Microsoft.Resources/deployments/ps9855?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY2MS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4NTU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "f5eb9142-66f3-427e-9d6a-b0a41b268da0" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11877" - ], - "x-ms-request-id": [ - "e126de1c-a4cd-4c79-86be-c99c564c8df3" - ], - "x-ms-correlation-request-id": [ - "e126de1c-a4cd-4c79-86be-c99c564c8df3" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20200724T233729Z:e126de1c-a4cd-4c79-86be-c99c564c8df3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 24 Jul 2020 23:37:29 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "778" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Resources/deployments/ps9855\",\r\n \"name\": \"ps9855\",\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\": \"ps801\"\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-07-24T23:37:17.3706132Z\",\r\n \"duration\": \"PT3.0075875S\",\r\n \"correlationId\": \"b602692c-bfe5-45cb-bb08-9b959695368e\",\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/ps9661/providers/Microsoft.Resources/deployments/ps9855?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY2MS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4NTU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "4246c5b4-975e-4d5c-9b11-e9f8db87e45b" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11875" - ], - "x-ms-request-id": [ - "cfc2b0ec-f6d9-45ec-a7b1-923efe09a038" - ], - "x-ms-correlation-request-id": [ - "cfc2b0ec-f6d9-45ec-a7b1-923efe09a038" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20200724T233729Z:cfc2b0ec-f6d9-45ec-a7b1-923efe09a038" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 24 Jul 2020 23:37:29 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "778" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Resources/deployments/ps9855\",\r\n \"name\": \"ps9855\",\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\": \"ps801\"\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-07-24T23:37:17.3706132Z\",\r\n \"duration\": \"PT3.0075875S\",\r\n \"correlationId\": \"b602692c-bfe5-45cb-bb08-9b959695368e\",\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/ps9661/providers/Microsoft.Resources/deployments/ps9855?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY2MS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4NTU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "35c2d001-d33a-4573-af0c-e01457ec032a" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11873" - ], - "x-ms-request-id": [ - "a7018077-8dc7-48e2-aa3d-339a5346d904" - ], - "x-ms-correlation-request-id": [ - "a7018077-8dc7-48e2-aa3d-339a5346d904" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20200724T233729Z:a7018077-8dc7-48e2-aa3d-339a5346d904" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 24 Jul 2020 23:37:29 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "778" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Resources/deployments/ps9855\",\r\n \"name\": \"ps9855\",\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\": \"ps801\"\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-07-24T23:37:17.3706132Z\",\r\n \"duration\": \"PT3.0075875S\",\r\n \"correlationId\": \"b602692c-bfe5-45cb-bb08-9b959695368e\",\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/ps9661/providers/Microsoft.Resources/deployments/ps9855?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY2MS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4NTU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "33729c97-4822-4f55-918f-6e5b195b8853" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11871" - ], - "x-ms-request-id": [ - "620fc366-4920-432a-97e3-eef9e172877f" - ], - "x-ms-correlation-request-id": [ - "620fc366-4920-432a-97e3-eef9e172877f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20200724T233729Z:620fc366-4920-432a-97e3-eef9e172877f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 24 Jul 2020 23:37:29 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "778" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Resources/deployments/ps9855\",\r\n \"name\": \"ps9855\",\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\": \"ps801\"\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-07-24T23:37:17.3706132Z\",\r\n \"duration\": \"PT3.0075875S\",\r\n \"correlationId\": \"b602692c-bfe5-45cb-bb08-9b959695368e\",\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/ps9661/providers/Microsoft.Resources/deployments/ps9855?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY2MS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4NTU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "25f8df87-1b3a-4859-9a6d-3b130e8d8404" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11869" - ], - "x-ms-request-id": [ - "3b9d61a8-192b-415d-90b1-0fb282d3f9a3" - ], - "x-ms-correlation-request-id": [ - "3b9d61a8-192b-415d-90b1-0fb282d3f9a3" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20200724T233730Z:3b9d61a8-192b-415d-90b1-0fb282d3f9a3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 24 Jul 2020 23:37:30 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "778" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Resources/deployments/ps9855\",\r\n \"name\": \"ps9855\",\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\": \"ps801\"\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-07-24T23:37:17.3706132Z\",\r\n \"duration\": \"PT3.0075875S\",\r\n \"correlationId\": \"b602692c-bfe5-45cb-bb08-9b959695368e\",\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/ps9661/providers/Microsoft.Resources/deployments/ps9855?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY2MS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4NTU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "2682b6bd-fde6-4127-bd34-0660b71eeeab" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11867" - ], - "x-ms-request-id": [ - "cade1c46-195a-4ed4-bc5f-aca4357d0977" - ], - "x-ms-correlation-request-id": [ - "cade1c46-195a-4ed4-bc5f-aca4357d0977" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20200724T233730Z:cade1c46-195a-4ed4-bc5f-aca4357d0977" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 24 Jul 2020 23:37:30 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "778" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Resources/deployments/ps9855\",\r\n \"name\": \"ps9855\",\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\": \"ps801\"\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-07-24T23:37:17.3706132Z\",\r\n \"duration\": \"PT3.0075875S\",\r\n \"correlationId\": \"b602692c-bfe5-45cb-bb08-9b959695368e\",\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/ps9661/providers/Microsoft.Resources/deployments/ps9855?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY2MS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4NTU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "b0d0815f-3c0b-47e9-aae1-4bd70e18d833" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11865" - ], - "x-ms-request-id": [ - "2ee10e72-035d-4cab-81b3-3717b9ed9b09" - ], - "x-ms-correlation-request-id": [ - "2ee10e72-035d-4cab-81b3-3717b9ed9b09" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20200724T233730Z:2ee10e72-035d-4cab-81b3-3717b9ed9b09" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 24 Jul 2020 23:37:30 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "778" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Resources/deployments/ps9855\",\r\n \"name\": \"ps9855\",\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\": \"ps801\"\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-07-24T23:37:17.3706132Z\",\r\n \"duration\": \"PT3.0075875S\",\r\n \"correlationId\": \"b602692c-bfe5-45cb-bb08-9b959695368e\",\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/ps9661/providers/Microsoft.Resources/deployments/ps9855?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY2MS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4NTU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "f369f844-a9a4-4e97-b8ac-213a3a01260e" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11863" - ], - "x-ms-request-id": [ - "b4b275f8-2c2c-4944-8ee3-dc7a106ed583" - ], - "x-ms-correlation-request-id": [ - "b4b275f8-2c2c-4944-8ee3-dc7a106ed583" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20200724T233730Z:b4b275f8-2c2c-4944-8ee3-dc7a106ed583" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 24 Jul 2020 23:37:30 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "778" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Resources/deployments/ps9855\",\r\n \"name\": \"ps9855\",\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\": \"ps801\"\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-07-24T23:37:17.3706132Z\",\r\n \"duration\": \"PT3.0075875S\",\r\n \"correlationId\": \"b602692c-bfe5-45cb-bb08-9b959695368e\",\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/ps9661/providers/Microsoft.Resources/deployments/ps9855?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY2MS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4NTU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "8debc57f-b903-4997-90bd-5c66d6c620d1" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11861" - ], - "x-ms-request-id": [ - "1991ca9b-0575-4035-bc1a-4058216f84ed" - ], - "x-ms-correlation-request-id": [ - "1991ca9b-0575-4035-bc1a-4058216f84ed" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20200724T233731Z:1991ca9b-0575-4035-bc1a-4058216f84ed" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 24 Jul 2020 23:37:31 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "778" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Resources/deployments/ps9855\",\r\n \"name\": \"ps9855\",\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\": \"ps801\"\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-07-24T23:37:17.3706132Z\",\r\n \"duration\": \"PT3.0075875S\",\r\n \"correlationId\": \"b602692c-bfe5-45cb-bb08-9b959695368e\",\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/ps9661/providers/Microsoft.Resources/deployments/ps9855?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY2MS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4NTU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "60e7ab70-9fd6-464a-981a-00db4628ab85" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11859" - ], - "x-ms-request-id": [ - "a749c28e-55a3-46b6-aa36-c28aeda5d5eb" - ], - "x-ms-correlation-request-id": [ - "a749c28e-55a3-46b6-aa36-c28aeda5d5eb" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20200724T233731Z:a749c28e-55a3-46b6-aa36-c28aeda5d5eb" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 24 Jul 2020 23:37:31 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "778" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Resources/deployments/ps9855\",\r\n \"name\": \"ps9855\",\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\": \"ps801\"\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-07-24T23:37:17.3706132Z\",\r\n \"duration\": \"PT3.0075875S\",\r\n \"correlationId\": \"b602692c-bfe5-45cb-bb08-9b959695368e\",\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/ps9661/providers/Microsoft.Resources/deployments/ps9855?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY2MS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4NTU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "0924abe1-a780-489c-bd37-33428134c5e4" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11857" - ], - "x-ms-request-id": [ - "3725a1f4-af66-426d-9aaf-77cd98062288" - ], - "x-ms-correlation-request-id": [ - "3725a1f4-af66-426d-9aaf-77cd98062288" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20200724T233731Z:3725a1f4-af66-426d-9aaf-77cd98062288" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 24 Jul 2020 23:37:31 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "778" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Resources/deployments/ps9855\",\r\n \"name\": \"ps9855\",\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\": \"ps801\"\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-07-24T23:37:17.3706132Z\",\r\n \"duration\": \"PT3.0075875S\",\r\n \"correlationId\": \"b602692c-bfe5-45cb-bb08-9b959695368e\",\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/ps9661/providers/Microsoft.Resources/deployments/ps9855?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY2MS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4NTU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "307be9f1-f67e-469d-8ac6-88bc90a3175f" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11855" - ], - "x-ms-request-id": [ - "5b3e7792-cc36-479e-bea8-c23d5b93669f" - ], - "x-ms-correlation-request-id": [ - "5b3e7792-cc36-479e-bea8-c23d5b93669f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20200724T233731Z:5b3e7792-cc36-479e-bea8-c23d5b93669f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 24 Jul 2020 23:37:31 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "778" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Resources/deployments/ps9855\",\r\n \"name\": \"ps9855\",\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\": \"ps801\"\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-07-24T23:37:17.3706132Z\",\r\n \"duration\": \"PT3.0075875S\",\r\n \"correlationId\": \"b602692c-bfe5-45cb-bb08-9b959695368e\",\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/ps9661/providers/Microsoft.Resources/deployments/ps9855?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY2MS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4NTU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "c6c71588-1a41-4235-8797-9e9ffa644c3e" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11853" - ], - "x-ms-request-id": [ - "c9ed09e0-ec35-4e9c-8e59-6ba8b7f8fb66" - ], - "x-ms-correlation-request-id": [ - "c9ed09e0-ec35-4e9c-8e59-6ba8b7f8fb66" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20200724T233732Z:c9ed09e0-ec35-4e9c-8e59-6ba8b7f8fb66" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 24 Jul 2020 23:37:31 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "778" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Resources/deployments/ps9855\",\r\n \"name\": \"ps9855\",\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\": \"ps801\"\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-07-24T23:37:17.3706132Z\",\r\n \"duration\": \"PT3.0075875S\",\r\n \"correlationId\": \"b602692c-bfe5-45cb-bb08-9b959695368e\",\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/ps9661/providers/Microsoft.Resources/deployments/ps9855?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY2MS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4NTU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "5091115f-c8df-467b-8551-f2169cfcc5e5" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11851" - ], - "x-ms-request-id": [ - "76f00322-80bd-41d0-9772-d16440f589ca" - ], - "x-ms-correlation-request-id": [ - "76f00322-80bd-41d0-9772-d16440f589ca" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20200724T233732Z:76f00322-80bd-41d0-9772-d16440f589ca" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 24 Jul 2020 23:37:32 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "778" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Resources/deployments/ps9855\",\r\n \"name\": \"ps9855\",\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\": \"ps801\"\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-07-24T23:37:17.3706132Z\",\r\n \"duration\": \"PT3.0075875S\",\r\n \"correlationId\": \"b602692c-bfe5-45cb-bb08-9b959695368e\",\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/ps9661/providers/Microsoft.Resources/deployments/ps9855?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY2MS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4NTU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "9f697746-390e-48d5-bfe5-84edfafbd032" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11849" - ], - "x-ms-request-id": [ - "be1e3635-2285-41cc-9d1d-67aa016784e6" - ], - "x-ms-correlation-request-id": [ - "be1e3635-2285-41cc-9d1d-67aa016784e6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20200724T233732Z:be1e3635-2285-41cc-9d1d-67aa016784e6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 24 Jul 2020 23:37:32 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "778" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Resources/deployments/ps9855\",\r\n \"name\": \"ps9855\",\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\": \"ps801\"\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-07-24T23:37:17.3706132Z\",\r\n \"duration\": \"PT3.0075875S\",\r\n \"correlationId\": \"b602692c-bfe5-45cb-bb08-9b959695368e\",\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/ps9661/providers/Microsoft.Resources/deployments/ps9855?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY2MS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4NTU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "b68b462f-517f-4fe3-a68a-c10fa544c951" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11847" - ], - "x-ms-request-id": [ - "f8c9801e-37fe-44a4-bb36-14b9c72b3261" - ], - "x-ms-correlation-request-id": [ - "f8c9801e-37fe-44a4-bb36-14b9c72b3261" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20200724T233732Z:f8c9801e-37fe-44a4-bb36-14b9c72b3261" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 24 Jul 2020 23:37:32 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "778" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Resources/deployments/ps9855\",\r\n \"name\": \"ps9855\",\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\": \"ps801\"\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-07-24T23:37:17.3706132Z\",\r\n \"duration\": \"PT3.0075875S\",\r\n \"correlationId\": \"b602692c-bfe5-45cb-bb08-9b959695368e\",\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/ps9661/providers/Microsoft.Resources/deployments/ps9855?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY2MS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4NTU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "58450607-4310-40b5-85ae-7f23f5181522" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11845" - ], - "x-ms-request-id": [ - "3e6cd5fc-4e82-48fe-8cc4-d82e3b7141f3" - ], - "x-ms-correlation-request-id": [ - "3e6cd5fc-4e82-48fe-8cc4-d82e3b7141f3" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20200724T233732Z:3e6cd5fc-4e82-48fe-8cc4-d82e3b7141f3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 24 Jul 2020 23:37:32 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "778" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Resources/deployments/ps9855\",\r\n \"name\": \"ps9855\",\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\": \"ps801\"\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-07-24T23:37:17.3706132Z\",\r\n \"duration\": \"PT3.0075875S\",\r\n \"correlationId\": \"b602692c-bfe5-45cb-bb08-9b959695368e\",\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/ps9661/providers/Microsoft.Resources/deployments/ps9855?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY2MS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4NTU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "16ca9ead-8f0a-4fca-a619-f2a3d7dacb85" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11843" - ], - "x-ms-request-id": [ - "46983800-6c8f-46cc-ad3d-d648c7867543" - ], - "x-ms-correlation-request-id": [ - "46983800-6c8f-46cc-ad3d-d648c7867543" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20200724T233733Z:46983800-6c8f-46cc-ad3d-d648c7867543" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 24 Jul 2020 23:37:32 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "778" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Resources/deployments/ps9855\",\r\n \"name\": \"ps9855\",\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\": \"ps801\"\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-07-24T23:37:17.3706132Z\",\r\n \"duration\": \"PT3.0075875S\",\r\n \"correlationId\": \"b602692c-bfe5-45cb-bb08-9b959695368e\",\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/ps9661/providers/Microsoft.Resources/deployments/ps9855?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY2MS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4NTU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "ddde8c20-fade-46f6-afe2-659706eb6f1b" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11841" - ], - "x-ms-request-id": [ - "4afed68a-8b03-4fb5-a203-2cc19bcdf525" - ], - "x-ms-correlation-request-id": [ - "4afed68a-8b03-4fb5-a203-2cc19bcdf525" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20200724T233733Z:4afed68a-8b03-4fb5-a203-2cc19bcdf525" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 24 Jul 2020 23:37:33 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "778" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Resources/deployments/ps9855\",\r\n \"name\": \"ps9855\",\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\": \"ps801\"\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-07-24T23:37:17.3706132Z\",\r\n \"duration\": \"PT3.0075875S\",\r\n \"correlationId\": \"b602692c-bfe5-45cb-bb08-9b959695368e\",\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/ps9661/providers/Microsoft.Resources/deployments/ps9855?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY2MS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4NTU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "e29cf4e0-d722-4282-81f4-6c8f2d32357c" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11839" - ], - "x-ms-request-id": [ - "80f4e1ff-4ab0-47e6-9819-5d441219e582" - ], - "x-ms-correlation-request-id": [ - "80f4e1ff-4ab0-47e6-9819-5d441219e582" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20200724T233733Z:80f4e1ff-4ab0-47e6-9819-5d441219e582" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 24 Jul 2020 23:37:33 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "778" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Resources/deployments/ps9855\",\r\n \"name\": \"ps9855\",\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\": \"ps801\"\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-07-24T23:37:17.3706132Z\",\r\n \"duration\": \"PT3.0075875S\",\r\n \"correlationId\": \"b602692c-bfe5-45cb-bb08-9b959695368e\",\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/ps9661/providers/Microsoft.Resources/deployments/ps9855?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY2MS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4NTU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "e4e4a0c2-474a-4029-9dfe-68399a91578d" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11837" - ], - "x-ms-request-id": [ - "9796bbb8-36dc-4389-ad95-b7a01a173536" - ], - "x-ms-correlation-request-id": [ - "9796bbb8-36dc-4389-ad95-b7a01a173536" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20200724T233733Z:9796bbb8-36dc-4389-ad95-b7a01a173536" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 24 Jul 2020 23:37:33 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "778" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Resources/deployments/ps9855\",\r\n \"name\": \"ps9855\",\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\": \"ps801\"\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-07-24T23:37:17.3706132Z\",\r\n \"duration\": \"PT3.0075875S\",\r\n \"correlationId\": \"b602692c-bfe5-45cb-bb08-9b959695368e\",\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/ps9661/providers/Microsoft.Resources/deployments/ps9855?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY2MS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4NTU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "2d79ffc5-cb7e-47f3-b8df-f00249d2049f" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11835" - ], - "x-ms-request-id": [ - "58585d74-39d9-43f0-b0a3-d20c50e4ea1b" - ], - "x-ms-correlation-request-id": [ - "58585d74-39d9-43f0-b0a3-d20c50e4ea1b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20200724T233734Z:58585d74-39d9-43f0-b0a3-d20c50e4ea1b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 24 Jul 2020 23:37:33 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "778" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Resources/deployments/ps9855\",\r\n \"name\": \"ps9855\",\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\": \"ps801\"\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-07-24T23:37:17.3706132Z\",\r\n \"duration\": \"PT3.0075875S\",\r\n \"correlationId\": \"b602692c-bfe5-45cb-bb08-9b959695368e\",\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/ps9661/providers/Microsoft.Resources/deployments/ps9855?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY2MS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4NTU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "eed85f94-207b-43ee-963b-539437f39d70" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11833" - ], - "x-ms-request-id": [ - "bc4d67d9-d23d-4c36-a2a9-8ea3479204b6" - ], - "x-ms-correlation-request-id": [ - "bc4d67d9-d23d-4c36-a2a9-8ea3479204b6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20200724T233734Z:bc4d67d9-d23d-4c36-a2a9-8ea3479204b6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 24 Jul 2020 23:37:34 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "778" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Resources/deployments/ps9855\",\r\n \"name\": \"ps9855\",\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\": \"ps801\"\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-07-24T23:37:17.3706132Z\",\r\n \"duration\": \"PT3.0075875S\",\r\n \"correlationId\": \"b602692c-bfe5-45cb-bb08-9b959695368e\",\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/ps9661/providers/Microsoft.Resources/deployments/ps9855?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY2MS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4NTU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "3da2056d-4c13-4a93-bee7-92ac1906f523" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11831" - ], - "x-ms-request-id": [ - "5cbc1f9c-c727-476e-8173-3037b02a6481" - ], - "x-ms-correlation-request-id": [ - "5cbc1f9c-c727-476e-8173-3037b02a6481" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20200724T233734Z:5cbc1f9c-c727-476e-8173-3037b02a6481" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 24 Jul 2020 23:37:34 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "778" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Resources/deployments/ps9855\",\r\n \"name\": \"ps9855\",\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\": \"ps801\"\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-07-24T23:37:17.3706132Z\",\r\n \"duration\": \"PT3.0075875S\",\r\n \"correlationId\": \"b602692c-bfe5-45cb-bb08-9b959695368e\",\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/ps9661/providers/Microsoft.Resources/deployments/ps9855?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY2MS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4NTU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "33f99dfb-7648-4fde-996d-ae22773c48cb" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11829" - ], - "x-ms-request-id": [ - "3eff26af-34a8-4b15-9e3d-cc26d2b0e690" - ], - "x-ms-correlation-request-id": [ - "3eff26af-34a8-4b15-9e3d-cc26d2b0e690" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20200724T233734Z:3eff26af-34a8-4b15-9e3d-cc26d2b0e690" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 24 Jul 2020 23:37:34 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "778" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Resources/deployments/ps9855\",\r\n \"name\": \"ps9855\",\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\": \"ps801\"\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-07-24T23:37:17.3706132Z\",\r\n \"duration\": \"PT3.0075875S\",\r\n \"correlationId\": \"b602692c-bfe5-45cb-bb08-9b959695368e\",\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/ps9661/providers/Microsoft.Resources/deployments/ps9855?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY2MS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4NTU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "7cfeaf01-9a53-499c-bbe7-6604a017a34f" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11827" - ], - "x-ms-request-id": [ - "3e82846b-5212-4bef-9023-f3fd0e435963" - ], - "x-ms-correlation-request-id": [ - "3e82846b-5212-4bef-9023-f3fd0e435963" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20200724T233735Z:3e82846b-5212-4bef-9023-f3fd0e435963" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 24 Jul 2020 23:37:34 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "778" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Resources/deployments/ps9855\",\r\n \"name\": \"ps9855\",\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\": \"ps801\"\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-07-24T23:37:17.3706132Z\",\r\n \"duration\": \"PT3.0075875S\",\r\n \"correlationId\": \"b602692c-bfe5-45cb-bb08-9b959695368e\",\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/ps9661/providers/Microsoft.Resources/deployments/ps9855?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY2MS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4NTU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "aa736116-4230-4822-ac3d-bffd5fc58a58" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11825" - ], - "x-ms-request-id": [ - "128d594e-3877-44a1-9678-464103b9faf6" - ], - "x-ms-correlation-request-id": [ - "128d594e-3877-44a1-9678-464103b9faf6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20200724T233735Z:128d594e-3877-44a1-9678-464103b9faf6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 24 Jul 2020 23:37:35 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "778" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Resources/deployments/ps9855\",\r\n \"name\": \"ps9855\",\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\": \"ps801\"\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-07-24T23:37:17.3706132Z\",\r\n \"duration\": \"PT3.0075875S\",\r\n \"correlationId\": \"b602692c-bfe5-45cb-bb08-9b959695368e\",\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/ps9661/providers/Microsoft.Resources/deployments/ps9855?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY2MS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4NTU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "58aeb362-6217-4aa1-955f-38fc9875c7f5" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11823" - ], - "x-ms-request-id": [ - "b938ebb5-33c5-47e8-a26c-f2a218d33e28" - ], - "x-ms-correlation-request-id": [ - "b938ebb5-33c5-47e8-a26c-f2a218d33e28" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20200724T233735Z:b938ebb5-33c5-47e8-a26c-f2a218d33e28" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 24 Jul 2020 23:37:35 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "778" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Resources/deployments/ps9855\",\r\n \"name\": \"ps9855\",\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\": \"ps801\"\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-07-24T23:37:17.3706132Z\",\r\n \"duration\": \"PT3.0075875S\",\r\n \"correlationId\": \"b602692c-bfe5-45cb-bb08-9b959695368e\",\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/ps9661/providers/Microsoft.Resources/deployments/ps9855?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY2MS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4NTU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "441b29fd-4fac-4d26-833a-03092da0ae3a" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11821" - ], - "x-ms-request-id": [ - "ccbf0ac2-868f-4d82-ac53-858528660bb5" - ], - "x-ms-correlation-request-id": [ - "ccbf0ac2-868f-4d82-ac53-858528660bb5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20200724T233735Z:ccbf0ac2-868f-4d82-ac53-858528660bb5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 24 Jul 2020 23:37:35 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "778" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Resources/deployments/ps9855\",\r\n \"name\": \"ps9855\",\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\": \"ps801\"\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-07-24T23:37:17.3706132Z\",\r\n \"duration\": \"PT3.0075875S\",\r\n \"correlationId\": \"b602692c-bfe5-45cb-bb08-9b959695368e\",\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/ps9661/providers/Microsoft.Resources/deployments/ps9855?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY2MS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4NTU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "caf136ca-531f-4f7c-9ba2-e9e775d154f9" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11819" - ], - "x-ms-request-id": [ - "956e8bda-9edf-4d3a-ad27-3c6813e4e0f8" - ], - "x-ms-correlation-request-id": [ - "956e8bda-9edf-4d3a-ad27-3c6813e4e0f8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20200724T233735Z:956e8bda-9edf-4d3a-ad27-3c6813e4e0f8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 24 Jul 2020 23:37:35 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "778" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Resources/deployments/ps9855\",\r\n \"name\": \"ps9855\",\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\": \"ps801\"\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-07-24T23:37:17.3706132Z\",\r\n \"duration\": \"PT3.0075875S\",\r\n \"correlationId\": \"b602692c-bfe5-45cb-bb08-9b959695368e\",\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/ps9661/providers/Microsoft.Resources/deployments/ps9855?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY2MS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4NTU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "7e43bd42-b503-4de7-a2dc-f5c4c2ea868b" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11817" - ], - "x-ms-request-id": [ - "3f38ec5e-fdee-449e-986c-e4fb39c8849f" - ], - "x-ms-correlation-request-id": [ - "3f38ec5e-fdee-449e-986c-e4fb39c8849f" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20200724T233736Z:3f38ec5e-fdee-449e-986c-e4fb39c8849f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 24 Jul 2020 23:37:35 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "778" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Resources/deployments/ps9855\",\r\n \"name\": \"ps9855\",\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\": \"ps801\"\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-07-24T23:37:17.3706132Z\",\r\n \"duration\": \"PT3.0075875S\",\r\n \"correlationId\": \"b602692c-bfe5-45cb-bb08-9b959695368e\",\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/ps9661/providers/Microsoft.Resources/deployments/ps9855?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY2MS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4NTU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "61c1caa6-8554-42c4-8e59-05a6ac516f8f" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11815" - ], - "x-ms-request-id": [ - "6727e4d0-ac92-4850-a321-dbeddacb9512" - ], - "x-ms-correlation-request-id": [ - "6727e4d0-ac92-4850-a321-dbeddacb9512" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20200724T233736Z:6727e4d0-ac92-4850-a321-dbeddacb9512" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 24 Jul 2020 23:37:36 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "778" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Resources/deployments/ps9855\",\r\n \"name\": \"ps9855\",\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\": \"ps801\"\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-07-24T23:37:17.3706132Z\",\r\n \"duration\": \"PT3.0075875S\",\r\n \"correlationId\": \"b602692c-bfe5-45cb-bb08-9b959695368e\",\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/ps9661/providers/Microsoft.Resources/deployments/ps9855?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY2MS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4NTU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "90ad70ab-c037-471a-bb73-c570c34227f2" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11813" - ], - "x-ms-request-id": [ - "88c387cb-6ddb-46f8-853b-3d708c9f00ed" - ], - "x-ms-correlation-request-id": [ - "88c387cb-6ddb-46f8-853b-3d708c9f00ed" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20200724T233736Z:88c387cb-6ddb-46f8-853b-3d708c9f00ed" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 24 Jul 2020 23:37:36 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "778" + "779" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Resources/deployments/ps9855\",\r\n \"name\": \"ps9855\",\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\": \"ps801\"\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-07-24T23:37:17.3706132Z\",\r\n \"duration\": \"PT3.0075875S\",\r\n \"correlationId\": \"b602692c-bfe5-45cb-bb08-9b959695368e\",\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/ps5770/providers/Microsoft.Resources/deployments/ps9986\",\r\n \"name\": \"ps9986\",\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\": \"ps5860\"\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-08-11T18:14:30.0245424Z\",\r\n \"duration\": \"PT6.2825308S\",\r\n \"correlationId\": \"57b8974f-8450-4a6b-97a4-1e8cd8fc16ad\",\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/ps9661/providers/Microsoft.Resources/deployments/ps9855?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY2MS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4NTU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5770/providers/Microsoft.Resources/deployments/ps9986?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTc3MC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk5ODY/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "defed552-81d5-424e-a267-3c44f4414530" + "793c06e0-ed82-4f87-9123-2194bd5b0b45" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.28207.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", + "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" ] }, @@ -13155,16 +4902,16 @@ "0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11811" + "11943" ], "x-ms-request-id": [ - "d3392150-76cb-4a2d-a26e-ff80b2a32bad" + "133a4570-a982-4c1f-887b-2435d92c8a00" ], "x-ms-correlation-request-id": [ - "d3392150-76cb-4a2d-a26e-ff80b2a32bad" + "133a4570-a982-4c1f-887b-2435d92c8a00" ], "x-ms-routing-request-id": [ - "WESTUS2:20200724T233736Z:d3392150-76cb-4a2d-a26e-ff80b2a32bad" + "CENTRALUS:20200811T181441Z:133a4570-a982-4c1f-887b-2435d92c8a00" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -13173,7 +4920,7 @@ "nosniff" ], "Date": [ - "Fri, 24 Jul 2020 23:37:36 GMT" + "Tue, 11 Aug 2020 18:14:41 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -13182,28 +4929,28 @@ "-1" ], "Content-Length": [ - "778" + "779" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Resources/deployments/ps9855\",\r\n \"name\": \"ps9855\",\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\": \"ps801\"\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-07-24T23:37:17.3706132Z\",\r\n \"duration\": \"PT3.0075875S\",\r\n \"correlationId\": \"b602692c-bfe5-45cb-bb08-9b959695368e\",\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/ps5770/providers/Microsoft.Resources/deployments/ps9986\",\r\n \"name\": \"ps9986\",\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\": \"ps5860\"\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-08-11T18:14:30.0245424Z\",\r\n \"duration\": \"PT6.2825308S\",\r\n \"correlationId\": \"57b8974f-8450-4a6b-97a4-1e8cd8fc16ad\",\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/ps9661/providers/Microsoft.Resources/deployments/ps9855?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY2MS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4NTU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5770/providers/Microsoft.Resources/deployments/ps9986?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTc3MC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk5ODY/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e54b7df7-c2bd-4b9b-86d5-5b4d996cf270" + "716a358c-7137-4343-a3bc-9d14ac5842d7" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.28207.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", + "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" ] }, @@ -13218,16 +4965,16 @@ "0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11809" + "11941" ], "x-ms-request-id": [ - "58069087-d138-4494-bcdf-2386b0bbfcf8" + "8c429419-cd17-48f2-af0b-70822498559b" ], "x-ms-correlation-request-id": [ - "58069087-d138-4494-bcdf-2386b0bbfcf8" + "8c429419-cd17-48f2-af0b-70822498559b" ], "x-ms-routing-request-id": [ - "WESTUS2:20200724T233737Z:58069087-d138-4494-bcdf-2386b0bbfcf8" + "CENTRALUS:20200811T181442Z:8c429419-cd17-48f2-af0b-70822498559b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -13236,7 +4983,7 @@ "nosniff" ], "Date": [ - "Fri, 24 Jul 2020 23:37:36 GMT" + "Tue, 11 Aug 2020 18:14:41 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -13245,28 +4992,28 @@ "-1" ], "Content-Length": [ - "778" + "779" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Resources/deployments/ps9855\",\r\n \"name\": \"ps9855\",\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\": \"ps801\"\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-07-24T23:37:17.3706132Z\",\r\n \"duration\": \"PT3.0075875S\",\r\n \"correlationId\": \"b602692c-bfe5-45cb-bb08-9b959695368e\",\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/ps5770/providers/Microsoft.Resources/deployments/ps9986\",\r\n \"name\": \"ps9986\",\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\": \"ps5860\"\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-08-11T18:14:30.0245424Z\",\r\n \"duration\": \"PT6.2825308S\",\r\n \"correlationId\": \"57b8974f-8450-4a6b-97a4-1e8cd8fc16ad\",\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/ps9661/providers/Microsoft.Resources/deployments/ps9855?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY2MS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4NTU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5770/providers/Microsoft.Resources/deployments/ps9986?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTc3MC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk5ODY/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "09b13a22-5f48-446c-95ce-cd2ad20a2e23" + "30d137e1-0776-4367-8a37-3ba3d4ba3382" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.28207.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", + "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" ] }, @@ -13281,16 +5028,16 @@ "0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11807" + "11939" ], "x-ms-request-id": [ - "32ff651a-f584-4906-86ae-c66dfb03ec6c" + "bde3abcf-83ee-4abf-802e-6b64d9c28894" ], "x-ms-correlation-request-id": [ - "32ff651a-f584-4906-86ae-c66dfb03ec6c" + "bde3abcf-83ee-4abf-802e-6b64d9c28894" ], "x-ms-routing-request-id": [ - "WESTUS2:20200724T233737Z:32ff651a-f584-4906-86ae-c66dfb03ec6c" + "CENTRALUS:20200811T181443Z:bde3abcf-83ee-4abf-802e-6b64d9c28894" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -13299,7 +5046,7 @@ "nosniff" ], "Date": [ - "Fri, 24 Jul 2020 23:37:36 GMT" + "Tue, 11 Aug 2020 18:14:42 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -13308,28 +5055,28 @@ "-1" ], "Content-Length": [ - "778" + "779" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Resources/deployments/ps9855\",\r\n \"name\": \"ps9855\",\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\": \"ps801\"\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-07-24T23:37:17.3706132Z\",\r\n \"duration\": \"PT3.0075875S\",\r\n \"correlationId\": \"b602692c-bfe5-45cb-bb08-9b959695368e\",\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/ps5770/providers/Microsoft.Resources/deployments/ps9986\",\r\n \"name\": \"ps9986\",\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\": \"ps5860\"\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-08-11T18:14:30.0245424Z\",\r\n \"duration\": \"PT6.2825308S\",\r\n \"correlationId\": \"57b8974f-8450-4a6b-97a4-1e8cd8fc16ad\",\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/ps9661/providers/Microsoft.Resources/deployments/ps9855?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY2MS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4NTU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5770/providers/Microsoft.Resources/deployments/ps9986?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTc3MC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk5ODY/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "374746d7-70de-441b-aa25-a3706eff34b4" + "742c4f61-8166-477b-9745-e0b969886d53" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.28207.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", + "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" ] }, @@ -13344,16 +5091,16 @@ "0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11805" + "11937" ], "x-ms-request-id": [ - "07300e16-6b57-4965-a85a-b57f799c2135" + "67ec7599-6e8d-4963-a95d-179ea4f29322" ], "x-ms-correlation-request-id": [ - "07300e16-6b57-4965-a85a-b57f799c2135" + "67ec7599-6e8d-4963-a95d-179ea4f29322" ], "x-ms-routing-request-id": [ - "WESTUS2:20200724T233737Z:07300e16-6b57-4965-a85a-b57f799c2135" + "CENTRALUS:20200811T181443Z:67ec7599-6e8d-4963-a95d-179ea4f29322" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -13362,7 +5109,7 @@ "nosniff" ], "Date": [ - "Fri, 24 Jul 2020 23:37:37 GMT" + "Tue, 11 Aug 2020 18:14:42 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -13371,28 +5118,28 @@ "-1" ], "Content-Length": [ - "778" + "779" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Resources/deployments/ps9855\",\r\n \"name\": \"ps9855\",\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\": \"ps801\"\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-07-24T23:37:17.3706132Z\",\r\n \"duration\": \"PT3.0075875S\",\r\n \"correlationId\": \"b602692c-bfe5-45cb-bb08-9b959695368e\",\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/ps5770/providers/Microsoft.Resources/deployments/ps9986\",\r\n \"name\": \"ps9986\",\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\": \"ps5860\"\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-08-11T18:14:30.0245424Z\",\r\n \"duration\": \"PT6.2825308S\",\r\n \"correlationId\": \"57b8974f-8450-4a6b-97a4-1e8cd8fc16ad\",\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/ps9661/providers/Microsoft.Resources/deployments/ps9855?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY2MS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4NTU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5770/providers/Microsoft.Resources/deployments/ps9986?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTc3MC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk5ODY/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "905b217f-1934-405f-9398-3766d5327dbd" + "fd8095cf-2571-4b79-9ea7-2609791a8643" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.28207.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", + "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" ] }, @@ -13407,16 +5154,16 @@ "0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11803" + "11935" ], "x-ms-request-id": [ - "a97d8694-94c2-4d50-a848-5c78d49bbc9b" + "dd514698-c31c-4936-bf36-4ef76bff4a07" ], "x-ms-correlation-request-id": [ - "a97d8694-94c2-4d50-a848-5c78d49bbc9b" + "dd514698-c31c-4936-bf36-4ef76bff4a07" ], "x-ms-routing-request-id": [ - "WESTUS2:20200724T233737Z:a97d8694-94c2-4d50-a848-5c78d49bbc9b" + "CENTRALUS:20200811T181444Z:dd514698-c31c-4936-bf36-4ef76bff4a07" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -13425,7 +5172,7 @@ "nosniff" ], "Date": [ - "Fri, 24 Jul 2020 23:37:37 GMT" + "Tue, 11 Aug 2020 18:14:43 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -13434,28 +5181,28 @@ "-1" ], "Content-Length": [ - "778" + "779" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Resources/deployments/ps9855\",\r\n \"name\": \"ps9855\",\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\": \"ps801\"\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-07-24T23:37:17.3706132Z\",\r\n \"duration\": \"PT3.0075875S\",\r\n \"correlationId\": \"b602692c-bfe5-45cb-bb08-9b959695368e\",\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/ps5770/providers/Microsoft.Resources/deployments/ps9986\",\r\n \"name\": \"ps9986\",\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\": \"ps5860\"\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-08-11T18:14:30.0245424Z\",\r\n \"duration\": \"PT6.2825308S\",\r\n \"correlationId\": \"57b8974f-8450-4a6b-97a4-1e8cd8fc16ad\",\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/ps9661/providers/Microsoft.Resources/deployments/ps9855?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY2MS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4NTU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5770/providers/Microsoft.Resources/deployments/ps9986?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTc3MC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk5ODY/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3656a0bf-d364-40ce-a2d1-566babfa8414" + "91831593-dfd8-45cb-9a4e-a750d8cf118a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.28207.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", + "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" ] }, @@ -13470,16 +5217,16 @@ "0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11801" + "11933" ], "x-ms-request-id": [ - "d5e2a4d8-2dab-4486-a1db-e4e4d3152893" + "b268763e-9037-46de-863f-d3987f9280d8" ], "x-ms-correlation-request-id": [ - "d5e2a4d8-2dab-4486-a1db-e4e4d3152893" + "b268763e-9037-46de-863f-d3987f9280d8" ], "x-ms-routing-request-id": [ - "WESTUS2:20200724T233737Z:d5e2a4d8-2dab-4486-a1db-e4e4d3152893" + "CENTRALUS:20200811T181444Z:b268763e-9037-46de-863f-d3987f9280d8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -13488,7 +5235,7 @@ "nosniff" ], "Date": [ - "Fri, 24 Jul 2020 23:37:37 GMT" + "Tue, 11 Aug 2020 18:14:44 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -13497,28 +5244,28 @@ "-1" ], "Content-Length": [ - "778" + "779" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Resources/deployments/ps9855\",\r\n \"name\": \"ps9855\",\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\": \"ps801\"\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-07-24T23:37:17.3706132Z\",\r\n \"duration\": \"PT3.0075875S\",\r\n \"correlationId\": \"b602692c-bfe5-45cb-bb08-9b959695368e\",\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/ps5770/providers/Microsoft.Resources/deployments/ps9986\",\r\n \"name\": \"ps9986\",\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\": \"ps5860\"\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-08-11T18:14:30.0245424Z\",\r\n \"duration\": \"PT6.2825308S\",\r\n \"correlationId\": \"57b8974f-8450-4a6b-97a4-1e8cd8fc16ad\",\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/ps9661/providers/Microsoft.Resources/deployments/ps9855?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY2MS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4NTU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5770/providers/Microsoft.Resources/deployments/ps9986?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTc3MC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk5ODY/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a67e4178-209c-4f22-9b25-9e774e0cdebf" + "d9968ea3-74c2-4a2e-9f48-afeb30ba9577" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.28207.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", + "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" ] }, @@ -13533,16 +5280,16 @@ "0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11799" + "11931" ], "x-ms-request-id": [ - "4702f26e-7005-46ab-81b7-bf09d464c3af" + "b0c90822-7077-4fc1-8f9f-0409d0044632" ], "x-ms-correlation-request-id": [ - "4702f26e-7005-46ab-81b7-bf09d464c3af" + "b0c90822-7077-4fc1-8f9f-0409d0044632" ], "x-ms-routing-request-id": [ - "WESTUS2:20200724T233738Z:4702f26e-7005-46ab-81b7-bf09d464c3af" + "CENTRALUS:20200811T181445Z:b0c90822-7077-4fc1-8f9f-0409d0044632" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -13551,7 +5298,7 @@ "nosniff" ], "Date": [ - "Fri, 24 Jul 2020 23:37:37 GMT" + "Tue, 11 Aug 2020 18:14:44 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -13560,28 +5307,28 @@ "-1" ], "Content-Length": [ - "778" + "779" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Resources/deployments/ps9855\",\r\n \"name\": \"ps9855\",\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\": \"ps801\"\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-07-24T23:37:17.3706132Z\",\r\n \"duration\": \"PT3.0075875S\",\r\n \"correlationId\": \"b602692c-bfe5-45cb-bb08-9b959695368e\",\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/ps5770/providers/Microsoft.Resources/deployments/ps9986\",\r\n \"name\": \"ps9986\",\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\": \"ps5860\"\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-08-11T18:14:30.0245424Z\",\r\n \"duration\": \"PT6.2825308S\",\r\n \"correlationId\": \"57b8974f-8450-4a6b-97a4-1e8cd8fc16ad\",\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/ps9661/providers/Microsoft.Resources/deployments/ps9855?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY2MS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4NTU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5770/providers/Microsoft.Resources/deployments/ps9986?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTc3MC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk5ODY/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "47b64fe8-885a-4286-bd55-c4b574b49430" + "68285661-4339-459e-9338-94cdc2ea3623" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.28207.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", + "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" ] }, @@ -13596,16 +5343,16 @@ "0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11797" + "11929" ], "x-ms-request-id": [ - "e0ef811c-f0b6-4e5d-8f2e-1c09ee4c2130" + "76af5bfc-690b-4585-8fbb-6655180b53ef" ], "x-ms-correlation-request-id": [ - "e0ef811c-f0b6-4e5d-8f2e-1c09ee4c2130" + "76af5bfc-690b-4585-8fbb-6655180b53ef" ], "x-ms-routing-request-id": [ - "WESTUS2:20200724T233738Z:e0ef811c-f0b6-4e5d-8f2e-1c09ee4c2130" + "CENTRALUS:20200811T181445Z:76af5bfc-690b-4585-8fbb-6655180b53ef" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -13614,7 +5361,7 @@ "nosniff" ], "Date": [ - "Fri, 24 Jul 2020 23:37:38 GMT" + "Tue, 11 Aug 2020 18:14:45 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -13623,28 +5370,28 @@ "-1" ], "Content-Length": [ - "778" + "779" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Resources/deployments/ps9855\",\r\n \"name\": \"ps9855\",\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\": \"ps801\"\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-07-24T23:37:17.3706132Z\",\r\n \"duration\": \"PT3.0075875S\",\r\n \"correlationId\": \"b602692c-bfe5-45cb-bb08-9b959695368e\",\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/ps5770/providers/Microsoft.Resources/deployments/ps9986\",\r\n \"name\": \"ps9986\",\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\": \"ps5860\"\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-08-11T18:14:30.0245424Z\",\r\n \"duration\": \"PT6.2825308S\",\r\n \"correlationId\": \"57b8974f-8450-4a6b-97a4-1e8cd8fc16ad\",\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/ps9661/providers/Microsoft.Resources/deployments/ps9855?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY2MS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4NTU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5770/providers/Microsoft.Resources/deployments/ps9986?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTc3MC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk5ODY/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8fcf05bb-04d6-443d-9f16-1202916826f0" + "8c5d8cc7-c70c-4a39-92ce-a3a96b1ac5cc" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.28207.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", + "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" ] }, @@ -13659,16 +5406,16 @@ "0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11795" + "11927" ], "x-ms-request-id": [ - "ff0f8546-4a4a-462a-9a0e-1df88c7c0928" + "940fb7cd-6182-48bd-9cef-edb0b757018c" ], "x-ms-correlation-request-id": [ - "ff0f8546-4a4a-462a-9a0e-1df88c7c0928" + "940fb7cd-6182-48bd-9cef-edb0b757018c" ], "x-ms-routing-request-id": [ - "WESTUS2:20200724T233738Z:ff0f8546-4a4a-462a-9a0e-1df88c7c0928" + "CENTRALUS:20200811T181446Z:940fb7cd-6182-48bd-9cef-edb0b757018c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -13677,7 +5424,7 @@ "nosniff" ], "Date": [ - "Fri, 24 Jul 2020 23:37:38 GMT" + "Tue, 11 Aug 2020 18:14:45 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -13686,28 +5433,28 @@ "-1" ], "Content-Length": [ - "778" + "779" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Resources/deployments/ps9855\",\r\n \"name\": \"ps9855\",\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\": \"ps801\"\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-07-24T23:37:17.3706132Z\",\r\n \"duration\": \"PT3.0075875S\",\r\n \"correlationId\": \"b602692c-bfe5-45cb-bb08-9b959695368e\",\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/ps5770/providers/Microsoft.Resources/deployments/ps9986\",\r\n \"name\": \"ps9986\",\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\": \"ps5860\"\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-08-11T18:14:30.0245424Z\",\r\n \"duration\": \"PT6.2825308S\",\r\n \"correlationId\": \"57b8974f-8450-4a6b-97a4-1e8cd8fc16ad\",\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/ps9661/providers/Microsoft.Resources/deployments/ps9855?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY2MS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4NTU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5770/providers/Microsoft.Resources/deployments/ps9986?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTc3MC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk5ODY/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "77a61acd-5873-438a-835e-e707ebabe958" + "fc9ff34c-1a70-4b99-be53-756d6e7ba5ab" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.28207.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", + "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" ] }, @@ -13722,16 +5469,16 @@ "0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11793" + "11925" ], "x-ms-request-id": [ - "be6d5c0b-7a67-406b-844f-016142019ec2" + "6c7536ba-3c91-408b-a604-68af9a646e14" ], "x-ms-correlation-request-id": [ - "be6d5c0b-7a67-406b-844f-016142019ec2" + "6c7536ba-3c91-408b-a604-68af9a646e14" ], "x-ms-routing-request-id": [ - "WESTUS2:20200724T233738Z:be6d5c0b-7a67-406b-844f-016142019ec2" + "CENTRALUS:20200811T181446Z:6c7536ba-3c91-408b-a604-68af9a646e14" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -13740,7 +5487,7 @@ "nosniff" ], "Date": [ - "Fri, 24 Jul 2020 23:37:38 GMT" + "Tue, 11 Aug 2020 18:14:46 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -13749,28 +5496,28 @@ "-1" ], "Content-Length": [ - "778" + "779" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Resources/deployments/ps9855\",\r\n \"name\": \"ps9855\",\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\": \"ps801\"\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-07-24T23:37:17.3706132Z\",\r\n \"duration\": \"PT3.0075875S\",\r\n \"correlationId\": \"b602692c-bfe5-45cb-bb08-9b959695368e\",\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/ps5770/providers/Microsoft.Resources/deployments/ps9986\",\r\n \"name\": \"ps9986\",\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\": \"ps5860\"\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-08-11T18:14:30.0245424Z\",\r\n \"duration\": \"PT6.2825308S\",\r\n \"correlationId\": \"57b8974f-8450-4a6b-97a4-1e8cd8fc16ad\",\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/ps9661/providers/Microsoft.Resources/deployments/ps9855?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY2MS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4NTU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5770/providers/Microsoft.Resources/deployments/ps9986?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTc3MC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk5ODY/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7d022313-9d5e-4ccf-88ba-ceb4e1007893" + "4f3c237f-4247-4e1e-b389-02fc14ef4a76" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.28207.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", + "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" ] }, @@ -13785,16 +5532,16 @@ "0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11791" + "11923" ], "x-ms-request-id": [ - "efcfa77c-a587-4cfa-bed8-b06ef0b8c94c" + "8dae4d14-e249-49c5-aebc-2ca0b7b25f28" ], "x-ms-correlation-request-id": [ - "efcfa77c-a587-4cfa-bed8-b06ef0b8c94c" + "8dae4d14-e249-49c5-aebc-2ca0b7b25f28" ], "x-ms-routing-request-id": [ - "WESTUS2:20200724T233739Z:efcfa77c-a587-4cfa-bed8-b06ef0b8c94c" + "CENTRALUS:20200811T181447Z:8dae4d14-e249-49c5-aebc-2ca0b7b25f28" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -13803,7 +5550,7 @@ "nosniff" ], "Date": [ - "Fri, 24 Jul 2020 23:37:38 GMT" + "Tue, 11 Aug 2020 18:14:46 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -13812,28 +5559,28 @@ "-1" ], "Content-Length": [ - "778" + "779" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Resources/deployments/ps9855\",\r\n \"name\": \"ps9855\",\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\": \"ps801\"\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-07-24T23:37:17.3706132Z\",\r\n \"duration\": \"PT3.0075875S\",\r\n \"correlationId\": \"b602692c-bfe5-45cb-bb08-9b959695368e\",\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/ps5770/providers/Microsoft.Resources/deployments/ps9986\",\r\n \"name\": \"ps9986\",\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\": \"ps5860\"\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-08-11T18:14:30.0245424Z\",\r\n \"duration\": \"PT6.2825308S\",\r\n \"correlationId\": \"57b8974f-8450-4a6b-97a4-1e8cd8fc16ad\",\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/ps9661/providers/Microsoft.Resources/deployments/ps9855?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY2MS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4NTU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5770/providers/Microsoft.Resources/deployments/ps9986?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTc3MC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk5ODY/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "10b740fb-af82-495a-b520-f04c3ae3248e" + "d26b148b-8699-4064-9d7b-6d32e6e42114" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.28207.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", + "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" ] }, @@ -13848,16 +5595,16 @@ "0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11789" + "11921" ], "x-ms-request-id": [ - "b105cd4a-7626-4ba0-bda9-ed7cc9fa6765" + "429df012-fb8d-4dda-8f3c-f70021217104" ], "x-ms-correlation-request-id": [ - "b105cd4a-7626-4ba0-bda9-ed7cc9fa6765" + "429df012-fb8d-4dda-8f3c-f70021217104" ], "x-ms-routing-request-id": [ - "WESTUS2:20200724T233739Z:b105cd4a-7626-4ba0-bda9-ed7cc9fa6765" + "CENTRALUS:20200811T181448Z:429df012-fb8d-4dda-8f3c-f70021217104" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -13866,7 +5613,7 @@ "nosniff" ], "Date": [ - "Fri, 24 Jul 2020 23:37:38 GMT" + "Tue, 11 Aug 2020 18:14:47 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -13875,28 +5622,28 @@ "-1" ], "Content-Length": [ - "778" + "779" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Resources/deployments/ps9855\",\r\n \"name\": \"ps9855\",\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\": \"ps801\"\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-07-24T23:37:17.3706132Z\",\r\n \"duration\": \"PT3.0075875S\",\r\n \"correlationId\": \"b602692c-bfe5-45cb-bb08-9b959695368e\",\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/ps5770/providers/Microsoft.Resources/deployments/ps9986\",\r\n \"name\": \"ps9986\",\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\": \"ps5860\"\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-08-11T18:14:30.0245424Z\",\r\n \"duration\": \"PT6.2825308S\",\r\n \"correlationId\": \"57b8974f-8450-4a6b-97a4-1e8cd8fc16ad\",\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/ps9661/providers/Microsoft.Resources/deployments/ps9855?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY2MS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4NTU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5770/providers/Microsoft.Resources/deployments/ps9986?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTc3MC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk5ODY/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b4e0a892-662d-4e5c-99e2-8d208bf3332b" + "3a8aec64-bfc5-4c30-8ac9-a1ad6d59e386" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.28207.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", + "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" ] }, @@ -13911,16 +5658,16 @@ "0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11787" + "11919" ], "x-ms-request-id": [ - "15f77a3c-af1e-4327-af2e-f86b3645db37" + "9c9e85fe-6b6a-41ca-bfd5-fef378b28884" ], "x-ms-correlation-request-id": [ - "15f77a3c-af1e-4327-af2e-f86b3645db37" + "9c9e85fe-6b6a-41ca-bfd5-fef378b28884" ], "x-ms-routing-request-id": [ - "WESTUS2:20200724T233739Z:15f77a3c-af1e-4327-af2e-f86b3645db37" + "CENTRALUS:20200811T181448Z:9c9e85fe-6b6a-41ca-bfd5-fef378b28884" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -13929,7 +5676,7 @@ "nosniff" ], "Date": [ - "Fri, 24 Jul 2020 23:37:39 GMT" + "Tue, 11 Aug 2020 18:14:47 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -13938,28 +5685,28 @@ "-1" ], "Content-Length": [ - "778" + "779" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Resources/deployments/ps9855\",\r\n \"name\": \"ps9855\",\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\": \"ps801\"\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-07-24T23:37:17.3706132Z\",\r\n \"duration\": \"PT3.0075875S\",\r\n \"correlationId\": \"b602692c-bfe5-45cb-bb08-9b959695368e\",\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/ps5770/providers/Microsoft.Resources/deployments/ps9986\",\r\n \"name\": \"ps9986\",\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\": \"ps5860\"\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-08-11T18:14:30.0245424Z\",\r\n \"duration\": \"PT6.2825308S\",\r\n \"correlationId\": \"57b8974f-8450-4a6b-97a4-1e8cd8fc16ad\",\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/ps9661/providers/Microsoft.Resources/deployments/ps9855?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY2MS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4NTU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5770/providers/Microsoft.Resources/deployments/ps9986?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTc3MC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk5ODY/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2371e051-9525-4626-8e52-cc60bbdf6833" + "e3da0d45-c8dd-41e6-847e-0441ff245736" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.28207.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", + "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" ] }, @@ -13974,16 +5721,16 @@ "0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11785" + "11917" ], "x-ms-request-id": [ - "0a27a133-4799-43f8-8fae-44b3969557c9" + "7cc3ff0d-c5db-4c02-97b0-ac1c055b06cc" ], "x-ms-correlation-request-id": [ - "0a27a133-4799-43f8-8fae-44b3969557c9" + "7cc3ff0d-c5db-4c02-97b0-ac1c055b06cc" ], "x-ms-routing-request-id": [ - "WESTUS2:20200724T233739Z:0a27a133-4799-43f8-8fae-44b3969557c9" + "CENTRALUS:20200811T181449Z:7cc3ff0d-c5db-4c02-97b0-ac1c055b06cc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -13992,7 +5739,7 @@ "nosniff" ], "Date": [ - "Fri, 24 Jul 2020 23:37:39 GMT" + "Tue, 11 Aug 2020 18:14:48 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -14001,28 +5748,28 @@ "-1" ], "Content-Length": [ - "778" + "779" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Resources/deployments/ps9855\",\r\n \"name\": \"ps9855\",\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\": \"ps801\"\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-07-24T23:37:17.3706132Z\",\r\n \"duration\": \"PT3.0075875S\",\r\n \"correlationId\": \"b602692c-bfe5-45cb-bb08-9b959695368e\",\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/ps5770/providers/Microsoft.Resources/deployments/ps9986\",\r\n \"name\": \"ps9986\",\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\": \"ps5860\"\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-08-11T18:14:30.0245424Z\",\r\n \"duration\": \"PT6.2825308S\",\r\n \"correlationId\": \"57b8974f-8450-4a6b-97a4-1e8cd8fc16ad\",\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/ps9661/providers/Microsoft.Resources/deployments/ps9855?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY2MS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4NTU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5770/providers/Microsoft.Resources/deployments/ps9986?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTc3MC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk5ODY/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ae325c44-b9e2-49c3-956d-9874b968eace" + "5b220575-cba5-4806-af76-c797c6bf21fe" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.28207.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", + "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" ] }, @@ -14037,16 +5784,16 @@ "0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11783" + "11915" ], "x-ms-request-id": [ - "c2d7a161-cde2-47ab-908b-9a60e708c30e" + "bcb62453-be30-4f39-b6d6-2983d0583559" ], "x-ms-correlation-request-id": [ - "c2d7a161-cde2-47ab-908b-9a60e708c30e" + "bcb62453-be30-4f39-b6d6-2983d0583559" ], "x-ms-routing-request-id": [ - "WESTUS2:20200724T233739Z:c2d7a161-cde2-47ab-908b-9a60e708c30e" + "CENTRALUS:20200811T181450Z:bcb62453-be30-4f39-b6d6-2983d0583559" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -14055,7 +5802,7 @@ "nosniff" ], "Date": [ - "Fri, 24 Jul 2020 23:37:39 GMT" + "Tue, 11 Aug 2020 18:14:49 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -14064,28 +5811,28 @@ "-1" ], "Content-Length": [ - "778" + "779" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Resources/deployments/ps9855\",\r\n \"name\": \"ps9855\",\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\": \"ps801\"\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-07-24T23:37:17.3706132Z\",\r\n \"duration\": \"PT3.0075875S\",\r\n \"correlationId\": \"b602692c-bfe5-45cb-bb08-9b959695368e\",\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/ps5770/providers/Microsoft.Resources/deployments/ps9986\",\r\n \"name\": \"ps9986\",\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\": \"ps5860\"\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-08-11T18:14:30.0245424Z\",\r\n \"duration\": \"PT6.2825308S\",\r\n \"correlationId\": \"57b8974f-8450-4a6b-97a4-1e8cd8fc16ad\",\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/ps9661/providers/Microsoft.Resources/deployments/ps9855?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY2MS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4NTU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5770/providers/Microsoft.Resources/deployments/ps9986?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTc3MC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk5ODY/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bda7581c-6c6a-4639-b1f7-9335c33e5bb7" + "be4af2ae-4c94-4fb1-b248-3f288de66945" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.28207.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", + "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" ] }, @@ -14100,16 +5847,16 @@ "0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11781" + "11913" ], "x-ms-request-id": [ - "93ceab4d-6cbd-4572-aea7-ccfc27c14422" + "99d93a7b-4d26-4b6b-b0ca-384ec352d07a" ], "x-ms-correlation-request-id": [ - "93ceab4d-6cbd-4572-aea7-ccfc27c14422" + "99d93a7b-4d26-4b6b-b0ca-384ec352d07a" ], "x-ms-routing-request-id": [ - "WESTUS2:20200724T233740Z:93ceab4d-6cbd-4572-aea7-ccfc27c14422" + "CENTRALUS:20200811T181451Z:99d93a7b-4d26-4b6b-b0ca-384ec352d07a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -14118,7 +5865,7 @@ "nosniff" ], "Date": [ - "Fri, 24 Jul 2020 23:37:39 GMT" + "Tue, 11 Aug 2020 18:14:50 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -14127,28 +5874,28 @@ "-1" ], "Content-Length": [ - "778" + "779" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Resources/deployments/ps9855\",\r\n \"name\": \"ps9855\",\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\": \"ps801\"\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-07-24T23:37:17.3706132Z\",\r\n \"duration\": \"PT3.0075875S\",\r\n \"correlationId\": \"b602692c-bfe5-45cb-bb08-9b959695368e\",\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/ps5770/providers/Microsoft.Resources/deployments/ps9986\",\r\n \"name\": \"ps9986\",\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\": \"ps5860\"\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-08-11T18:14:30.0245424Z\",\r\n \"duration\": \"PT6.2825308S\",\r\n \"correlationId\": \"57b8974f-8450-4a6b-97a4-1e8cd8fc16ad\",\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/ps9661/providers/Microsoft.Resources/deployments/ps9855?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY2MS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4NTU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5770/providers/Microsoft.Resources/deployments/ps9986?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTc3MC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk5ODY/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "221dbdd7-a0db-4336-b687-6492ee1c3e6d" + "59cbe5fa-8d3b-4c2e-8c0c-9366c7f12e00" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.28207.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", + "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" ] }, @@ -14160,16 +5907,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11779" + "11911" ], "x-ms-request-id": [ - "a04a208b-1d6e-4a2f-8108-e46b7477ae6c" + "64c8b747-88fd-43a2-a771-2744bdefb5b8" ], "x-ms-correlation-request-id": [ - "a04a208b-1d6e-4a2f-8108-e46b7477ae6c" + "64c8b747-88fd-43a2-a771-2744bdefb5b8" ], "x-ms-routing-request-id": [ - "WESTUS2:20200724T233740Z:a04a208b-1d6e-4a2f-8108-e46b7477ae6c" + "CENTRALUS:20200811T181451Z:64c8b747-88fd-43a2-a771-2744bdefb5b8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -14178,7 +5925,7 @@ "nosniff" ], "Date": [ - "Fri, 24 Jul 2020 23:37:40 GMT" + "Tue, 11 Aug 2020 18:14:50 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -14187,31 +5934,31 @@ "-1" ], "Content-Length": [ - "1753" + "1759" ], "Retry-After": [ "0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Resources/deployments/ps9855\",\r\n \"name\": \"ps9855\",\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\": \"ps801\"\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-07-24T23:37:39.9691152Z\",\r\n \"duration\": \"PT25.6060895S\",\r\n \"correlationId\": \"b602692c-bfe5-45cb-bb08-9b959695368e\",\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-07-24T23:37:16.9200282Z\"\r\n },\r\n \"blob\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-07-24T23:37:16.9200282Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2020-07-24T23:37:16.8262486Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://ps801.blob.core.windows.net/\",\r\n \"queue\": \"https://ps801.queue.core.windows.net/\",\r\n \"table\": \"https://ps801.table.core.windows.net/\",\r\n \"file\": \"https://ps801.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/ps9661/providers/Microsoft.Storage/storageAccounts/ps801\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5770/providers/Microsoft.Resources/deployments/ps9986\",\r\n \"name\": \"ps9986\",\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\": \"ps5860\"\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-08-11T18:14:50.9952888Z\",\r\n \"duration\": \"PT27.2532772S\",\r\n \"correlationId\": \"57b8974f-8450-4a6b-97a4-1e8cd8fc16ad\",\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-08-11T18:14:29.562223Z\"\r\n },\r\n \"blob\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-08-11T18:14:29.562223Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2020-08-11T18:14:29.4684818Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://ps5860.blob.core.windows.net/\",\r\n \"queue\": \"https://ps5860.queue.core.windows.net/\",\r\n \"table\": \"https://ps5860.table.core.windows.net/\",\r\n \"file\": \"https://ps5860.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/ps5770/providers/Microsoft.Storage/storageAccounts/ps5860\"\r\n }\r\n ]\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9661/providers/Microsoft.Resources/deployments/ps9855?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY2MS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4NTU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5770/providers/Microsoft.Resources/deployments/ps9986?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTc3MC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk5ODY/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7b629e70-30c2-420a-ba60-c47ca35316a2" + "3cebfa40-7b34-4f2e-9da2-28157d61f4d2" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.28207.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", + "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" ] }, @@ -14223,16 +5970,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11778" + "11910" ], "x-ms-request-id": [ - "3d9457a8-6ab1-4b1b-8f42-b88d8580c363" + "e237b001-fdfe-4dd2-9f87-ee3bb34b3447" ], "x-ms-correlation-request-id": [ - "3d9457a8-6ab1-4b1b-8f42-b88d8580c363" + "e237b001-fdfe-4dd2-9f87-ee3bb34b3447" ], "x-ms-routing-request-id": [ - "WESTUS2:20200724T233740Z:3d9457a8-6ab1-4b1b-8f42-b88d8580c363" + "CENTRALUS:20200811T181452Z:e237b001-fdfe-4dd2-9f87-ee3bb34b3447" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -14241,7 +5988,7 @@ "nosniff" ], "Date": [ - "Fri, 24 Jul 2020 23:37:40 GMT" + "Tue, 11 Aug 2020 18:14:51 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -14250,31 +5997,31 @@ "-1" ], "Content-Length": [ - "1753" + "1759" ], "Retry-After": [ "0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Resources/deployments/ps9855\",\r\n \"name\": \"ps9855\",\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\": \"ps801\"\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-07-24T23:37:39.9691152Z\",\r\n \"duration\": \"PT25.6060895S\",\r\n \"correlationId\": \"b602692c-bfe5-45cb-bb08-9b959695368e\",\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-07-24T23:37:16.9200282Z\"\r\n },\r\n \"blob\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-07-24T23:37:16.9200282Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2020-07-24T23:37:16.8262486Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://ps801.blob.core.windows.net/\",\r\n \"queue\": \"https://ps801.queue.core.windows.net/\",\r\n \"table\": \"https://ps801.table.core.windows.net/\",\r\n \"file\": \"https://ps801.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/ps9661/providers/Microsoft.Storage/storageAccounts/ps801\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5770/providers/Microsoft.Resources/deployments/ps9986\",\r\n \"name\": \"ps9986\",\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\": \"ps5860\"\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-08-11T18:14:50.9952888Z\",\r\n \"duration\": \"PT27.2532772S\",\r\n \"correlationId\": \"57b8974f-8450-4a6b-97a4-1e8cd8fc16ad\",\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-08-11T18:14:29.562223Z\"\r\n },\r\n \"blob\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-08-11T18:14:29.562223Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2020-08-11T18:14:29.4684818Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://ps5860.blob.core.windows.net/\",\r\n \"queue\": \"https://ps5860.queue.core.windows.net/\",\r\n \"table\": \"https://ps5860.table.core.windows.net/\",\r\n \"file\": \"https://ps5860.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/ps5770/providers/Microsoft.Storage/storageAccounts/ps5860\"\r\n }\r\n ]\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9661/providers/Microsoft.Resources/deployments/ps9855/exportTemplate?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY2MS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4NTUvZXhwb3J0VGVtcGxhdGU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5770/providers/Microsoft.Resources/deployments/ps9986/exportTemplate?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTc3MC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk5ODYvZXhwb3J0VGVtcGxhdGU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1c4d4b47-1c18-4d73-8bed-d9f8aa10750e" + "5618c129-6f07-4c43-a46b-e2a69a463457" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.28207.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", + "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" ] }, @@ -14289,13 +6036,13 @@ "1198" ], "x-ms-request-id": [ - "143fc5e4-1602-4a3b-8ecc-93dab2ea5134" + "4f21edc2-8697-41af-915f-8fabb8fe9953" ], "x-ms-correlation-request-id": [ - "143fc5e4-1602-4a3b-8ecc-93dab2ea5134" + "4f21edc2-8697-41af-915f-8fabb8fe9953" ], "x-ms-routing-request-id": [ - "WESTUS2:20200724T233740Z:143fc5e4-1602-4a3b-8ecc-93dab2ea5134" + "CENTRALUS:20200811T181452Z:4f21edc2-8697-41af-915f-8fabb8fe9953" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -14304,7 +6051,7 @@ "nosniff" ], "Date": [ - "Fri, 24 Jul 2020 23:37:40 GMT" + "Tue, 11 Aug 2020 18:14:51 GMT" ], "Content-Length": [ "862" @@ -14323,82 +6070,21 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Resources/deployments/ps9855/operations?api-version=2018-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlR3JvdXBzL3BzOTY2MS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4NTUvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "AzurePowershell/v1.0.0", - "PSVersion/v6.1.0" - ], - "ParameterSetName": [ - "__AllParameterSets" - ], - "CommandName": [ - "Get-AzResourceGroupDeploymentOperation" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11468" - ], - "x-ms-request-id": [ - "c32ba1de-5c2c-4eca-aca4-cf3b2b419a4d" - ], - "x-ms-correlation-request-id": [ - "c32ba1de-5c2c-4eca-aca4-cf3b2b419a4d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20200724T233741Z:c32ba1de-5c2c-4eca-aca4-cf3b2b419a4d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 24 Jul 2020 23:37:40 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "1803" - ], - "Retry-After": [ - "0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Resources/deployments/ps9855/operations/C5FC4B6F495EE612\",\r\n \"operationId\": \"C5FC4B6F495EE612\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Read\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2020-07-24T23:37:38.9137302Z\",\r\n \"duration\": \"PT0.3753989S\",\r\n \"trackingId\": \"8f8b9708-df6b-475a-9bb9-105b892ccb07\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Storage/storageAccounts/ps801\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps801\",\r\n \"apiVersion\": \"2019-06-01\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Resources/deployments/ps9855/operations/327C8F30158C7963\",\r\n \"operationId\": \"327C8F30158C7963\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2020-07-24T23:37:38.1159561Z\",\r\n \"duration\": \"PT22.4573296S\",\r\n \"trackingId\": \"05e52c2f-4fd9-4a38-9721-77788a162456\",\r\n \"serviceRequestId\": \"91cbd2a2-d685-44a9-8041-c80915402e6c\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Storage/storageAccounts/ps801\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps801\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9661/providers/Microsoft.Resources/deployments/ps9855/operations/08586059730511148456\",\r\n \"operationId\": \"08586059730511148456\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"EvaluateDeploymentOutput\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2020-07-24T23:37:39.723252Z\",\r\n \"duration\": \"PT0.4544505S\",\r\n \"trackingId\": \"78ee17f3-7aae-4c4d-8071-72f054958d96\",\r\n \"statusCode\": \"OK\"\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9661/providers/Microsoft.Resources/deployments/ps9855?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY2MS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4NTU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5770/providers/Microsoft.Resources/deployments/ps9986?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTc3MC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk5ODY/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f016148f-d9c9-48a9-a767-4bef3c694ad7" + "36cc2364-6027-41b3-b223-f24078ab60d4" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.28207.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", + "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" ] }, @@ -14410,16 +6096,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11777" + "11908" ], "x-ms-request-id": [ - "b9977162-36f0-478c-a632-87f85e15b2e6" + "17d236ec-5ebb-4fc8-b6b5-6db9390e2134" ], "x-ms-correlation-request-id": [ - "b9977162-36f0-478c-a632-87f85e15b2e6" + "17d236ec-5ebb-4fc8-b6b5-6db9390e2134" ], "x-ms-routing-request-id": [ - "WESTUS2:20200724T233741Z:b9977162-36f0-478c-a632-87f85e15b2e6" + "CENTRALUS:20200811T181453Z:17d236ec-5ebb-4fc8-b6b5-6db9390e2134" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -14428,7 +6114,7 @@ "nosniff" ], "Date": [ - "Fri, 24 Jul 2020 23:37:40 GMT" + "Tue, 11 Aug 2020 18:14:52 GMT" ], "Content-Length": [ "0" @@ -14444,21 +6130,21 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9661/providers/Microsoft.Resources/deployments/ps9855?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY2MS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4NTU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5770/providers/Microsoft.Resources/deployments/ps9986?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTc3MC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk5ODY/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e4cf150b-5a09-4b59-84b9-597f340f4b6e" + "8e90dd7e-8494-47f3-9dc3-f680192a558a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.28207.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", + "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" ] }, @@ -14470,7 +6156,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IkRlcGxveW1lbnREZWxldGlvbkpvYi1HTlMtUFM5NjYxLVBTOTg1NS0iLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2020-06-01" + "https://management.azure.com/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IkRlcGxveW1lbnREZWxldGlvbkpvYi1HTlMtUFM1NzcwLVBTOTk4Ni0iLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2020-06-01" ], "Retry-After": [ "0" @@ -14479,13 +6165,13 @@ "14999" ], "x-ms-request-id": [ - "996bc1b7-000b-44ff-9bc5-ad1831e1da74" + "77a0df7f-7628-48fd-b799-6028d7514fa6" ], "x-ms-correlation-request-id": [ - "996bc1b7-000b-44ff-9bc5-ad1831e1da74" + "77a0df7f-7628-48fd-b799-6028d7514fa6" ], "x-ms-routing-request-id": [ - "WESTUS2:20200724T233741Z:996bc1b7-000b-44ff-9bc5-ad1831e1da74" + "CENTRALUS:20200811T181455Z:77a0df7f-7628-48fd-b799-6028d7514fa6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -14494,7 +6180,7 @@ "nosniff" ], "Date": [ - "Fri, 24 Jul 2020 23:37:41 GMT" + "Tue, 11 Aug 2020 18:14:54 GMT" ], "Expires": [ "-1" @@ -14507,15 +6193,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IkRlcGxveW1lbnREZWxldGlvbkpvYi1HTlMtUFM5NjYxLVBTOTg1NS0iLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWtSbGNHeHZlVzFsYm5SRVpXeGxkR2x2YmtwdllpMUhUbE10VUZNNU5qWXhMVkJUT1RnMU5TMGlMQ0pxYjJKTWIyTmhkR2x2YmlJNkluZGxjM1IxY3lKOT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IkRlcGxveW1lbnREZWxldGlvbkpvYi1HTlMtUFM1NzcwLVBTOTk4Ni0iLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWtSbGNHeHZlVzFsYm5SRVpXeGxkR2x2YmtwdllpMUhUbE10VUZNMU56Y3dMVkJUT1RrNE5pMGlMQ0pxYjJKTWIyTmhkR2x2YmlJNkluZGxjM1IxY3lKOT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.28207.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", + "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" ] }, @@ -14527,16 +6213,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11776" + "11907" ], "x-ms-request-id": [ - "8bc73160-d79c-4e85-88c0-b2a6d717c479" + "0d55825b-c142-4a97-9603-c492b55142c0" ], "x-ms-correlation-request-id": [ - "8bc73160-d79c-4e85-88c0-b2a6d717c479" + "0d55825b-c142-4a97-9603-c492b55142c0" ], "x-ms-routing-request-id": [ - "WESTUS2:20200724T233756Z:8bc73160-d79c-4e85-88c0-b2a6d717c479" + "CENTRALUS:20200811T181510Z:0d55825b-c142-4a97-9603-c492b55142c0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -14545,7 +6231,7 @@ "nosniff" ], "Date": [ - "Fri, 24 Jul 2020 23:37:56 GMT" + "Tue, 11 Aug 2020 18:15:10 GMT" ], "Expires": [ "-1" @@ -14558,15 +6244,15 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IkRlcGxveW1lbnREZWxldGlvbkpvYi1HTlMtUFM5NjYxLVBTOTg1NS0iLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWtSbGNHeHZlVzFsYm5SRVpXeGxkR2x2YmtwdllpMUhUbE10VUZNNU5qWXhMVkJUT1RnMU5TMGlMQ0pxYjJKTWIyTmhkR2x2YmlJNkluZGxjM1IxY3lKOT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IkRlcGxveW1lbnREZWxldGlvbkpvYi1HTlMtUFM1NzcwLVBTOTk4Ni0iLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWtSbGNHeHZlVzFsYm5SRVpXeGxkR2x2YmtwdllpMUhUbE10VUZNMU56Y3dMVkJUT1RrNE5pMGlMQ0pxYjJKTWIyTmhkR2x2YmlJNkluZGxjM1IxY3lKOT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.28207.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", + "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" ] }, @@ -14578,16 +6264,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11775" + "11906" ], "x-ms-request-id": [ - "3b16496b-caba-4123-8710-c1e939d45999" + "c045e0c5-bf19-433b-a0e6-3fe8c697f01d" ], "x-ms-correlation-request-id": [ - "3b16496b-caba-4123-8710-c1e939d45999" + "c045e0c5-bf19-433b-a0e6-3fe8c697f01d" ], "x-ms-routing-request-id": [ - "WESTUS2:20200724T233756Z:3b16496b-caba-4123-8710-c1e939d45999" + "CENTRALUS:20200811T181510Z:c045e0c5-bf19-433b-a0e6-3fe8c697f01d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -14596,7 +6282,7 @@ "nosniff" ], "Date": [ - "Fri, 24 Jul 2020 23:37:56 GMT" + "Tue, 11 Aug 2020 18:15:10 GMT" ], "Expires": [ "-1" @@ -14609,21 +6295,21 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9661?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY2MT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5770?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTc3MD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cc91fa1f-4877-4021-91b5-cf84a44891df" + "1279de2d-ae6f-475d-817a-6e41faf37a6a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.28207.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", + "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" ] }, @@ -14635,7 +6321,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk2NjEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2020-06-01" + "https://management.azure.com/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU3NzAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2020-06-01" ], "Retry-After": [ "0" @@ -14644,13 +6330,13 @@ "14998" ], "x-ms-request-id": [ - "dae845ee-6d87-44f5-a467-71096f5d2ceb" + "96db70cf-9928-41ad-a524-2c4a792d1b30" ], "x-ms-correlation-request-id": [ - "dae845ee-6d87-44f5-a467-71096f5d2ceb" + "96db70cf-9928-41ad-a524-2c4a792d1b30" ], "x-ms-routing-request-id": [ - "WESTUS2:20200724T233757Z:dae845ee-6d87-44f5-a467-71096f5d2ceb" + "CENTRALUS:20200811T181511Z:96db70cf-9928-41ad-a524-2c4a792d1b30" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -14659,7 +6345,7 @@ "nosniff" ], "Date": [ - "Fri, 24 Jul 2020 23:37:56 GMT" + "Tue, 11 Aug 2020 18:15:11 GMT" ], "Expires": [ "-1" @@ -14672,15 +6358,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk2NjEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprMk5qRXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU3NzAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVM056QXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.28207.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", + "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" ] }, @@ -14692,22 +6378,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk2NjEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2020-06-01" + "https://management.azure.com/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU3NzAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2020-06-01" ], "Retry-After": [ "0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11773" + "11904" ], "x-ms-request-id": [ - "abe2d2d4-fea1-4d3e-a400-1ef4d9c40e1e" + "cee363bb-e5e6-45e3-b1c0-a923f0813093" ], "x-ms-correlation-request-id": [ - "abe2d2d4-fea1-4d3e-a400-1ef4d9c40e1e" + "cee363bb-e5e6-45e3-b1c0-a923f0813093" ], "x-ms-routing-request-id": [ - "WESTUS2:20200724T233812Z:abe2d2d4-fea1-4d3e-a400-1ef4d9c40e1e" + "CENTRALUS:20200811T181526Z:cee363bb-e5e6-45e3-b1c0-a923f0813093" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -14716,7 +6402,7 @@ "nosniff" ], "Date": [ - "Fri, 24 Jul 2020 23:38:12 GMT" + "Tue, 11 Aug 2020 18:15:26 GMT" ], "Expires": [ "-1" @@ -14729,15 +6415,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk2NjEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprMk5qRXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU3NzAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVM056QXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.28207.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", + "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" ] }, @@ -14749,22 +6435,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk2NjEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2020-06-01" + "https://management.azure.com/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU3NzAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2020-06-01" ], "Retry-After": [ "0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11772" + "11903" ], "x-ms-request-id": [ - "35e32688-16fc-4c48-9c60-ec9dc433f027" + "e74d37f2-a1cd-49c2-b63f-ecaf5ce97c88" ], "x-ms-correlation-request-id": [ - "35e32688-16fc-4c48-9c60-ec9dc433f027" + "e74d37f2-a1cd-49c2-b63f-ecaf5ce97c88" ], "x-ms-routing-request-id": [ - "WESTUS2:20200724T233827Z:35e32688-16fc-4c48-9c60-ec9dc433f027" + "CENTRALUS:20200811T181541Z:e74d37f2-a1cd-49c2-b63f-ecaf5ce97c88" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -14773,7 +6459,7 @@ "nosniff" ], "Date": [ - "Fri, 24 Jul 2020 23:38:27 GMT" + "Tue, 11 Aug 2020 18:15:41 GMT" ], "Expires": [ "-1" @@ -14786,15 +6472,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk2NjEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprMk5qRXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU3NzAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVM056QXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.28207.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", + "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" ] }, @@ -14806,22 +6492,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk2NjEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2020-06-01" + "https://management.azure.com/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU3NzAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2020-06-01" ], "Retry-After": [ "0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11771" + "11902" ], "x-ms-request-id": [ - "872eff1f-e14b-406b-b981-b6846caa3740" + "80ee8b70-0357-4c5d-a45c-b3c500ba63b9" ], "x-ms-correlation-request-id": [ - "872eff1f-e14b-406b-b981-b6846caa3740" + "80ee8b70-0357-4c5d-a45c-b3c500ba63b9" ], "x-ms-routing-request-id": [ - "WESTUS2:20200724T233842Z:872eff1f-e14b-406b-b981-b6846caa3740" + "CENTRALUS:20200811T181556Z:80ee8b70-0357-4c5d-a45c-b3c500ba63b9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -14830,7 +6516,7 @@ "nosniff" ], "Date": [ - "Fri, 24 Jul 2020 23:38:41 GMT" + "Tue, 11 Aug 2020 18:15:56 GMT" ], "Expires": [ "-1" @@ -14843,15 +6529,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk2NjEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprMk5qRXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU3NzAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVM056QXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.28207.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", + "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" ] }, @@ -14863,22 +6549,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk2NjEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2020-06-01" + "https://management.azure.com/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU3NzAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2020-06-01" ], "Retry-After": [ "0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11770" + "11901" ], "x-ms-request-id": [ - "0dfca864-6471-456d-a000-f2ca0984e805" + "eac84185-b25d-4850-9541-bc9965fb0393" ], "x-ms-correlation-request-id": [ - "0dfca864-6471-456d-a000-f2ca0984e805" + "eac84185-b25d-4850-9541-bc9965fb0393" ], "x-ms-routing-request-id": [ - "WESTUS2:20200724T233857Z:0dfca864-6471-456d-a000-f2ca0984e805" + "CENTRALUS:20200811T181611Z:eac84185-b25d-4850-9541-bc9965fb0393" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -14887,7 +6573,7 @@ "nosniff" ], "Date": [ - "Fri, 24 Jul 2020 23:38:57 GMT" + "Tue, 11 Aug 2020 18:16:11 GMT" ], "Expires": [ "-1" @@ -14900,15 +6586,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk2NjEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprMk5qRXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU3NzAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVM056QXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.28207.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", + "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" ] }, @@ -14920,22 +6606,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk2NjEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2020-06-01" + "https://management.azure.com/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU3NzAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2020-06-01" ], "Retry-After": [ "0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11769" + "11900" ], "x-ms-request-id": [ - "e5290678-b51b-40a9-88de-770ade8c2fdc" + "935abfaa-feb4-49ca-bad4-16295da3c852" ], "x-ms-correlation-request-id": [ - "e5290678-b51b-40a9-88de-770ade8c2fdc" + "935abfaa-feb4-49ca-bad4-16295da3c852" ], "x-ms-routing-request-id": [ - "WESTUS2:20200724T233912Z:e5290678-b51b-40a9-88de-770ade8c2fdc" + "CENTRALUS:20200811T181627Z:935abfaa-feb4-49ca-bad4-16295da3c852" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -14944,7 +6630,7 @@ "nosniff" ], "Date": [ - "Fri, 24 Jul 2020 23:39:12 GMT" + "Tue, 11 Aug 2020 18:16:26 GMT" ], "Expires": [ "-1" @@ -14957,15 +6643,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk2NjEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprMk5qRXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU3NzAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVM056QXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.28207.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", + "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" ] }, @@ -14977,22 +6663,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk2NjEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2020-06-01" + "https://management.azure.com/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU3NzAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2020-06-01" ], "Retry-After": [ "0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11768" + "11899" ], "x-ms-request-id": [ - "4182a2b7-515d-4af4-9e98-3608ea871e50" + "f638d8cc-f472-4c50-9e95-5afaefe7ce07" ], "x-ms-correlation-request-id": [ - "4182a2b7-515d-4af4-9e98-3608ea871e50" + "f638d8cc-f472-4c50-9e95-5afaefe7ce07" ], "x-ms-routing-request-id": [ - "WESTUS2:20200724T233927Z:4182a2b7-515d-4af4-9e98-3608ea871e50" + "CENTRALUS:20200811T181642Z:f638d8cc-f472-4c50-9e95-5afaefe7ce07" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -15001,7 +6687,7 @@ "nosniff" ], "Date": [ - "Fri, 24 Jul 2020 23:39:27 GMT" + "Tue, 11 Aug 2020 18:16:41 GMT" ], "Expires": [ "-1" @@ -15014,15 +6700,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk2NjEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprMk5qRXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU3NzAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVM056QXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.28207.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", + "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" ] }, @@ -15034,16 +6720,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11767" + "11898" ], "x-ms-request-id": [ - "572fef07-4074-4418-b2d5-b5213094ae16" + "b5f99d65-4c3d-433c-9d7d-bf5a9459a0cd" ], "x-ms-correlation-request-id": [ - "572fef07-4074-4418-b2d5-b5213094ae16" + "b5f99d65-4c3d-433c-9d7d-bf5a9459a0cd" ], "x-ms-routing-request-id": [ - "WESTUS2:20200724T233942Z:572fef07-4074-4418-b2d5-b5213094ae16" + "CENTRALUS:20200811T181657Z:b5f99d65-4c3d-433c-9d7d-bf5a9459a0cd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -15052,7 +6738,7 @@ "nosniff" ], "Date": [ - "Fri, 24 Jul 2020 23:39:42 GMT" + "Tue, 11 Aug 2020 18:16:57 GMT" ], "Expires": [ "-1" @@ -15068,15 +6754,15 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk2NjEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprMk5qRXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU3NzAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVM056QXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.28207.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", + "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.9.0.0" ] }, @@ -15088,16 +6774,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11766" + "11897" ], "x-ms-request-id": [ - "83652450-aee2-40f0-be32-4423a2b009e5" + "e3d3df8b-17f3-4d48-9cf1-0b35e3c6ab2f" ], "x-ms-correlation-request-id": [ - "83652450-aee2-40f0-be32-4423a2b009e5" + "e3d3df8b-17f3-4d48-9cf1-0b35e3c6ab2f" ], "x-ms-routing-request-id": [ - "WESTUS2:20200724T233943Z:83652450-aee2-40f0-be32-4423a2b009e5" + "CENTRALUS:20200811T181657Z:e3d3df8b-17f3-4d48-9cf1-0b35e3c6ab2f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -15106,7 +6792,7 @@ "nosniff" ], "Date": [ - "Fri, 24 Jul 2020 23:39:42 GMT" + "Tue, 11 Aug 2020 18:16:57 GMT" ], "Expires": [ "-1" @@ -15124,9 +6810,9 @@ ], "Names": { "Test-DeploymentEndToEnd-ResourceGroup": [ - "ps9661", - "ps9855", - "ps801" + "ps5770", + "ps9986", + "ps5860" ] }, "Variables": { diff --git a/src/Resources/Resources/help/Get-AzResourceGroupDeploymentOperation.md b/src/Resources/Resources/help/Get-AzResourceGroupDeploymentOperation.md index 4177a372dae7..886365ecffd7 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 -### System.Management.Automation.PSObject +### Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeploymentOperation ## NOTES From 4a530a22dbdcac220c632c79145f7d6dcec22175 Mon Sep 17 00:00:00 2001 From: Gokul Premraj Date: Mon, 17 Aug 2020 19:48:41 -0400 Subject: [PATCH 09/17] Update help --- .../Resources/help/Get-AzDeployment.md | 24 +----- .../help/Get-AzDeploymentOperation.md | 22 +---- .../Resources/help/Get-AzDeploymentScript.md | 13 ++- .../help/Get-AzDeploymentWhatIfResult.md | 55 ++++-------- .../help/Get-AzManagementGroupDeployment.md | 32 ++----- ...et-AzManagementGroupDeploymentOperation.md | 33 ++------ ...AzManagementGroupDeploymentWhatIfResult.md | 61 +++++--------- .../Resources/help/Get-AzResource.md | 4 +- .../Resources/help/Get-AzResourceGroup.md | 2 +- .../help/Get-AzResourceGroupDeployment.md | 22 +---- .../Get-AzResourceGroupDeploymentOperation.md | 19 +---- ...t-AzResourceGroupDeploymentWhatIfResult.md | 61 +++++--------- .../Resources/help/Get-AzTenantDeployment.md | 31 ++----- .../help/Get-AzTenantDeploymentOperation.md | 30 ++----- .../Get-AzTenantDeploymentWhatIfResult.md | 55 ++++-------- .../help/New-AzADServicePrincipal.md | 21 +---- .../Resources/help/New-AzDeployment.md | 69 ++++++--------- .../help/New-AzManagementGroupDeployment.md | 65 +++++---------- .../help/New-AzResourceGroupDeployment.md | 65 +++++---------- src/Resources/Resources/help/New-AzTag.md | 50 +++++------ .../Resources/help/New-AzTenantDeployment.md | 69 ++++++--------- .../Resources/help/Remove-AzADGroup.md | 12 +-- .../Resources/help/Remove-AzDeployment.md | 26 ++---- .../help/Remove-AzDeploymentScript.md | 48 +++++------ .../Remove-AzManagementGroupDeployment.md | 47 ++++------- .../help/Remove-AzResourceGroupDeployment.md | 22 +---- .../Resources/help/Remove-AzResourceLock.md | 2 + src/Resources/Resources/help/Remove-AzTag.md | 41 ++++----- .../help/Remove-AzTenantDeployment.md | 42 +++------- .../help/Save-AzDeploymentTemplate.md | 22 +---- ...ave-AzManagementGroupDeploymentTemplate.md | 42 +++------- .../Save-AzResourceGroupDeploymentTemplate.md | 21 +---- .../help/Save-AzTenantDeploymentTemplate.md | 41 +++------ .../Set-AzManagedApplicationDefinition.md | 2 + .../Resources/help/Stop-AzDeployment.md | 28 ++----- .../help/Stop-AzManagementGroupDeployment.md | 45 ++++------ .../help/Stop-AzResourceGroupDeployment.md | 22 +---- .../Resources/help/Stop-AzTenantDeployment.md | 42 +++------- .../Resources/help/Test-AzDeployment.md | 55 ++++-------- .../help/Test-AzManagementGroupDeployment.md | 83 +++++++------------ .../help/Test-AzResourceGroupDeployment.md | 55 ++++-------- .../Resources/help/Test-AzTenantDeployment.md | 75 ++++++----------- .../help/Unregister-AzProviderFeature.md | 10 +-- .../help/Update-AzADServicePrincipal.md | 2 + src/Resources/Resources/help/Update-AzTag.md | 39 ++++----- 45 files changed, 498 insertions(+), 1129 deletions(-) diff --git a/src/Resources/Resources/help/Get-AzDeployment.md b/src/Resources/Resources/help/Get-AzDeployment.md index 33f4a719b208..c0abed26a98c 100644 --- a/src/Resources/Resources/help/Get-AzDeployment.md +++ b/src/Resources/Resources/help/Get-AzDeployment.md @@ -14,14 +14,12 @@ Get deployment ### GetByDeploymentName (Default) ``` -Get-AzDeployment [[-Name] ] [-ApiVersion ] [-Pre] [-DefaultProfile ] - [] +Get-AzDeployment [[-Name] ] [-Pre] [-DefaultProfile ] [] ``` ### GetByDeploymentId ``` -Get-AzDeployment -Id [-ApiVersion ] [-Pre] [-DefaultProfile ] - [] +Get-AzDeployment -Id [-Pre] [-DefaultProfile ] [] ``` ## DESCRIPTION @@ -49,22 +47,6 @@ If you do not assign a name, the cmdlets provide a default name based on the tem ## PARAMETERS -### -ApiVersion -When set, indicates the version of the resource provider API to use. -If not specified, the API version is automatically determined as the latest available. - -```yaml -Type: System.String -Parameter Sets: (All) -Aliases: - -Required: False -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - ### -DefaultProfile The credentials, account, tenant, and subscription used for communication with Azure. @@ -105,7 +87,7 @@ Parameter Sets: GetByDeploymentName Aliases: DeploymentName Required: False -Position: 1 +Position: 0 Default value: None Accept pipeline input: False Accept wildcard characters: False diff --git a/src/Resources/Resources/help/Get-AzDeploymentOperation.md b/src/Resources/Resources/help/Get-AzDeploymentOperation.md index 8edccd5d88cc..3801993d74f6 100644 --- a/src/Resources/Resources/help/Get-AzDeploymentOperation.md +++ b/src/Resources/Resources/help/Get-AzDeploymentOperation.md @@ -14,14 +14,14 @@ Get deployment operation ### GetByDeploymentName (Default) ``` -Get-AzDeploymentOperation -DeploymentName [-OperationId ] [-ApiVersion ] [-Pre] +Get-AzDeploymentOperation -DeploymentName [-OperationId ] [-Pre] [-DefaultProfile ] [] ``` ### GetByDeploymentObject ``` -Get-AzDeploymentOperation -DeploymentObject [-ApiVersion ] [-Pre] - [-DefaultProfile ] [] +Get-AzDeploymentOperation -DeploymentObject [-Pre] [-DefaultProfile ] + [] ``` ## DESCRIPTION @@ -51,22 +51,6 @@ This command gets the deployment "test" at the current subscription scope and ge ## PARAMETERS -### -ApiVersion -When set, indicates the version of the resource provider API to use. -If not specified, the API version is automatically determined as the latest available. - -```yaml -Type: System.String -Parameter Sets: (All) -Aliases: - -Required: False -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - ### -DefaultProfile The credentials, account, tenant, and subscription used for communication with Azure. diff --git a/src/Resources/Resources/help/Get-AzDeploymentScript.md b/src/Resources/Resources/help/Get-AzDeploymentScript.md index 2cfa49f849e0..37ccaab3bb10 100644 --- a/src/Resources/Resources/help/Get-AzDeploymentScript.md +++ b/src/Resources/Resources/help/Get-AzDeploymentScript.md @@ -68,7 +68,7 @@ Gets a deployment script with the given resource Id. The credentials, account, tenant, and subscription used for communication with Azure. ```yaml -Type: IAzureContextContainer +Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer Parameter Sets: (All) Aliases: AzContext, AzureRmContext, AzureCredential @@ -84,7 +84,7 @@ The fully qualified resource Id of the deployment script. Example: /subscriptions/{subId}/resourceGroups/{rgName}/providers/Microsoft.Resources/deploymentScripts/{deploymentScriptName} ```yaml -Type: String +Type: System.String Parameter Sets: GetDeploymentScriptByResourceId Aliases: ResourceId @@ -99,7 +99,7 @@ Accept wildcard characters: False The name of the deployment script ```yaml -Type: String +Type: System.String Parameter Sets: GetDeploymentScriptByName Aliases: @@ -114,7 +114,7 @@ Accept wildcard characters: False The name of the resource group. ```yaml -Type: String +Type: System.String Parameter Sets: ListDeploymentScript Aliases: @@ -126,7 +126,7 @@ Accept wildcard characters: False ``` ```yaml -Type: String +Type: System.String Parameter Sets: GetDeploymentScriptByName Aliases: @@ -138,8 +138,7 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. -For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216). +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS diff --git a/src/Resources/Resources/help/Get-AzDeploymentWhatIfResult.md b/src/Resources/Resources/help/Get-AzDeploymentWhatIfResult.md index 278ef9b44ae4..9a649dfa3690 100644 --- a/src/Resources/Resources/help/Get-AzDeploymentWhatIfResult.md +++ b/src/Resources/Resources/help/Get-AzDeploymentWhatIfResult.md @@ -15,94 +15,85 @@ Gets an ARM template What-If result for a deployment at subscription scope. ### ByTemplateFileWithNoParameters (Default) ``` Get-AzDeploymentWhatIfResult [-Name ] -Location [-ResultFormat ] - [-ExcludeChangeType ] -TemplateFile [-SkipTemplateParameterPrompt] [-ApiVersion ] - [-Pre] [-DefaultProfile ] [] + [-ExcludeChangeType ] -TemplateFile [-SkipTemplateParameterPrompt] [-Pre] + [-DefaultProfile ] [] ``` ### ByTemplateObjectAndParameterObject ``` Get-AzDeploymentWhatIfResult [-Name ] -Location [-ResultFormat ] [-ExcludeChangeType ] -TemplateParameterObject -TemplateObject - [-SkipTemplateParameterPrompt] [-ApiVersion ] [-Pre] [-DefaultProfile ] - [] + [-SkipTemplateParameterPrompt] [-Pre] [-DefaultProfile ] [] ``` ### ByTemplateFileAndParameterObject ``` Get-AzDeploymentWhatIfResult [-Name ] -Location [-ResultFormat ] [-ExcludeChangeType ] -TemplateParameterObject -TemplateFile - [-SkipTemplateParameterPrompt] [-ApiVersion ] [-Pre] [-DefaultProfile ] - [] + [-SkipTemplateParameterPrompt] [-Pre] [-DefaultProfile ] [] ``` ### ByTemplateUriAndParameterObject ``` Get-AzDeploymentWhatIfResult [-Name ] -Location [-ResultFormat ] [-ExcludeChangeType ] -TemplateParameterObject -TemplateUri - [-SkipTemplateParameterPrompt] [-ApiVersion ] [-Pre] [-DefaultProfile ] - [] + [-SkipTemplateParameterPrompt] [-Pre] [-DefaultProfile ] [] ``` ### ByTemplateObjectAndParameterFile ``` Get-AzDeploymentWhatIfResult [-Name ] -Location [-ResultFormat ] [-ExcludeChangeType ] -TemplateParameterFile -TemplateObject - [-SkipTemplateParameterPrompt] [-ApiVersion ] [-Pre] [-DefaultProfile ] - [] + [-SkipTemplateParameterPrompt] [-Pre] [-DefaultProfile ] [] ``` ### ByTemplateFileAndParameterFile ``` Get-AzDeploymentWhatIfResult [-Name ] -Location [-ResultFormat ] [-ExcludeChangeType ] -TemplateParameterFile -TemplateFile - [-SkipTemplateParameterPrompt] [-ApiVersion ] [-Pre] [-DefaultProfile ] - [] + [-SkipTemplateParameterPrompt] [-Pre] [-DefaultProfile ] [] ``` ### ByTemplateUriAndParameterFile ``` Get-AzDeploymentWhatIfResult [-Name ] -Location [-ResultFormat ] [-ExcludeChangeType ] -TemplateParameterFile -TemplateUri - [-SkipTemplateParameterPrompt] [-ApiVersion ] [-Pre] [-DefaultProfile ] - [] + [-SkipTemplateParameterPrompt] [-Pre] [-DefaultProfile ] [] ``` ### ByTemplateObjectAndParameterUri ``` Get-AzDeploymentWhatIfResult [-Name ] -Location [-ResultFormat ] [-ExcludeChangeType ] -TemplateParameterUri -TemplateObject - [-SkipTemplateParameterPrompt] [-ApiVersion ] [-Pre] [-DefaultProfile ] - [] + [-SkipTemplateParameterPrompt] [-Pre] [-DefaultProfile ] [] ``` ### ByTemplateFileAndParameterUri ``` Get-AzDeploymentWhatIfResult [-Name ] -Location [-ResultFormat ] [-ExcludeChangeType ] -TemplateParameterUri -TemplateFile - [-SkipTemplateParameterPrompt] [-ApiVersion ] [-Pre] [-DefaultProfile ] - [] + [-SkipTemplateParameterPrompt] [-Pre] [-DefaultProfile ] [] ``` ### ByTemplateUriAndParameterUri ``` Get-AzDeploymentWhatIfResult [-Name ] -Location [-ResultFormat ] [-ExcludeChangeType ] -TemplateParameterUri -TemplateUri - [-SkipTemplateParameterPrompt] [-ApiVersion ] [-Pre] [-DefaultProfile ] - [] + [-SkipTemplateParameterPrompt] [-Pre] [-DefaultProfile ] [] ``` ### ByTemplateObjectWithNoParameters ``` Get-AzDeploymentWhatIfResult [-Name ] -Location [-ResultFormat ] - [-ExcludeChangeType ] -TemplateObject [-SkipTemplateParameterPrompt] - [-ApiVersion ] [-Pre] [-DefaultProfile ] [] + [-ExcludeChangeType ] -TemplateObject [-SkipTemplateParameterPrompt] [-Pre] + [-DefaultProfile ] [] ``` ### ByTemplateUriWithNoParameters ``` Get-AzDeploymentWhatIfResult [-Name ] -Location [-ResultFormat ] - [-ExcludeChangeType ] -TemplateUri [-SkipTemplateParameterPrompt] [-ApiVersion ] - [-Pre] [-DefaultProfile ] [] + [-ExcludeChangeType ] -TemplateUri [-SkipTemplateParameterPrompt] [-Pre] + [-DefaultProfile ] [] ``` ## DESCRIPTION @@ -144,22 +135,6 @@ The command uses the *ResultFormat* parameter to set the What-If result to only ## PARAMETERS -### -ApiVersion -When set, indicates the version of the resource provider API to use. -If not specified, the API version is automatically determined as the latest available. - -```yaml -Type: System.String -Parameter Sets: (All) -Aliases: - -Required: False -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - ### -DefaultProfile The credentials, account, tenant, and subscription used for communication with Azure. diff --git a/src/Resources/Resources/help/Get-AzManagementGroupDeployment.md b/src/Resources/Resources/help/Get-AzManagementGroupDeployment.md index a6b82c0a02cd..eb745b33b84c 100644 --- a/src/Resources/Resources/help/Get-AzManagementGroupDeployment.md +++ b/src/Resources/Resources/help/Get-AzManagementGroupDeployment.md @@ -14,14 +14,14 @@ Get deployment at a management group ### GetByDeploymentName (Default) ``` -Get-AzManagementGroupDeployment [-ManagementGroupId] [[-Name] ] [-ApiVersion ] [-Pre] +Get-AzManagementGroupDeployment [-ManagementGroupId] [[-Name] ] [-Pre] [-DefaultProfile ] [] ``` ### GetByDeploymentId ``` -Get-AzManagementGroupDeployment -Id [-ApiVersion ] [-Pre] - [-DefaultProfile ] [] +Get-AzManagementGroupDeployment -Id [-Pre] [-DefaultProfile ] + [] ``` ## DESCRIPTION @@ -56,27 +56,11 @@ This command gets the "Deploy01" deployment at the management group "myMG". ## PARAMETERS -### -ApiVersion -When set, indicates the version of the resource provider API to use. -If not specified, the API version is automatically determined as the latest available. - -```yaml -Type: String -Parameter Sets: (All) -Aliases: - -Required: False -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - ### -DefaultProfile The credentials, account, tenant, and subscription used for communication with Azure. ```yaml -Type: IAzureContextContainer +Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer Parameter Sets: (All) Aliases: AzContext, AzureRmContext, AzureCredential @@ -92,7 +76,7 @@ The fully qualified resource Id of the deployment. example: /providers/Microsoft.Management/managementGroups/{managementGroupId}/providers/Microsoft.Resources/deployments/{deploymentName} ```yaml -Type: String +Type: System.String Parameter Sets: GetByDeploymentId Aliases: DeploymentId, ResourceId @@ -107,7 +91,7 @@ Accept wildcard characters: False The management group id. ```yaml -Type: String +Type: System.String Parameter Sets: GetByDeploymentName Aliases: @@ -122,7 +106,7 @@ Accept wildcard characters: False The name of deployment. ```yaml -Type: String +Type: System.String Parameter Sets: GetByDeploymentName Aliases: DeploymentName @@ -137,7 +121,7 @@ Accept wildcard characters: False When set, indicates that the cmdlet should use pre-release API versions when automatically determining which version to use. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: diff --git a/src/Resources/Resources/help/Get-AzManagementGroupDeploymentOperation.md b/src/Resources/Resources/help/Get-AzManagementGroupDeploymentOperation.md index 6056a0fe284c..390cc73ea586 100644 --- a/src/Resources/Resources/help/Get-AzManagementGroupDeploymentOperation.md +++ b/src/Resources/Resources/help/Get-AzManagementGroupDeploymentOperation.md @@ -15,13 +15,12 @@ Get deployment operation for management group deployment ### GetByDeploymentName (Default) ``` Get-AzManagementGroupDeploymentOperation -ManagementGroupId -DeploymentName - [-OperationId ] [-ApiVersion ] [-Pre] [-DefaultProfile ] - [] + [-OperationId ] [-Pre] [-DefaultProfile ] [] ``` ### GetByDeploymentObject ``` -Get-AzManagementGroupDeploymentOperation -DeploymentObject [-ApiVersion ] [-Pre] +Get-AzManagementGroupDeploymentOperation -DeploymentObject [-Pre] [-DefaultProfile ] [] ``` @@ -47,27 +46,11 @@ This command gets the deployment "Deploy01" at the management group "myMG" and g ## PARAMETERS -### -ApiVersion -When set, indicates the version of the resource provider API to use. -If not specified, the API version is automatically determined as the latest available. - -```yaml -Type: String -Parameter Sets: (All) -Aliases: - -Required: False -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - ### -DefaultProfile The credentials, account, tenant, and subscription used for communication with Azure. ```yaml -Type: IAzureContextContainer +Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer Parameter Sets: (All) Aliases: AzContext, AzureRmContext, AzureCredential @@ -82,7 +65,7 @@ Accept wildcard characters: False The deployment name. ```yaml -Type: String +Type: System.String Parameter Sets: GetByDeploymentName Aliases: @@ -97,7 +80,7 @@ Accept wildcard characters: False The deployment object. ```yaml -Type: PSDeployment +Type: Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment Parameter Sets: GetByDeploymentObject Aliases: @@ -112,7 +95,7 @@ Accept wildcard characters: False The management group id. ```yaml -Type: String +Type: System.String Parameter Sets: GetByDeploymentName Aliases: @@ -127,7 +110,7 @@ Accept wildcard characters: False The deployment operation Id. ```yaml -Type: String +Type: System.String Parameter Sets: GetByDeploymentName Aliases: @@ -142,7 +125,7 @@ Accept wildcard characters: False When set, indicates that the cmdlet should use pre-release API versions when automatically determining which version to use. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: diff --git a/src/Resources/Resources/help/Get-AzManagementGroupDeploymentWhatIfResult.md b/src/Resources/Resources/help/Get-AzManagementGroupDeploymentWhatIfResult.md index 261cb5e5b68e..0982729eecca 100644 --- a/src/Resources/Resources/help/Get-AzManagementGroupDeploymentWhatIfResult.md +++ b/src/Resources/Resources/help/Get-AzManagementGroupDeploymentWhatIfResult.md @@ -16,96 +16,93 @@ Gets an ARM template What-If result for a deployment at management group scope. ``` Get-AzManagementGroupDeploymentWhatIfResult [-Name ] -ManagementGroupId -Location [-ResultFormat ] [-ExcludeChangeType ] -TemplateFile - [-SkipTemplateParameterPrompt] [-ApiVersion ] [-Pre] [-DefaultProfile ] - [] + [-SkipTemplateParameterPrompt] [-Pre] [-DefaultProfile ] [] ``` ### ByTemplateObjectAndParameterObject ``` Get-AzManagementGroupDeploymentWhatIfResult [-Name ] -ManagementGroupId -Location [-ResultFormat ] [-ExcludeChangeType ] -TemplateParameterObject - -TemplateObject [-SkipTemplateParameterPrompt] [-ApiVersion ] [-Pre] - [-DefaultProfile ] [] + -TemplateObject [-SkipTemplateParameterPrompt] [-Pre] [-DefaultProfile ] + [] ``` ### ByTemplateFileAndParameterObject ``` Get-AzManagementGroupDeploymentWhatIfResult [-Name ] -ManagementGroupId -Location [-ResultFormat ] [-ExcludeChangeType ] -TemplateParameterObject - -TemplateFile [-SkipTemplateParameterPrompt] [-ApiVersion ] [-Pre] - [-DefaultProfile ] [] + -TemplateFile [-SkipTemplateParameterPrompt] [-Pre] [-DefaultProfile ] + [] ``` ### ByTemplateUriAndParameterObject ``` Get-AzManagementGroupDeploymentWhatIfResult [-Name ] -ManagementGroupId -Location [-ResultFormat ] [-ExcludeChangeType ] -TemplateParameterObject - -TemplateUri [-SkipTemplateParameterPrompt] [-ApiVersion ] [-Pre] - [-DefaultProfile ] [] + -TemplateUri [-SkipTemplateParameterPrompt] [-Pre] [-DefaultProfile ] + [] ``` ### ByTemplateObjectAndParameterFile ``` Get-AzManagementGroupDeploymentWhatIfResult [-Name ] -ManagementGroupId -Location [-ResultFormat ] [-ExcludeChangeType ] -TemplateParameterFile - -TemplateObject [-SkipTemplateParameterPrompt] [-ApiVersion ] [-Pre] - [-DefaultProfile ] [] + -TemplateObject [-SkipTemplateParameterPrompt] [-Pre] [-DefaultProfile ] + [] ``` ### ByTemplateFileAndParameterFile ``` Get-AzManagementGroupDeploymentWhatIfResult [-Name ] -ManagementGroupId -Location [-ResultFormat ] [-ExcludeChangeType ] -TemplateParameterFile - -TemplateFile [-SkipTemplateParameterPrompt] [-ApiVersion ] [-Pre] - [-DefaultProfile ] [] + -TemplateFile [-SkipTemplateParameterPrompt] [-Pre] [-DefaultProfile ] + [] ``` ### ByTemplateUriAndParameterFile ``` Get-AzManagementGroupDeploymentWhatIfResult [-Name ] -ManagementGroupId -Location [-ResultFormat ] [-ExcludeChangeType ] -TemplateParameterFile - -TemplateUri [-SkipTemplateParameterPrompt] [-ApiVersion ] [-Pre] - [-DefaultProfile ] [] + -TemplateUri [-SkipTemplateParameterPrompt] [-Pre] [-DefaultProfile ] + [] ``` ### ByTemplateObjectAndParameterUri ``` Get-AzManagementGroupDeploymentWhatIfResult [-Name ] -ManagementGroupId -Location [-ResultFormat ] [-ExcludeChangeType ] -TemplateParameterUri - -TemplateObject [-SkipTemplateParameterPrompt] [-ApiVersion ] [-Pre] - [-DefaultProfile ] [] + -TemplateObject [-SkipTemplateParameterPrompt] [-Pre] [-DefaultProfile ] + [] ``` ### ByTemplateFileAndParameterUri ``` Get-AzManagementGroupDeploymentWhatIfResult [-Name ] -ManagementGroupId -Location [-ResultFormat ] [-ExcludeChangeType ] -TemplateParameterUri - -TemplateFile [-SkipTemplateParameterPrompt] [-ApiVersion ] [-Pre] - [-DefaultProfile ] [] + -TemplateFile [-SkipTemplateParameterPrompt] [-Pre] [-DefaultProfile ] + [] ``` ### ByTemplateUriAndParameterUri ``` Get-AzManagementGroupDeploymentWhatIfResult [-Name ] -ManagementGroupId -Location [-ResultFormat ] [-ExcludeChangeType ] -TemplateParameterUri - -TemplateUri [-SkipTemplateParameterPrompt] [-ApiVersion ] [-Pre] - [-DefaultProfile ] [] + -TemplateUri [-SkipTemplateParameterPrompt] [-Pre] [-DefaultProfile ] + [] ``` ### ByTemplateObjectWithNoParameters ``` Get-AzManagementGroupDeploymentWhatIfResult [-Name ] -ManagementGroupId -Location [-ResultFormat ] [-ExcludeChangeType ] -TemplateObject - [-SkipTemplateParameterPrompt] [-ApiVersion ] [-Pre] [-DefaultProfile ] - [] + [-SkipTemplateParameterPrompt] [-Pre] [-DefaultProfile ] [] ``` ### ByTemplateUriWithNoParameters ``` Get-AzManagementGroupDeploymentWhatIfResult [-Name ] -ManagementGroupId -Location [-ResultFormat ] [-ExcludeChangeType ] -TemplateUri - [-SkipTemplateParameterPrompt] [-ApiVersion ] [-Pre] [-DefaultProfile ] - [] + [-SkipTemplateParameterPrompt] [-Pre] [-DefaultProfile ] [] ``` ## DESCRIPTION @@ -151,22 +148,6 @@ The command uses the *ResultFormat* parameter to set the What-If result to only ## PARAMETERS -### -ApiVersion -When set, indicates the version of the resource provider API to use. -If not specified, the API version is automatically determined as the latest available. - -```yaml -Type: System.String -Parameter Sets: (All) -Aliases: - -Required: False -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - ### -DefaultProfile The credentials, account, tenant, and subscription used for communication with Azure. diff --git a/src/Resources/Resources/help/Get-AzResource.md b/src/Resources/Resources/help/Get-AzResource.md index e332ca2e698b..07ccda92978d 100644 --- a/src/Resources/Resources/help/Get-AzResource.md +++ b/src/Resources/Resources/help/Get-AzResource.md @@ -216,7 +216,7 @@ Required: False Position: Named Default value: None Accept pipeline input: False -Accept wildcard characters: True +Accept wildcard characters: False ``` ### -ODataQuery @@ -259,7 +259,7 @@ Required: False Position: Named Default value: None Accept pipeline input: False -Accept wildcard characters: True +Accept wildcard characters: False ``` ### -ResourceId diff --git a/src/Resources/Resources/help/Get-AzResourceGroup.md b/src/Resources/Resources/help/Get-AzResourceGroup.md index 1c99c92c92e5..257197d71afa 100644 --- a/src/Resources/Resources/help/Get-AzResourceGroup.md +++ b/src/Resources/Resources/help/Get-AzResourceGroup.md @@ -149,7 +149,7 @@ Required: False Position: 0 Default value: None Accept pipeline input: True (ByPropertyName) -Accept wildcard characters: True +Accept wildcard characters: False ``` ### -Pre diff --git a/src/Resources/Resources/help/Get-AzResourceGroupDeployment.md b/src/Resources/Resources/help/Get-AzResourceGroupDeployment.md index ff7530f7a673..9e7ca1ffff8f 100644 --- a/src/Resources/Resources/help/Get-AzResourceGroupDeployment.md +++ b/src/Resources/Resources/help/Get-AzResourceGroupDeployment.md @@ -15,14 +15,14 @@ Gets the deployments in a resource group. ### GetByResourceGroupDeploymentName (Default) ``` -Get-AzResourceGroupDeployment [-ResourceGroupName] [[-Name] ] [-ApiVersion ] [-Pre] +Get-AzResourceGroupDeployment [-ResourceGroupName] [[-Name] ] [-Pre] [-DefaultProfile ] [] ``` ### GetByResourceGroupDeploymentId ``` -Get-AzResourceGroupDeployment -Id [-ApiVersion ] [-Pre] - [-DefaultProfile ] [] +Get-AzResourceGroupDeployment -Id [-Pre] [-DefaultProfile ] + [] ``` ## DESCRIPTION @@ -66,22 +66,6 @@ The current cmdlet gets all deployments of all resource groups in the subscripti ## PARAMETERS -### -ApiVersion -Specifies the API version that is supported by the resource Provider. -You can specify a different version than the default version. - -```yaml -Type: System.String -Parameter Sets: (All) -Aliases: - -Required: False -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - ### -DefaultProfile The credentials, account, tenant, and subscription used for communication with azure diff --git a/src/Resources/Resources/help/Get-AzResourceGroupDeploymentOperation.md b/src/Resources/Resources/help/Get-AzResourceGroupDeploymentOperation.md index 886365ecffd7..5d554392ad78 100644 --- a/src/Resources/Resources/help/Get-AzResourceGroupDeploymentOperation.md +++ b/src/Resources/Resources/help/Get-AzResourceGroupDeploymentOperation.md @@ -15,8 +15,7 @@ Gets the resource group deployment operation ``` Get-AzResourceGroupDeploymentOperation -DeploymentName [-SubscriptionId ] - -ResourceGroupName [-ApiVersion ] [-Pre] [-DefaultProfile ] - [] + -ResourceGroupName [-Pre] [-DefaultProfile ] [] ``` ## DESCRIPTION @@ -38,22 +37,6 @@ Gets deployment operation with name "test" under resource group "test" ## PARAMETERS -### -ApiVersion -When set, indicates the version of the resource provider API to use. -If not specified, the API version is automatically determined as the latest available. - -```yaml -Type: System.String -Parameter Sets: (All) -Aliases: - -Required: False -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - ### -DefaultProfile The credentials, account, tenant, and subscription used for communication with Azure. diff --git a/src/Resources/Resources/help/Get-AzResourceGroupDeploymentWhatIfResult.md b/src/Resources/Resources/help/Get-AzResourceGroupDeploymentWhatIfResult.md index 126d380e1d96..a0c94b915148 100644 --- a/src/Resources/Resources/help/Get-AzResourceGroupDeploymentWhatIfResult.md +++ b/src/Resources/Resources/help/Get-AzResourceGroupDeploymentWhatIfResult.md @@ -16,96 +16,93 @@ Gets an ARM template What-If result for a deployment at resource group scope. ``` Get-AzResourceGroupDeploymentWhatIfResult [-Name ] -ResourceGroupName [-Mode ] [-ResultFormat ] [-ExcludeChangeType ] -TemplateFile - [-SkipTemplateParameterPrompt] [-ApiVersion ] [-Pre] [-DefaultProfile ] - [] + [-SkipTemplateParameterPrompt] [-Pre] [-DefaultProfile ] [] ``` ### ByTemplateObjectAndParameterObject ``` Get-AzResourceGroupDeploymentWhatIfResult [-Name ] -ResourceGroupName [-Mode ] [-ResultFormat ] [-ExcludeChangeType ] -TemplateParameterObject - -TemplateObject [-SkipTemplateParameterPrompt] [-ApiVersion ] [-Pre] - [-DefaultProfile ] [] + -TemplateObject [-SkipTemplateParameterPrompt] [-Pre] [-DefaultProfile ] + [] ``` ### ByTemplateFileAndParameterObject ``` Get-AzResourceGroupDeploymentWhatIfResult [-Name ] -ResourceGroupName [-Mode ] [-ResultFormat ] [-ExcludeChangeType ] -TemplateParameterObject - -TemplateFile [-SkipTemplateParameterPrompt] [-ApiVersion ] [-Pre] - [-DefaultProfile ] [] + -TemplateFile [-SkipTemplateParameterPrompt] [-Pre] [-DefaultProfile ] + [] ``` ### ByTemplateUriAndParameterObject ``` Get-AzResourceGroupDeploymentWhatIfResult [-Name ] -ResourceGroupName [-Mode ] [-ResultFormat ] [-ExcludeChangeType ] -TemplateParameterObject - -TemplateUri [-SkipTemplateParameterPrompt] [-ApiVersion ] [-Pre] - [-DefaultProfile ] [] + -TemplateUri [-SkipTemplateParameterPrompt] [-Pre] [-DefaultProfile ] + [] ``` ### ByTemplateObjectAndParameterFile ``` Get-AzResourceGroupDeploymentWhatIfResult [-Name ] -ResourceGroupName [-Mode ] [-ResultFormat ] [-ExcludeChangeType ] -TemplateParameterFile - -TemplateObject [-SkipTemplateParameterPrompt] [-ApiVersion ] [-Pre] - [-DefaultProfile ] [] + -TemplateObject [-SkipTemplateParameterPrompt] [-Pre] [-DefaultProfile ] + [] ``` ### ByTemplateFileAndParameterFile ``` Get-AzResourceGroupDeploymentWhatIfResult [-Name ] -ResourceGroupName [-Mode ] [-ResultFormat ] [-ExcludeChangeType ] -TemplateParameterFile - -TemplateFile [-SkipTemplateParameterPrompt] [-ApiVersion ] [-Pre] - [-DefaultProfile ] [] + -TemplateFile [-SkipTemplateParameterPrompt] [-Pre] [-DefaultProfile ] + [] ``` ### ByTemplateUriAndParameterFile ``` Get-AzResourceGroupDeploymentWhatIfResult [-Name ] -ResourceGroupName [-Mode ] [-ResultFormat ] [-ExcludeChangeType ] -TemplateParameterFile - -TemplateUri [-SkipTemplateParameterPrompt] [-ApiVersion ] [-Pre] - [-DefaultProfile ] [] + -TemplateUri [-SkipTemplateParameterPrompt] [-Pre] [-DefaultProfile ] + [] ``` ### ByTemplateObjectAndParameterUri ``` Get-AzResourceGroupDeploymentWhatIfResult [-Name ] -ResourceGroupName [-Mode ] [-ResultFormat ] [-ExcludeChangeType ] -TemplateParameterUri - -TemplateObject [-SkipTemplateParameterPrompt] [-ApiVersion ] [-Pre] - [-DefaultProfile ] [] + -TemplateObject [-SkipTemplateParameterPrompt] [-Pre] [-DefaultProfile ] + [] ``` ### ByTemplateFileAndParameterUri ``` Get-AzResourceGroupDeploymentWhatIfResult [-Name ] -ResourceGroupName [-Mode ] [-ResultFormat ] [-ExcludeChangeType ] -TemplateParameterUri - -TemplateFile [-SkipTemplateParameterPrompt] [-ApiVersion ] [-Pre] - [-DefaultProfile ] [] + -TemplateFile [-SkipTemplateParameterPrompt] [-Pre] [-DefaultProfile ] + [] ``` ### ByTemplateUriAndParameterUri ``` Get-AzResourceGroupDeploymentWhatIfResult [-Name ] -ResourceGroupName [-Mode ] [-ResultFormat ] [-ExcludeChangeType ] -TemplateParameterUri - -TemplateUri [-SkipTemplateParameterPrompt] [-ApiVersion ] [-Pre] - [-DefaultProfile ] [] + -TemplateUri [-SkipTemplateParameterPrompt] [-Pre] [-DefaultProfile ] + [] ``` ### ByTemplateObjectWithNoParameters ``` Get-AzResourceGroupDeploymentWhatIfResult [-Name ] -ResourceGroupName [-Mode ] [-ResultFormat ] [-ExcludeChangeType ] -TemplateObject - [-SkipTemplateParameterPrompt] [-ApiVersion ] [-Pre] [-DefaultProfile ] - [] + [-SkipTemplateParameterPrompt] [-Pre] [-DefaultProfile ] [] ``` ### ByTemplateUriWithNoParameters ``` Get-AzResourceGroupDeploymentWhatIfResult [-Name ] -ResourceGroupName [-Mode ] [-ResultFormat ] [-ExcludeChangeType ] -TemplateUri - [-SkipTemplateParameterPrompt] [-ApiVersion ] [-Pre] [-DefaultProfile ] - [] + [-SkipTemplateParameterPrompt] [-Pre] [-DefaultProfile ] [] ``` ## DESCRIPTION @@ -147,22 +144,6 @@ The command uses the *ResultFormat* parameter to set the What-If result to only ## PARAMETERS -### -ApiVersion -When set, indicates the version of the resource provider API to use. -If not specified, the API version is automatically determined as the latest available. - -```yaml -Type: System.String -Parameter Sets: (All) -Aliases: - -Required: False -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - ### -DefaultProfile The credentials, account, tenant, and subscription used for communication with Azure. diff --git a/src/Resources/Resources/help/Get-AzTenantDeployment.md b/src/Resources/Resources/help/Get-AzTenantDeployment.md index a600a0f68405..6a87c837105f 100644 --- a/src/Resources/Resources/help/Get-AzTenantDeployment.md +++ b/src/Resources/Resources/help/Get-AzTenantDeployment.md @@ -14,14 +14,13 @@ Get deployment at tenant scope ### GetByDeploymentName (Default) ``` -Get-AzTenantDeployment [[-Name] ] [-ApiVersion ] [-Pre] - [-DefaultProfile ] [] +Get-AzTenantDeployment [[-Name] ] [-Pre] [-DefaultProfile ] + [] ``` ### GetByDeploymentId ``` -Get-AzTenantDeployment -Id [-ApiVersion ] [-Pre] [-DefaultProfile ] - [] +Get-AzTenantDeployment -Id [-Pre] [-DefaultProfile ] [] ``` ## DESCRIPTION @@ -56,27 +55,11 @@ This command gets the "Deploy01" deployment at the tenant scope. ## PARAMETERS -### -ApiVersion -When set, indicates the version of the resource provider API to use. -If not specified, the API version is automatically determined as the latest available. - -```yaml -Type: String -Parameter Sets: (All) -Aliases: - -Required: False -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - ### -DefaultProfile The credentials, account, tenant, and subscription used for communication with Azure. ```yaml -Type: IAzureContextContainer +Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer Parameter Sets: (All) Aliases: AzContext, AzureRmContext, AzureCredential @@ -92,7 +75,7 @@ The fully qualified resource Id of the deployment. example: /providers/Microsoft.Resources/deployments/{deploymentName} ```yaml -Type: String +Type: System.String Parameter Sets: GetByDeploymentId Aliases: DeploymentId, ResourceId @@ -107,7 +90,7 @@ Accept wildcard characters: False The name of deployment. ```yaml -Type: String +Type: System.String Parameter Sets: GetByDeploymentName Aliases: DeploymentName @@ -122,7 +105,7 @@ Accept wildcard characters: False When set, indicates that the cmdlet should use pre-release API versions when automatically determining which version to use. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: diff --git a/src/Resources/Resources/help/Get-AzTenantDeploymentOperation.md b/src/Resources/Resources/help/Get-AzTenantDeploymentOperation.md index 12deec988de3..1a1284079faf 100644 --- a/src/Resources/Resources/help/Get-AzTenantDeploymentOperation.md +++ b/src/Resources/Resources/help/Get-AzTenantDeploymentOperation.md @@ -14,13 +14,13 @@ Get deployment operation for deployment at tenant scope ### GetByDeploymentName (Default) ``` -Get-AzTenantDeploymentOperation -DeploymentName [-OperationId ] [-ApiVersion ] [-Pre] +Get-AzTenantDeploymentOperation -DeploymentName [-OperationId ] [-Pre] [-DefaultProfile ] [] ``` ### GetByDeploymentObject ``` -Get-AzTenantDeploymentOperation -DeploymentObject [-ApiVersion ] [-Pre] +Get-AzTenantDeploymentOperation -DeploymentObject [-Pre] [-DefaultProfile ] [] ``` @@ -45,27 +45,11 @@ This command gets the deployment "Deploy01" at the current tenant scope and get ## PARAMETERS -### -ApiVersion -When set, indicates the version of the resource provider API to use. -If not specified, the API version is automatically determined as the latest available. - -```yaml -Type: String -Parameter Sets: (All) -Aliases: - -Required: False -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - ### -DefaultProfile The credentials, account, tenant, and subscription used for communication with Azure. ```yaml -Type: IAzureContextContainer +Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer Parameter Sets: (All) Aliases: AzContext, AzureRmContext, AzureCredential @@ -80,7 +64,7 @@ Accept wildcard characters: False The deployment name. ```yaml -Type: String +Type: System.String Parameter Sets: GetByDeploymentName Aliases: @@ -95,7 +79,7 @@ Accept wildcard characters: False The deployment object. ```yaml -Type: PSDeployment +Type: Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment Parameter Sets: GetByDeploymentObject Aliases: @@ -110,7 +94,7 @@ Accept wildcard characters: False The deployment operation Id. ```yaml -Type: String +Type: System.String Parameter Sets: GetByDeploymentName Aliases: @@ -125,7 +109,7 @@ Accept wildcard characters: False When set, indicates that the cmdlet should use pre-release API versions when automatically determining which version to use. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: diff --git a/src/Resources/Resources/help/Get-AzTenantDeploymentWhatIfResult.md b/src/Resources/Resources/help/Get-AzTenantDeploymentWhatIfResult.md index 88cfc1db795c..12e772e04def 100644 --- a/src/Resources/Resources/help/Get-AzTenantDeploymentWhatIfResult.md +++ b/src/Resources/Resources/help/Get-AzTenantDeploymentWhatIfResult.md @@ -15,94 +15,85 @@ Gets an ARM template What-If result for a deployment at tenant scope. ### ByTemplateFileWithNoParameters (Default) ``` Get-AzTenantDeploymentWhatIfResult [-Name ] -Location [-ResultFormat ] - [-ExcludeChangeType ] -TemplateFile [-SkipTemplateParameterPrompt] [-ApiVersion ] - [-Pre] [-DefaultProfile ] [] + [-ExcludeChangeType ] -TemplateFile [-SkipTemplateParameterPrompt] [-Pre] + [-DefaultProfile ] [] ``` ### ByTemplateObjectAndParameterObject ``` Get-AzTenantDeploymentWhatIfResult [-Name ] -Location [-ResultFormat ] [-ExcludeChangeType ] -TemplateParameterObject -TemplateObject - [-SkipTemplateParameterPrompt] [-ApiVersion ] [-Pre] [-DefaultProfile ] - [] + [-SkipTemplateParameterPrompt] [-Pre] [-DefaultProfile ] [] ``` ### ByTemplateFileAndParameterObject ``` Get-AzTenantDeploymentWhatIfResult [-Name ] -Location [-ResultFormat ] [-ExcludeChangeType ] -TemplateParameterObject -TemplateFile - [-SkipTemplateParameterPrompt] [-ApiVersion ] [-Pre] [-DefaultProfile ] - [] + [-SkipTemplateParameterPrompt] [-Pre] [-DefaultProfile ] [] ``` ### ByTemplateUriAndParameterObject ``` Get-AzTenantDeploymentWhatIfResult [-Name ] -Location [-ResultFormat ] [-ExcludeChangeType ] -TemplateParameterObject -TemplateUri - [-SkipTemplateParameterPrompt] [-ApiVersion ] [-Pre] [-DefaultProfile ] - [] + [-SkipTemplateParameterPrompt] [-Pre] [-DefaultProfile ] [] ``` ### ByTemplateObjectAndParameterFile ``` Get-AzTenantDeploymentWhatIfResult [-Name ] -Location [-ResultFormat ] [-ExcludeChangeType ] -TemplateParameterFile -TemplateObject - [-SkipTemplateParameterPrompt] [-ApiVersion ] [-Pre] [-DefaultProfile ] - [] + [-SkipTemplateParameterPrompt] [-Pre] [-DefaultProfile ] [] ``` ### ByTemplateFileAndParameterFile ``` Get-AzTenantDeploymentWhatIfResult [-Name ] -Location [-ResultFormat ] [-ExcludeChangeType ] -TemplateParameterFile -TemplateFile - [-SkipTemplateParameterPrompt] [-ApiVersion ] [-Pre] [-DefaultProfile ] - [] + [-SkipTemplateParameterPrompt] [-Pre] [-DefaultProfile ] [] ``` ### ByTemplateUriAndParameterFile ``` Get-AzTenantDeploymentWhatIfResult [-Name ] -Location [-ResultFormat ] [-ExcludeChangeType ] -TemplateParameterFile -TemplateUri - [-SkipTemplateParameterPrompt] [-ApiVersion ] [-Pre] [-DefaultProfile ] - [] + [-SkipTemplateParameterPrompt] [-Pre] [-DefaultProfile ] [] ``` ### ByTemplateObjectAndParameterUri ``` Get-AzTenantDeploymentWhatIfResult [-Name ] -Location [-ResultFormat ] [-ExcludeChangeType ] -TemplateParameterUri -TemplateObject - [-SkipTemplateParameterPrompt] [-ApiVersion ] [-Pre] [-DefaultProfile ] - [] + [-SkipTemplateParameterPrompt] [-Pre] [-DefaultProfile ] [] ``` ### ByTemplateFileAndParameterUri ``` Get-AzTenantDeploymentWhatIfResult [-Name ] -Location [-ResultFormat ] [-ExcludeChangeType ] -TemplateParameterUri -TemplateFile - [-SkipTemplateParameterPrompt] [-ApiVersion ] [-Pre] [-DefaultProfile ] - [] + [-SkipTemplateParameterPrompt] [-Pre] [-DefaultProfile ] [] ``` ### ByTemplateUriAndParameterUri ``` Get-AzTenantDeploymentWhatIfResult [-Name ] -Location [-ResultFormat ] [-ExcludeChangeType ] -TemplateParameterUri -TemplateUri - [-SkipTemplateParameterPrompt] [-ApiVersion ] [-Pre] [-DefaultProfile ] - [] + [-SkipTemplateParameterPrompt] [-Pre] [-DefaultProfile ] [] ``` ### ByTemplateObjectWithNoParameters ``` Get-AzTenantDeploymentWhatIfResult [-Name ] -Location [-ResultFormat ] - [-ExcludeChangeType ] -TemplateObject [-SkipTemplateParameterPrompt] - [-ApiVersion ] [-Pre] [-DefaultProfile ] [] + [-ExcludeChangeType ] -TemplateObject [-SkipTemplateParameterPrompt] [-Pre] + [-DefaultProfile ] [] ``` ### ByTemplateUriWithNoParameters ``` Get-AzTenantDeploymentWhatIfResult [-Name ] -Location [-ResultFormat ] - [-ExcludeChangeType ] -TemplateUri [-SkipTemplateParameterPrompt] [-ApiVersion ] - [-Pre] [-DefaultProfile ] [] + [-ExcludeChangeType ] -TemplateUri [-SkipTemplateParameterPrompt] [-Pre] + [-DefaultProfile ] [] ``` ## DESCRIPTION @@ -144,22 +135,6 @@ The command uses the *ResultFormat* parameter to set the What-If result to only ## PARAMETERS -### -ApiVersion -When set, indicates the version of the resource provider API to use. -If not specified, the API version is automatically determined as the latest available. - -```yaml -Type: System.String -Parameter Sets: (All) -Aliases: - -Required: False -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - ### -DefaultProfile The credentials, account, tenant, and subscription used for communication with Azure. diff --git a/src/Resources/Resources/help/New-AzADServicePrincipal.md b/src/Resources/Resources/help/New-AzADServicePrincipal.md index 99e13b663cd7..29dcd8289c43 100644 --- a/src/Resources/Resources/help/New-AzADServicePrincipal.md +++ b/src/Resources/Resources/help/New-AzADServicePrincipal.md @@ -14,7 +14,6 @@ Creates a new Azure active directory service principal. ## SYNTAX ### SimpleParameterSet (Default) - ``` New-AzADServicePrincipal [-ApplicationId ] [-DisplayName ] [-StartDate ] [-EndDate ] [-Scope ] [-Role ] [-SkipAssignment] @@ -22,98 +21,84 @@ New-AzADServicePrincipal [-ApplicationId ] [-DisplayName ] [-Start ``` ### ApplicationWithoutCredentialParameterSet - ``` New-AzADServicePrincipal -ApplicationId [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ### ApplicationWithPasswordPlainParameterSet - ``` New-AzADServicePrincipal -ApplicationId [-StartDate ] [-EndDate ] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ### ApplicationWithPasswordCredentialParameterSet - ``` New-AzADServicePrincipal -ApplicationId -PasswordCredential [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ### ApplicationWithKeyPlainParameterSet - ``` New-AzADServicePrincipal -ApplicationId -CertValue [-StartDate ] [-EndDate ] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ### ApplicationWithKeyCredentialParameterSet - ``` New-AzADServicePrincipal -ApplicationId -KeyCredential [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ### DisplayNameWithoutCredentialParameterSet - ``` New-AzADServicePrincipal -DisplayName [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ### DisplayNameWithPasswordPlainParameterSet - ``` New-AzADServicePrincipal -DisplayName [-StartDate ] [-EndDate ] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ### DisplayNameWithPasswordCredentialParameterSet - ``` New-AzADServicePrincipal -DisplayName -PasswordCredential [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ### DisplayNameWithKeyPlainParameterSet - ``` New-AzADServicePrincipal -DisplayName -CertValue [-StartDate ] [-EndDate ] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ### DisplayNameWithKeyCredentialParameterSet - ``` New-AzADServicePrincipal -DisplayName -KeyCredential [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ### ApplicationObjectWithPasswordPlainParameterSet - ``` New-AzADServicePrincipal -ApplicationObject [-StartDate ] [-EndDate ] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ### ApplicationObjectWithPasswordCredentialParameterSet - ``` New-AzADServicePrincipal -ApplicationObject -PasswordCredential [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ### ApplicationObjectWithKeyPlainParameterSet - ``` New-AzADServicePrincipal -ApplicationObject -CertValue [-StartDate ] [-EndDate ] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ### ApplicationObjectWithKeyCredentialParameterSet - ``` New-AzADServicePrincipal -ApplicationObject -KeyCredential [-DefaultProfile ] [-WhatIf] [-Confirm] [] @@ -609,11 +594,7 @@ Accept wildcard characters: False ``` ### CommonParameters - -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, --InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, --WarningAction, and -WarningVariable. For more information, see -[about_CommonParameters](/powershell/module/microsoft.powershell.core/about/about_commonparameters). +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS diff --git a/src/Resources/Resources/help/New-AzDeployment.md b/src/Resources/Resources/help/New-AzDeployment.md index b6be5d9094a0..625e071e8699 100644 --- a/src/Resources/Resources/help/New-AzDeployment.md +++ b/src/Resources/Resources/help/New-AzDeployment.md @@ -16,101 +16,96 @@ Create a deployment ``` New-AzDeployment [-Name ] -Location [-DeploymentDebugLogLevel ] [-Tag ] [-WhatIfResultFormat ] [-WhatIfExcludeChangeType ] [-AsJob] - -TemplateFile [-SkipTemplateParameterPrompt] [-ApiVersion ] [-Pre] - [-DefaultProfile ] [-WhatIf] [-Confirm] [] + -TemplateFile [-SkipTemplateParameterPrompt] [-Pre] [-DefaultProfile ] + [-WhatIf] [-Confirm] [] ``` ### ByTemplateObjectAndParameterObject ``` New-AzDeployment [-Name ] -Location [-DeploymentDebugLogLevel ] [-Tag ] [-WhatIfResultFormat ] [-WhatIfExcludeChangeType ] [-AsJob] - -TemplateParameterObject -TemplateObject [-SkipTemplateParameterPrompt] - [-ApiVersion ] [-Pre] [-DefaultProfile ] [-WhatIf] [-Confirm] - [] + -TemplateParameterObject -TemplateObject [-SkipTemplateParameterPrompt] [-Pre] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ### ByTemplateFileAndParameterObject ``` New-AzDeployment [-Name ] -Location [-DeploymentDebugLogLevel ] [-Tag ] [-WhatIfResultFormat ] [-WhatIfExcludeChangeType ] [-AsJob] - -TemplateParameterObject -TemplateFile [-SkipTemplateParameterPrompt] - [-ApiVersion ] [-Pre] [-DefaultProfile ] [-WhatIf] [-Confirm] - [] + -TemplateParameterObject -TemplateFile [-SkipTemplateParameterPrompt] [-Pre] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ### ByTemplateUriAndParameterObject ``` New-AzDeployment [-Name ] -Location [-DeploymentDebugLogLevel ] [-Tag ] [-WhatIfResultFormat ] [-WhatIfExcludeChangeType ] [-AsJob] - -TemplateParameterObject -TemplateUri [-SkipTemplateParameterPrompt] - [-ApiVersion ] [-Pre] [-DefaultProfile ] [-WhatIf] [-Confirm] - [] + -TemplateParameterObject -TemplateUri [-SkipTemplateParameterPrompt] [-Pre] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ### ByTemplateObjectAndParameterFile ``` New-AzDeployment [-Name ] -Location [-DeploymentDebugLogLevel ] [-Tag ] [-WhatIfResultFormat ] [-WhatIfExcludeChangeType ] [-AsJob] - -TemplateParameterFile -TemplateObject [-SkipTemplateParameterPrompt] - [-ApiVersion ] [-Pre] [-DefaultProfile ] [-WhatIf] [-Confirm] - [] + -TemplateParameterFile -TemplateObject [-SkipTemplateParameterPrompt] [-Pre] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ### ByTemplateFileAndParameterFile ``` New-AzDeployment [-Name ] -Location [-DeploymentDebugLogLevel ] [-Tag ] [-WhatIfResultFormat ] [-WhatIfExcludeChangeType ] [-AsJob] - -TemplateParameterFile -TemplateFile [-SkipTemplateParameterPrompt] [-ApiVersion ] - [-Pre] [-DefaultProfile ] [-WhatIf] [-Confirm] [] + -TemplateParameterFile -TemplateFile [-SkipTemplateParameterPrompt] [-Pre] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ### ByTemplateUriAndParameterFile ``` New-AzDeployment [-Name ] -Location [-DeploymentDebugLogLevel ] [-Tag ] [-WhatIfResultFormat ] [-WhatIfExcludeChangeType ] [-AsJob] - -TemplateParameterFile -TemplateUri [-SkipTemplateParameterPrompt] [-ApiVersion ] - [-Pre] [-DefaultProfile ] [-WhatIf] [-Confirm] [] + -TemplateParameterFile -TemplateUri [-SkipTemplateParameterPrompt] [-Pre] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ### ByTemplateObjectAndParameterUri ``` New-AzDeployment [-Name ] -Location [-DeploymentDebugLogLevel ] [-Tag ] [-WhatIfResultFormat ] [-WhatIfExcludeChangeType ] [-AsJob] - -TemplateParameterUri -TemplateObject [-SkipTemplateParameterPrompt] - [-ApiVersion ] [-Pre] [-DefaultProfile ] [-WhatIf] [-Confirm] - [] + -TemplateParameterUri -TemplateObject [-SkipTemplateParameterPrompt] [-Pre] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ### ByTemplateFileAndParameterUri ``` New-AzDeployment [-Name ] -Location [-DeploymentDebugLogLevel ] [-Tag ] [-WhatIfResultFormat ] [-WhatIfExcludeChangeType ] [-AsJob] - -TemplateParameterUri -TemplateFile [-SkipTemplateParameterPrompt] [-ApiVersion ] - [-Pre] [-DefaultProfile ] [-WhatIf] [-Confirm] [] + -TemplateParameterUri -TemplateFile [-SkipTemplateParameterPrompt] [-Pre] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ### ByTemplateUriAndParameterUri ``` New-AzDeployment [-Name ] -Location [-DeploymentDebugLogLevel ] [-Tag ] [-WhatIfResultFormat ] [-WhatIfExcludeChangeType ] [-AsJob] - -TemplateParameterUri -TemplateUri [-SkipTemplateParameterPrompt] [-ApiVersion ] - [-Pre] [-DefaultProfile ] [-WhatIf] [-Confirm] [] + -TemplateParameterUri -TemplateUri [-SkipTemplateParameterPrompt] [-Pre] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ### ByTemplateObjectWithNoParameters ``` New-AzDeployment [-Name ] -Location [-DeploymentDebugLogLevel ] [-Tag ] [-WhatIfResultFormat ] [-WhatIfExcludeChangeType ] [-AsJob] - -TemplateObject [-SkipTemplateParameterPrompt] [-ApiVersion ] [-Pre] - [-DefaultProfile ] [-WhatIf] [-Confirm] [] + -TemplateObject [-SkipTemplateParameterPrompt] [-Pre] [-DefaultProfile ] + [-WhatIf] [-Confirm] [] ``` ### ByTemplateUriWithNoParameters ``` New-AzDeployment [-Name ] -Location [-DeploymentDebugLogLevel ] [-Tag ] [-WhatIfResultFormat ] [-WhatIfExcludeChangeType ] [-AsJob] - -TemplateUri [-SkipTemplateParameterPrompt] [-ApiVersion ] [-Pre] - [-DefaultProfile ] [-WhatIf] [-Confirm] [] + -TemplateUri [-SkipTemplateParameterPrompt] [-Pre] [-DefaultProfile ] + [-WhatIf] [-Confirm] [] ``` ## DESCRIPTION @@ -159,22 +154,6 @@ It uses the *TemplateVersion* parameter to specify the version of the template. ## PARAMETERS -### -ApiVersion -When set, indicates the version of the resource provider API to use. -If not specified, the API version is automatically determined as the latest available. - -```yaml -Type: System.String -Parameter Sets: (All) -Aliases: - -Required: False -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - ### -AsJob Run cmdlet in the background diff --git a/src/Resources/Resources/help/New-AzManagementGroupDeployment.md b/src/Resources/Resources/help/New-AzManagementGroupDeployment.md index f4c039cfbe5d..3d4186479be6 100644 --- a/src/Resources/Resources/help/New-AzManagementGroupDeployment.md +++ b/src/Resources/Resources/help/New-AzManagementGroupDeployment.md @@ -16,9 +16,8 @@ Create a deployment at a management group ``` New-AzManagementGroupDeployment [-Name ] -ManagementGroupId -Location [-DeploymentDebugLogLevel ] [-Tag ] [-WhatIfResultFormat ] - [-WhatIfExcludeChangeType ] [-AsJob] -TemplateFile [-SkipTemplateParameterPrompt] - [-ApiVersion ] [-Pre] [-DefaultProfile ] [-WhatIf] [-Confirm] - [] + [-WhatIfExcludeChangeType ] [-AsJob] -TemplateFile [-SkipTemplateParameterPrompt] [-Pre] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ### ByTemplateObjectAndParameterObject @@ -26,8 +25,8 @@ New-AzManagementGroupDeployment [-Name ] -ManagementGroupId -Lo New-AzManagementGroupDeployment [-Name ] -ManagementGroupId -Location [-DeploymentDebugLogLevel ] [-Tag ] [-WhatIfResultFormat ] [-WhatIfExcludeChangeType ] [-AsJob] -TemplateParameterObject - -TemplateObject [-SkipTemplateParameterPrompt] [-ApiVersion ] [-Pre] - [-DefaultProfile ] [-WhatIf] [-Confirm] [] + -TemplateObject [-SkipTemplateParameterPrompt] [-Pre] [-DefaultProfile ] + [-WhatIf] [-Confirm] [] ``` ### ByTemplateFileAndParameterObject @@ -35,8 +34,8 @@ New-AzManagementGroupDeployment [-Name ] -ManagementGroupId -Lo New-AzManagementGroupDeployment [-Name ] -ManagementGroupId -Location [-DeploymentDebugLogLevel ] [-Tag ] [-WhatIfResultFormat ] [-WhatIfExcludeChangeType ] [-AsJob] -TemplateParameterObject -TemplateFile - [-SkipTemplateParameterPrompt] [-ApiVersion ] [-Pre] [-DefaultProfile ] - [-WhatIf] [-Confirm] [] + [-SkipTemplateParameterPrompt] [-Pre] [-DefaultProfile ] [-WhatIf] [-Confirm] + [] ``` ### ByTemplateUriAndParameterObject @@ -44,8 +43,8 @@ New-AzManagementGroupDeployment [-Name ] -ManagementGroupId -Lo New-AzManagementGroupDeployment [-Name ] -ManagementGroupId -Location [-DeploymentDebugLogLevel ] [-Tag ] [-WhatIfResultFormat ] [-WhatIfExcludeChangeType ] [-AsJob] -TemplateParameterObject -TemplateUri - [-SkipTemplateParameterPrompt] [-ApiVersion ] [-Pre] [-DefaultProfile ] - [-WhatIf] [-Confirm] [] + [-SkipTemplateParameterPrompt] [-Pre] [-DefaultProfile ] [-WhatIf] [-Confirm] + [] ``` ### ByTemplateObjectAndParameterFile @@ -53,8 +52,8 @@ New-AzManagementGroupDeployment [-Name ] -ManagementGroupId -Lo New-AzManagementGroupDeployment [-Name ] -ManagementGroupId -Location [-DeploymentDebugLogLevel ] [-Tag ] [-WhatIfResultFormat ] [-WhatIfExcludeChangeType ] [-AsJob] -TemplateParameterFile -TemplateObject - [-SkipTemplateParameterPrompt] [-ApiVersion ] [-Pre] [-DefaultProfile ] - [-WhatIf] [-Confirm] [] + [-SkipTemplateParameterPrompt] [-Pre] [-DefaultProfile ] [-WhatIf] [-Confirm] + [] ``` ### ByTemplateFileAndParameterFile @@ -62,8 +61,8 @@ New-AzManagementGroupDeployment [-Name ] -ManagementGroupId -Lo New-AzManagementGroupDeployment [-Name ] -ManagementGroupId -Location [-DeploymentDebugLogLevel ] [-Tag ] [-WhatIfResultFormat ] [-WhatIfExcludeChangeType ] [-AsJob] -TemplateParameterFile -TemplateFile - [-SkipTemplateParameterPrompt] [-ApiVersion ] [-Pre] [-DefaultProfile ] - [-WhatIf] [-Confirm] [] + [-SkipTemplateParameterPrompt] [-Pre] [-DefaultProfile ] [-WhatIf] [-Confirm] + [] ``` ### ByTemplateUriAndParameterFile @@ -71,8 +70,8 @@ New-AzManagementGroupDeployment [-Name ] -ManagementGroupId -Lo New-AzManagementGroupDeployment [-Name ] -ManagementGroupId -Location [-DeploymentDebugLogLevel ] [-Tag ] [-WhatIfResultFormat ] [-WhatIfExcludeChangeType ] [-AsJob] -TemplateParameterFile -TemplateUri - [-SkipTemplateParameterPrompt] [-ApiVersion ] [-Pre] [-DefaultProfile ] - [-WhatIf] [-Confirm] [] + [-SkipTemplateParameterPrompt] [-Pre] [-DefaultProfile ] [-WhatIf] [-Confirm] + [] ``` ### ByTemplateObjectAndParameterUri @@ -80,8 +79,8 @@ New-AzManagementGroupDeployment [-Name ] -ManagementGroupId -Lo New-AzManagementGroupDeployment [-Name ] -ManagementGroupId -Location [-DeploymentDebugLogLevel ] [-Tag ] [-WhatIfResultFormat ] [-WhatIfExcludeChangeType ] [-AsJob] -TemplateParameterUri -TemplateObject - [-SkipTemplateParameterPrompt] [-ApiVersion ] [-Pre] [-DefaultProfile ] - [-WhatIf] [-Confirm] [] + [-SkipTemplateParameterPrompt] [-Pre] [-DefaultProfile ] [-WhatIf] [-Confirm] + [] ``` ### ByTemplateFileAndParameterUri @@ -89,8 +88,8 @@ New-AzManagementGroupDeployment [-Name ] -ManagementGroupId -Lo New-AzManagementGroupDeployment [-Name ] -ManagementGroupId -Location [-DeploymentDebugLogLevel ] [-Tag ] [-WhatIfResultFormat ] [-WhatIfExcludeChangeType ] [-AsJob] -TemplateParameterUri -TemplateFile - [-SkipTemplateParameterPrompt] [-ApiVersion ] [-Pre] [-DefaultProfile ] - [-WhatIf] [-Confirm] [] + [-SkipTemplateParameterPrompt] [-Pre] [-DefaultProfile ] [-WhatIf] [-Confirm] + [] ``` ### ByTemplateUriAndParameterUri @@ -98,8 +97,8 @@ New-AzManagementGroupDeployment [-Name ] -ManagementGroupId -Lo New-AzManagementGroupDeployment [-Name ] -ManagementGroupId -Location [-DeploymentDebugLogLevel ] [-Tag ] [-WhatIfResultFormat ] [-WhatIfExcludeChangeType ] [-AsJob] -TemplateParameterUri -TemplateUri - [-SkipTemplateParameterPrompt] [-ApiVersion ] [-Pre] [-DefaultProfile ] - [-WhatIf] [-Confirm] [] + [-SkipTemplateParameterPrompt] [-Pre] [-DefaultProfile ] [-WhatIf] [-Confirm] + [] ``` ### ByTemplateObjectWithNoParameters @@ -107,17 +106,15 @@ New-AzManagementGroupDeployment [-Name ] -ManagementGroupId -Lo New-AzManagementGroupDeployment [-Name ] -ManagementGroupId -Location [-DeploymentDebugLogLevel ] [-Tag ] [-WhatIfResultFormat ] [-WhatIfExcludeChangeType ] [-AsJob] -TemplateObject [-SkipTemplateParameterPrompt] - [-ApiVersion ] [-Pre] [-DefaultProfile ] [-WhatIf] [-Confirm] - [] + [-Pre] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ### ByTemplateUriWithNoParameters ``` New-AzManagementGroupDeployment [-Name ] -ManagementGroupId -Location [-DeploymentDebugLogLevel ] [-Tag ] [-WhatIfResultFormat ] - [-WhatIfExcludeChangeType ] [-AsJob] -TemplateUri [-SkipTemplateParameterPrompt] - [-ApiVersion ] [-Pre] [-DefaultProfile ] [-WhatIf] [-Confirm] - [] + [-WhatIfExcludeChangeType ] [-AsJob] -TemplateUri [-SkipTemplateParameterPrompt] [-Pre] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ## DESCRIPTION @@ -161,22 +158,6 @@ The last command uses the *TemplateObject* parameter to specify this hashtable a ## PARAMETERS -### -ApiVersion -When set, indicates the version of the resource provider API to use. -If not specified, the API version is automatically determined as the latest available. - -```yaml -Type: System.String -Parameter Sets: (All) -Aliases: - -Required: False -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - ### -AsJob Run cmdlet in the background diff --git a/src/Resources/Resources/help/New-AzResourceGroupDeployment.md b/src/Resources/Resources/help/New-AzResourceGroupDeployment.md index fcfc56dab5f6..48165075d297 100644 --- a/src/Resources/Resources/help/New-AzResourceGroupDeployment.md +++ b/src/Resources/Resources/help/New-AzResourceGroupDeployment.md @@ -18,7 +18,7 @@ Adds an Azure deployment to a resource group. New-AzResourceGroupDeployment [-Name ] -ResourceGroupName [-Mode ] [-DeploymentDebugLogLevel ] [-RollbackToLastDeployment] [-RollBackDeploymentName ] [-Tag ] [-WhatIfResultFormat ] [-WhatIfExcludeChangeType ] [-Force] - [-AsJob] -TemplateFile [-SkipTemplateParameterPrompt] [-ApiVersion ] [-Pre] + [-AsJob] -TemplateFile [-SkipTemplateParameterPrompt] [-Pre] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` @@ -28,8 +28,7 @@ New-AzResourceGroupDeployment [-Name ] -ResourceGroupName [-Mod [-DeploymentDebugLogLevel ] [-RollbackToLastDeployment] [-RollBackDeploymentName ] [-Tag ] [-WhatIfResultFormat ] [-WhatIfExcludeChangeType ] [-Force] [-AsJob] -TemplateParameterObject -TemplateObject [-SkipTemplateParameterPrompt] - [-ApiVersion ] [-Pre] [-DefaultProfile ] [-WhatIf] [-Confirm] - [] + [-Pre] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ### ByTemplateFileAndParameterObject @@ -37,9 +36,8 @@ New-AzResourceGroupDeployment [-Name ] -ResourceGroupName [-Mod New-AzResourceGroupDeployment [-Name ] -ResourceGroupName [-Mode ] [-DeploymentDebugLogLevel ] [-RollbackToLastDeployment] [-RollBackDeploymentName ] [-Tag ] [-WhatIfResultFormat ] [-WhatIfExcludeChangeType ] [-Force] - [-AsJob] -TemplateParameterObject -TemplateFile [-SkipTemplateParameterPrompt] - [-ApiVersion ] [-Pre] [-DefaultProfile ] [-WhatIf] [-Confirm] - [] + [-AsJob] -TemplateParameterObject -TemplateFile [-SkipTemplateParameterPrompt] [-Pre] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ### ByTemplateUriAndParameterObject @@ -47,9 +45,8 @@ New-AzResourceGroupDeployment [-Name ] -ResourceGroupName [-Mod New-AzResourceGroupDeployment [-Name ] -ResourceGroupName [-Mode ] [-DeploymentDebugLogLevel ] [-RollbackToLastDeployment] [-RollBackDeploymentName ] [-Tag ] [-WhatIfResultFormat ] [-WhatIfExcludeChangeType ] [-Force] - [-AsJob] -TemplateParameterObject -TemplateUri [-SkipTemplateParameterPrompt] - [-ApiVersion ] [-Pre] [-DefaultProfile ] [-WhatIf] [-Confirm] - [] + [-AsJob] -TemplateParameterObject -TemplateUri [-SkipTemplateParameterPrompt] [-Pre] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ### ByTemplateObjectAndParameterFile @@ -57,9 +54,8 @@ New-AzResourceGroupDeployment [-Name ] -ResourceGroupName [-Mod New-AzResourceGroupDeployment [-Name ] -ResourceGroupName [-Mode ] [-DeploymentDebugLogLevel ] [-RollbackToLastDeployment] [-RollBackDeploymentName ] [-Tag ] [-WhatIfResultFormat ] [-WhatIfExcludeChangeType ] [-Force] - [-AsJob] -TemplateParameterFile -TemplateObject [-SkipTemplateParameterPrompt] - [-ApiVersion ] [-Pre] [-DefaultProfile ] [-WhatIf] [-Confirm] - [] + [-AsJob] -TemplateParameterFile -TemplateObject [-SkipTemplateParameterPrompt] [-Pre] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ### ByTemplateFileAndParameterFile @@ -67,9 +63,8 @@ New-AzResourceGroupDeployment [-Name ] -ResourceGroupName [-Mod New-AzResourceGroupDeployment [-Name ] -ResourceGroupName [-Mode ] [-DeploymentDebugLogLevel ] [-RollbackToLastDeployment] [-RollBackDeploymentName ] [-Tag ] [-WhatIfResultFormat ] [-WhatIfExcludeChangeType ] [-Force] - [-AsJob] -TemplateParameterFile -TemplateFile [-SkipTemplateParameterPrompt] - [-ApiVersion ] [-Pre] [-DefaultProfile ] [-WhatIf] [-Confirm] - [] + [-AsJob] -TemplateParameterFile -TemplateFile [-SkipTemplateParameterPrompt] [-Pre] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ### ByTemplateUriAndParameterFile @@ -77,9 +72,8 @@ New-AzResourceGroupDeployment [-Name ] -ResourceGroupName [-Mod New-AzResourceGroupDeployment [-Name ] -ResourceGroupName [-Mode ] [-DeploymentDebugLogLevel ] [-RollbackToLastDeployment] [-RollBackDeploymentName ] [-Tag ] [-WhatIfResultFormat ] [-WhatIfExcludeChangeType ] [-Force] - [-AsJob] -TemplateParameterFile -TemplateUri [-SkipTemplateParameterPrompt] - [-ApiVersion ] [-Pre] [-DefaultProfile ] [-WhatIf] [-Confirm] - [] + [-AsJob] -TemplateParameterFile -TemplateUri [-SkipTemplateParameterPrompt] [-Pre] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ### ByTemplateObjectAndParameterUri @@ -87,9 +81,8 @@ New-AzResourceGroupDeployment [-Name ] -ResourceGroupName [-Mod New-AzResourceGroupDeployment [-Name ] -ResourceGroupName [-Mode ] [-DeploymentDebugLogLevel ] [-RollbackToLastDeployment] [-RollBackDeploymentName ] [-Tag ] [-WhatIfResultFormat ] [-WhatIfExcludeChangeType ] [-Force] - [-AsJob] -TemplateParameterUri -TemplateObject [-SkipTemplateParameterPrompt] - [-ApiVersion ] [-Pre] [-DefaultProfile ] [-WhatIf] [-Confirm] - [] + [-AsJob] -TemplateParameterUri -TemplateObject [-SkipTemplateParameterPrompt] [-Pre] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ### ByTemplateFileAndParameterUri @@ -97,9 +90,8 @@ New-AzResourceGroupDeployment [-Name ] -ResourceGroupName [-Mod New-AzResourceGroupDeployment [-Name ] -ResourceGroupName [-Mode ] [-DeploymentDebugLogLevel ] [-RollbackToLastDeployment] [-RollBackDeploymentName ] [-Tag ] [-WhatIfResultFormat ] [-WhatIfExcludeChangeType ] [-Force] - [-AsJob] -TemplateParameterUri -TemplateFile [-SkipTemplateParameterPrompt] - [-ApiVersion ] [-Pre] [-DefaultProfile ] [-WhatIf] [-Confirm] - [] + [-AsJob] -TemplateParameterUri -TemplateFile [-SkipTemplateParameterPrompt] [-Pre] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ### ByTemplateUriAndParameterUri @@ -107,9 +99,8 @@ New-AzResourceGroupDeployment [-Name ] -ResourceGroupName [-Mod New-AzResourceGroupDeployment [-Name ] -ResourceGroupName [-Mode ] [-DeploymentDebugLogLevel ] [-RollbackToLastDeployment] [-RollBackDeploymentName ] [-Tag ] [-WhatIfResultFormat ] [-WhatIfExcludeChangeType ] [-Force] - [-AsJob] -TemplateParameterUri -TemplateUri [-SkipTemplateParameterPrompt] - [-ApiVersion ] [-Pre] [-DefaultProfile ] [-WhatIf] [-Confirm] - [] + [-AsJob] -TemplateParameterUri -TemplateUri [-SkipTemplateParameterPrompt] [-Pre] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ### ByTemplateObjectWithNoParameters @@ -117,7 +108,7 @@ New-AzResourceGroupDeployment [-Name ] -ResourceGroupName [-Mod New-AzResourceGroupDeployment [-Name ] -ResourceGroupName [-Mode ] [-DeploymentDebugLogLevel ] [-RollbackToLastDeployment] [-RollBackDeploymentName ] [-Tag ] [-WhatIfResultFormat ] [-WhatIfExcludeChangeType ] [-Force] - [-AsJob] -TemplateObject [-SkipTemplateParameterPrompt] [-ApiVersion ] [-Pre] + [-AsJob] -TemplateObject [-SkipTemplateParameterPrompt] [-Pre] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` @@ -126,7 +117,7 @@ New-AzResourceGroupDeployment [-Name ] -ResourceGroupName [-Mod New-AzResourceGroupDeployment [-Name ] -ResourceGroupName [-Mode ] [-DeploymentDebugLogLevel ] [-RollbackToLastDeployment] [-RollBackDeploymentName ] [-Tag ] [-WhatIfResultFormat ] [-WhatIfExcludeChangeType ] [-Force] - [-AsJob] -TemplateUri [-SkipTemplateParameterPrompt] [-ApiVersion ] [-Pre] + [-AsJob] -TemplateUri [-SkipTemplateParameterPrompt] [-Pre] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` @@ -182,22 +173,6 @@ New-AzResourceGroupDeployment -DeploymentDebugLogLevel RequestContent -Name myne ## PARAMETERS -### -ApiVersion -Specifies the API version that is supported by the resource Provider. -You can specify a different version than the default version. - -```yaml -Type: System.String -Parameter Sets: (All) -Aliases: - -Required: False -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - ### -AsJob Run cmdlet in the background diff --git a/src/Resources/Resources/help/New-AzTag.md b/src/Resources/Resources/help/New-AzTag.md index f8e1806d6979..d4c3a3dc1b59 100644 --- a/src/Resources/Resources/help/New-AzTag.md +++ b/src/Resources/Resources/help/New-AzTag.md @@ -14,21 +14,15 @@ Creates a predefined Azure tag or adds values to an existing tag | Creates or up ## SYNTAX ### CreatePredefinedTagParameterSet - -```powershell -New-AzTag [-Name] [[-Value] ] [-DefaultProfile ] [] +``` +New-AzTag [-Name] [[-Value] ] [-DefaultProfile ] [-WhatIf] [-Confirm] + [] ``` ### CreateByResourceIdParameterSet - -```powershell -New-AzTag - -ResourceId - -Tag - [-DefaultProfile ] - [-WhatIf] - [-Confirm] - [] +``` +New-AzTag [-ResourceId] [-Tag] [-DefaultProfile ] [-WhatIf] + [-Confirm] [] ``` ## DESCRIPTION @@ -223,47 +217,47 @@ Accept pipeline input: True (ByPropertyName) Accept wildcard characters: False ``` -### -Value -Specifies a predefined tag value. -Predefined tags can have multiple values, but you can enter only one value in each command. -This parameter is optional, because tags can have names without values. +### -ResourceId +The resource identifier for the entity being tagged. A resource, a resource group or a subscription may be tagged. ```yaml Type: System.String -Parameter Sets: CreatePredefinedTagParameterSet +Parameter Sets: CreateByResourceIdParameterSet Aliases: -Required: False -Position: 1 +Required: True +Position: 0 Default value: None Accept pipeline input: True (ByPropertyName) Accept wildcard characters: False ``` -### -ResourceId -The resource identifier for the entity being tagged. A resource, a resource group or a subscription may be tagged. +### -Tag +The tags to put on the resource. ```yaml -Type: System.String +Type: System.Collections.Hashtable Parameter Sets: CreateByResourceIdParameterSet Aliases: Required: True -Position: 0 +Position: 1 Default value: None Accept pipeline input: True (ByPropertyName) Accept wildcard characters: False ``` -### -Tag -The tags to put on the resource. +### -Value +Specifies a predefined tag value. +Predefined tags can have multiple values, but you can enter only one value in each command. +This parameter is optional, because tags can have names without values. ```yaml -Type: System.Collections.Hashtable -Parameter Sets: CreateByResourceIdParameterSet +Type: System.String +Parameter Sets: CreatePredefinedTagParameterSet Aliases: -Required: True +Required: False Position: 1 Default value: None Accept pipeline input: True (ByPropertyName) diff --git a/src/Resources/Resources/help/New-AzTenantDeployment.md b/src/Resources/Resources/help/New-AzTenantDeployment.md index c8ddfc9c9a21..3cc91029b591 100644 --- a/src/Resources/Resources/help/New-AzTenantDeployment.md +++ b/src/Resources/Resources/help/New-AzTenantDeployment.md @@ -16,101 +16,96 @@ Create a deployment at tenant scope ``` New-AzTenantDeployment [-Name ] -Location [-DeploymentDebugLogLevel ] [-Tag ] [-WhatIfResultFormat ] [-WhatIfExcludeChangeType ] [-AsJob] - -TemplateFile [-SkipTemplateParameterPrompt] [-ApiVersion ] [-Pre] - [-DefaultProfile ] [-WhatIf] [-Confirm] [] + -TemplateFile [-SkipTemplateParameterPrompt] [-Pre] [-DefaultProfile ] + [-WhatIf] [-Confirm] [] ``` ### ByTemplateObjectAndParameterObject ``` New-AzTenantDeployment [-Name ] -Location [-DeploymentDebugLogLevel ] [-Tag ] [-WhatIfResultFormat ] [-WhatIfExcludeChangeType ] [-AsJob] - -TemplateParameterObject -TemplateObject [-SkipTemplateParameterPrompt] - [-ApiVersion ] [-Pre] [-DefaultProfile ] [-WhatIf] [-Confirm] - [] + -TemplateParameterObject -TemplateObject [-SkipTemplateParameterPrompt] [-Pre] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ### ByTemplateFileAndParameterObject ``` New-AzTenantDeployment [-Name ] -Location [-DeploymentDebugLogLevel ] [-Tag ] [-WhatIfResultFormat ] [-WhatIfExcludeChangeType ] [-AsJob] - -TemplateParameterObject -TemplateFile [-SkipTemplateParameterPrompt] - [-ApiVersion ] [-Pre] [-DefaultProfile ] [-WhatIf] [-Confirm] - [] + -TemplateParameterObject -TemplateFile [-SkipTemplateParameterPrompt] [-Pre] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ### ByTemplateUriAndParameterObject ``` New-AzTenantDeployment [-Name ] -Location [-DeploymentDebugLogLevel ] [-Tag ] [-WhatIfResultFormat ] [-WhatIfExcludeChangeType ] [-AsJob] - -TemplateParameterObject -TemplateUri [-SkipTemplateParameterPrompt] - [-ApiVersion ] [-Pre] [-DefaultProfile ] [-WhatIf] [-Confirm] - [] + -TemplateParameterObject -TemplateUri [-SkipTemplateParameterPrompt] [-Pre] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ### ByTemplateObjectAndParameterFile ``` New-AzTenantDeployment [-Name ] -Location [-DeploymentDebugLogLevel ] [-Tag ] [-WhatIfResultFormat ] [-WhatIfExcludeChangeType ] [-AsJob] - -TemplateParameterFile -TemplateObject [-SkipTemplateParameterPrompt] - [-ApiVersion ] [-Pre] [-DefaultProfile ] [-WhatIf] [-Confirm] - [] + -TemplateParameterFile -TemplateObject [-SkipTemplateParameterPrompt] [-Pre] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ### ByTemplateFileAndParameterFile ``` New-AzTenantDeployment [-Name ] -Location [-DeploymentDebugLogLevel ] [-Tag ] [-WhatIfResultFormat ] [-WhatIfExcludeChangeType ] [-AsJob] - -TemplateParameterFile -TemplateFile [-SkipTemplateParameterPrompt] [-ApiVersion ] - [-Pre] [-DefaultProfile ] [-WhatIf] [-Confirm] [] + -TemplateParameterFile -TemplateFile [-SkipTemplateParameterPrompt] [-Pre] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ### ByTemplateUriAndParameterFile ``` New-AzTenantDeployment [-Name ] -Location [-DeploymentDebugLogLevel ] [-Tag ] [-WhatIfResultFormat ] [-WhatIfExcludeChangeType ] [-AsJob] - -TemplateParameterFile -TemplateUri [-SkipTemplateParameterPrompt] [-ApiVersion ] - [-Pre] [-DefaultProfile ] [-WhatIf] [-Confirm] [] + -TemplateParameterFile -TemplateUri [-SkipTemplateParameterPrompt] [-Pre] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ### ByTemplateObjectAndParameterUri ``` New-AzTenantDeployment [-Name ] -Location [-DeploymentDebugLogLevel ] [-Tag ] [-WhatIfResultFormat ] [-WhatIfExcludeChangeType ] [-AsJob] - -TemplateParameterUri -TemplateObject [-SkipTemplateParameterPrompt] - [-ApiVersion ] [-Pre] [-DefaultProfile ] [-WhatIf] [-Confirm] - [] + -TemplateParameterUri -TemplateObject [-SkipTemplateParameterPrompt] [-Pre] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ### ByTemplateFileAndParameterUri ``` New-AzTenantDeployment [-Name ] -Location [-DeploymentDebugLogLevel ] [-Tag ] [-WhatIfResultFormat ] [-WhatIfExcludeChangeType ] [-AsJob] - -TemplateParameterUri -TemplateFile [-SkipTemplateParameterPrompt] [-ApiVersion ] - [-Pre] [-DefaultProfile ] [-WhatIf] [-Confirm] [] + -TemplateParameterUri -TemplateFile [-SkipTemplateParameterPrompt] [-Pre] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ### ByTemplateUriAndParameterUri ``` New-AzTenantDeployment [-Name ] -Location [-DeploymentDebugLogLevel ] [-Tag ] [-WhatIfResultFormat ] [-WhatIfExcludeChangeType ] [-AsJob] - -TemplateParameterUri -TemplateUri [-SkipTemplateParameterPrompt] [-ApiVersion ] - [-Pre] [-DefaultProfile ] [-WhatIf] [-Confirm] [] + -TemplateParameterUri -TemplateUri [-SkipTemplateParameterPrompt] [-Pre] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ### ByTemplateObjectWithNoParameters ``` New-AzTenantDeployment [-Name ] -Location [-DeploymentDebugLogLevel ] [-Tag ] [-WhatIfResultFormat ] [-WhatIfExcludeChangeType ] [-AsJob] - -TemplateObject [-SkipTemplateParameterPrompt] [-ApiVersion ] [-Pre] - [-DefaultProfile ] [-WhatIf] [-Confirm] [] + -TemplateObject [-SkipTemplateParameterPrompt] [-Pre] [-DefaultProfile ] + [-WhatIf] [-Confirm] [] ``` ### ByTemplateUriWithNoParameters ``` New-AzTenantDeployment [-Name ] -Location [-DeploymentDebugLogLevel ] [-Tag ] [-WhatIfResultFormat ] [-WhatIfExcludeChangeType ] [-AsJob] - -TemplateUri [-SkipTemplateParameterPrompt] [-ApiVersion ] [-Pre] - [-DefaultProfile ] [-WhatIf] [-Confirm] [] + -TemplateUri [-SkipTemplateParameterPrompt] [-Pre] [-DefaultProfile ] + [-WhatIf] [-Confirm] [] ``` ## DESCRIPTION @@ -154,22 +149,6 @@ The last command uses the *TemplateObject* parameter to specify this hashtable a ## PARAMETERS -### -ApiVersion -When set, indicates the version of the resource provider API to use. -If not specified, the API version is automatically determined as the latest available. - -```yaml -Type: System.String -Parameter Sets: (All) -Aliases: - -Required: False -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - ### -AsJob Run cmdlet in the background diff --git a/src/Resources/Resources/help/Remove-AzADGroup.md b/src/Resources/Resources/help/Remove-AzADGroup.md index 7e0c679708e9..8c43c2ae5024 100644 --- a/src/Resources/Resources/help/Remove-AzADGroup.md +++ b/src/Resources/Resources/help/Remove-AzADGroup.md @@ -12,16 +12,16 @@ Deletes an active directory group. ## SYNTAX -### ObjectIdParameterSet (Default) +### DisplayNameParameterSet (Default) ``` -Remove-AzADGroup -ObjectId [-PassThru] [-Force] [-DefaultProfile ] [-WhatIf] - [-Confirm] [] +Remove-AzADGroup -DisplayName [-PassThru] [-Force] [-DefaultProfile ] + [-WhatIf] [-Confirm] [] ``` -### DisplayNameParameterSet +### ObjectIdParameterSet ``` -Remove-AzADGroup -DisplayName [-PassThru] [-Force] [-DefaultProfile ] - [-WhatIf] [-Confirm] [] +Remove-AzADGroup -ObjectId [-PassThru] [-Force] [-DefaultProfile ] [-WhatIf] + [-Confirm] [] ``` ### InputObjectParameterSet diff --git a/src/Resources/Resources/help/Remove-AzDeployment.md b/src/Resources/Resources/help/Remove-AzDeployment.md index 240fad0bb512..451f377026e3 100644 --- a/src/Resources/Resources/help/Remove-AzDeployment.md +++ b/src/Resources/Resources/help/Remove-AzDeployment.md @@ -14,19 +14,19 @@ Removes a deployment and any associated operations ### RemoveByDeploymentName (Default) ``` -Remove-AzDeployment [-Name] [-AsJob] [-PassThru] [-ApiVersion ] [-Pre] - [-DefaultProfile ] [-WhatIf] [-Confirm] [] +Remove-AzDeployment [-Name] [-AsJob] [-PassThru] [-Pre] [-DefaultProfile ] + [-WhatIf] [-Confirm] [] ``` ### RemoveByDeploymentId ``` -Remove-AzDeployment -Id [-AsJob] [-PassThru] [-ApiVersion ] [-Pre] - [-DefaultProfile ] [-WhatIf] [-Confirm] [] +Remove-AzDeployment -Id [-AsJob] [-PassThru] [-Pre] [-DefaultProfile ] + [-WhatIf] [-Confirm] [] ``` ### RemoveByInputObject ``` -Remove-AzDeployment -InputObject [-AsJob] [-PassThru] [-ApiVersion ] [-Pre] +Remove-AzDeployment -InputObject [-AsJob] [-PassThru] [-Pre] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` @@ -51,22 +51,6 @@ This command gets the deployment "RolesDeployment" at the current subscription s ## PARAMETERS -### -ApiVersion -When set, indicates the version of the resource provider API to use. -If not specified, the API version is automatically determined as the latest available. - -```yaml -Type: System.String -Parameter Sets: (All) -Aliases: - -Required: False -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - ### -AsJob Run cmdlet in the background diff --git a/src/Resources/Resources/help/Remove-AzDeploymentScript.md b/src/Resources/Resources/help/Remove-AzDeploymentScript.md index 15e207d4e58c..e68c49ac65ee 100644 --- a/src/Resources/Resources/help/Remove-AzDeploymentScript.md +++ b/src/Resources/Resources/help/Remove-AzDeploymentScript.md @@ -10,7 +10,6 @@ schema: 2.0.0 ## SYNOPSIS Removes a deployment script and its associated resources. - ## SYNTAX ### RemoveDeploymentScriptLogByName (Default) @@ -45,26 +44,11 @@ Deletes a deployment script with the name MyDeploymentScript in resource group D ## PARAMETERS -### -Confirm -Prompts you for confirmation before running the cmdlet. - -```yaml -Type: SwitchParameter -Parameter Sets: (All) -Aliases: cf - -Required: False -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - ### -DefaultProfile The credentials, account, tenant, and subscription used for communication with Azure. ```yaml -Type: IAzureContextContainer +Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer Parameter Sets: (All) Aliases: AzContext, AzureRmContext, AzureCredential @@ -80,7 +64,7 @@ The fully qualified resource Id of the deployment script. Example: /subscriptions/{subId}/resourceGroups/{rgName}/providers/Microsoft.Resources/deploymentScripts/{deploymentScriptName} ```yaml -Type: String +Type: System.String Parameter Sets: RemoveDeploymentScriptLogByResourceId Aliases: ResourceId @@ -95,7 +79,7 @@ Accept wildcard characters: False The deployment script PowerShell object. ```yaml -Type: PsDeploymentScript +Type: Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PsDeploymentScript Parameter Sets: RemoveDeploymentScriptLogByInputObject Aliases: @@ -110,7 +94,7 @@ Accept wildcard characters: False The name of the resource group. ```yaml -Type: String +Type: System.String Parameter Sets: RemoveDeploymentScriptLogByName Aliases: @@ -125,7 +109,7 @@ Accept wildcard characters: False {{Fill PassThru Description}} ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: @@ -140,7 +124,7 @@ Accept wildcard characters: False The name of the resource group. ```yaml -Type: String +Type: System.String Parameter Sets: RemoveDeploymentScriptLogByName Aliases: @@ -151,12 +135,27 @@ Accept pipeline input: True (ByPropertyName) Accept wildcard characters: False ``` +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -WhatIf Shows what would happen if the cmdlet runs. The cmdlet is not run. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: wi @@ -168,8 +167,7 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. -For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216). +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS diff --git a/src/Resources/Resources/help/Remove-AzManagementGroupDeployment.md b/src/Resources/Resources/help/Remove-AzManagementGroupDeployment.md index 29d9e7cd22ea..1eb184278650 100644 --- a/src/Resources/Resources/help/Remove-AzManagementGroupDeployment.md +++ b/src/Resources/Resources/help/Remove-AzManagementGroupDeployment.md @@ -14,21 +14,20 @@ Removes a deployment at a management group and any associated operations ### RemoveByDeploymentName (Default) ``` -Remove-AzManagementGroupDeployment [-ManagementGroupId] [-Name] [-AsJob] [-PassThru] - [-ApiVersion ] [-Pre] [-DefaultProfile ] [-WhatIf] [-Confirm] - [] +Remove-AzManagementGroupDeployment [-ManagementGroupId] [-Name] [-AsJob] [-PassThru] [-Pre] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ### RemoveByDeploymentId ``` -Remove-AzManagementGroupDeployment -Id [-AsJob] [-PassThru] [-ApiVersion ] [-Pre] +Remove-AzManagementGroupDeployment -Id [-AsJob] [-PassThru] [-Pre] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ### RemoveByInputObject ``` -Remove-AzManagementGroupDeployment -InputObject [-AsJob] [-PassThru] [-ApiVersion ] - [-Pre] [-DefaultProfile ] [-WhatIf] [-Confirm] [] +Remove-AzManagementGroupDeployment -InputObject [-AsJob] [-PassThru] [-Pre] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ## DESCRIPTION @@ -52,27 +51,11 @@ This command gets the deployment "RolesDeployment" at the management group "myMG ## PARAMETERS -### -ApiVersion -When set, indicates the version of the resource provider API to use. -If not specified, the API version is automatically determined as the latest available. - -```yaml -Type: String -Parameter Sets: (All) -Aliases: - -Required: False -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - ### -AsJob Run cmdlet in the background ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: @@ -87,7 +70,7 @@ Accept wildcard characters: False The credentials, account, tenant, and subscription used for communication with Azure. ```yaml -Type: IAzureContextContainer +Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer Parameter Sets: (All) Aliases: AzContext, AzureRmContext, AzureCredential @@ -103,7 +86,7 @@ The fully qualified resource Id of the deployment. example: /providers/Microsoft.Management/managementGroups/{managementGroupId}/providers/Microsoft.Resources/deployments/{deploymentName} ```yaml -Type: String +Type: System.String Parameter Sets: RemoveByDeploymentId Aliases: DeploymentId, ResourceId @@ -118,7 +101,7 @@ Accept wildcard characters: False The deployment object. ```yaml -Type: PSDeployment +Type: Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment Parameter Sets: RemoveByInputObject Aliases: @@ -133,7 +116,7 @@ Accept wildcard characters: False The management group id. ```yaml -Type: String +Type: System.String Parameter Sets: RemoveByDeploymentName Aliases: @@ -148,7 +131,7 @@ Accept wildcard characters: False The name of the deployment. ```yaml -Type: String +Type: System.String Parameter Sets: RemoveByDeploymentName Aliases: DeploymentName @@ -163,7 +146,7 @@ Accept wildcard characters: False {{ Fill PassThru Description }} ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: @@ -178,7 +161,7 @@ Accept wildcard characters: False When set, indicates that the cmdlet should use pre-release API versions when automatically determining which version to use. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: @@ -193,7 +176,7 @@ Accept wildcard characters: False Prompts you for confirmation before running the cmdlet. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: cf @@ -209,7 +192,7 @@ Shows what would happen if the cmdlet runs. The cmdlet is not run. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: wi diff --git a/src/Resources/Resources/help/Remove-AzResourceGroupDeployment.md b/src/Resources/Resources/help/Remove-AzResourceGroupDeployment.md index 9f0af6390acb..63ab6f4acc7b 100644 --- a/src/Resources/Resources/help/Remove-AzResourceGroupDeployment.md +++ b/src/Resources/Resources/help/Remove-AzResourceGroupDeployment.md @@ -15,14 +15,14 @@ Removes a resource group deployment and any associated operations. ### RemoveByResourceGroupName (Default) ``` -Remove-AzResourceGroupDeployment [-ResourceGroupName] [-Name] [-ApiVersion ] [-Pre] +Remove-AzResourceGroupDeployment [-ResourceGroupName] [-Name] [-Pre] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ### RemoveByResourceGroupDeploymentId ``` -Remove-AzResourceGroupDeployment -Id [-ApiVersion ] [-Pre] - [-DefaultProfile ] [-WhatIf] [-Confirm] [] +Remove-AzResourceGroupDeployment -Id [-Pre] [-DefaultProfile ] [-WhatIf] + [-Confirm] [] ``` ## DESCRIPTION @@ -55,22 +55,6 @@ Successful removal returns true. ## PARAMETERS -### -ApiVersion -Specifies the API version that is supported by the resource Provider. -You can specify a different version than the default version. - -```yaml -Type: System.String -Parameter Sets: (All) -Aliases: - -Required: False -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - ### -DefaultProfile The credentials, account, tenant, and subscription used for communication with azure diff --git a/src/Resources/Resources/help/Remove-AzResourceLock.md b/src/Resources/Resources/help/Remove-AzResourceLock.md index 3b7aea0070c4..3c7fe6eb0b36 100644 --- a/src/Resources/Resources/help/Remove-AzResourceLock.md +++ b/src/Resources/Resources/help/Remove-AzResourceLock.md @@ -68,6 +68,8 @@ This command removes the lock named ContosoSiteLock. Removes a resource lock. (autogenerated) + + ```powershell Remove-AzResourceLock -LockName 'ContosoSiteLock' -ResourceGroupName myresourcegroup -ResourceName '/subscriptions/00000000-0000-0000-0000-00000000000000000/resourceGroups/Default-Storage-SouthCentralUS/providers/Microsoft.ClassicStorage/storageAccounts/mystorageaccount/providers/Microsoft.Authorization/locks/test' -ResourceType 'Microsoft.ClassicCompute/storageAccounts' ``` diff --git a/src/Resources/Resources/help/Remove-AzTag.md b/src/Resources/Resources/help/Remove-AzTag.md index 4edc522791ad..72415677fd12 100644 --- a/src/Resources/Resources/help/Remove-AzTag.md +++ b/src/Resources/Resources/help/Remove-AzTag.md @@ -14,22 +14,15 @@ Deletes predefined Azure tags or values | Deletes the entire set of tags on a re ## SYNTAX ### RemovePredefinedTagParameterSet - -```powershell +``` Remove-AzTag [-Name] [[-Value] ] [-PassThru] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ### RemoveByResourceIdParameterSet - -```powershell -Remove-AzTag - -ResourceId - [-PassThru] - [-DefaultProfile ] - [-WhatIf] - [-Confirm] - [] +``` +Remove-AzTag [-PassThru] -ResourceId [-DefaultProfile ] [-WhatIf] [-Confirm] + [] ``` ## DESCRIPTION @@ -74,7 +67,8 @@ If the value has been applied to any resources or resource groups, the command f ### Example 3: Deletes the entire set of tags on a subscription -``` powershell +``` +powershell PS C:\>Remove-AzTag -ResourceId /subscriptions/{subId} ``` @@ -82,7 +76,8 @@ This command deletes the entire set of tags on the subscription with {subId}. It ### Example 4: Deletes the entire set of tags on a resource -``` powershell +``` +powershell PS C:\>Remove-AzTag -ResourceId /subscriptions/{subId}/resourcegroups/{rg}/providers/Microsoft.Sql/servers/Server1 -PassThru Id : {Id} @@ -131,16 +126,16 @@ Accept pipeline input: True (ByPropertyName) Accept wildcard characters: False ``` -### -Value -Deletes the specified values from the predefined tag, but does not delete the tag. +### -PassThru +Returns an object that represents the deleted tag or the resulting tag with deleted valued. ```yaml -Type: System.String[] -Parameter Sets: RemovePredefinedTagParameterSet +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) Aliases: Required: False -Position: 1 +Position: Named Default value: None Accept pipeline input: True (ByPropertyName) Accept wildcard characters: False @@ -161,16 +156,16 @@ Accept pipeline input: True (ByPropertyName) Accept wildcard characters: False ``` -### -PassThru -Returns an object that represents the deleted tag or the resulting tag with deleted valued. +### -Value +Deletes the specified values from the predefined tag, but does not delete the tag. ```yaml -Type: System.Management.Automation.SwitchParameter -Parameter Sets: (All) +Type: System.String[] +Parameter Sets: RemovePredefinedTagParameterSet Aliases: Required: False -Position: Named +Position: 1 Default value: None Accept pipeline input: True (ByPropertyName) Accept wildcard characters: False diff --git a/src/Resources/Resources/help/Remove-AzTenantDeployment.md b/src/Resources/Resources/help/Remove-AzTenantDeployment.md index 26b9c1049fcb..e7fd32d6a660 100644 --- a/src/Resources/Resources/help/Remove-AzTenantDeployment.md +++ b/src/Resources/Resources/help/Remove-AzTenantDeployment.md @@ -14,19 +14,19 @@ Removes a deployment at tenant scope and any associated operations ### RemoveByDeploymentName (Default) ``` -Remove-AzTenantDeployment [-Name] [-AsJob] [-PassThru] [-ApiVersion ] [-Pre] +Remove-AzTenantDeployment [-Name] [-AsJob] [-PassThru] [-Pre] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ### RemoveByDeploymentId ``` -Remove-AzTenantDeployment -Id [-AsJob] [-PassThru] [-ApiVersion ] [-Pre] - [-DefaultProfile ] [-WhatIf] [-Confirm] [] +Remove-AzTenantDeployment -Id [-AsJob] [-PassThru] [-Pre] [-DefaultProfile ] + [-WhatIf] [-Confirm] [] ``` ### RemoveByInputObject ``` -Remove-AzTenantDeployment -InputObject [-AsJob] [-PassThru] [-ApiVersion ] [-Pre] +Remove-AzTenantDeployment -InputObject [-AsJob] [-PassThru] [-Pre] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` @@ -51,27 +51,11 @@ This command gets the deployment "RolesDeployment" at the current tenant scope a ## PARAMETERS -### -ApiVersion -When set, indicates the version of the resource provider API to use. -If not specified, the API version is automatically determined as the latest available. - -```yaml -Type: String -Parameter Sets: (All) -Aliases: - -Required: False -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - ### -AsJob Run cmdlet in the background ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: @@ -86,7 +70,7 @@ Accept wildcard characters: False The credentials, account, tenant, and subscription used for communication with Azure. ```yaml -Type: IAzureContextContainer +Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer Parameter Sets: (All) Aliases: AzContext, AzureRmContext, AzureCredential @@ -102,7 +86,7 @@ The fully qualified resource Id of the deployment. example: /providers/Microsoft.Resources/deployments/{deploymentName} ```yaml -Type: String +Type: System.String Parameter Sets: RemoveByDeploymentId Aliases: DeploymentId, ResourceId @@ -117,7 +101,7 @@ Accept wildcard characters: False The deployment object. ```yaml -Type: PSDeployment +Type: Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment Parameter Sets: RemoveByInputObject Aliases: @@ -132,7 +116,7 @@ Accept wildcard characters: False The name of the deployment. ```yaml -Type: String +Type: System.String Parameter Sets: RemoveByDeploymentName Aliases: DeploymentName @@ -147,7 +131,7 @@ Accept wildcard characters: False {{ Fill PassThru Description }} ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: @@ -162,7 +146,7 @@ Accept wildcard characters: False When set, indicates that the cmdlet should use pre-release API versions when automatically determining which version to use. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: @@ -177,7 +161,7 @@ Accept wildcard characters: False Prompts you for confirmation before running the cmdlet. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: cf @@ -193,7 +177,7 @@ Shows what would happen if the cmdlet runs. The cmdlet is not run. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: wi diff --git a/src/Resources/Resources/help/Save-AzDeploymentTemplate.md b/src/Resources/Resources/help/Save-AzDeploymentTemplate.md index 1347553e4485..1dc496a83c19 100644 --- a/src/Resources/Resources/help/Save-AzDeploymentTemplate.md +++ b/src/Resources/Resources/help/Save-AzDeploymentTemplate.md @@ -14,14 +14,14 @@ Saves a deployment template to a file. ### SaveByDeploymentName (Default) ``` -Save-AzDeploymentTemplate -DeploymentName [-Path ] [-Force] [-ApiVersion ] [-Pre] +Save-AzDeploymentTemplate -DeploymentName [-Path ] [-Force] [-Pre] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ### SaveByDeploymentObject ``` -Save-AzDeploymentTemplate -DeploymentObject [-Path ] [-Force] [-ApiVersion ] - [-Pre] [-DefaultProfile ] [-WhatIf] [-Confirm] [] +Save-AzDeploymentTemplate -DeploymentObject [-Path ] [-Force] [-Pre] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ## DESCRIPTION @@ -45,22 +45,6 @@ This command gets the deployment "RolesDeployment" at the current subscription s ## PARAMETERS -### -ApiVersion -When set, indicates the version of the resource provider API to use. -If not specified, the API version is automatically determined as the latest available. - -```yaml -Type: System.String -Parameter Sets: (All) -Aliases: - -Required: False -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - ### -DefaultProfile The credentials, account, tenant, and subscription used for communication with Azure. diff --git a/src/Resources/Resources/help/Save-AzManagementGroupDeploymentTemplate.md b/src/Resources/Resources/help/Save-AzManagementGroupDeploymentTemplate.md index aeb8f14e814a..86e4c1284cca 100644 --- a/src/Resources/Resources/help/Save-AzManagementGroupDeploymentTemplate.md +++ b/src/Resources/Resources/help/Save-AzManagementGroupDeploymentTemplate.md @@ -15,15 +15,13 @@ Saves a deployment template to a file. ### SaveByDeploymentName (Default) ``` Save-AzManagementGroupDeploymentTemplate -ManagementGroupId -DeploymentName [-Path ] - [-Force] [-ApiVersion ] [-Pre] [-DefaultProfile ] [-WhatIf] [-Confirm] - [] + [-Force] [-Pre] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ### SaveByDeploymentObject ``` -Save-AzManagementGroupDeploymentTemplate -DeploymentObject [-Path ] [-Force] - [-ApiVersion ] [-Pre] [-DefaultProfile ] [-WhatIf] [-Confirm] - [] +Save-AzManagementGroupDeploymentTemplate -DeploymentObject [-Path ] [-Force] [-Pre] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ## DESCRIPTION @@ -47,27 +45,11 @@ This command gets the deployment "RolesDeployment" at the management group "myMG ## PARAMETERS -### -ApiVersion -When set, indicates the version of the resource provider API to use. -If not specified, the API version is automatically determined as the latest available. - -```yaml -Type: String -Parameter Sets: (All) -Aliases: - -Required: False -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - ### -DefaultProfile The credentials, account, tenant, and subscription used for communication with Azure. ```yaml -Type: IAzureContextContainer +Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer Parameter Sets: (All) Aliases: AzContext, AzureRmContext, AzureCredential @@ -82,7 +64,7 @@ Accept wildcard characters: False The deployment name. ```yaml -Type: String +Type: System.String Parameter Sets: SaveByDeploymentName Aliases: Name @@ -97,7 +79,7 @@ Accept wildcard characters: False The deployment object. ```yaml -Type: PSDeployment +Type: Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment Parameter Sets: SaveByDeploymentObject Aliases: @@ -112,7 +94,7 @@ Accept wildcard characters: False Do not ask for confirmation. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: @@ -127,7 +109,7 @@ Accept wildcard characters: False The management group id. ```yaml -Type: String +Type: System.String Parameter Sets: SaveByDeploymentName Aliases: @@ -142,7 +124,7 @@ Accept wildcard characters: False The output path of the template file. ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: @@ -157,7 +139,7 @@ Accept wildcard characters: False When set, indicates that the cmdlet should use pre-release API versions when automatically determining which version to use. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: @@ -172,7 +154,7 @@ Accept wildcard characters: False Prompts you for confirmation before running the cmdlet. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: cf @@ -188,7 +170,7 @@ Shows what would happen if the cmdlet runs. The cmdlet is not run. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: wi diff --git a/src/Resources/Resources/help/Save-AzResourceGroupDeploymentTemplate.md b/src/Resources/Resources/help/Save-AzResourceGroupDeploymentTemplate.md index 0ac2d8f07274..aeaafb16eb67 100644 --- a/src/Resources/Resources/help/Save-AzResourceGroupDeploymentTemplate.md +++ b/src/Resources/Resources/help/Save-AzResourceGroupDeploymentTemplate.md @@ -15,8 +15,7 @@ Saves a resource group deployment template to a file. ``` Save-AzResourceGroupDeploymentTemplate -ResourceGroupName -DeploymentName [-Path ] - [-Force] [-ApiVersion ] [-Pre] [-DefaultProfile ] [-WhatIf] [-Confirm] - [] + [-Force] [-Pre] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ## DESCRIPTION @@ -36,28 +35,14 @@ This command gets the deployment template from TestDeployment and saves it as a Saves a resource group deployment template to a file. (autogenerated) + + ```powershell Save-AzResourceGroupDeploymentTemplate -DeploymentName 'TestDeployment' -Path -ResourceGroupName 'TestGroup' ``` ## PARAMETERS -### -ApiVersion -Specifies the version of the resource provider API to use. -If not specified, the latest API version is used. - -```yaml -Type: System.String -Parameter Sets: (All) -Aliases: - -Required: False -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - ### -DefaultProfile The credentials, account, tenant, and subscription used for communication with azure diff --git a/src/Resources/Resources/help/Save-AzTenantDeploymentTemplate.md b/src/Resources/Resources/help/Save-AzTenantDeploymentTemplate.md index 02d2c101ae7e..1c11803f4608 100644 --- a/src/Resources/Resources/help/Save-AzTenantDeploymentTemplate.md +++ b/src/Resources/Resources/help/Save-AzTenantDeploymentTemplate.md @@ -14,15 +14,14 @@ Saves a deployment template to a file. ### SaveByDeploymentName (Default) ``` -Save-AzTenantDeploymentTemplate -DeploymentName [-Path ] [-Force] [-ApiVersion ] - [-Pre] [-DefaultProfile ] [-WhatIf] [-Confirm] [] +Save-AzTenantDeploymentTemplate -DeploymentName [-Path ] [-Force] [-Pre] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ### SaveByDeploymentObject ``` -Save-AzTenantDeploymentTemplate -DeploymentObject [-Path ] [-Force] - [-ApiVersion ] [-Pre] [-DefaultProfile ] [-WhatIf] [-Confirm] - [] +Save-AzTenantDeploymentTemplate -DeploymentObject [-Path ] [-Force] [-Pre] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ## DESCRIPTION @@ -46,27 +45,11 @@ This command gets the deployment "RolesDeployment" at the current tenant scope a ## PARAMETERS -### -ApiVersion -When set, indicates the version of the resource provider API to use. -If not specified, the API version is automatically determined as the latest available. - -```yaml -Type: String -Parameter Sets: (All) -Aliases: - -Required: False -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - ### -DefaultProfile The credentials, account, tenant, and subscription used for communication with Azure. ```yaml -Type: IAzureContextContainer +Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer Parameter Sets: (All) Aliases: AzContext, AzureRmContext, AzureCredential @@ -81,7 +64,7 @@ Accept wildcard characters: False The deployment name. ```yaml -Type: String +Type: System.String Parameter Sets: SaveByDeploymentName Aliases: Name @@ -96,7 +79,7 @@ Accept wildcard characters: False The deployment object. ```yaml -Type: PSDeployment +Type: Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment Parameter Sets: SaveByDeploymentObject Aliases: @@ -111,7 +94,7 @@ Accept wildcard characters: False Do not ask for confirmation. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: @@ -126,7 +109,7 @@ Accept wildcard characters: False The output path of the template file. ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: @@ -141,7 +124,7 @@ Accept wildcard characters: False When set, indicates that the cmdlet should use pre-release API versions when automatically determining which version to use. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: @@ -156,7 +139,7 @@ Accept wildcard characters: False Prompts you for confirmation before running the cmdlet. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: cf @@ -172,7 +155,7 @@ Shows what would happen if the cmdlet runs. The cmdlet is not run. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: wi diff --git a/src/Resources/Resources/help/Set-AzManagedApplicationDefinition.md b/src/Resources/Resources/help/Set-AzManagedApplicationDefinition.md index 67113252c1a1..a28a42f879dc 100644 --- a/src/Resources/Resources/help/Set-AzManagedApplicationDefinition.md +++ b/src/Resources/Resources/help/Set-AzManagedApplicationDefinition.md @@ -44,6 +44,8 @@ This command updates the managed application definition description Updates managed application definition. (autogenerated) + + ```powershell Set-AzManagedApplicationDefinition -Id '/subscriptions/mySubId/resourcegroups/myRG/Microsoft.Solutions/applicationDefinitions/myAppDef' -PackageFileUri https://sample.blob.core.windows.net/files/myPackage.zip ``` diff --git a/src/Resources/Resources/help/Stop-AzDeployment.md b/src/Resources/Resources/help/Stop-AzDeployment.md index ce77a4464267..8af88902761b 100644 --- a/src/Resources/Resources/help/Stop-AzDeployment.md +++ b/src/Resources/Resources/help/Stop-AzDeployment.md @@ -14,20 +14,20 @@ Cancel a running deployment ### StopByDeploymentName (Default) ``` -Stop-AzDeployment [-Name] [-PassThru] [-ApiVersion ] [-Pre] - [-DefaultProfile ] [-WhatIf] [-Confirm] [] +Stop-AzDeployment [-Name] [-PassThru] [-Pre] [-DefaultProfile ] [-WhatIf] + [-Confirm] [] ``` ### StopByDeploymentId ``` -Stop-AzDeployment -Id [-PassThru] [-ApiVersion ] [-Pre] - [-DefaultProfile ] [-WhatIf] [-Confirm] [] +Stop-AzDeployment -Id [-PassThru] [-Pre] [-DefaultProfile ] [-WhatIf] + [-Confirm] [] ``` ### StopByInputObject ``` -Stop-AzDeployment -InputObject [-PassThru] [-ApiVersion ] [-Pre] - [-DefaultProfile ] [-WhatIf] [-Confirm] [] +Stop-AzDeployment -InputObject [-PassThru] [-Pre] [-DefaultProfile ] + [-WhatIf] [-Confirm] [] ``` ## DESCRIPTION @@ -56,22 +56,6 @@ This command gets the deployment "deployment01" at the current subscription scop ## PARAMETERS -### -ApiVersion -When set, indicates the version of the resource provider API to use. -If not specified, the API version is automatically determined as the latest available. - -```yaml -Type: System.String -Parameter Sets: (All) -Aliases: - -Required: False -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - ### -DefaultProfile The credentials, account, tenant, and subscription used for communication with Azure. diff --git a/src/Resources/Resources/help/Stop-AzManagementGroupDeployment.md b/src/Resources/Resources/help/Stop-AzManagementGroupDeployment.md index a42689af2c0a..f687afe9d723 100644 --- a/src/Resources/Resources/help/Stop-AzManagementGroupDeployment.md +++ b/src/Resources/Resources/help/Stop-AzManagementGroupDeployment.md @@ -14,20 +14,19 @@ Cancel a running deployment at a management group ### StopByDeploymentName (Default) ``` -Stop-AzManagementGroupDeployment [-ManagementGroupId] [-Name] [-PassThru] - [-ApiVersion ] [-Pre] [-DefaultProfile ] [-WhatIf] [-Confirm] - [] +Stop-AzManagementGroupDeployment [-ManagementGroupId] [-Name] [-PassThru] [-Pre] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ### StopByDeploymentId ``` -Stop-AzManagementGroupDeployment -Id [-PassThru] [-ApiVersion ] [-Pre] - [-DefaultProfile ] [-WhatIf] [-Confirm] [] +Stop-AzManagementGroupDeployment -Id [-PassThru] [-Pre] [-DefaultProfile ] + [-WhatIf] [-Confirm] [] ``` ### StopByInputObject ``` -Stop-AzManagementGroupDeployment -InputObject [-PassThru] [-ApiVersion ] [-Pre] +Stop-AzManagementGroupDeployment -InputObject [-PassThru] [-Pre] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` @@ -55,27 +54,11 @@ This command gets the deployment "deployment01" at the management group "myMG" a ## PARAMETERS -### -ApiVersion -When set, indicates the version of the resource provider API to use. -If not specified, the API version is automatically determined as the latest available. - -```yaml -Type: String -Parameter Sets: (All) -Aliases: - -Required: False -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - ### -DefaultProfile The credentials, account, tenant, and subscription used for communication with Azure. ```yaml -Type: IAzureContextContainer +Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer Parameter Sets: (All) Aliases: AzContext, AzureRmContext, AzureCredential @@ -91,7 +74,7 @@ The fully qualified resource Id of the deployment. example: /providers/Microsoft.Management/managementGroups/{managementGroupId}/providers/Microsoft.Resources/deployments/{deploymentName} ```yaml -Type: String +Type: System.String Parameter Sets: StopByDeploymentId Aliases: DeploymentId, ResourceId @@ -106,7 +89,7 @@ Accept wildcard characters: False The deployment object. ```yaml -Type: PSDeployment +Type: Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment Parameter Sets: StopByInputObject Aliases: @@ -121,7 +104,7 @@ Accept wildcard characters: False The management group id. ```yaml -Type: String +Type: System.String Parameter Sets: StopByDeploymentName Aliases: @@ -136,7 +119,7 @@ Accept wildcard characters: False The name of the deployment. ```yaml -Type: String +Type: System.String Parameter Sets: StopByDeploymentName Aliases: DeploymentName @@ -151,7 +134,7 @@ Accept wildcard characters: False {{ Fill PassThru Description }} ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: @@ -166,7 +149,7 @@ Accept wildcard characters: False When set, indicates that the cmdlet should use pre-release API versions when automatically determining which version to use. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: @@ -181,7 +164,7 @@ Accept wildcard characters: False Prompts you for confirmation before running the cmdlet. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: cf @@ -197,7 +180,7 @@ Shows what would happen if the cmdlet runs. The cmdlet is not run. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: wi diff --git a/src/Resources/Resources/help/Stop-AzResourceGroupDeployment.md b/src/Resources/Resources/help/Stop-AzResourceGroupDeployment.md index 64108e6c2d56..f1a817b21857 100644 --- a/src/Resources/Resources/help/Stop-AzResourceGroupDeployment.md +++ b/src/Resources/Resources/help/Stop-AzResourceGroupDeployment.md @@ -15,14 +15,14 @@ Cancels a resource group deployment. ### StopByResourceGroupDeploymentName (Default) ``` -Stop-AzResourceGroupDeployment [-ResourceGroupName] [-Name] [-ApiVersion ] [-Pre] +Stop-AzResourceGroupDeployment [-ResourceGroupName] [-Name] [-Pre] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ### StopByResourceGroupDeploymentId ``` -Stop-AzResourceGroupDeployment -Id [-ApiVersion ] [-Pre] - [-DefaultProfile ] [-WhatIf] [-Confirm] [] +Stop-AzResourceGroupDeployment -Id [-Pre] [-DefaultProfile ] [-WhatIf] + [-Confirm] [] ``` ## DESCRIPTION @@ -60,22 +60,6 @@ Id Name PSJobTypeName State HasMoreData Location ## PARAMETERS -### -ApiVersion -Specifies the API version that is supported by the resource Provider. -You can specify a different version than the default version. - -```yaml -Type: System.String -Parameter Sets: (All) -Aliases: - -Required: False -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - ### -DefaultProfile The credentials, account, tenant, and subscription used for communication with azure diff --git a/src/Resources/Resources/help/Stop-AzTenantDeployment.md b/src/Resources/Resources/help/Stop-AzTenantDeployment.md index da06e1c24773..5af802b8038a 100644 --- a/src/Resources/Resources/help/Stop-AzTenantDeployment.md +++ b/src/Resources/Resources/help/Stop-AzTenantDeployment.md @@ -14,19 +14,19 @@ Cancel a running deployment at tenant scope ### StopByDeploymentName (Default) ``` -Stop-AzTenantDeployment [-Name] [-PassThru] [-ApiVersion ] [-Pre] - [-DefaultProfile ] [-WhatIf] [-Confirm] [] +Stop-AzTenantDeployment [-Name] [-PassThru] [-Pre] [-DefaultProfile ] + [-WhatIf] [-Confirm] [] ``` ### StopByDeploymentId ``` -Stop-AzTenantDeployment -Id [-PassThru] [-ApiVersion ] [-Pre] - [-DefaultProfile ] [-WhatIf] [-Confirm] [] +Stop-AzTenantDeployment -Id [-PassThru] [-Pre] [-DefaultProfile ] [-WhatIf] + [-Confirm] [] ``` ### StopByInputObject ``` -Stop-AzTenantDeployment -InputObject [-PassThru] [-ApiVersion ] [-Pre] +Stop-AzTenantDeployment -InputObject [-PassThru] [-Pre] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` @@ -54,27 +54,11 @@ This command gets the deployment "deployment01" at the current tenant scope and ## PARAMETERS -### -ApiVersion -When set, indicates the version of the resource provider API to use. -If not specified, the API version is automatically determined as the latest available. - -```yaml -Type: String -Parameter Sets: (All) -Aliases: - -Required: False -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - ### -DefaultProfile The credentials, account, tenant, and subscription used for communication with Azure. ```yaml -Type: IAzureContextContainer +Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer Parameter Sets: (All) Aliases: AzContext, AzureRmContext, AzureCredential @@ -90,7 +74,7 @@ The fully qualified resource Id of the deployment. example: /providers/Microsoft.Resources/deployments/{deploymentName} ```yaml -Type: String +Type: System.String Parameter Sets: StopByDeploymentId Aliases: DeploymentId, ResourceId @@ -105,7 +89,7 @@ Accept wildcard characters: False The deployment object. ```yaml -Type: PSDeployment +Type: Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeployment Parameter Sets: StopByInputObject Aliases: @@ -120,7 +104,7 @@ Accept wildcard characters: False The name of the deployment. ```yaml -Type: String +Type: System.String Parameter Sets: StopByDeploymentName Aliases: DeploymentName @@ -135,7 +119,7 @@ Accept wildcard characters: False {{ Fill PassThru Description }} ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: @@ -150,7 +134,7 @@ Accept wildcard characters: False When set, indicates that the cmdlet should use pre-release API versions when automatically determining which version to use. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: @@ -165,7 +149,7 @@ Accept wildcard characters: False Prompts you for confirmation before running the cmdlet. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: cf @@ -181,7 +165,7 @@ Shows what would happen if the cmdlet runs. The cmdlet is not run. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: wi diff --git a/src/Resources/Resources/help/Test-AzDeployment.md b/src/Resources/Resources/help/Test-AzDeployment.md index 3ad5af56a3ef..9f5cfc1612e6 100644 --- a/src/Resources/Resources/help/Test-AzDeployment.md +++ b/src/Resources/Resources/help/Test-AzDeployment.md @@ -14,83 +14,74 @@ Validates a deployment. ### ByTemplateFileWithNoParameters (Default) ``` -Test-AzDeployment -Location -TemplateFile [-SkipTemplateParameterPrompt] - [-ApiVersion ] [-Pre] [-DefaultProfile ] [] +Test-AzDeployment -Location -TemplateFile [-SkipTemplateParameterPrompt] [-Pre] + [-DefaultProfile ] [] ``` ### ByTemplateObjectAndParameterObject ``` Test-AzDeployment -Location -TemplateParameterObject -TemplateObject - [-SkipTemplateParameterPrompt] [-ApiVersion ] [-Pre] [-DefaultProfile ] - [] + [-SkipTemplateParameterPrompt] [-Pre] [-DefaultProfile ] [] ``` ### ByTemplateFileAndParameterObject ``` Test-AzDeployment -Location -TemplateParameterObject -TemplateFile - [-SkipTemplateParameterPrompt] [-ApiVersion ] [-Pre] [-DefaultProfile ] - [] + [-SkipTemplateParameterPrompt] [-Pre] [-DefaultProfile ] [] ``` ### ByTemplateUriAndParameterObject ``` Test-AzDeployment -Location -TemplateParameterObject -TemplateUri - [-SkipTemplateParameterPrompt] [-ApiVersion ] [-Pre] [-DefaultProfile ] - [] + [-SkipTemplateParameterPrompt] [-Pre] [-DefaultProfile ] [] ``` ### ByTemplateObjectAndParameterFile ``` Test-AzDeployment -Location -TemplateParameterFile -TemplateObject - [-SkipTemplateParameterPrompt] [-ApiVersion ] [-Pre] [-DefaultProfile ] - [] + [-SkipTemplateParameterPrompt] [-Pre] [-DefaultProfile ] [] ``` ### ByTemplateFileAndParameterFile ``` Test-AzDeployment -Location -TemplateParameterFile -TemplateFile - [-SkipTemplateParameterPrompt] [-ApiVersion ] [-Pre] [-DefaultProfile ] - [] + [-SkipTemplateParameterPrompt] [-Pre] [-DefaultProfile ] [] ``` ### ByTemplateUriAndParameterFile ``` Test-AzDeployment -Location -TemplateParameterFile -TemplateUri - [-SkipTemplateParameterPrompt] [-ApiVersion ] [-Pre] [-DefaultProfile ] - [] + [-SkipTemplateParameterPrompt] [-Pre] [-DefaultProfile ] [] ``` ### ByTemplateObjectAndParameterUri ``` Test-AzDeployment -Location -TemplateParameterUri -TemplateObject - [-SkipTemplateParameterPrompt] [-ApiVersion ] [-Pre] [-DefaultProfile ] - [] + [-SkipTemplateParameterPrompt] [-Pre] [-DefaultProfile ] [] ``` ### ByTemplateFileAndParameterUri ``` Test-AzDeployment -Location -TemplateParameterUri -TemplateFile - [-SkipTemplateParameterPrompt] [-ApiVersion ] [-Pre] [-DefaultProfile ] - [] + [-SkipTemplateParameterPrompt] [-Pre] [-DefaultProfile ] [] ``` ### ByTemplateUriAndParameterUri ``` Test-AzDeployment -Location -TemplateParameterUri -TemplateUri - [-SkipTemplateParameterPrompt] [-ApiVersion ] [-Pre] [-DefaultProfile ] - [] + [-SkipTemplateParameterPrompt] [-Pre] [-DefaultProfile ] [] ``` ### ByTemplateObjectWithNoParameters ``` -Test-AzDeployment -Location -TemplateObject [-SkipTemplateParameterPrompt] - [-ApiVersion ] [-Pre] [-DefaultProfile ] [] +Test-AzDeployment -Location -TemplateObject [-SkipTemplateParameterPrompt] [-Pre] + [-DefaultProfile ] [] ``` ### ByTemplateUriWithNoParameters ``` -Test-AzDeployment -Location -TemplateUri [-SkipTemplateParameterPrompt] - [-ApiVersion ] [-Pre] [-DefaultProfile ] [] +Test-AzDeployment -Location -TemplateUri [-SkipTemplateParameterPrompt] [-Pre] + [-DefaultProfile ] [] ``` ## DESCRIPTION @@ -116,22 +107,6 @@ This command tests a deployment at the current subscription scope using the an i ## PARAMETERS -### -ApiVersion -When set, indicates the version of the resource provider API to use. -If not specified, the API version is automatically determined as the latest available. - -```yaml -Type: System.String -Parameter Sets: (All) -Aliases: - -Required: False -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - ### -DefaultProfile The credentials, account, tenant, and subscription used for communication with Azure. diff --git a/src/Resources/Resources/help/Test-AzManagementGroupDeployment.md b/src/Resources/Resources/help/Test-AzManagementGroupDeployment.md index baef64f01903..d954a48402c1 100644 --- a/src/Resources/Resources/help/Test-AzManagementGroupDeployment.md +++ b/src/Resources/Resources/help/Test-AzManagementGroupDeployment.md @@ -15,85 +15,82 @@ Validates a deployment at a management group. ### ByTemplateFileWithNoParameters (Default) ``` Test-AzManagementGroupDeployment -ManagementGroupId -Location -TemplateFile - [-SkipTemplateParameterPrompt] [-ApiVersion ] [-Pre] [-DefaultProfile ] - [] + [-SkipTemplateParameterPrompt] [-Pre] [-DefaultProfile ] [] ``` ### ByTemplateObjectAndParameterObject ``` Test-AzManagementGroupDeployment -ManagementGroupId -Location - -TemplateParameterObject -TemplateObject [-SkipTemplateParameterPrompt] - [-ApiVersion ] [-Pre] [-DefaultProfile ] [] + -TemplateParameterObject -TemplateObject [-SkipTemplateParameterPrompt] [-Pre] + [-DefaultProfile ] [] ``` ### ByTemplateFileAndParameterObject ``` Test-AzManagementGroupDeployment -ManagementGroupId -Location - -TemplateParameterObject -TemplateFile [-SkipTemplateParameterPrompt] - [-ApiVersion ] [-Pre] [-DefaultProfile ] [] + -TemplateParameterObject -TemplateFile [-SkipTemplateParameterPrompt] [-Pre] + [-DefaultProfile ] [] ``` ### ByTemplateUriAndParameterObject ``` Test-AzManagementGroupDeployment -ManagementGroupId -Location - -TemplateParameterObject -TemplateUri [-SkipTemplateParameterPrompt] - [-ApiVersion ] [-Pre] [-DefaultProfile ] [] + -TemplateParameterObject -TemplateUri [-SkipTemplateParameterPrompt] [-Pre] + [-DefaultProfile ] [] ``` ### ByTemplateObjectAndParameterFile ``` Test-AzManagementGroupDeployment -ManagementGroupId -Location -TemplateParameterFile - -TemplateObject [-SkipTemplateParameterPrompt] [-ApiVersion ] [-Pre] - [-DefaultProfile ] [] + -TemplateObject [-SkipTemplateParameterPrompt] [-Pre] [-DefaultProfile ] + [] ``` ### ByTemplateFileAndParameterFile ``` Test-AzManagementGroupDeployment -ManagementGroupId -Location -TemplateParameterFile - -TemplateFile [-SkipTemplateParameterPrompt] [-ApiVersion ] [-Pre] - [-DefaultProfile ] [] + -TemplateFile [-SkipTemplateParameterPrompt] [-Pre] [-DefaultProfile ] + [] ``` ### ByTemplateUriAndParameterFile ``` Test-AzManagementGroupDeployment -ManagementGroupId -Location -TemplateParameterFile - -TemplateUri [-SkipTemplateParameterPrompt] [-ApiVersion ] [-Pre] - [-DefaultProfile ] [] + -TemplateUri [-SkipTemplateParameterPrompt] [-Pre] [-DefaultProfile ] + [] ``` ### ByTemplateObjectAndParameterUri ``` Test-AzManagementGroupDeployment -ManagementGroupId -Location -TemplateParameterUri - -TemplateObject [-SkipTemplateParameterPrompt] [-ApiVersion ] [-Pre] - [-DefaultProfile ] [] + -TemplateObject [-SkipTemplateParameterPrompt] [-Pre] [-DefaultProfile ] + [] ``` ### ByTemplateFileAndParameterUri ``` Test-AzManagementGroupDeployment -ManagementGroupId -Location -TemplateParameterUri - -TemplateFile [-SkipTemplateParameterPrompt] [-ApiVersion ] [-Pre] - [-DefaultProfile ] [] + -TemplateFile [-SkipTemplateParameterPrompt] [-Pre] [-DefaultProfile ] + [] ``` ### ByTemplateUriAndParameterUri ``` Test-AzManagementGroupDeployment -ManagementGroupId -Location -TemplateParameterUri - -TemplateUri [-SkipTemplateParameterPrompt] [-ApiVersion ] [-Pre] - [-DefaultProfile ] [] + -TemplateUri [-SkipTemplateParameterPrompt] [-Pre] [-DefaultProfile ] + [] ``` ### ByTemplateObjectWithNoParameters ``` Test-AzManagementGroupDeployment -ManagementGroupId -Location -TemplateObject - [-SkipTemplateParameterPrompt] [-ApiVersion ] [-Pre] [-DefaultProfile ] - [] + [-SkipTemplateParameterPrompt] [-Pre] [-DefaultProfile ] [] ``` ### ByTemplateUriWithNoParameters ``` Test-AzManagementGroupDeployment -ManagementGroupId -Location -TemplateUri - [-SkipTemplateParameterPrompt] [-ApiVersion ] [-Pre] [-DefaultProfile ] - [] + [-SkipTemplateParameterPrompt] [-Pre] [-DefaultProfile ] [] ``` ## DESCRIPTION @@ -119,27 +116,11 @@ This command tests a deployment at the management group "myMG" using the an in-m ## PARAMETERS -### -ApiVersion -When set, indicates the version of the resource provider API to use. -If not specified, the API version is automatically determined as the latest available. - -```yaml -Type: String -Parameter Sets: (All) -Aliases: - -Required: False -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - ### -DefaultProfile The credentials, account, tenant, and subscription used for communication with Azure. ```yaml -Type: IAzureContextContainer +Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer Parameter Sets: (All) Aliases: AzContext, AzureRmContext, AzureCredential @@ -154,7 +135,7 @@ Accept wildcard characters: False The location to store deployment data. ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: @@ -169,7 +150,7 @@ Accept wildcard characters: False The management group id. ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: @@ -184,7 +165,7 @@ Accept wildcard characters: False When set, indicates that the cmdlet should use pre-release API versions when automatically determining which version to use. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: @@ -201,7 +182,7 @@ This check would prompt the user to provide a value for the missing parameters, For non-interactive scripts, -SkipTemplateParameterPrompt can be provided to provide a better error message in the case where not all required parameters are satisfied. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: @@ -216,7 +197,7 @@ Accept wildcard characters: False Local path to the template file. ```yaml -Type: String +Type: System.String Parameter Sets: ByTemplateFileWithNoParameters, ByTemplateFileAndParameterObject, ByTemplateFileAndParameterFile, ByTemplateFileAndParameterUri Aliases: @@ -231,7 +212,7 @@ Accept wildcard characters: False A hash table which represents the template. ```yaml -Type: Hashtable +Type: System.Collections.Hashtable Parameter Sets: ByTemplateObjectAndParameterObject, ByTemplateObjectAndParameterFile, ByTemplateObjectAndParameterUri, ByTemplateObjectWithNoParameters Aliases: @@ -246,7 +227,7 @@ Accept wildcard characters: False A file that has the template parameters. ```yaml -Type: String +Type: System.String Parameter Sets: ByTemplateObjectAndParameterFile, ByTemplateFileAndParameterFile, ByTemplateUriAndParameterFile Aliases: @@ -261,7 +242,7 @@ Accept wildcard characters: False A hash table which represents the parameters. ```yaml -Type: Hashtable +Type: System.Collections.Hashtable Parameter Sets: ByTemplateObjectAndParameterObject, ByTemplateFileAndParameterObject, ByTemplateUriAndParameterObject Aliases: @@ -276,7 +257,7 @@ Accept wildcard characters: False Uri to the template parameter file. ```yaml -Type: String +Type: System.String Parameter Sets: ByTemplateObjectAndParameterUri, ByTemplateFileAndParameterUri, ByTemplateUriAndParameterUri Aliases: @@ -291,7 +272,7 @@ Accept wildcard characters: False Uri to the template file. ```yaml -Type: String +Type: System.String Parameter Sets: ByTemplateUriAndParameterObject, ByTemplateUriAndParameterFile, ByTemplateUriAndParameterUri, ByTemplateUriWithNoParameters Aliases: diff --git a/src/Resources/Resources/help/Test-AzResourceGroupDeployment.md b/src/Resources/Resources/help/Test-AzResourceGroupDeployment.md index 0454895d02ab..d5d294cea0fd 100644 --- a/src/Resources/Resources/help/Test-AzResourceGroupDeployment.md +++ b/src/Resources/Resources/help/Test-AzResourceGroupDeployment.md @@ -16,94 +16,85 @@ Validates a resource group deployment. ### ByTemplateFileWithNoParameters (Default) ``` Test-AzResourceGroupDeployment -ResourceGroupName [-Mode ] [-RollbackToLastDeployment] - [-RollBackDeploymentName ] -TemplateFile [-SkipTemplateParameterPrompt] - [-ApiVersion ] [-Pre] [-DefaultProfile ] [] + [-RollBackDeploymentName ] -TemplateFile [-SkipTemplateParameterPrompt] [-Pre] + [-DefaultProfile ] [] ``` ### ByTemplateObjectAndParameterObject ``` Test-AzResourceGroupDeployment -ResourceGroupName [-Mode ] [-RollbackToLastDeployment] [-RollBackDeploymentName ] -TemplateParameterObject -TemplateObject - [-SkipTemplateParameterPrompt] [-ApiVersion ] [-Pre] [-DefaultProfile ] - [] + [-SkipTemplateParameterPrompt] [-Pre] [-DefaultProfile ] [] ``` ### ByTemplateFileAndParameterObject ``` Test-AzResourceGroupDeployment -ResourceGroupName [-Mode ] [-RollbackToLastDeployment] [-RollBackDeploymentName ] -TemplateParameterObject -TemplateFile - [-SkipTemplateParameterPrompt] [-ApiVersion ] [-Pre] [-DefaultProfile ] - [] + [-SkipTemplateParameterPrompt] [-Pre] [-DefaultProfile ] [] ``` ### ByTemplateUriAndParameterObject ``` Test-AzResourceGroupDeployment -ResourceGroupName [-Mode ] [-RollbackToLastDeployment] [-RollBackDeploymentName ] -TemplateParameterObject -TemplateUri - [-SkipTemplateParameterPrompt] [-ApiVersion ] [-Pre] [-DefaultProfile ] - [] + [-SkipTemplateParameterPrompt] [-Pre] [-DefaultProfile ] [] ``` ### ByTemplateObjectAndParameterFile ``` Test-AzResourceGroupDeployment -ResourceGroupName [-Mode ] [-RollbackToLastDeployment] [-RollBackDeploymentName ] -TemplateParameterFile -TemplateObject - [-SkipTemplateParameterPrompt] [-ApiVersion ] [-Pre] [-DefaultProfile ] - [] + [-SkipTemplateParameterPrompt] [-Pre] [-DefaultProfile ] [] ``` ### ByTemplateFileAndParameterFile ``` Test-AzResourceGroupDeployment -ResourceGroupName [-Mode ] [-RollbackToLastDeployment] [-RollBackDeploymentName ] -TemplateParameterFile -TemplateFile - [-SkipTemplateParameterPrompt] [-ApiVersion ] [-Pre] [-DefaultProfile ] - [] + [-SkipTemplateParameterPrompt] [-Pre] [-DefaultProfile ] [] ``` ### ByTemplateUriAndParameterFile ``` Test-AzResourceGroupDeployment -ResourceGroupName [-Mode ] [-RollbackToLastDeployment] [-RollBackDeploymentName ] -TemplateParameterFile -TemplateUri - [-SkipTemplateParameterPrompt] [-ApiVersion ] [-Pre] [-DefaultProfile ] - [] + [-SkipTemplateParameterPrompt] [-Pre] [-DefaultProfile ] [] ``` ### ByTemplateObjectAndParameterUri ``` Test-AzResourceGroupDeployment -ResourceGroupName [-Mode ] [-RollbackToLastDeployment] [-RollBackDeploymentName ] -TemplateParameterUri -TemplateObject - [-SkipTemplateParameterPrompt] [-ApiVersion ] [-Pre] [-DefaultProfile ] - [] + [-SkipTemplateParameterPrompt] [-Pre] [-DefaultProfile ] [] ``` ### ByTemplateFileAndParameterUri ``` Test-AzResourceGroupDeployment -ResourceGroupName [-Mode ] [-RollbackToLastDeployment] [-RollBackDeploymentName ] -TemplateParameterUri -TemplateFile - [-SkipTemplateParameterPrompt] [-ApiVersion ] [-Pre] [-DefaultProfile ] - [] + [-SkipTemplateParameterPrompt] [-Pre] [-DefaultProfile ] [] ``` ### ByTemplateUriAndParameterUri ``` Test-AzResourceGroupDeployment -ResourceGroupName [-Mode ] [-RollbackToLastDeployment] [-RollBackDeploymentName ] -TemplateParameterUri -TemplateUri - [-SkipTemplateParameterPrompt] [-ApiVersion ] [-Pre] [-DefaultProfile ] - [] + [-SkipTemplateParameterPrompt] [-Pre] [-DefaultProfile ] [] ``` ### ByTemplateObjectWithNoParameters ``` Test-AzResourceGroupDeployment -ResourceGroupName [-Mode ] [-RollbackToLastDeployment] - [-RollBackDeploymentName ] -TemplateObject [-SkipTemplateParameterPrompt] - [-ApiVersion ] [-Pre] [-DefaultProfile ] [] + [-RollBackDeploymentName ] -TemplateObject [-SkipTemplateParameterPrompt] [-Pre] + [-DefaultProfile ] [] ``` ### ByTemplateUriWithNoParameters ``` Test-AzResourceGroupDeployment -ResourceGroupName [-Mode ] [-RollbackToLastDeployment] - [-RollBackDeploymentName ] -TemplateUri [-SkipTemplateParameterPrompt] [-ApiVersion ] - [-Pre] [-DefaultProfile ] [] + [-RollBackDeploymentName ] -TemplateUri [-SkipTemplateParameterPrompt] [-Pre] + [-DefaultProfile ] [] ``` ## DESCRIPTION @@ -131,22 +122,6 @@ This command tests a deployment in the given resource group and resource using t ## PARAMETERS -### -ApiVersion -Specifies the API version that is supported by the resource Provider. -You can specify a different version than the default version. - -```yaml -Type: System.String -Parameter Sets: (All) -Aliases: - -Required: False -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - ### -DefaultProfile The credentials, account, tenant, and subscription used for communication with azure diff --git a/src/Resources/Resources/help/Test-AzTenantDeployment.md b/src/Resources/Resources/help/Test-AzTenantDeployment.md index e87a2c655f3c..60f8f5c12816 100644 --- a/src/Resources/Resources/help/Test-AzTenantDeployment.md +++ b/src/Resources/Resources/help/Test-AzTenantDeployment.md @@ -14,83 +14,74 @@ Validates a deployment at tenant scope. ### ByTemplateFileWithNoParameters (Default) ``` -Test-AzTenantDeployment -Location -TemplateFile [-SkipTemplateParameterPrompt] - [-ApiVersion ] [-Pre] [-DefaultProfile ] [] +Test-AzTenantDeployment -Location -TemplateFile [-SkipTemplateParameterPrompt] [-Pre] + [-DefaultProfile ] [] ``` ### ByTemplateObjectAndParameterObject ``` Test-AzTenantDeployment -Location -TemplateParameterObject -TemplateObject - [-SkipTemplateParameterPrompt] [-ApiVersion ] [-Pre] [-DefaultProfile ] - [] + [-SkipTemplateParameterPrompt] [-Pre] [-DefaultProfile ] [] ``` ### ByTemplateFileAndParameterObject ``` Test-AzTenantDeployment -Location -TemplateParameterObject -TemplateFile - [-SkipTemplateParameterPrompt] [-ApiVersion ] [-Pre] [-DefaultProfile ] - [] + [-SkipTemplateParameterPrompt] [-Pre] [-DefaultProfile ] [] ``` ### ByTemplateUriAndParameterObject ``` Test-AzTenantDeployment -Location -TemplateParameterObject -TemplateUri - [-SkipTemplateParameterPrompt] [-ApiVersion ] [-Pre] [-DefaultProfile ] - [] + [-SkipTemplateParameterPrompt] [-Pre] [-DefaultProfile ] [] ``` ### ByTemplateObjectAndParameterFile ``` Test-AzTenantDeployment -Location -TemplateParameterFile -TemplateObject - [-SkipTemplateParameterPrompt] [-ApiVersion ] [-Pre] [-DefaultProfile ] - [] + [-SkipTemplateParameterPrompt] [-Pre] [-DefaultProfile ] [] ``` ### ByTemplateFileAndParameterFile ``` Test-AzTenantDeployment -Location -TemplateParameterFile -TemplateFile - [-SkipTemplateParameterPrompt] [-ApiVersion ] [-Pre] [-DefaultProfile ] - [] + [-SkipTemplateParameterPrompt] [-Pre] [-DefaultProfile ] [] ``` ### ByTemplateUriAndParameterFile ``` Test-AzTenantDeployment -Location -TemplateParameterFile -TemplateUri - [-SkipTemplateParameterPrompt] [-ApiVersion ] [-Pre] [-DefaultProfile ] - [] + [-SkipTemplateParameterPrompt] [-Pre] [-DefaultProfile ] [] ``` ### ByTemplateObjectAndParameterUri ``` Test-AzTenantDeployment -Location -TemplateParameterUri -TemplateObject - [-SkipTemplateParameterPrompt] [-ApiVersion ] [-Pre] [-DefaultProfile ] - [] + [-SkipTemplateParameterPrompt] [-Pre] [-DefaultProfile ] [] ``` ### ByTemplateFileAndParameterUri ``` Test-AzTenantDeployment -Location -TemplateParameterUri -TemplateFile - [-SkipTemplateParameterPrompt] [-ApiVersion ] [-Pre] [-DefaultProfile ] - [] + [-SkipTemplateParameterPrompt] [-Pre] [-DefaultProfile ] [] ``` ### ByTemplateUriAndParameterUri ``` Test-AzTenantDeployment -Location -TemplateParameterUri -TemplateUri - [-SkipTemplateParameterPrompt] [-ApiVersion ] [-Pre] [-DefaultProfile ] - [] + [-SkipTemplateParameterPrompt] [-Pre] [-DefaultProfile ] [] ``` ### ByTemplateObjectWithNoParameters ``` -Test-AzTenantDeployment -Location -TemplateObject [-SkipTemplateParameterPrompt] - [-ApiVersion ] [-Pre] [-DefaultProfile ] [] +Test-AzTenantDeployment -Location -TemplateObject [-SkipTemplateParameterPrompt] [-Pre] + [-DefaultProfile ] [] ``` ### ByTemplateUriWithNoParameters ``` -Test-AzTenantDeployment -Location -TemplateUri [-SkipTemplateParameterPrompt] - [-ApiVersion ] [-Pre] [-DefaultProfile ] [] +Test-AzTenantDeployment -Location -TemplateUri [-SkipTemplateParameterPrompt] [-Pre] + [-DefaultProfile ] [] ``` ## DESCRIPTION @@ -116,27 +107,11 @@ This command tests a deployment at the current tenant scope using the an in-memo ## PARAMETERS -### -ApiVersion -When set, indicates the version of the resource provider API to use. -If not specified, the API version is automatically determined as the latest available. - -```yaml -Type: String -Parameter Sets: (All) -Aliases: - -Required: False -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - ### -DefaultProfile The credentials, account, tenant, and subscription used for communication with Azure. ```yaml -Type: IAzureContextContainer +Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer Parameter Sets: (All) Aliases: AzContext, AzureRmContext, AzureCredential @@ -151,7 +126,7 @@ Accept wildcard characters: False The location to store deployment data. ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: @@ -166,7 +141,7 @@ Accept wildcard characters: False When set, indicates that the cmdlet should use pre-release API versions when automatically determining which version to use. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: @@ -183,7 +158,7 @@ This check would prompt the user to provide a value for the missing parameters, For non-interactive scripts, -SkipTemplateParameterPrompt can be provided to provide a better error message in the case where not all required parameters are satisfied. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: @@ -198,7 +173,7 @@ Accept wildcard characters: False Local path to the template file. ```yaml -Type: String +Type: System.String Parameter Sets: ByTemplateFileWithNoParameters, ByTemplateFileAndParameterObject, ByTemplateFileAndParameterFile, ByTemplateFileAndParameterUri Aliases: @@ -213,7 +188,7 @@ Accept wildcard characters: False A hash table which represents the template. ```yaml -Type: Hashtable +Type: System.Collections.Hashtable Parameter Sets: ByTemplateObjectAndParameterObject, ByTemplateObjectAndParameterFile, ByTemplateObjectAndParameterUri, ByTemplateObjectWithNoParameters Aliases: @@ -228,7 +203,7 @@ Accept wildcard characters: False A file that has the template parameters. ```yaml -Type: String +Type: System.String Parameter Sets: ByTemplateObjectAndParameterFile, ByTemplateFileAndParameterFile, ByTemplateUriAndParameterFile Aliases: @@ -243,7 +218,7 @@ Accept wildcard characters: False A hash table which represents the parameters. ```yaml -Type: Hashtable +Type: System.Collections.Hashtable Parameter Sets: ByTemplateObjectAndParameterObject, ByTemplateFileAndParameterObject, ByTemplateUriAndParameterObject Aliases: @@ -258,7 +233,7 @@ Accept wildcard characters: False Uri to the template parameter file. ```yaml -Type: String +Type: System.String Parameter Sets: ByTemplateObjectAndParameterUri, ByTemplateFileAndParameterUri, ByTemplateUriAndParameterUri Aliases: @@ -273,7 +248,7 @@ Accept wildcard characters: False Uri to the template file. ```yaml -Type: String +Type: System.String Parameter Sets: ByTemplateUriAndParameterObject, ByTemplateUriAndParameterFile, ByTemplateUriAndParameterUri, ByTemplateUriWithNoParameters Aliases: diff --git a/src/Resources/Resources/help/Unregister-AzProviderFeature.md b/src/Resources/Resources/help/Unregister-AzProviderFeature.md index 9eb27d755a10..0d3184b4702b 100644 --- a/src/Resources/Resources/help/Unregister-AzProviderFeature.md +++ b/src/Resources/Resources/help/Unregister-AzProviderFeature.md @@ -35,7 +35,7 @@ This unregisters the AllowApplicationSecurityGroups feature for Microsoft.Networ The credentials, account, tenant, and subscription used for communication with Azure. ```yaml -Type: IAzureContextContainer +Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer Parameter Sets: (All) Aliases: AzContext, AzureRmContext, AzureCredential @@ -50,7 +50,7 @@ Accept wildcard characters: False The feature name. ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: @@ -65,7 +65,7 @@ Accept wildcard characters: False The resource provider namespace. ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: @@ -80,7 +80,7 @@ Accept wildcard characters: False Prompts you for confirmation before running the cmdlet. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: cf @@ -96,7 +96,7 @@ Shows what would happen if the cmdlet runs. The cmdlet is not run. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: wi diff --git a/src/Resources/Resources/help/Update-AzADServicePrincipal.md b/src/Resources/Resources/help/Update-AzADServicePrincipal.md index 3aeef92316b6..96729b3528bb 100644 --- a/src/Resources/Resources/help/Update-AzADServicePrincipal.md +++ b/src/Resources/Resources/help/Update-AzADServicePrincipal.md @@ -68,6 +68,8 @@ Gets the service principal with object id '784136ca-3ae2-4fdd-a388-89d793e7c780' Updates an existing azure active directory service principal. (autogenerated) + + ```powershell Update-AzADServicePrincipal -IdentifierUri https://mySecretApp1 -ObjectId 00000000-0000-0000-0000-00000000000000000 ``` diff --git a/src/Resources/Resources/help/Update-AzTag.md b/src/Resources/Resources/help/Update-AzTag.md index 92d61634c5e2..279aa124d000 100644 --- a/src/Resources/Resources/help/Update-AzTag.md +++ b/src/Resources/Resources/help/Update-AzTag.md @@ -14,16 +14,9 @@ Selectively updates the set of tags on a resource or subscription. ## SYNTAX -```powershell -Update-AzTag - -ResourceId - -Operation - -Tag - [-DefaultProfile ] - [-WhatIf] - [-Confirm] - [] - +``` +Update-AzTag [-ResourceId] [-Tag] [-Operation] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ## DESCRIPTION @@ -104,47 +97,47 @@ Accept pipeline input: False Accept wildcard characters: False ``` -### -ResourceId -The resource identifier for the tagged entity. A resource, a resource group or a subscription may be tagged. +### -Operation +The update operation. Options are Merge, Replace and Delete. ```yaml -Type: System.String +Type: Microsoft.Azure.Commands.Tags.Model.TagPatchOperation Parameter Sets: (All) Aliases: +Accepted values: Merge, Replace, Delete Required: True -Position: 0 +Position: 2 Default value: None Accept pipeline input: True (ByPropertyName) Accept wildcard characters: False ``` -### -Tag -The set of tags to use for update. +### -ResourceId +The resource identifier for the tagged entity. A resource, a resource group or a subscription may be tagged. ```yaml -Type: System.Collections.Hashtable +Type: System.String Parameter Sets: (All) Aliases: Required: True -Position: 1 +Position: 0 Default value: None Accept pipeline input: True (ByPropertyName) Accept wildcard characters: False ``` -### -Operation -The update operation. Options are Merge, Replace and Delete. +### -Tag +The set of tags to use for update. ```yaml -Type: Microsoft.Azure.Commands.Tags.Model.TagPatchOpeation +Type: System.Collections.Hashtable Parameter Sets: (All) Aliases: -Accepted values: Merge, Replace, Delete Required: True -Position: 2 +Position: 1 Default value: None Accept pipeline input: True (ByPropertyName) Accept wildcard characters: False From 4f7421b58ad9faa1e30434eb8e8780cbba186a6c Mon Sep 17 00:00:00 2001 From: Gokul Premraj Date: Wed, 19 Aug 2020 12:55:01 -0400 Subject: [PATCH 10/17] Rollback changes to help files of untouched cmdlets --- .../Resources/help/Get-AzDeploymentScript.md | 15 +++--- .../Resources/help/Get-AzResource.md | 6 +-- .../Resources/help/Get-AzResourceGroup.md | 3 +- .../help/New-AzADServicePrincipal.md | 23 ++++++-- src/Resources/Resources/help/New-AzTag.md | 52 +++++++++++-------- .../Resources/help/Remove-AzADGroup.md | 14 ++--- .../help/Remove-AzDeploymentScript.md | 49 ++++++++--------- src/Resources/Resources/help/Remove-AzTag.md | 43 ++++++++------- .../Set-AzManagedApplicationDefinition.md | 4 +- .../help/Unregister-AzProviderFeature.md | 12 ++--- .../help/Update-AzADServicePrincipal.md | 4 +- src/Resources/Resources/help/Update-AzTag.md | 40 ++++++++------ 12 files changed, 149 insertions(+), 116 deletions(-) diff --git a/src/Resources/Resources/help/Get-AzDeploymentScript.md b/src/Resources/Resources/help/Get-AzDeploymentScript.md index 37ccaab3bb10..6eaab5368f80 100644 --- a/src/Resources/Resources/help/Get-AzDeploymentScript.md +++ b/src/Resources/Resources/help/Get-AzDeploymentScript.md @@ -68,7 +68,7 @@ Gets a deployment script with the given resource Id. The credentials, account, tenant, and subscription used for communication with Azure. ```yaml -Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer +Type: IAzureContextContainer Parameter Sets: (All) Aliases: AzContext, AzureRmContext, AzureCredential @@ -84,7 +84,7 @@ The fully qualified resource Id of the deployment script. Example: /subscriptions/{subId}/resourceGroups/{rgName}/providers/Microsoft.Resources/deploymentScripts/{deploymentScriptName} ```yaml -Type: System.String +Type: String Parameter Sets: GetDeploymentScriptByResourceId Aliases: ResourceId @@ -99,7 +99,7 @@ Accept wildcard characters: False The name of the deployment script ```yaml -Type: System.String +Type: String Parameter Sets: GetDeploymentScriptByName Aliases: @@ -114,7 +114,7 @@ Accept wildcard characters: False The name of the resource group. ```yaml -Type: System.String +Type: String Parameter Sets: ListDeploymentScript Aliases: @@ -126,7 +126,7 @@ Accept wildcard characters: False ``` ```yaml -Type: System.String +Type: String Parameter Sets: GetDeploymentScriptByName Aliases: @@ -138,7 +138,8 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. +For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS @@ -150,4 +151,4 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## NOTES -## RELATED LINKS +## RELATED LINKS \ No newline at end of file diff --git a/src/Resources/Resources/help/Get-AzResource.md b/src/Resources/Resources/help/Get-AzResource.md index 07ccda92978d..d25e77fc8022 100644 --- a/src/Resources/Resources/help/Get-AzResource.md +++ b/src/Resources/Resources/help/Get-AzResource.md @@ -216,7 +216,7 @@ Required: False Position: Named Default value: None Accept pipeline input: False -Accept wildcard characters: False +Accept wildcard characters: True ``` ### -ODataQuery @@ -259,7 +259,7 @@ Required: False Position: Named Default value: None Accept pipeline input: False -Accept wildcard characters: False +Accept wildcard characters: True ``` ### -ResourceId @@ -362,4 +362,4 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable [Remove-AzResource](./Remove-AzResource.md) -[Set-AzResource](./Set-AzResource.md) +[Set-AzResource](./Set-AzResource.md) \ No newline at end of file diff --git a/src/Resources/Resources/help/Get-AzResourceGroup.md b/src/Resources/Resources/help/Get-AzResourceGroup.md index 257197d71afa..08c167fb24e9 100644 --- a/src/Resources/Resources/help/Get-AzResourceGroup.md +++ b/src/Resources/Resources/help/Get-AzResourceGroup.md @@ -149,7 +149,7 @@ Required: False Position: 0 Default value: None Accept pipeline input: True (ByPropertyName) -Accept wildcard characters: False +Accept wildcard characters: True ``` ### -Pre @@ -205,4 +205,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable [Set-AzResourceGroup](./Set-AzResourceGroup.md) - diff --git a/src/Resources/Resources/help/New-AzADServicePrincipal.md b/src/Resources/Resources/help/New-AzADServicePrincipal.md index 29dcd8289c43..0d83c5b7cfeb 100644 --- a/src/Resources/Resources/help/New-AzADServicePrincipal.md +++ b/src/Resources/Resources/help/New-AzADServicePrincipal.md @@ -14,6 +14,7 @@ Creates a new Azure active directory service principal. ## SYNTAX ### SimpleParameterSet (Default) + ``` New-AzADServicePrincipal [-ApplicationId ] [-DisplayName ] [-StartDate ] [-EndDate ] [-Scope ] [-Role ] [-SkipAssignment] @@ -21,84 +22,98 @@ New-AzADServicePrincipal [-ApplicationId ] [-DisplayName ] [-Start ``` ### ApplicationWithoutCredentialParameterSet + ``` New-AzADServicePrincipal -ApplicationId [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ### ApplicationWithPasswordPlainParameterSet + ``` New-AzADServicePrincipal -ApplicationId [-StartDate ] [-EndDate ] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ### ApplicationWithPasswordCredentialParameterSet + ``` New-AzADServicePrincipal -ApplicationId -PasswordCredential [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ### ApplicationWithKeyPlainParameterSet + ``` New-AzADServicePrincipal -ApplicationId -CertValue [-StartDate ] [-EndDate ] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ### ApplicationWithKeyCredentialParameterSet + ``` New-AzADServicePrincipal -ApplicationId -KeyCredential [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ### DisplayNameWithoutCredentialParameterSet + ``` New-AzADServicePrincipal -DisplayName [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ### DisplayNameWithPasswordPlainParameterSet + ``` New-AzADServicePrincipal -DisplayName [-StartDate ] [-EndDate ] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ### DisplayNameWithPasswordCredentialParameterSet + ``` New-AzADServicePrincipal -DisplayName -PasswordCredential [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ### DisplayNameWithKeyPlainParameterSet + ``` New-AzADServicePrincipal -DisplayName -CertValue [-StartDate ] [-EndDate ] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ### DisplayNameWithKeyCredentialParameterSet + ``` New-AzADServicePrincipal -DisplayName -KeyCredential [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ### ApplicationObjectWithPasswordPlainParameterSet + ``` New-AzADServicePrincipal -ApplicationObject [-StartDate ] [-EndDate ] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ### ApplicationObjectWithPasswordCredentialParameterSet + ``` New-AzADServicePrincipal -ApplicationObject -PasswordCredential [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ### ApplicationObjectWithKeyPlainParameterSet + ``` New-AzADServicePrincipal -ApplicationObject -CertValue [-StartDate ] [-EndDate ] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ### ApplicationObjectWithKeyCredentialParameterSet + ``` New-AzADServicePrincipal -ApplicationObject -KeyCredential [-DefaultProfile ] [-WhatIf] [-Confirm] [] @@ -594,8 +609,10 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). - +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, +-WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](/powershell/module/microsoft.powershell.core/about/about_commonparameters). ## INPUTS ### System.Guid @@ -634,4 +651,4 @@ Keywords: azure, azurerm, arm, resource, management, manager, resource, group, t [New-AzADSpCredential](./New-AzADSpCredential.md) -[Remove-AzADSpCredential](./Remove-AzADSpCredential.md) +[Remove-AzADSpCredential](./Remove-AzADSpCredential.md) \ No newline at end of file diff --git a/src/Resources/Resources/help/New-AzTag.md b/src/Resources/Resources/help/New-AzTag.md index d4c3a3dc1b59..22ffbbd30cda 100644 --- a/src/Resources/Resources/help/New-AzTag.md +++ b/src/Resources/Resources/help/New-AzTag.md @@ -14,15 +14,21 @@ Creates a predefined Azure tag or adds values to an existing tag | Creates or up ## SYNTAX ### CreatePredefinedTagParameterSet -``` -New-AzTag [-Name] [[-Value] ] [-DefaultProfile ] [-WhatIf] [-Confirm] - [] + +```powershell +New-AzTag [-Name] [[-Value] ] [-DefaultProfile ] [] ``` ### CreateByResourceIdParameterSet -``` -New-AzTag [-ResourceId] [-Tag] [-DefaultProfile ] [-WhatIf] - [-Confirm] [] + +```powershell +New-AzTag + -ResourceId + -Tag + [-DefaultProfile ] + [-WhatIf] + [-Confirm] + [] ``` ## DESCRIPTION @@ -217,47 +223,47 @@ Accept pipeline input: True (ByPropertyName) Accept wildcard characters: False ``` -### -ResourceId -The resource identifier for the entity being tagged. A resource, a resource group or a subscription may be tagged. +### -Value +Specifies a predefined tag value. +Predefined tags can have multiple values, but you can enter only one value in each command. +This parameter is optional, because tags can have names without values. ```yaml Type: System.String -Parameter Sets: CreateByResourceIdParameterSet +Parameter Sets: CreatePredefinedTagParameterSet Aliases: -Required: True -Position: 0 +Required: False +Position: 1 Default value: None Accept pipeline input: True (ByPropertyName) Accept wildcard characters: False ``` -### -Tag -The tags to put on the resource. +### -ResourceId +The resource identifier for the entity being tagged. A resource, a resource group or a subscription may be tagged. ```yaml -Type: System.Collections.Hashtable +Type: System.String Parameter Sets: CreateByResourceIdParameterSet Aliases: Required: True -Position: 1 +Position: 0 Default value: None Accept pipeline input: True (ByPropertyName) Accept wildcard characters: False ``` -### -Value -Specifies a predefined tag value. -Predefined tags can have multiple values, but you can enter only one value in each command. -This parameter is optional, because tags can have names without values. +### -Tag +The tags to put on the resource. ```yaml -Type: System.String -Parameter Sets: CreatePredefinedTagParameterSet +Type: System.Collections.Hashtable +Parameter Sets: CreateByResourceIdParameterSet Aliases: -Required: False +Required: True Position: 1 Default value: None Accept pipeline input: True (ByPropertyName) @@ -316,4 +322,4 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable [Remove-AzTag](./Remove-AzTag.md) -[Update-AzTag](./Update-AzTag.md) +[Update-AzTag](./Update-AzTag.md) \ No newline at end of file diff --git a/src/Resources/Resources/help/Remove-AzADGroup.md b/src/Resources/Resources/help/Remove-AzADGroup.md index 8c43c2ae5024..ed617bfb23bf 100644 --- a/src/Resources/Resources/help/Remove-AzADGroup.md +++ b/src/Resources/Resources/help/Remove-AzADGroup.md @@ -12,16 +12,16 @@ Deletes an active directory group. ## SYNTAX -### DisplayNameParameterSet (Default) +### ObjectIdParameterSet (Default) ``` -Remove-AzADGroup -DisplayName [-PassThru] [-Force] [-DefaultProfile ] - [-WhatIf] [-Confirm] [] +Remove-AzADGroup -ObjectId [-PassThru] [-Force] [-DefaultProfile ] [-WhatIf] + [-Confirm] [] ``` -### ObjectIdParameterSet +### DisplayNameParameterSet ``` -Remove-AzADGroup -ObjectId [-PassThru] [-Force] [-DefaultProfile ] [-WhatIf] - [-Confirm] [] +Remove-AzADGroup -DisplayName [-PassThru] [-Force] [-DefaultProfile ] + [-WhatIf] [-Confirm] [] ``` ### InputObjectParameterSet @@ -189,4 +189,4 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## NOTES -## RELATED LINKS +## RELATED LINKS \ No newline at end of file diff --git a/src/Resources/Resources/help/Remove-AzDeploymentScript.md b/src/Resources/Resources/help/Remove-AzDeploymentScript.md index e68c49ac65ee..5723d39b52f0 100644 --- a/src/Resources/Resources/help/Remove-AzDeploymentScript.md +++ b/src/Resources/Resources/help/Remove-AzDeploymentScript.md @@ -10,6 +10,7 @@ schema: 2.0.0 ## SYNOPSIS Removes a deployment script and its associated resources. + ## SYNTAX ### RemoveDeploymentScriptLogByName (Default) @@ -44,11 +45,25 @@ Deletes a deployment script with the name MyDeploymentScript in resource group D ## PARAMETERS +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: cf +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -DefaultProfile The credentials, account, tenant, and subscription used for communication with Azure. ```yaml -Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer +Type: IAzureContextContainer Parameter Sets: (All) Aliases: AzContext, AzureRmContext, AzureCredential @@ -64,7 +79,7 @@ The fully qualified resource Id of the deployment script. Example: /subscriptions/{subId}/resourceGroups/{rgName}/providers/Microsoft.Resources/deploymentScripts/{deploymentScriptName} ```yaml -Type: System.String +Type: String Parameter Sets: RemoveDeploymentScriptLogByResourceId Aliases: ResourceId @@ -79,7 +94,7 @@ Accept wildcard characters: False The deployment script PowerShell object. ```yaml -Type: Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PsDeploymentScript +Type: PsDeploymentScript Parameter Sets: RemoveDeploymentScriptLogByInputObject Aliases: @@ -94,7 +109,7 @@ Accept wildcard characters: False The name of the resource group. ```yaml -Type: System.String +Type: String Parameter Sets: RemoveDeploymentScriptLogByName Aliases: @@ -109,7 +124,7 @@ Accept wildcard characters: False {{Fill PassThru Description}} ```yaml -Type: System.Management.Automation.SwitchParameter +Type: SwitchParameter Parameter Sets: (All) Aliases: @@ -124,7 +139,7 @@ Accept wildcard characters: False The name of the resource group. ```yaml -Type: System.String +Type: String Parameter Sets: RemoveDeploymentScriptLogByName Aliases: @@ -135,27 +150,12 @@ Accept pipeline input: True (ByPropertyName) Accept wildcard characters: False ``` -### -Confirm -Prompts you for confirmation before running the cmdlet. - -```yaml -Type: System.Management.Automation.SwitchParameter -Parameter Sets: (All) -Aliases: cf - -Required: False -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - ### -WhatIf Shows what would happen if the cmdlet runs. The cmdlet is not run. ```yaml -Type: System.Management.Automation.SwitchParameter +Type: SwitchParameter Parameter Sets: (All) Aliases: wi @@ -167,7 +167,8 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. +For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS @@ -181,4 +182,4 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## NOTES -## RELATED LINKS +## RELATED LINKS \ No newline at end of file diff --git a/src/Resources/Resources/help/Remove-AzTag.md b/src/Resources/Resources/help/Remove-AzTag.md index 72415677fd12..0a6e5b8bfbf8 100644 --- a/src/Resources/Resources/help/Remove-AzTag.md +++ b/src/Resources/Resources/help/Remove-AzTag.md @@ -14,15 +14,22 @@ Deletes predefined Azure tags or values | Deletes the entire set of tags on a re ## SYNTAX ### RemovePredefinedTagParameterSet -``` + +```powershell Remove-AzTag [-Name] [[-Value] ] [-PassThru] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ### RemoveByResourceIdParameterSet -``` -Remove-AzTag [-PassThru] -ResourceId [-DefaultProfile ] [-WhatIf] [-Confirm] - [] + +```powershell +Remove-AzTag + -ResourceId + [-PassThru] + [-DefaultProfile ] + [-WhatIf] + [-Confirm] + [] ``` ## DESCRIPTION @@ -67,8 +74,7 @@ If the value has been applied to any resources or resource groups, the command f ### Example 3: Deletes the entire set of tags on a subscription -``` -powershell +```powershell PS C:\>Remove-AzTag -ResourceId /subscriptions/{subId} ``` @@ -76,8 +82,7 @@ This command deletes the entire set of tags on the subscription with {subId}. It ### Example 4: Deletes the entire set of tags on a resource -``` -powershell +```powershell PS C:\>Remove-AzTag -ResourceId /subscriptions/{subId}/resourcegroups/{rg}/providers/Microsoft.Sql/servers/Server1 -PassThru Id : {Id} @@ -126,16 +131,16 @@ Accept pipeline input: True (ByPropertyName) Accept wildcard characters: False ``` -### -PassThru -Returns an object that represents the deleted tag or the resulting tag with deleted valued. +### -Value +Deletes the specified values from the predefined tag, but does not delete the tag. ```yaml -Type: System.Management.Automation.SwitchParameter -Parameter Sets: (All) +Type: System.String[] +Parameter Sets: RemovePredefinedTagParameterSet Aliases: Required: False -Position: Named +Position: 1 Default value: None Accept pipeline input: True (ByPropertyName) Accept wildcard characters: False @@ -156,16 +161,16 @@ Accept pipeline input: True (ByPropertyName) Accept wildcard characters: False ``` -### -Value -Deletes the specified values from the predefined tag, but does not delete the tag. +### -PassThru +Returns an object that represents the deleted tag or the resulting tag with deleted valued. ```yaml -Type: System.String[] -Parameter Sets: RemovePredefinedTagParameterSet +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) Aliases: Required: False -Position: 1 +Position: Named Default value: None Accept pipeline input: True (ByPropertyName) Accept wildcard characters: False @@ -225,4 +230,4 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable [New-AzTag](./New-AzTag.md) -[Update-AzTag](./Update-AzTag.md) +[Update-AzTag](./Update-AzTag.md) \ No newline at end of file diff --git a/src/Resources/Resources/help/Set-AzManagedApplicationDefinition.md b/src/Resources/Resources/help/Set-AzManagedApplicationDefinition.md index a28a42f879dc..0832c796f5b7 100644 --- a/src/Resources/Resources/help/Set-AzManagedApplicationDefinition.md +++ b/src/Resources/Resources/help/Set-AzManagedApplicationDefinition.md @@ -44,8 +44,6 @@ This command updates the managed application definition description Updates managed application definition. (autogenerated) - - ```powershell Set-AzManagedApplicationDefinition -Id '/subscriptions/mySubId/resourcegroups/myRG/Microsoft.Solutions/applicationDefinitions/myAppDef' -PackageFileUri https://sample.blob.core.windows.net/files/myPackage.zip ``` @@ -267,4 +265,4 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## NOTES -## RELATED LINKS +## RELATED LINKS \ No newline at end of file diff --git a/src/Resources/Resources/help/Unregister-AzProviderFeature.md b/src/Resources/Resources/help/Unregister-AzProviderFeature.md index 0d3184b4702b..be5e83d36145 100644 --- a/src/Resources/Resources/help/Unregister-AzProviderFeature.md +++ b/src/Resources/Resources/help/Unregister-AzProviderFeature.md @@ -35,7 +35,7 @@ This unregisters the AllowApplicationSecurityGroups feature for Microsoft.Networ The credentials, account, tenant, and subscription used for communication with Azure. ```yaml -Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer +Type: IAzureContextContainer Parameter Sets: (All) Aliases: AzContext, AzureRmContext, AzureCredential @@ -50,7 +50,7 @@ Accept wildcard characters: False The feature name. ```yaml -Type: System.String +Type: String Parameter Sets: (All) Aliases: @@ -65,7 +65,7 @@ Accept wildcard characters: False The resource provider namespace. ```yaml -Type: System.String +Type: String Parameter Sets: (All) Aliases: @@ -80,7 +80,7 @@ Accept wildcard characters: False Prompts you for confirmation before running the cmdlet. ```yaml -Type: System.Management.Automation.SwitchParameter +Type: SwitchParameter Parameter Sets: (All) Aliases: cf @@ -96,7 +96,7 @@ Shows what would happen if the cmdlet runs. The cmdlet is not run. ```yaml -Type: System.Management.Automation.SwitchParameter +Type: SwitchParameter Parameter Sets: (All) Aliases: wi @@ -120,4 +120,4 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## NOTES -## RELATED LINKS +## RELATED LINKS \ No newline at end of file diff --git a/src/Resources/Resources/help/Update-AzADServicePrincipal.md b/src/Resources/Resources/help/Update-AzADServicePrincipal.md index 96729b3528bb..32ddf51ffbc9 100644 --- a/src/Resources/Resources/help/Update-AzADServicePrincipal.md +++ b/src/Resources/Resources/help/Update-AzADServicePrincipal.md @@ -68,8 +68,6 @@ Gets the service principal with object id '784136ca-3ae2-4fdd-a388-89d793e7c780' Updates an existing azure active directory service principal. (autogenerated) - - ```powershell Update-AzADServicePrincipal -IdentifierUri https://mySecretApp1 -ObjectId 00000000-0000-0000-0000-00000000000000000 ``` @@ -286,4 +284,4 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## NOTES -## RELATED LINKS +## RELATED LINKS \ No newline at end of file diff --git a/src/Resources/Resources/help/Update-AzTag.md b/src/Resources/Resources/help/Update-AzTag.md index 279aa124d000..449727b513fd 100644 --- a/src/Resources/Resources/help/Update-AzTag.md +++ b/src/Resources/Resources/help/Update-AzTag.md @@ -14,9 +14,16 @@ Selectively updates the set of tags on a resource or subscription. ## SYNTAX -``` -Update-AzTag [-ResourceId] [-Tag] [-Operation] - [-DefaultProfile ] [-WhatIf] [-Confirm] [] +```powershell +Update-AzTag + -ResourceId + -Operation + -Tag + [-DefaultProfile ] + [-WhatIf] + [-Confirm] + [] + ``` ## DESCRIPTION @@ -97,47 +104,48 @@ Accept pipeline input: False Accept wildcard characters: False ``` -### -Operation -The update operation. Options are Merge, Replace and Delete. +### -ResourceId +The resource identifier for the tagged entity. A resource, a resource group or a subscription may be tagged. ```yaml -Type: Microsoft.Azure.Commands.Tags.Model.TagPatchOperation +Type: System.String Parameter Sets: (All) Aliases: Accepted values: Merge, Replace, Delete Required: True -Position: 2 +Position: 0 Default value: None Accept pipeline input: True (ByPropertyName) Accept wildcard characters: False ``` -### -ResourceId -The resource identifier for the tagged entity. A resource, a resource group or a subscription may be tagged. +### -Tag +The set of tags to use for update. ```yaml -Type: System.String +Type: System.Collections.Hashtable Parameter Sets: (All) Aliases: Required: True -Position: 0 +Position: 1 Default value: None Accept pipeline input: True (ByPropertyName) Accept wildcard characters: False ``` -### -Tag -The set of tags to use for update. +### -Operation +The update operation. Options are Merge, Replace and Delete. ```yaml -Type: System.Collections.Hashtable +Type: Microsoft.Azure.Commands.Tags.Model.TagPatchOpeation Parameter Sets: (All) Aliases: +Accepted values: Merge, Replace, Delete Required: True -Position: 1 +Position: 2 Default value: None Accept pipeline input: True (ByPropertyName) Accept wildcard characters: False @@ -197,4 +205,4 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable [New-AzTag](./New-AzTag.md) -[Remove-AzTag](./Remove-AzTag.md) +[Remove-AzTag](./Remove-AzTag.md) \ No newline at end of file From c65f0b8259e326bdb25318b4143d63200ff3d28d Mon Sep 17 00:00:00 2001 From: Gokul Premraj Date: Thu, 20 Aug 2020 13:31:01 -0400 Subject: [PATCH 11/17] Suppress breaking change issues --- .../Az.Resources/BreakingChangeIssues.csv | 31 +++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 tools/StaticAnalysis/Exceptions/Az.Resources/BreakingChangeIssues.csv diff --git a/tools/StaticAnalysis/Exceptions/Az.Resources/BreakingChangeIssues.csv b/tools/StaticAnalysis/Exceptions/Az.Resources/BreakingChangeIssues.csv new file mode 100644 index 000000000000..d8622087015b --- /dev/null +++ b/tools/StaticAnalysis/Exceptions/Az.Resources/BreakingChangeIssues.csv @@ -0,0 +1,31 @@ +AssemblyFileName,ClassName,Target,Severity,ProblemId,Description,Remediation +Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll,Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.GetAzureManagementGroupDeploymentCmdlet,Get-AzManagementGroupDeployment,0,2000,The cmdlet 'Get-AzManagementGroupDeployment' no longer supports the parameter 'ApiVersion' and no alias was found for the original parameter name.,"Add the parameter 'ApiVersion' back to the cmdlet 'Get-AzManagementGroupDeployment', or add an alias to the original parameter name." +Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll,Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.GetAzureManagementGroupDeploymentOperationCmdlet,Get-AzManagementGroupDeploymentOperation,0,2000,The cmdlet 'Get-AzManagementGroupDeploymentOperation' no longer supports the parameter 'ApiVersion' and no alias was found for the original parameter name.,"Add the parameter 'ApiVersion' back to the cmdlet 'Get-AzManagementGroupDeploymentOperation', or add an alias to the original parameter name." +Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll,Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.GetAzureSubscriptionDeploymentCmdlet,Get-AzDeployment,0,2000,The cmdlet 'Get-AzDeployment' no longer supports the parameter 'ApiVersion' and no alias was found for the original parameter name.,"Add the parameter 'ApiVersion' back to the cmdlet 'Get-AzDeployment', or add an alias to the original parameter name." +Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll,Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.GetAzureSubscriptionDeploymentOperationCmdlet,Get-AzDeploymentOperation,0,2000,The cmdlet 'Get-AzDeploymentOperation' no longer supports the parameter 'ApiVersion' and no alias was found for the original parameter name.,"Add the parameter 'ApiVersion' back to the cmdlet 'Get-AzDeploymentOperation', or add an alias to the original parameter name." +Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll,Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.GetAzureSubscriptionDeploymentWhatIfResultCmdlet,Get-AzDeploymentWhatIfResult,0,2000,The cmdlet 'Get-AzDeploymentWhatIfResult' no longer supports the parameter 'ApiVersion' and no alias was found for the original parameter name.,"Add the parameter 'ApiVersion' back to the cmdlet 'Get-AzDeploymentWhatIfResult', or add an alias to the original parameter name." +Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll,Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.GetAzureTenantDeploymentCmdlet,Get-AzTenantDeployment,0,2000,The cmdlet 'Get-AzTenantDeployment' no longer supports the parameter 'ApiVersion' and no alias was found for the original parameter name.,"Add the parameter 'ApiVersion' back to the cmdlet 'Get-AzTenantDeployment', or add an alias to the original parameter name." +Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll,Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.GetAzureTenantDeploymentOperationCmdlet,Get-AzTenantDeploymentOperation,0,2000,The cmdlet 'Get-AzTenantDeploymentOperation' no longer supports the parameter 'ApiVersion' and no alias was found for the original parameter name.,"Add the parameter 'ApiVersion' back to the cmdlet 'Get-AzTenantDeploymentOperation', or add an alias to the original parameter name." +Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll,Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.NewAzureManagementGroupDeploymentCmdlet,New-AzManagementGroupDeployment,0,2000,The cmdlet 'New-AzManagementGroupDeployment' no longer supports the parameter 'ApiVersion' and no alias was found for the original parameter name.,"Add the parameter 'ApiVersion' back to the cmdlet 'New-AzManagementGroupDeployment', or add an alias to the original parameter name." +Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll,Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.NewAzureSubscriptionDeploymentCmdlet,New-AzDeployment,0,2000,The cmdlet 'New-AzDeployment' no longer supports the parameter 'ApiVersion' and no alias was found for the original parameter name.,"Add the parameter 'ApiVersion' back to the cmdlet 'New-AzDeployment', or add an alias to the original parameter name." +Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll,Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.NewAzureTenantDeploymentCmdlet,New-AzTenantDeployment,0,2000,The cmdlet 'New-AzTenantDeployment' no longer supports the parameter 'ApiVersion' and no alias was found for the original parameter name.,"Add the parameter 'ApiVersion' back to the cmdlet 'New-AzTenantDeployment', or add an alias to the original parameter name." +Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll,Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.RemoveAzureManagementGroupDeploymentCmdlet,Remove-AzManagementGroupDeployment,0,2000,The cmdlet 'Remove-AzManagementGroupDeployment' no longer supports the parameter 'ApiVersion' and no alias was found for the original parameter name.,"Add the parameter 'ApiVersion' back to the cmdlet 'Remove-AzManagementGroupDeployment', or add an alias to the original parameter name." +Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll,Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.RemoveAzureSubscriptionDeploymentCmdlet,Remove-AzDeployment,0,2000,The cmdlet 'Remove-AzDeployment' no longer supports the parameter 'ApiVersion' and no alias was found for the original parameter name.,"Add the parameter 'ApiVersion' back to the cmdlet 'Remove-AzDeployment', or add an alias to the original parameter name." +Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll,Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.RemoveAzureTenantDeploymentCmdlet,Remove-AzTenantDeployment,0,2000,The cmdlet 'Remove-AzTenantDeployment' no longer supports the parameter 'ApiVersion' and no alias was found for the original parameter name.,"Add the parameter 'ApiVersion' back to the cmdlet 'Remove-AzTenantDeployment', or add an alias to the original parameter name." +Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll,Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.SaveAzureManagementGroupDeploymentTemplateCmdlet,Save-AzManagementGroupDeploymentTemplate,0,2000,The cmdlet 'Save-AzManagementGroupDeploymentTemplate' no longer supports the parameter 'ApiVersion' and no alias was found for the original parameter name.,"Add the parameter 'ApiVersion' back to the cmdlet 'Save-AzManagementGroupDeploymentTemplate', or add an alias to the original parameter name." +Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll,Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.SaveAzureSubscriptionDeploymentTemplateCmdlet,Save-AzDeploymentTemplate,0,2000,The cmdlet 'Save-AzDeploymentTemplate' no longer supports the parameter 'ApiVersion' and no alias was found for the original parameter name.,"Add the parameter 'ApiVersion' back to the cmdlet 'Save-AzDeploymentTemplate', or add an alias to the original parameter name." +Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll,Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.SaveAzureTenantDeploymentTemplateCmdlet,Save-AzTenantDeploymentTemplate,0,2000,The cmdlet 'Save-AzTenantDeploymentTemplate' no longer supports the parameter 'ApiVersion' and no alias was found for the original parameter name.,"Add the parameter 'ApiVersion' back to the cmdlet 'Save-AzTenantDeploymentTemplate', or add an alias to the original parameter name." +Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll,Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.StopAzureManagementGroupDeploymentCmdlet,Stop-AzManagementGroupDeployment,0,2000,The cmdlet 'Stop-AzManagementGroupDeployment' no longer supports the parameter 'ApiVersion' and no alias was found for the original parameter name.,"Add the parameter 'ApiVersion' back to the cmdlet 'Stop-AzManagementGroupDeployment', or add an alias to the original parameter name." +Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll,Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.StopAzureSubscriptionDeploymentCmdlet,Stop-AzDeployment,0,2000,The cmdlet 'Stop-AzDeployment' no longer supports the parameter 'ApiVersion' and no alias was found for the original parameter name.,"Add the parameter 'ApiVersion' back to the cmdlet 'Stop-AzDeployment', or add an alias to the original parameter name." +Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll,Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.StopAzureTenantDeploymentCmdlet,Stop-AzTenantDeployment,0,2000,The cmdlet 'Stop-AzTenantDeployment' no longer supports the parameter 'ApiVersion' and no alias was found for the original parameter name.,"Add the parameter 'ApiVersion' back to the cmdlet 'Stop-AzTenantDeployment', or add an alias to the original parameter name." +Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll,Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.TestAzureManagementGroupDeploymentCmdlet,Test-AzManagementGroupDeployment,0,2000,The cmdlet 'Test-AzManagementGroupDeployment' no longer supports the parameter 'ApiVersion' and no alias was found for the original parameter name.,"Add the parameter 'ApiVersion' back to the cmdlet 'Test-AzManagementGroupDeployment', or add an alias to the original parameter name." +Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll,Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.TestAzureSubscriptionDeploymentCmdlet,Test-AzDeployment,0,2000,The cmdlet 'Test-AzDeployment' no longer supports the parameter 'ApiVersion' and no alias was found for the original parameter name.,"Add the parameter 'ApiVersion' back to the cmdlet 'Test-AzDeployment', or add an alias to the original parameter name." +Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll,Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.TestAzureTenantDeploymentCmdlet,Test-AzTenantDeployment,0,2000,The cmdlet 'Test-AzTenantDeployment' no longer supports the parameter 'ApiVersion' and no alias was found for the original parameter name.,"Add the parameter 'ApiVersion' back to the cmdlet 'Test-AzTenantDeployment', or add an alias to the original parameter name." +Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll,Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.GetAzureResourceGroupDeploymentCmdlet,Get-AzResourceGroupDeployment,0,2000,The cmdlet 'Get-AzResourceGroupDeployment' no longer supports the parameter 'ApiVersion' and no alias was found for the original parameter name.,"Add the parameter 'ApiVersion' back to the cmdlet 'Get-AzResourceGroupDeployment', or add an alias to the original parameter name." +Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll,Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.GetAzureResourceGroupDeploymentOperationCmdlet,Get-AzResourceGroupDeploymentOperation,0,2000,The cmdlet 'Get-AzResourceGroupDeploymentOperation' no longer supports the parameter 'ApiVersion' and no alias was found for the original parameter name.,"Add the parameter 'ApiVersion' back to the cmdlet 'Get-AzResourceGroupDeploymentOperation', or add an alias to the original parameter name." +Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll,Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.GetAzureResourceGroupDeploymentWhatIfResultCmdlet,Get-AzResourceGroupDeploymentWhatIfResult,0,2000,The cmdlet 'Get-AzResourceGroupDeploymentWhatIfResult' no longer supports the parameter 'ApiVersion' and no alias was found for the original parameter name.,"Add the parameter 'ApiVersion' back to the cmdlet 'Get-AzResourceGroupDeploymentWhatIfResult', or add an alias to the original parameter name." +Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll,Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.NewAzureResourceGroupDeploymentCmdlet,New-AzResourceGroupDeployment,0,2000,The cmdlet 'New-AzResourceGroupDeployment' no longer supports the parameter 'ApiVersion' and no alias was found for the original parameter name.,"Add the parameter 'ApiVersion' back to the cmdlet 'New-AzResourceGroupDeployment', or add an alias to the original parameter name." +Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll,Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.RemoveAzureResourceGroupDeploymentCmdlet,Remove-AzResourceGroupDeployment,0,2000,The cmdlet 'Remove-AzResourceGroupDeployment' no longer supports the parameter 'ApiVersion' and no alias was found for the original parameter name.,"Add the parameter 'ApiVersion' back to the cmdlet 'Remove-AzResourceGroupDeployment', or add an alias to the original parameter name." +Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll,Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.SaveAzureResourceGroupDeploymentTemplateCmdlet,Save-AzResourceGroupDeploymentTemplate,0,2000,The cmdlet 'Save-AzResourceGroupDeploymentTemplate' no longer supports the parameter 'ApiVersion' and no alias was found for the original parameter name.,"Add the parameter 'ApiVersion' back to the cmdlet 'Save-AzResourceGroupDeploymentTemplate', or add an alias to the original parameter name." +Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll,Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.StopAzureResourceGroupDeploymentCmdlet,Stop-AzResourceGroupDeployment,0,2000,The cmdlet 'Stop-AzResourceGroupDeployment' no longer supports the parameter 'ApiVersion' and no alias was found for the original parameter name.,"Add the parameter 'ApiVersion' back to the cmdlet 'Stop-AzResourceGroupDeployment', or add an alias to the original parameter name." +Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll,Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.TestAzureResourceGroupDeploymentCmdlet,Test-AzResourceGroupDeployment,0,2000,The cmdlet 'Test-AzResourceGroupDeployment' no longer supports the parameter 'ApiVersion' and no alias was found for the original parameter name.,"Add the parameter 'ApiVersion' back to the cmdlet 'Test-AzResourceGroupDeployment', or add an alias to the original parameter name." From 4fd788d6a22960b36ed1fe6e250e46a615061f87 Mon Sep 17 00:00:00 2001 From: Gokul Premraj Date: Thu, 20 Aug 2020 18:47:16 -0400 Subject: [PATCH 12/17] remove subscriptionId param --- .../GetAzureResourceGroupDeploymentOperationCmdlet.cs | 8 -------- .../Exceptions/Az.Resources/BreakingChangeIssues.csv | 1 - 2 files changed, 9 deletions(-) diff --git a/src/Resources/ResourceManager/Implementation/ResourceGroupDeployments/GetAzureResourceGroupDeploymentOperationCmdlet.cs b/src/Resources/ResourceManager/Implementation/ResourceGroupDeployments/GetAzureResourceGroupDeploymentOperationCmdlet.cs index 1999fca9449a..4c55c454cc80 100644 --- a/src/Resources/ResourceManager/Implementation/ResourceGroupDeployments/GetAzureResourceGroupDeploymentOperationCmdlet.cs +++ b/src/Resources/ResourceManager/Implementation/ResourceGroupDeployments/GetAzureResourceGroupDeploymentOperationCmdlet.cs @@ -35,14 +35,6 @@ public class GetAzureResourceGroupDeploymentOperationCmdlet : ResourceManagerCmd [ValidateNotNullOrEmpty] public string DeploymentName { get; set; } - /// - /// 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; } - /// /// Gets or sets the resource group name parameter. /// diff --git a/tools/StaticAnalysis/Exceptions/Az.Resources/BreakingChangeIssues.csv b/tools/StaticAnalysis/Exceptions/Az.Resources/BreakingChangeIssues.csv index d8622087015b..ff40b1db8dd8 100644 --- a/tools/StaticAnalysis/Exceptions/Az.Resources/BreakingChangeIssues.csv +++ b/tools/StaticAnalysis/Exceptions/Az.Resources/BreakingChangeIssues.csv @@ -1,4 +1,3 @@ -AssemblyFileName,ClassName,Target,Severity,ProblemId,Description,Remediation Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll,Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.GetAzureManagementGroupDeploymentCmdlet,Get-AzManagementGroupDeployment,0,2000,The cmdlet 'Get-AzManagementGroupDeployment' no longer supports the parameter 'ApiVersion' and no alias was found for the original parameter name.,"Add the parameter 'ApiVersion' back to the cmdlet 'Get-AzManagementGroupDeployment', or add an alias to the original parameter name." Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll,Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.GetAzureManagementGroupDeploymentOperationCmdlet,Get-AzManagementGroupDeploymentOperation,0,2000,The cmdlet 'Get-AzManagementGroupDeploymentOperation' no longer supports the parameter 'ApiVersion' and no alias was found for the original parameter name.,"Add the parameter 'ApiVersion' back to the cmdlet 'Get-AzManagementGroupDeploymentOperation', or add an alias to the original parameter name." Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll,Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.GetAzureSubscriptionDeploymentCmdlet,Get-AzDeployment,0,2000,The cmdlet 'Get-AzDeployment' no longer supports the parameter 'ApiVersion' and no alias was found for the original parameter name.,"Add the parameter 'ApiVersion' back to the cmdlet 'Get-AzDeployment', or add an alias to the original parameter name." From 2e1f9490305b6af85c5ecc046929e7df6d5a3fc5 Mon Sep 17 00:00:00 2001 From: Gokul Premraj Date: Mon, 24 Aug 2020 14:47:53 -0400 Subject: [PATCH 13/17] Update breakingchanges csv --- .../CmdletBase/ResourceManagerCmdletBase.cs | 4 +- ...ResourceManagerCmdletBaseWithAPiVersion.cs | 10 +++ ...eResourceGroupDeploymentOperationCmdlet.cs | 3 - .../Az.Resources/BreakingChangeIssues.csv | 61 ++++++++++--------- 4 files changed, 42 insertions(+), 36 deletions(-) diff --git a/src/Resources/ResourceManager/Implementation/CmdletBase/ResourceManagerCmdletBase.cs b/src/Resources/ResourceManager/Implementation/CmdletBase/ResourceManagerCmdletBase.cs index 678750ece5c9..f2e2811d7a57 100644 --- a/src/Resources/ResourceManager/Implementation/CmdletBase/ResourceManagerCmdletBase.cs +++ b/src/Resources/ResourceManager/Implementation/CmdletBase/ResourceManagerCmdletBase.cs @@ -25,7 +25,6 @@ namespace Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation using Microsoft.Azure.Commands.ResourceManager.Cmdlets.RestClients; using Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkClient; using Microsoft.Rest.Azure; - using Microsoft.WindowsAzure.Commands.Common.CustomAttributes; using Newtonsoft.Json.Linq; using System; using System.Collections.Generic; @@ -33,7 +32,6 @@ namespace Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation using System.Management.Automation; using System.Runtime.ExceptionServices; using System.Threading; - using System.Threading.Tasks; /// /// The base class for resource manager cmdlets. @@ -286,7 +284,7 @@ public SubscriptionSdkClient SubscriptionSdkClient set { this.subscriptionSdkClient = value; } } - protected Dictionary GetCmdletHeaders() + private Dictionary GetCmdletHeaders() { return new Dictionary { diff --git a/src/Resources/ResourceManager/Implementation/CmdletBase/ResourceManagerCmdletBaseWithAPiVersion.cs b/src/Resources/ResourceManager/Implementation/CmdletBase/ResourceManagerCmdletBaseWithAPiVersion.cs index 203f33ada7bd..235cbe538fe3 100644 --- a/src/Resources/ResourceManager/Implementation/CmdletBase/ResourceManagerCmdletBaseWithAPiVersion.cs +++ b/src/Resources/ResourceManager/Implementation/CmdletBase/ResourceManagerCmdletBaseWithAPiVersion.cs @@ -14,6 +14,7 @@ using System.Management.Automation; using System.Threading.Tasks; +using System.Collections.Generic; namespace Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation { @@ -26,6 +27,15 @@ public abstract class ResourceManagerCmdletBaseWithAPiVersion : ResourceManagerC [ValidateNotNullOrEmpty] public string ApiVersion { get; set; } + private Dictionary GetCmdletHeaders() + { + return new Dictionary + { + {"ParameterSetName", this.ParameterSetName }, + {"CommandName", this.CommandRuntime.ToString() } + }; + } + /// /// Determines the API version. /// diff --git a/src/Resources/ResourceManager/Implementation/ResourceGroupDeployments/GetAzureResourceGroupDeploymentOperationCmdlet.cs b/src/Resources/ResourceManager/Implementation/ResourceGroupDeployments/GetAzureResourceGroupDeploymentOperationCmdlet.cs index 4c55c454cc80..e13f080f9092 100644 --- a/src/Resources/ResourceManager/Implementation/ResourceGroupDeployments/GetAzureResourceGroupDeploymentOperationCmdlet.cs +++ b/src/Resources/ResourceManager/Implementation/ResourceGroupDeployments/GetAzureResourceGroupDeploymentOperationCmdlet.cs @@ -15,11 +15,8 @@ namespace Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation { using Common.ArgumentCompleters; - 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. diff --git a/tools/StaticAnalysis/Exceptions/Az.Resources/BreakingChangeIssues.csv b/tools/StaticAnalysis/Exceptions/Az.Resources/BreakingChangeIssues.csv index ff40b1db8dd8..115fea8ad2b8 100644 --- a/tools/StaticAnalysis/Exceptions/Az.Resources/BreakingChangeIssues.csv +++ b/tools/StaticAnalysis/Exceptions/Az.Resources/BreakingChangeIssues.csv @@ -1,30 +1,31 @@ -Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll,Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.GetAzureManagementGroupDeploymentCmdlet,Get-AzManagementGroupDeployment,0,2000,The cmdlet 'Get-AzManagementGroupDeployment' no longer supports the parameter 'ApiVersion' and no alias was found for the original parameter name.,"Add the parameter 'ApiVersion' back to the cmdlet 'Get-AzManagementGroupDeployment', or add an alias to the original parameter name." -Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll,Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.GetAzureManagementGroupDeploymentOperationCmdlet,Get-AzManagementGroupDeploymentOperation,0,2000,The cmdlet 'Get-AzManagementGroupDeploymentOperation' no longer supports the parameter 'ApiVersion' and no alias was found for the original parameter name.,"Add the parameter 'ApiVersion' back to the cmdlet 'Get-AzManagementGroupDeploymentOperation', or add an alias to the original parameter name." -Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll,Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.GetAzureSubscriptionDeploymentCmdlet,Get-AzDeployment,0,2000,The cmdlet 'Get-AzDeployment' no longer supports the parameter 'ApiVersion' and no alias was found for the original parameter name.,"Add the parameter 'ApiVersion' back to the cmdlet 'Get-AzDeployment', or add an alias to the original parameter name." -Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll,Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.GetAzureSubscriptionDeploymentOperationCmdlet,Get-AzDeploymentOperation,0,2000,The cmdlet 'Get-AzDeploymentOperation' no longer supports the parameter 'ApiVersion' and no alias was found for the original parameter name.,"Add the parameter 'ApiVersion' back to the cmdlet 'Get-AzDeploymentOperation', or add an alias to the original parameter name." -Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll,Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.GetAzureSubscriptionDeploymentWhatIfResultCmdlet,Get-AzDeploymentWhatIfResult,0,2000,The cmdlet 'Get-AzDeploymentWhatIfResult' no longer supports the parameter 'ApiVersion' and no alias was found for the original parameter name.,"Add the parameter 'ApiVersion' back to the cmdlet 'Get-AzDeploymentWhatIfResult', or add an alias to the original parameter name." -Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll,Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.GetAzureTenantDeploymentCmdlet,Get-AzTenantDeployment,0,2000,The cmdlet 'Get-AzTenantDeployment' no longer supports the parameter 'ApiVersion' and no alias was found for the original parameter name.,"Add the parameter 'ApiVersion' back to the cmdlet 'Get-AzTenantDeployment', or add an alias to the original parameter name." -Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll,Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.GetAzureTenantDeploymentOperationCmdlet,Get-AzTenantDeploymentOperation,0,2000,The cmdlet 'Get-AzTenantDeploymentOperation' no longer supports the parameter 'ApiVersion' and no alias was found for the original parameter name.,"Add the parameter 'ApiVersion' back to the cmdlet 'Get-AzTenantDeploymentOperation', or add an alias to the original parameter name." -Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll,Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.NewAzureManagementGroupDeploymentCmdlet,New-AzManagementGroupDeployment,0,2000,The cmdlet 'New-AzManagementGroupDeployment' no longer supports the parameter 'ApiVersion' and no alias was found for the original parameter name.,"Add the parameter 'ApiVersion' back to the cmdlet 'New-AzManagementGroupDeployment', or add an alias to the original parameter name." -Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll,Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.NewAzureSubscriptionDeploymentCmdlet,New-AzDeployment,0,2000,The cmdlet 'New-AzDeployment' no longer supports the parameter 'ApiVersion' and no alias was found for the original parameter name.,"Add the parameter 'ApiVersion' back to the cmdlet 'New-AzDeployment', or add an alias to the original parameter name." -Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll,Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.NewAzureTenantDeploymentCmdlet,New-AzTenantDeployment,0,2000,The cmdlet 'New-AzTenantDeployment' no longer supports the parameter 'ApiVersion' and no alias was found for the original parameter name.,"Add the parameter 'ApiVersion' back to the cmdlet 'New-AzTenantDeployment', or add an alias to the original parameter name." -Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll,Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.RemoveAzureManagementGroupDeploymentCmdlet,Remove-AzManagementGroupDeployment,0,2000,The cmdlet 'Remove-AzManagementGroupDeployment' no longer supports the parameter 'ApiVersion' and no alias was found for the original parameter name.,"Add the parameter 'ApiVersion' back to the cmdlet 'Remove-AzManagementGroupDeployment', or add an alias to the original parameter name." -Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll,Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.RemoveAzureSubscriptionDeploymentCmdlet,Remove-AzDeployment,0,2000,The cmdlet 'Remove-AzDeployment' no longer supports the parameter 'ApiVersion' and no alias was found for the original parameter name.,"Add the parameter 'ApiVersion' back to the cmdlet 'Remove-AzDeployment', or add an alias to the original parameter name." -Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll,Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.RemoveAzureTenantDeploymentCmdlet,Remove-AzTenantDeployment,0,2000,The cmdlet 'Remove-AzTenantDeployment' no longer supports the parameter 'ApiVersion' and no alias was found for the original parameter name.,"Add the parameter 'ApiVersion' back to the cmdlet 'Remove-AzTenantDeployment', or add an alias to the original parameter name." -Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll,Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.SaveAzureManagementGroupDeploymentTemplateCmdlet,Save-AzManagementGroupDeploymentTemplate,0,2000,The cmdlet 'Save-AzManagementGroupDeploymentTemplate' no longer supports the parameter 'ApiVersion' and no alias was found for the original parameter name.,"Add the parameter 'ApiVersion' back to the cmdlet 'Save-AzManagementGroupDeploymentTemplate', or add an alias to the original parameter name." -Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll,Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.SaveAzureSubscriptionDeploymentTemplateCmdlet,Save-AzDeploymentTemplate,0,2000,The cmdlet 'Save-AzDeploymentTemplate' no longer supports the parameter 'ApiVersion' and no alias was found for the original parameter name.,"Add the parameter 'ApiVersion' back to the cmdlet 'Save-AzDeploymentTemplate', or add an alias to the original parameter name." -Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll,Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.SaveAzureTenantDeploymentTemplateCmdlet,Save-AzTenantDeploymentTemplate,0,2000,The cmdlet 'Save-AzTenantDeploymentTemplate' no longer supports the parameter 'ApiVersion' and no alias was found for the original parameter name.,"Add the parameter 'ApiVersion' back to the cmdlet 'Save-AzTenantDeploymentTemplate', or add an alias to the original parameter name." -Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll,Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.StopAzureManagementGroupDeploymentCmdlet,Stop-AzManagementGroupDeployment,0,2000,The cmdlet 'Stop-AzManagementGroupDeployment' no longer supports the parameter 'ApiVersion' and no alias was found for the original parameter name.,"Add the parameter 'ApiVersion' back to the cmdlet 'Stop-AzManagementGroupDeployment', or add an alias to the original parameter name." -Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll,Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.StopAzureSubscriptionDeploymentCmdlet,Stop-AzDeployment,0,2000,The cmdlet 'Stop-AzDeployment' no longer supports the parameter 'ApiVersion' and no alias was found for the original parameter name.,"Add the parameter 'ApiVersion' back to the cmdlet 'Stop-AzDeployment', or add an alias to the original parameter name." -Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll,Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.StopAzureTenantDeploymentCmdlet,Stop-AzTenantDeployment,0,2000,The cmdlet 'Stop-AzTenantDeployment' no longer supports the parameter 'ApiVersion' and no alias was found for the original parameter name.,"Add the parameter 'ApiVersion' back to the cmdlet 'Stop-AzTenantDeployment', or add an alias to the original parameter name." -Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll,Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.TestAzureManagementGroupDeploymentCmdlet,Test-AzManagementGroupDeployment,0,2000,The cmdlet 'Test-AzManagementGroupDeployment' no longer supports the parameter 'ApiVersion' and no alias was found for the original parameter name.,"Add the parameter 'ApiVersion' back to the cmdlet 'Test-AzManagementGroupDeployment', or add an alias to the original parameter name." -Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll,Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.TestAzureSubscriptionDeploymentCmdlet,Test-AzDeployment,0,2000,The cmdlet 'Test-AzDeployment' no longer supports the parameter 'ApiVersion' and no alias was found for the original parameter name.,"Add the parameter 'ApiVersion' back to the cmdlet 'Test-AzDeployment', or add an alias to the original parameter name." -Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll,Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.TestAzureTenantDeploymentCmdlet,Test-AzTenantDeployment,0,2000,The cmdlet 'Test-AzTenantDeployment' no longer supports the parameter 'ApiVersion' and no alias was found for the original parameter name.,"Add the parameter 'ApiVersion' back to the cmdlet 'Test-AzTenantDeployment', or add an alias to the original parameter name." -Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll,Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.GetAzureResourceGroupDeploymentCmdlet,Get-AzResourceGroupDeployment,0,2000,The cmdlet 'Get-AzResourceGroupDeployment' no longer supports the parameter 'ApiVersion' and no alias was found for the original parameter name.,"Add the parameter 'ApiVersion' back to the cmdlet 'Get-AzResourceGroupDeployment', or add an alias to the original parameter name." -Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll,Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.GetAzureResourceGroupDeploymentOperationCmdlet,Get-AzResourceGroupDeploymentOperation,0,2000,The cmdlet 'Get-AzResourceGroupDeploymentOperation' no longer supports the parameter 'ApiVersion' and no alias was found for the original parameter name.,"Add the parameter 'ApiVersion' back to the cmdlet 'Get-AzResourceGroupDeploymentOperation', or add an alias to the original parameter name." -Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll,Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.GetAzureResourceGroupDeploymentWhatIfResultCmdlet,Get-AzResourceGroupDeploymentWhatIfResult,0,2000,The cmdlet 'Get-AzResourceGroupDeploymentWhatIfResult' no longer supports the parameter 'ApiVersion' and no alias was found for the original parameter name.,"Add the parameter 'ApiVersion' back to the cmdlet 'Get-AzResourceGroupDeploymentWhatIfResult', or add an alias to the original parameter name." -Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll,Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.NewAzureResourceGroupDeploymentCmdlet,New-AzResourceGroupDeployment,0,2000,The cmdlet 'New-AzResourceGroupDeployment' no longer supports the parameter 'ApiVersion' and no alias was found for the original parameter name.,"Add the parameter 'ApiVersion' back to the cmdlet 'New-AzResourceGroupDeployment', or add an alias to the original parameter name." -Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll,Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.RemoveAzureResourceGroupDeploymentCmdlet,Remove-AzResourceGroupDeployment,0,2000,The cmdlet 'Remove-AzResourceGroupDeployment' no longer supports the parameter 'ApiVersion' and no alias was found for the original parameter name.,"Add the parameter 'ApiVersion' back to the cmdlet 'Remove-AzResourceGroupDeployment', or add an alias to the original parameter name." -Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll,Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.SaveAzureResourceGroupDeploymentTemplateCmdlet,Save-AzResourceGroupDeploymentTemplate,0,2000,The cmdlet 'Save-AzResourceGroupDeploymentTemplate' no longer supports the parameter 'ApiVersion' and no alias was found for the original parameter name.,"Add the parameter 'ApiVersion' back to the cmdlet 'Save-AzResourceGroupDeploymentTemplate', or add an alias to the original parameter name." -Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll,Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.StopAzureResourceGroupDeploymentCmdlet,Stop-AzResourceGroupDeployment,0,2000,The cmdlet 'Stop-AzResourceGroupDeployment' no longer supports the parameter 'ApiVersion' and no alias was found for the original parameter name.,"Add the parameter 'ApiVersion' back to the cmdlet 'Stop-AzResourceGroupDeployment', or add an alias to the original parameter name." -Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll,Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.TestAzureResourceGroupDeploymentCmdlet,Test-AzResourceGroupDeployment,0,2000,The cmdlet 'Test-AzResourceGroupDeployment' no longer supports the parameter 'ApiVersion' and no alias was found for the original parameter name.,"Add the parameter 'ApiVersion' back to the cmdlet 'Test-AzResourceGroupDeployment', or add an alias to the original parameter name." +"AssemblyFileName","ClassName","Target","Severity","ProblemId","Description","Remediation" +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.GetAzureManagementGroupDeploymentCmdlet","Get-AzManagementGroupDeployment","0","2000","The cmdlet 'Get-AzManagementGroupDeployment' no longer supports the parameter 'ApiVersion' and no alias was found for the original parameter name.","Add the parameter 'ApiVersion' back to the cmdlet 'Get-AzManagementGroupDeployment', or add an alias to the original parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.GetAzureManagementGroupDeploymentOperationCmdlet","Get-AzManagementGroupDeploymentOperation","0","2000","The cmdlet 'Get-AzManagementGroupDeploymentOperation' no longer supports the parameter 'ApiVersion' and no alias was found for the original parameter name.","Add the parameter 'ApiVersion' back to the cmdlet 'Get-AzManagementGroupDeploymentOperation', or add an alias to the original parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.GetAzureSubscriptionDeploymentCmdlet","Get-AzDeployment","0","2000","The cmdlet 'Get-AzDeployment' no longer supports the parameter 'ApiVersion' and no alias was found for the original parameter name.","Add the parameter 'ApiVersion' back to the cmdlet 'Get-AzDeployment', or add an alias to the original parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.GetAzureSubscriptionDeploymentOperationCmdlet","Get-AzDeploymentOperation","0","2000","The cmdlet 'Get-AzDeploymentOperation' no longer supports the parameter 'ApiVersion' and no alias was found for the original parameter name.","Add the parameter 'ApiVersion' back to the cmdlet 'Get-AzDeploymentOperation', or add an alias to the original parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.GetAzureSubscriptionDeploymentWhatIfResultCmdlet","Get-AzDeploymentWhatIfResult","0","2000","The cmdlet 'Get-AzDeploymentWhatIfResult' no longer supports the parameter 'ApiVersion' and no alias was found for the original parameter name.","Add the parameter 'ApiVersion' back to the cmdlet 'Get-AzDeploymentWhatIfResult', or add an alias to the original parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.GetAzureTenantDeploymentCmdlet","Get-AzTenantDeployment","0","2000","The cmdlet 'Get-AzTenantDeployment' no longer supports the parameter 'ApiVersion' and no alias was found for the original parameter name.","Add the parameter 'ApiVersion' back to the cmdlet 'Get-AzTenantDeployment', or add an alias to the original parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.GetAzureTenantDeploymentOperationCmdlet","Get-AzTenantDeploymentOperation","0","2000","The cmdlet 'Get-AzTenantDeploymentOperation' no longer supports the parameter 'ApiVersion' and no alias was found for the original parameter name.","Add the parameter 'ApiVersion' back to the cmdlet 'Get-AzTenantDeploymentOperation', or add an alias to the original parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.NewAzureManagementGroupDeploymentCmdlet","New-AzManagementGroupDeployment","0","2000","The cmdlet 'New-AzManagementGroupDeployment' no longer supports the parameter 'ApiVersion' and no alias was found for the original parameter name.","Add the parameter 'ApiVersion' back to the cmdlet 'New-AzManagementGroupDeployment', or add an alias to the original parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.NewAzureSubscriptionDeploymentCmdlet","New-AzDeployment","0","2000","The cmdlet 'New-AzDeployment' no longer supports the parameter 'ApiVersion' and no alias was found for the original parameter name.","Add the parameter 'ApiVersion' back to the cmdlet 'New-AzDeployment', or add an alias to the original parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.NewAzureTenantDeploymentCmdlet","New-AzTenantDeployment","0","2000","The cmdlet 'New-AzTenantDeployment' no longer supports the parameter 'ApiVersion' and no alias was found for the original parameter name.","Add the parameter 'ApiVersion' back to the cmdlet 'New-AzTenantDeployment', or add an alias to the original parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.RemoveAzureManagementGroupDeploymentCmdlet","Remove-AzManagementGroupDeployment","0","2000","The cmdlet 'Remove-AzManagementGroupDeployment' no longer supports the parameter 'ApiVersion' and no alias was found for the original parameter name.","Add the parameter 'ApiVersion' back to the cmdlet 'Remove-AzManagementGroupDeployment', or add an alias to the original parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.RemoveAzureSubscriptionDeploymentCmdlet","Remove-AzDeployment","0","2000","The cmdlet 'Remove-AzDeployment' no longer supports the parameter 'ApiVersion' and no alias was found for the original parameter name.","Add the parameter 'ApiVersion' back to the cmdlet 'Remove-AzDeployment', or add an alias to the original parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.RemoveAzureTenantDeploymentCmdlet","Remove-AzTenantDeployment","0","2000","The cmdlet 'Remove-AzTenantDeployment' no longer supports the parameter 'ApiVersion' and no alias was found for the original parameter name.","Add the parameter 'ApiVersion' back to the cmdlet 'Remove-AzTenantDeployment', or add an alias to the original parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.SaveAzureManagementGroupDeploymentTemplateCmdlet","Save-AzManagementGroupDeploymentTemplate","0","2000","The cmdlet 'Save-AzManagementGroupDeploymentTemplate' no longer supports the parameter 'ApiVersion' and no alias was found for the original parameter name.","Add the parameter 'ApiVersion' back to the cmdlet 'Save-AzManagementGroupDeploymentTemplate', or add an alias to the original parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.SaveAzureSubscriptionDeploymentTemplateCmdlet","Save-AzDeploymentTemplate","0","2000","The cmdlet 'Save-AzDeploymentTemplate' no longer supports the parameter 'ApiVersion' and no alias was found for the original parameter name.","Add the parameter 'ApiVersion' back to the cmdlet 'Save-AzDeploymentTemplate', or add an alias to the original parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.SaveAzureTenantDeploymentTemplateCmdlet","Save-AzTenantDeploymentTemplate","0","2000","The cmdlet 'Save-AzTenantDeploymentTemplate' no longer supports the parameter 'ApiVersion' and no alias was found for the original parameter name.","Add the parameter 'ApiVersion' back to the cmdlet 'Save-AzTenantDeploymentTemplate', or add an alias to the original parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.StopAzureManagementGroupDeploymentCmdlet","Stop-AzManagementGroupDeployment","0","2000","The cmdlet 'Stop-AzManagementGroupDeployment' no longer supports the parameter 'ApiVersion' and no alias was found for the original parameter name.","Add the parameter 'ApiVersion' back to the cmdlet 'Stop-AzManagementGroupDeployment', or add an alias to the original parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.StopAzureSubscriptionDeploymentCmdlet","Stop-AzDeployment","0","2000","The cmdlet 'Stop-AzDeployment' no longer supports the parameter 'ApiVersion' and no alias was found for the original parameter name.","Add the parameter 'ApiVersion' back to the cmdlet 'Stop-AzDeployment', or add an alias to the original parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.StopAzureTenantDeploymentCmdlet","Stop-AzTenantDeployment","0","2000","The cmdlet 'Stop-AzTenantDeployment' no longer supports the parameter 'ApiVersion' and no alias was found for the original parameter name.","Add the parameter 'ApiVersion' back to the cmdlet 'Stop-AzTenantDeployment', or add an alias to the original parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.TestAzureManagementGroupDeploymentCmdlet","Test-AzManagementGroupDeployment","0","2000","The cmdlet 'Test-AzManagementGroupDeployment' no longer supports the parameter 'ApiVersion' and no alias was found for the original parameter name.","Add the parameter 'ApiVersion' back to the cmdlet 'Test-AzManagementGroupDeployment', or add an alias to the original parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.TestAzureSubscriptionDeploymentCmdlet","Test-AzDeployment","0","2000","The cmdlet 'Test-AzDeployment' no longer supports the parameter 'ApiVersion' and no alias was found for the original parameter name.","Add the parameter 'ApiVersion' back to the cmdlet 'Test-AzDeployment', or add an alias to the original parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.TestAzureTenantDeploymentCmdlet","Test-AzTenantDeployment","0","2000","The cmdlet 'Test-AzTenantDeployment' no longer supports the parameter 'ApiVersion' and no alias was found for the original parameter name.","Add the parameter 'ApiVersion' back to the cmdlet 'Test-AzTenantDeployment', or add an alias to the original parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.GetAzureResourceGroupDeploymentCmdlet","Get-AzResourceGroupDeployment","0","2000","The cmdlet 'Get-AzResourceGroupDeployment' no longer supports the parameter 'ApiVersion' and no alias was found for the original parameter name.","Add the parameter 'ApiVersion' back to the cmdlet 'Get-AzResourceGroupDeployment', or add an alias to the original parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.GetAzureResourceGroupDeploymentOperationCmdlet","Get-AzResourceGroupDeploymentOperation","0","2000","The cmdlet 'Get-AzResourceGroupDeploymentOperation' no longer supports the parameter 'ApiVersion' and no alias was found for the original parameter name.","Add the parameter 'ApiVersion' back to the cmdlet 'Get-AzResourceGroupDeploymentOperation', or add an alias to the original parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.GetAzureResourceGroupDeploymentWhatIfResultCmdlet","Get-AzResourceGroupDeploymentWhatIfResult","0","2000","The cmdlet 'Get-AzResourceGroupDeploymentWhatIfResult' no longer supports the parameter 'ApiVersion' and no alias was found for the original parameter name.","Add the parameter 'ApiVersion' back to the cmdlet 'Get-AzResourceGroupDeploymentWhatIfResult', or add an alias to the original parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.NewAzureResourceGroupDeploymentCmdlet","New-AzResourceGroupDeployment","0","2000","The cmdlet 'New-AzResourceGroupDeployment' no longer supports the parameter 'ApiVersion' and no alias was found for the original parameter name.","Add the parameter 'ApiVersion' back to the cmdlet 'New-AzResourceGroupDeployment', or add an alias to the original parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.RemoveAzureResourceGroupDeploymentCmdlet","Remove-AzResourceGroupDeployment","0","2000","The cmdlet 'Remove-AzResourceGroupDeployment' no longer supports the parameter 'ApiVersion' and no alias was found for the original parameter name.","Add the parameter 'ApiVersion' back to the cmdlet 'Remove-AzResourceGroupDeployment', or add an alias to the original parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.SaveAzureResourceGroupDeploymentTemplateCmdlet","Save-AzResourceGroupDeploymentTemplate","0","2000","The cmdlet 'Save-AzResourceGroupDeploymentTemplate' no longer supports the parameter 'ApiVersion' and no alias was found for the original parameter name.","Add the parameter 'ApiVersion' back to the cmdlet 'Save-AzResourceGroupDeploymentTemplate', or add an alias to the original parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.StopAzureResourceGroupDeploymentCmdlet","Stop-AzResourceGroupDeployment","0","2000","The cmdlet 'Stop-AzResourceGroupDeployment' no longer supports the parameter 'ApiVersion' and no alias was found for the original parameter name.","Add the parameter 'ApiVersion' back to the cmdlet 'Stop-AzResourceGroupDeployment', or add an alias to the original parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.TestAzureResourceGroupDeploymentCmdlet","Test-AzResourceGroupDeployment","0","2000","The cmdlet 'Test-AzResourceGroupDeployment' no longer supports the parameter 'ApiVersion' and no alias was found for the original parameter name.","Add the parameter 'ApiVersion' back to the cmdlet 'Test-AzResourceGroupDeployment', or add an alias to the original parameter name." From 88be509ff664901bc513a62ca3bad3316e29df07 Mon Sep 17 00:00:00 2001 From: Gokul Premraj Date: Tue, 1 Sep 2020 16:46:24 -0400 Subject: [PATCH 14/17] Suppress breaking changes --- .../Az.Resources/BreakingChangeIssues.csv | 192 ++++++++++++++++++ 1 file changed, 192 insertions(+) diff --git a/tools/StaticAnalysis/Exceptions/Az.Resources/BreakingChangeIssues.csv b/tools/StaticAnalysis/Exceptions/Az.Resources/BreakingChangeIssues.csv index 115fea8ad2b8..f93a8f3b012c 100644 --- a/tools/StaticAnalysis/Exceptions/Az.Resources/BreakingChangeIssues.csv +++ b/tools/StaticAnalysis/Exceptions/Az.Resources/BreakingChangeIssues.csv @@ -29,3 +29,195 @@ "Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.SaveAzureResourceGroupDeploymentTemplateCmdlet","Save-AzResourceGroupDeploymentTemplate","0","2000","The cmdlet 'Save-AzResourceGroupDeploymentTemplate' no longer supports the parameter 'ApiVersion' and no alias was found for the original parameter name.","Add the parameter 'ApiVersion' back to the cmdlet 'Save-AzResourceGroupDeploymentTemplate', or add an alias to the original parameter name." "Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.StopAzureResourceGroupDeploymentCmdlet","Stop-AzResourceGroupDeployment","0","2000","The cmdlet 'Stop-AzResourceGroupDeployment' no longer supports the parameter 'ApiVersion' and no alias was found for the original parameter name.","Add the parameter 'ApiVersion' back to the cmdlet 'Stop-AzResourceGroupDeployment', or add an alias to the original parameter name." "Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.TestAzureResourceGroupDeploymentCmdlet","Test-AzResourceGroupDeployment","0","2000","The cmdlet 'Test-AzResourceGroupDeployment' no longer supports the parameter 'ApiVersion' and no alias was found for the original parameter name.","Add the parameter 'ApiVersion' back to the cmdlet 'Test-AzResourceGroupDeployment', or add an alias to the original parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.GetAzureManagementGroupDeploymentCmdlet","Get-AzManagementGroupDeployment","0","1050","The parameter set 'GetByDeploymentName' for cmdlet 'Get-AzManagementGroupDeployment' has been removed.","Add parameter set 'GetByDeploymentName' back to cmdlet 'Get-AzManagementGroupDeployment'." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.GetAzureManagementGroupDeploymentCmdlet","Get-AzManagementGroupDeployment","0","1050","The parameter set 'GetByDeploymentId' for cmdlet 'Get-AzManagementGroupDeployment' has been removed.","Add parameter set 'GetByDeploymentId' back to cmdlet 'Get-AzManagementGroupDeployment'." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.GetAzureManagementGroupDeploymentCmdlet","Get-AzManagementGroupDeployment","0","1050","The parameter set '__AllParameterSets' for cmdlet 'Get-AzManagementGroupDeployment' has been removed.","Add parameter set '__AllParameterSets' back to cmdlet 'Get-AzManagementGroupDeployment'." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.GetAzureManagementGroupDeploymentOperationCmdlet","Get-AzManagementGroupDeploymentOperation","0","1050","The parameter set 'GetByDeploymentName' for cmdlet 'Get-AzManagementGroupDeploymentOperation' has been removed.","Add parameter set 'GetByDeploymentName' back to cmdlet 'Get-AzManagementGroupDeploymentOperation'." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.GetAzureManagementGroupDeploymentOperationCmdlet","Get-AzManagementGroupDeploymentOperation","0","1050","The parameter set 'GetByDeploymentObject' for cmdlet 'Get-AzManagementGroupDeploymentOperation' has been removed.","Add parameter set 'GetByDeploymentObject' back to cmdlet 'Get-AzManagementGroupDeploymentOperation'." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.GetAzureManagementGroupDeploymentOperationCmdlet","Get-AzManagementGroupDeploymentOperation","0","1050","The parameter set '__AllParameterSets' for cmdlet 'Get-AzManagementGroupDeploymentOperation' has been removed.","Add parameter set '__AllParameterSets' back to cmdlet 'Get-AzManagementGroupDeploymentOperation'." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.GetAzureSubscriptionDeploymentCmdlet","Get-AzDeployment","0","1050","The parameter set 'GetByDeploymentName' for cmdlet 'Get-AzDeployment' has been removed.","Add parameter set 'GetByDeploymentName' back to cmdlet 'Get-AzDeployment'." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.GetAzureSubscriptionDeploymentCmdlet","Get-AzDeployment","0","1050","The parameter set 'GetByDeploymentId' for cmdlet 'Get-AzDeployment' has been removed.","Add parameter set 'GetByDeploymentId' back to cmdlet 'Get-AzDeployment'." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.GetAzureSubscriptionDeploymentCmdlet","Get-AzDeployment","0","1050","The parameter set '__AllParameterSets' for cmdlet 'Get-AzDeployment' has been removed.","Add parameter set '__AllParameterSets' back to cmdlet 'Get-AzDeployment'." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.GetAzureSubscriptionDeploymentOperationCmdlet","Get-AzDeploymentOperation","0","1050","The parameter set 'GetByDeploymentName' for cmdlet 'Get-AzDeploymentOperation' has been removed.","Add parameter set 'GetByDeploymentName' back to cmdlet 'Get-AzDeploymentOperation'." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.GetAzureSubscriptionDeploymentOperationCmdlet","Get-AzDeploymentOperation","0","1050","The parameter set 'GetByDeploymentObject' for cmdlet 'Get-AzDeploymentOperation' has been removed.","Add parameter set 'GetByDeploymentObject' back to cmdlet 'Get-AzDeploymentOperation'." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.GetAzureSubscriptionDeploymentOperationCmdlet","Get-AzDeploymentOperation","0","1050","The parameter set '__AllParameterSets' for cmdlet 'Get-AzDeploymentOperation' has been removed.","Add parameter set '__AllParameterSets' back to cmdlet 'Get-AzDeploymentOperation'." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.GetAzureSubscriptionDeploymentWhatIfResultCmdlet","Get-AzDeploymentWhatIfResult","0","1050","The parameter set '__AllParameterSets' for cmdlet 'Get-AzDeploymentWhatIfResult' has been removed.","Add parameter set '__AllParameterSets' back to cmdlet 'Get-AzDeploymentWhatIfResult'." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.GetAzureSubscriptionDeploymentWhatIfResultCmdlet","Get-AzDeploymentWhatIfResult","0","1050","The parameter set 'ByTemplateObjectAndParameterObject' for cmdlet 'Get-AzDeploymentWhatIfResult' has been removed.","Add parameter set 'ByTemplateObjectAndParameterObject' back to cmdlet 'Get-AzDeploymentWhatIfResult'." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.GetAzureSubscriptionDeploymentWhatIfResultCmdlet","Get-AzDeploymentWhatIfResult","0","1050","The parameter set 'ByTemplateFileAndParameterObject' for cmdlet 'Get-AzDeploymentWhatIfResult' has been removed.","Add parameter set 'ByTemplateFileAndParameterObject' back to cmdlet 'Get-AzDeploymentWhatIfResult'." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.GetAzureSubscriptionDeploymentWhatIfResultCmdlet","Get-AzDeploymentWhatIfResult","0","1050","The parameter set 'ByTemplateUriAndParameterObject' for cmdlet 'Get-AzDeploymentWhatIfResult' has been removed.","Add parameter set 'ByTemplateUriAndParameterObject' back to cmdlet 'Get-AzDeploymentWhatIfResult'." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.GetAzureSubscriptionDeploymentWhatIfResultCmdlet","Get-AzDeploymentWhatIfResult","0","1050","The parameter set 'ByTemplateObjectAndParameterFile' for cmdlet 'Get-AzDeploymentWhatIfResult' has been removed.","Add parameter set 'ByTemplateObjectAndParameterFile' back to cmdlet 'Get-AzDeploymentWhatIfResult'." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.GetAzureSubscriptionDeploymentWhatIfResultCmdlet","Get-AzDeploymentWhatIfResult","0","1050","The parameter set 'ByTemplateFileAndParameterFile' for cmdlet 'Get-AzDeploymentWhatIfResult' has been removed.","Add parameter set 'ByTemplateFileAndParameterFile' back to cmdlet 'Get-AzDeploymentWhatIfResult'." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.GetAzureSubscriptionDeploymentWhatIfResultCmdlet","Get-AzDeploymentWhatIfResult","0","1050","The parameter set 'ByTemplateUriAndParameterFile' for cmdlet 'Get-AzDeploymentWhatIfResult' has been removed.","Add parameter set 'ByTemplateUriAndParameterFile' back to cmdlet 'Get-AzDeploymentWhatIfResult'." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.GetAzureSubscriptionDeploymentWhatIfResultCmdlet","Get-AzDeploymentWhatIfResult","0","1050","The parameter set 'ByTemplateObjectAndParameterUri' for cmdlet 'Get-AzDeploymentWhatIfResult' has been removed.","Add parameter set 'ByTemplateObjectAndParameterUri' back to cmdlet 'Get-AzDeploymentWhatIfResult'." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.GetAzureSubscriptionDeploymentWhatIfResultCmdlet","Get-AzDeploymentWhatIfResult","0","1050","The parameter set 'ByTemplateFileAndParameterUri' for cmdlet 'Get-AzDeploymentWhatIfResult' has been removed.","Add parameter set 'ByTemplateFileAndParameterUri' back to cmdlet 'Get-AzDeploymentWhatIfResult'." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.GetAzureSubscriptionDeploymentWhatIfResultCmdlet","Get-AzDeploymentWhatIfResult","0","1050","The parameter set 'ByTemplateUriAndParameterUri' for cmdlet 'Get-AzDeploymentWhatIfResult' has been removed.","Add parameter set 'ByTemplateUriAndParameterUri' back to cmdlet 'Get-AzDeploymentWhatIfResult'." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.GetAzureSubscriptionDeploymentWhatIfResultCmdlet","Get-AzDeploymentWhatIfResult","0","1050","The parameter set 'ByTemplateObjectWithNoParameters' for cmdlet 'Get-AzDeploymentWhatIfResult' has been removed.","Add parameter set 'ByTemplateObjectWithNoParameters' back to cmdlet 'Get-AzDeploymentWhatIfResult'." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.GetAzureSubscriptionDeploymentWhatIfResultCmdlet","Get-AzDeploymentWhatIfResult","0","1050","The parameter set 'ByTemplateFileWithNoParameters' for cmdlet 'Get-AzDeploymentWhatIfResult' has been removed.","Add parameter set 'ByTemplateFileWithNoParameters' back to cmdlet 'Get-AzDeploymentWhatIfResult'." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.GetAzureSubscriptionDeploymentWhatIfResultCmdlet","Get-AzDeploymentWhatIfResult","0","1050","The parameter set 'ByTemplateUriWithNoParameters' for cmdlet 'Get-AzDeploymentWhatIfResult' has been removed.","Add parameter set 'ByTemplateUriWithNoParameters' back to cmdlet 'Get-AzDeploymentWhatIfResult'." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.GetAzureTenantDeploymentCmdlet","Get-AzTenantDeployment","0","1050","The parameter set 'GetByDeploymentName' for cmdlet 'Get-AzTenantDeployment' has been removed.","Add parameter set 'GetByDeploymentName' back to cmdlet 'Get-AzTenantDeployment'." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.GetAzureTenantDeploymentCmdlet","Get-AzTenantDeployment","0","1050","The parameter set 'GetByDeploymentId' for cmdlet 'Get-AzTenantDeployment' has been removed.","Add parameter set 'GetByDeploymentId' back to cmdlet 'Get-AzTenantDeployment'." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.GetAzureTenantDeploymentCmdlet","Get-AzTenantDeployment","0","1050","The parameter set '__AllParameterSets' for cmdlet 'Get-AzTenantDeployment' has been removed.","Add parameter set '__AllParameterSets' back to cmdlet 'Get-AzTenantDeployment'." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.GetAzureTenantDeploymentOperationCmdlet","Get-AzTenantDeploymentOperation","0","1050","The parameter set 'GetByDeploymentName' for cmdlet 'Get-AzTenantDeploymentOperation' has been removed.","Add parameter set 'GetByDeploymentName' back to cmdlet 'Get-AzTenantDeploymentOperation'." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.GetAzureTenantDeploymentOperationCmdlet","Get-AzTenantDeploymentOperation","0","1050","The parameter set 'GetByDeploymentObject' for cmdlet 'Get-AzTenantDeploymentOperation' has been removed.","Add parameter set 'GetByDeploymentObject' back to cmdlet 'Get-AzTenantDeploymentOperation'." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.GetAzureTenantDeploymentOperationCmdlet","Get-AzTenantDeploymentOperation","0","1050","The parameter set '__AllParameterSets' for cmdlet 'Get-AzTenantDeploymentOperation' has been removed.","Add parameter set '__AllParameterSets' back to cmdlet 'Get-AzTenantDeploymentOperation'." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.NewAzureManagementGroupDeploymentCmdlet","New-AzManagementGroupDeployment","0","1050","The parameter set '__AllParameterSets' for cmdlet 'New-AzManagementGroupDeployment' has been removed.","Add parameter set '__AllParameterSets' back to cmdlet 'New-AzManagementGroupDeployment'." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.NewAzureManagementGroupDeploymentCmdlet","New-AzManagementGroupDeployment","0","1050","The parameter set 'ByTemplateObjectAndParameterObject' for cmdlet 'New-AzManagementGroupDeployment' has been removed.","Add parameter set 'ByTemplateObjectAndParameterObject' back to cmdlet 'New-AzManagementGroupDeployment'." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.NewAzureManagementGroupDeploymentCmdlet","New-AzManagementGroupDeployment","0","1050","The parameter set 'ByTemplateFileAndParameterObject' for cmdlet 'New-AzManagementGroupDeployment' has been removed.","Add parameter set 'ByTemplateFileAndParameterObject' back to cmdlet 'New-AzManagementGroupDeployment'." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.NewAzureManagementGroupDeploymentCmdlet","New-AzManagementGroupDeployment","0","1050","The parameter set 'ByTemplateUriAndParameterObject' for cmdlet 'New-AzManagementGroupDeployment' has been removed.","Add parameter set 'ByTemplateUriAndParameterObject' back to cmdlet 'New-AzManagementGroupDeployment'." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.NewAzureManagementGroupDeploymentCmdlet","New-AzManagementGroupDeployment","0","1050","The parameter set 'ByTemplateObjectAndParameterFile' for cmdlet 'New-AzManagementGroupDeployment' has been removed.","Add parameter set 'ByTemplateObjectAndParameterFile' back to cmdlet 'New-AzManagementGroupDeployment'." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.NewAzureManagementGroupDeploymentCmdlet","New-AzManagementGroupDeployment","0","1050","The parameter set 'ByTemplateFileAndParameterFile' for cmdlet 'New-AzManagementGroupDeployment' has been removed.","Add parameter set 'ByTemplateFileAndParameterFile' back to cmdlet 'New-AzManagementGroupDeployment'." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.NewAzureManagementGroupDeploymentCmdlet","New-AzManagementGroupDeployment","0","1050","The parameter set 'ByTemplateUriAndParameterFile' for cmdlet 'New-AzManagementGroupDeployment' has been removed.","Add parameter set 'ByTemplateUriAndParameterFile' back to cmdlet 'New-AzManagementGroupDeployment'." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.NewAzureManagementGroupDeploymentCmdlet","New-AzManagementGroupDeployment","0","1050","The parameter set 'ByTemplateObjectAndParameterUri' for cmdlet 'New-AzManagementGroupDeployment' has been removed.","Add parameter set 'ByTemplateObjectAndParameterUri' back to cmdlet 'New-AzManagementGroupDeployment'." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.NewAzureManagementGroupDeploymentCmdlet","New-AzManagementGroupDeployment","0","1050","The parameter set 'ByTemplateFileAndParameterUri' for cmdlet 'New-AzManagementGroupDeployment' has been removed.","Add parameter set 'ByTemplateFileAndParameterUri' back to cmdlet 'New-AzManagementGroupDeployment'." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.NewAzureManagementGroupDeploymentCmdlet","New-AzManagementGroupDeployment","0","1050","The parameter set 'ByTemplateUriAndParameterUri' for cmdlet 'New-AzManagementGroupDeployment' has been removed.","Add parameter set 'ByTemplateUriAndParameterUri' back to cmdlet 'New-AzManagementGroupDeployment'." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.NewAzureManagementGroupDeploymentCmdlet","New-AzManagementGroupDeployment","0","1050","The parameter set 'ByTemplateObjectWithNoParameters' for cmdlet 'New-AzManagementGroupDeployment' has been removed.","Add parameter set 'ByTemplateObjectWithNoParameters' back to cmdlet 'New-AzManagementGroupDeployment'." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.NewAzureManagementGroupDeploymentCmdlet","New-AzManagementGroupDeployment","0","1050","The parameter set 'ByTemplateFileWithNoParameters' for cmdlet 'New-AzManagementGroupDeployment' has been removed.","Add parameter set 'ByTemplateFileWithNoParameters' back to cmdlet 'New-AzManagementGroupDeployment'." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.NewAzureManagementGroupDeploymentCmdlet","New-AzManagementGroupDeployment","0","1050","The parameter set 'ByTemplateUriWithNoParameters' for cmdlet 'New-AzManagementGroupDeployment' has been removed.","Add parameter set 'ByTemplateUriWithNoParameters' back to cmdlet 'New-AzManagementGroupDeployment'." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.NewAzureSubscriptionDeploymentCmdlet","New-AzDeployment","0","1050","The parameter set '__AllParameterSets' for cmdlet 'New-AzDeployment' has been removed.","Add parameter set '__AllParameterSets' back to cmdlet 'New-AzDeployment'." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.NewAzureSubscriptionDeploymentCmdlet","New-AzDeployment","0","1050","The parameter set 'ByTemplateObjectAndParameterObject' for cmdlet 'New-AzDeployment' has been removed.","Add parameter set 'ByTemplateObjectAndParameterObject' back to cmdlet 'New-AzDeployment'." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.NewAzureSubscriptionDeploymentCmdlet","New-AzDeployment","0","1050","The parameter set 'ByTemplateFileAndParameterObject' for cmdlet 'New-AzDeployment' has been removed.","Add parameter set 'ByTemplateFileAndParameterObject' back to cmdlet 'New-AzDeployment'." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.NewAzureSubscriptionDeploymentCmdlet","New-AzDeployment","0","1050","The parameter set 'ByTemplateUriAndParameterObject' for cmdlet 'New-AzDeployment' has been removed.","Add parameter set 'ByTemplateUriAndParameterObject' back to cmdlet 'New-AzDeployment'." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.NewAzureSubscriptionDeploymentCmdlet","New-AzDeployment","0","1050","The parameter set 'ByTemplateObjectAndParameterFile' for cmdlet 'New-AzDeployment' has been removed.","Add parameter set 'ByTemplateObjectAndParameterFile' back to cmdlet 'New-AzDeployment'." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.NewAzureSubscriptionDeploymentCmdlet","New-AzDeployment","0","1050","The parameter set 'ByTemplateFileAndParameterFile' for cmdlet 'New-AzDeployment' has been removed.","Add parameter set 'ByTemplateFileAndParameterFile' back to cmdlet 'New-AzDeployment'." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.NewAzureSubscriptionDeploymentCmdlet","New-AzDeployment","0","1050","The parameter set 'ByTemplateUriAndParameterFile' for cmdlet 'New-AzDeployment' has been removed.","Add parameter set 'ByTemplateUriAndParameterFile' back to cmdlet 'New-AzDeployment'." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.NewAzureSubscriptionDeploymentCmdlet","New-AzDeployment","0","1050","The parameter set 'ByTemplateObjectAndParameterUri' for cmdlet 'New-AzDeployment' has been removed.","Add parameter set 'ByTemplateObjectAndParameterUri' back to cmdlet 'New-AzDeployment'." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.NewAzureSubscriptionDeploymentCmdlet","New-AzDeployment","0","1050","The parameter set 'ByTemplateFileAndParameterUri' for cmdlet 'New-AzDeployment' has been removed.","Add parameter set 'ByTemplateFileAndParameterUri' back to cmdlet 'New-AzDeployment'." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.NewAzureSubscriptionDeploymentCmdlet","New-AzDeployment","0","1050","The parameter set 'ByTemplateUriAndParameterUri' for cmdlet 'New-AzDeployment' has been removed.","Add parameter set 'ByTemplateUriAndParameterUri' back to cmdlet 'New-AzDeployment'." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.NewAzureSubscriptionDeploymentCmdlet","New-AzDeployment","0","1050","The parameter set 'ByTemplateObjectWithNoParameters' for cmdlet 'New-AzDeployment' has been removed.","Add parameter set 'ByTemplateObjectWithNoParameters' back to cmdlet 'New-AzDeployment'." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.NewAzureSubscriptionDeploymentCmdlet","New-AzDeployment","0","1050","The parameter set 'ByTemplateFileWithNoParameters' for cmdlet 'New-AzDeployment' has been removed.","Add parameter set 'ByTemplateFileWithNoParameters' back to cmdlet 'New-AzDeployment'." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.NewAzureSubscriptionDeploymentCmdlet","New-AzDeployment","0","1050","The parameter set 'ByTemplateUriWithNoParameters' for cmdlet 'New-AzDeployment' has been removed.","Add parameter set 'ByTemplateUriWithNoParameters' back to cmdlet 'New-AzDeployment'." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.NewAzureTenantDeploymentCmdlet","New-AzTenantDeployment","0","1050","The parameter set '__AllParameterSets' for cmdlet 'New-AzTenantDeployment' has been removed.","Add parameter set '__AllParameterSets' back to cmdlet 'New-AzTenantDeployment'." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.NewAzureTenantDeploymentCmdlet","New-AzTenantDeployment","0","1050","The parameter set 'ByTemplateObjectAndParameterObject' for cmdlet 'New-AzTenantDeployment' has been removed.","Add parameter set 'ByTemplateObjectAndParameterObject' back to cmdlet 'New-AzTenantDeployment'." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.NewAzureTenantDeploymentCmdlet","New-AzTenantDeployment","0","1050","The parameter set 'ByTemplateFileAndParameterObject' for cmdlet 'New-AzTenantDeployment' has been removed.","Add parameter set 'ByTemplateFileAndParameterObject' back to cmdlet 'New-AzTenantDeployment'." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.NewAzureTenantDeploymentCmdlet","New-AzTenantDeployment","0","1050","The parameter set 'ByTemplateUriAndParameterObject' for cmdlet 'New-AzTenantDeployment' has been removed.","Add parameter set 'ByTemplateUriAndParameterObject' back to cmdlet 'New-AzTenantDeployment'." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.NewAzureTenantDeploymentCmdlet","New-AzTenantDeployment","0","1050","The parameter set 'ByTemplateObjectAndParameterFile' for cmdlet 'New-AzTenantDeployment' has been removed.","Add parameter set 'ByTemplateObjectAndParameterFile' back to cmdlet 'New-AzTenantDeployment'." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.NewAzureTenantDeploymentCmdlet","New-AzTenantDeployment","0","1050","The parameter set 'ByTemplateFileAndParameterFile' for cmdlet 'New-AzTenantDeployment' has been removed.","Add parameter set 'ByTemplateFileAndParameterFile' back to cmdlet 'New-AzTenantDeployment'." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.NewAzureTenantDeploymentCmdlet","New-AzTenantDeployment","0","1050","The parameter set 'ByTemplateUriAndParameterFile' for cmdlet 'New-AzTenantDeployment' has been removed.","Add parameter set 'ByTemplateUriAndParameterFile' back to cmdlet 'New-AzTenantDeployment'." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.NewAzureTenantDeploymentCmdlet","New-AzTenantDeployment","0","1050","The parameter set 'ByTemplateObjectAndParameterUri' for cmdlet 'New-AzTenantDeployment' has been removed.","Add parameter set 'ByTemplateObjectAndParameterUri' back to cmdlet 'New-AzTenantDeployment'." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.NewAzureTenantDeploymentCmdlet","New-AzTenantDeployment","0","1050","The parameter set 'ByTemplateFileAndParameterUri' for cmdlet 'New-AzTenantDeployment' has been removed.","Add parameter set 'ByTemplateFileAndParameterUri' back to cmdlet 'New-AzTenantDeployment'." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.NewAzureTenantDeploymentCmdlet","New-AzTenantDeployment","0","1050","The parameter set 'ByTemplateUriAndParameterUri' for cmdlet 'New-AzTenantDeployment' has been removed.","Add parameter set 'ByTemplateUriAndParameterUri' back to cmdlet 'New-AzTenantDeployment'." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.NewAzureTenantDeploymentCmdlet","New-AzTenantDeployment","0","1050","The parameter set 'ByTemplateObjectWithNoParameters' for cmdlet 'New-AzTenantDeployment' has been removed.","Add parameter set 'ByTemplateObjectWithNoParameters' back to cmdlet 'New-AzTenantDeployment'." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.NewAzureTenantDeploymentCmdlet","New-AzTenantDeployment","0","1050","The parameter set 'ByTemplateFileWithNoParameters' for cmdlet 'New-AzTenantDeployment' has been removed.","Add parameter set 'ByTemplateFileWithNoParameters' back to cmdlet 'New-AzTenantDeployment'." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.NewAzureTenantDeploymentCmdlet","New-AzTenantDeployment","0","1050","The parameter set 'ByTemplateUriWithNoParameters' for cmdlet 'New-AzTenantDeployment' has been removed.","Add parameter set 'ByTemplateUriWithNoParameters' back to cmdlet 'New-AzTenantDeployment'." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.RemoveAzureManagementGroupDeploymentCmdlet","Remove-AzManagementGroupDeployment","0","1050","The parameter set 'RemoveByDeploymentName' for cmdlet 'Remove-AzManagementGroupDeployment' has been removed.","Add parameter set 'RemoveByDeploymentName' back to cmdlet 'Remove-AzManagementGroupDeployment'." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.RemoveAzureManagementGroupDeploymentCmdlet","Remove-AzManagementGroupDeployment","0","1050","The parameter set 'RemoveByDeploymentId' for cmdlet 'Remove-AzManagementGroupDeployment' has been removed.","Add parameter set 'RemoveByDeploymentId' back to cmdlet 'Remove-AzManagementGroupDeployment'." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.RemoveAzureManagementGroupDeploymentCmdlet","Remove-AzManagementGroupDeployment","0","1050","The parameter set 'RemoveByInputObject' for cmdlet 'Remove-AzManagementGroupDeployment' has been removed.","Add parameter set 'RemoveByInputObject' back to cmdlet 'Remove-AzManagementGroupDeployment'." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.RemoveAzureManagementGroupDeploymentCmdlet","Remove-AzManagementGroupDeployment","0","1050","The parameter set '__AllParameterSets' for cmdlet 'Remove-AzManagementGroupDeployment' has been removed.","Add parameter set '__AllParameterSets' back to cmdlet 'Remove-AzManagementGroupDeployment'." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.RemoveAzureSubscriptionDeploymentCmdlet","Remove-AzDeployment","0","1050","The parameter set 'RemoveByDeploymentName' for cmdlet 'Remove-AzDeployment' has been removed.","Add parameter set 'RemoveByDeploymentName' back to cmdlet 'Remove-AzDeployment'." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.RemoveAzureSubscriptionDeploymentCmdlet","Remove-AzDeployment","0","1050","The parameter set 'RemoveByDeploymentId' for cmdlet 'Remove-AzDeployment' has been removed.","Add parameter set 'RemoveByDeploymentId' back to cmdlet 'Remove-AzDeployment'." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.RemoveAzureSubscriptionDeploymentCmdlet","Remove-AzDeployment","0","1050","The parameter set 'RemoveByInputObject' for cmdlet 'Remove-AzDeployment' has been removed.","Add parameter set 'RemoveByInputObject' back to cmdlet 'Remove-AzDeployment'." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.RemoveAzureSubscriptionDeploymentCmdlet","Remove-AzDeployment","0","1050","The parameter set '__AllParameterSets' for cmdlet 'Remove-AzDeployment' has been removed.","Add parameter set '__AllParameterSets' back to cmdlet 'Remove-AzDeployment'." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.RemoveAzureTenantDeploymentCmdlet","Remove-AzTenantDeployment","0","1050","The parameter set 'RemoveByDeploymentName' for cmdlet 'Remove-AzTenantDeployment' has been removed.","Add parameter set 'RemoveByDeploymentName' back to cmdlet 'Remove-AzTenantDeployment'." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.RemoveAzureTenantDeploymentCmdlet","Remove-AzTenantDeployment","0","1050","The parameter set 'RemoveByDeploymentId' for cmdlet 'Remove-AzTenantDeployment' has been removed.","Add parameter set 'RemoveByDeploymentId' back to cmdlet 'Remove-AzTenantDeployment'." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.RemoveAzureTenantDeploymentCmdlet","Remove-AzTenantDeployment","0","1050","The parameter set 'RemoveByInputObject' for cmdlet 'Remove-AzTenantDeployment' has been removed.","Add parameter set 'RemoveByInputObject' back to cmdlet 'Remove-AzTenantDeployment'." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.RemoveAzureTenantDeploymentCmdlet","Remove-AzTenantDeployment","0","1050","The parameter set '__AllParameterSets' for cmdlet 'Remove-AzTenantDeployment' has been removed.","Add parameter set '__AllParameterSets' back to cmdlet 'Remove-AzTenantDeployment'." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.SaveAzureManagementGroupDeploymentTemplateCmdlet","Save-AzManagementGroupDeploymentTemplate","0","1050","The parameter set 'SaveByDeploymentName' for cmdlet 'Save-AzManagementGroupDeploymentTemplate' has been removed.","Add parameter set 'SaveByDeploymentName' back to cmdlet 'Save-AzManagementGroupDeploymentTemplate'." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.SaveAzureManagementGroupDeploymentTemplateCmdlet","Save-AzManagementGroupDeploymentTemplate","0","1050","The parameter set 'SaveByDeploymentObject' for cmdlet 'Save-AzManagementGroupDeploymentTemplate' has been removed.","Add parameter set 'SaveByDeploymentObject' back to cmdlet 'Save-AzManagementGroupDeploymentTemplate'." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.SaveAzureManagementGroupDeploymentTemplateCmdlet","Save-AzManagementGroupDeploymentTemplate","0","1050","The parameter set '__AllParameterSets' for cmdlet 'Save-AzManagementGroupDeploymentTemplate' has been removed.","Add parameter set '__AllParameterSets' back to cmdlet 'Save-AzManagementGroupDeploymentTemplate'." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.SaveAzureSubscriptionDeploymentTemplateCmdlet","Save-AzDeploymentTemplate","0","1050","The parameter set 'SaveByDeploymentName' for cmdlet 'Save-AzDeploymentTemplate' has been removed.","Add parameter set 'SaveByDeploymentName' back to cmdlet 'Save-AzDeploymentTemplate'." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.SaveAzureSubscriptionDeploymentTemplateCmdlet","Save-AzDeploymentTemplate","0","1050","The parameter set 'SaveByDeploymentObject' for cmdlet 'Save-AzDeploymentTemplate' has been removed.","Add parameter set 'SaveByDeploymentObject' back to cmdlet 'Save-AzDeploymentTemplate'." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.SaveAzureSubscriptionDeploymentTemplateCmdlet","Save-AzDeploymentTemplate","0","1050","The parameter set '__AllParameterSets' for cmdlet 'Save-AzDeploymentTemplate' has been removed.","Add parameter set '__AllParameterSets' back to cmdlet 'Save-AzDeploymentTemplate'." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.SaveAzureTenantDeploymentTemplateCmdlet","Save-AzTenantDeploymentTemplate","0","1050","The parameter set 'SaveByDeploymentName' for cmdlet 'Save-AzTenantDeploymentTemplate' has been removed.","Add parameter set 'SaveByDeploymentName' back to cmdlet 'Save-AzTenantDeploymentTemplate'." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.SaveAzureTenantDeploymentTemplateCmdlet","Save-AzTenantDeploymentTemplate","0","1050","The parameter set 'SaveByDeploymentObject' for cmdlet 'Save-AzTenantDeploymentTemplate' has been removed.","Add parameter set 'SaveByDeploymentObject' back to cmdlet 'Save-AzTenantDeploymentTemplate'." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.SaveAzureTenantDeploymentTemplateCmdlet","Save-AzTenantDeploymentTemplate","0","1050","The parameter set '__AllParameterSets' for cmdlet 'Save-AzTenantDeploymentTemplate' has been removed.","Add parameter set '__AllParameterSets' back to cmdlet 'Save-AzTenantDeploymentTemplate'." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.StopAzureManagementGroupDeploymentCmdlet","Stop-AzManagementGroupDeployment","0","1050","The parameter set 'StopByDeploymentName' for cmdlet 'Stop-AzManagementGroupDeployment' has been removed.","Add parameter set 'StopByDeploymentName' back to cmdlet 'Stop-AzManagementGroupDeployment'." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.StopAzureManagementGroupDeploymentCmdlet","Stop-AzManagementGroupDeployment","0","1050","The parameter set 'StopByDeploymentId' for cmdlet 'Stop-AzManagementGroupDeployment' has been removed.","Add parameter set 'StopByDeploymentId' back to cmdlet 'Stop-AzManagementGroupDeployment'." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.StopAzureManagementGroupDeploymentCmdlet","Stop-AzManagementGroupDeployment","0","1050","The parameter set 'StopByInputObject' for cmdlet 'Stop-AzManagementGroupDeployment' has been removed.","Add parameter set 'StopByInputObject' back to cmdlet 'Stop-AzManagementGroupDeployment'." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.StopAzureManagementGroupDeploymentCmdlet","Stop-AzManagementGroupDeployment","0","1050","The parameter set '__AllParameterSets' for cmdlet 'Stop-AzManagementGroupDeployment' has been removed.","Add parameter set '__AllParameterSets' back to cmdlet 'Stop-AzManagementGroupDeployment'." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.StopAzureSubscriptionDeploymentCmdlet","Stop-AzDeployment","0","1050","The parameter set 'StopByDeploymentName' for cmdlet 'Stop-AzDeployment' has been removed.","Add parameter set 'StopByDeploymentName' back to cmdlet 'Stop-AzDeployment'." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.StopAzureSubscriptionDeploymentCmdlet","Stop-AzDeployment","0","1050","The parameter set 'StopByDeploymentId' for cmdlet 'Stop-AzDeployment' has been removed.","Add parameter set 'StopByDeploymentId' back to cmdlet 'Stop-AzDeployment'." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.StopAzureSubscriptionDeploymentCmdlet","Stop-AzDeployment","0","1050","The parameter set 'StopByInputObject' for cmdlet 'Stop-AzDeployment' has been removed.","Add parameter set 'StopByInputObject' back to cmdlet 'Stop-AzDeployment'." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.StopAzureSubscriptionDeploymentCmdlet","Stop-AzDeployment","0","1050","The parameter set '__AllParameterSets' for cmdlet 'Stop-AzDeployment' has been removed.","Add parameter set '__AllParameterSets' back to cmdlet 'Stop-AzDeployment'." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.StopAzureTenantDeploymentCmdlet","Stop-AzTenantDeployment","0","1050","The parameter set 'StopByDeploymentName' for cmdlet 'Stop-AzTenantDeployment' has been removed.","Add parameter set 'StopByDeploymentName' back to cmdlet 'Stop-AzTenantDeployment'." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.StopAzureTenantDeploymentCmdlet","Stop-AzTenantDeployment","0","1050","The parameter set 'StopByDeploymentId' for cmdlet 'Stop-AzTenantDeployment' has been removed.","Add parameter set 'StopByDeploymentId' back to cmdlet 'Stop-AzTenantDeployment'." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.StopAzureTenantDeploymentCmdlet","Stop-AzTenantDeployment","0","1050","The parameter set 'StopByInputObject' for cmdlet 'Stop-AzTenantDeployment' has been removed.","Add parameter set 'StopByInputObject' back to cmdlet 'Stop-AzTenantDeployment'." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.StopAzureTenantDeploymentCmdlet","Stop-AzTenantDeployment","0","1050","The parameter set '__AllParameterSets' for cmdlet 'Stop-AzTenantDeployment' has been removed.","Add parameter set '__AllParameterSets' back to cmdlet 'Stop-AzTenantDeployment'." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.TestAzureManagementGroupDeploymentCmdlet","Test-AzManagementGroupDeployment","0","1050","The parameter set '__AllParameterSets' for cmdlet 'Test-AzManagementGroupDeployment' has been removed.","Add parameter set '__AllParameterSets' back to cmdlet 'Test-AzManagementGroupDeployment'." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.TestAzureManagementGroupDeploymentCmdlet","Test-AzManagementGroupDeployment","0","1050","The parameter set 'ByTemplateObjectAndParameterObject' for cmdlet 'Test-AzManagementGroupDeployment' has been removed.","Add parameter set 'ByTemplateObjectAndParameterObject' back to cmdlet 'Test-AzManagementGroupDeployment'." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.TestAzureManagementGroupDeploymentCmdlet","Test-AzManagementGroupDeployment","0","1050","The parameter set 'ByTemplateFileAndParameterObject' for cmdlet 'Test-AzManagementGroupDeployment' has been removed.","Add parameter set 'ByTemplateFileAndParameterObject' back to cmdlet 'Test-AzManagementGroupDeployment'." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.TestAzureManagementGroupDeploymentCmdlet","Test-AzManagementGroupDeployment","0","1050","The parameter set 'ByTemplateUriAndParameterObject' for cmdlet 'Test-AzManagementGroupDeployment' has been removed.","Add parameter set 'ByTemplateUriAndParameterObject' back to cmdlet 'Test-AzManagementGroupDeployment'." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.TestAzureManagementGroupDeploymentCmdlet","Test-AzManagementGroupDeployment","0","1050","The parameter set 'ByTemplateObjectAndParameterFile' for cmdlet 'Test-AzManagementGroupDeployment' has been removed.","Add parameter set 'ByTemplateObjectAndParameterFile' back to cmdlet 'Test-AzManagementGroupDeployment'." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.TestAzureManagementGroupDeploymentCmdlet","Test-AzManagementGroupDeployment","0","1050","The parameter set 'ByTemplateFileAndParameterFile' for cmdlet 'Test-AzManagementGroupDeployment' has been removed.","Add parameter set 'ByTemplateFileAndParameterFile' back to cmdlet 'Test-AzManagementGroupDeployment'." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.TestAzureManagementGroupDeploymentCmdlet","Test-AzManagementGroupDeployment","0","1050","The parameter set 'ByTemplateUriAndParameterFile' for cmdlet 'Test-AzManagementGroupDeployment' has been removed.","Add parameter set 'ByTemplateUriAndParameterFile' back to cmdlet 'Test-AzManagementGroupDeployment'." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.TestAzureManagementGroupDeploymentCmdlet","Test-AzManagementGroupDeployment","0","1050","The parameter set 'ByTemplateObjectAndParameterUri' for cmdlet 'Test-AzManagementGroupDeployment' has been removed.","Add parameter set 'ByTemplateObjectAndParameterUri' back to cmdlet 'Test-AzManagementGroupDeployment'." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.TestAzureManagementGroupDeploymentCmdlet","Test-AzManagementGroupDeployment","0","1050","The parameter set 'ByTemplateFileAndParameterUri' for cmdlet 'Test-AzManagementGroupDeployment' has been removed.","Add parameter set 'ByTemplateFileAndParameterUri' back to cmdlet 'Test-AzManagementGroupDeployment'." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.TestAzureManagementGroupDeploymentCmdlet","Test-AzManagementGroupDeployment","0","1050","The parameter set 'ByTemplateUriAndParameterUri' for cmdlet 'Test-AzManagementGroupDeployment' has been removed.","Add parameter set 'ByTemplateUriAndParameterUri' back to cmdlet 'Test-AzManagementGroupDeployment'." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.TestAzureManagementGroupDeploymentCmdlet","Test-AzManagementGroupDeployment","0","1050","The parameter set 'ByTemplateObjectWithNoParameters' for cmdlet 'Test-AzManagementGroupDeployment' has been removed.","Add parameter set 'ByTemplateObjectWithNoParameters' back to cmdlet 'Test-AzManagementGroupDeployment'." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.TestAzureManagementGroupDeploymentCmdlet","Test-AzManagementGroupDeployment","0","1050","The parameter set 'ByTemplateFileWithNoParameters' for cmdlet 'Test-AzManagementGroupDeployment' has been removed.","Add parameter set 'ByTemplateFileWithNoParameters' back to cmdlet 'Test-AzManagementGroupDeployment'." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.TestAzureManagementGroupDeploymentCmdlet","Test-AzManagementGroupDeployment","0","1050","The parameter set 'ByTemplateUriWithNoParameters' for cmdlet 'Test-AzManagementGroupDeployment' has been removed.","Add parameter set 'ByTemplateUriWithNoParameters' back to cmdlet 'Test-AzManagementGroupDeployment'." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.TestAzureSubscriptionDeploymentCmdlet","Test-AzDeployment","0","1050","The parameter set '__AllParameterSets' for cmdlet 'Test-AzDeployment' has been removed.","Add parameter set '__AllParameterSets' back to cmdlet 'Test-AzDeployment'." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.TestAzureSubscriptionDeploymentCmdlet","Test-AzDeployment","0","1050","The parameter set 'ByTemplateObjectAndParameterObject' for cmdlet 'Test-AzDeployment' has been removed.","Add parameter set 'ByTemplateObjectAndParameterObject' back to cmdlet 'Test-AzDeployment'." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.TestAzureSubscriptionDeploymentCmdlet","Test-AzDeployment","0","1050","The parameter set 'ByTemplateFileAndParameterObject' for cmdlet 'Test-AzDeployment' has been removed.","Add parameter set 'ByTemplateFileAndParameterObject' back to cmdlet 'Test-AzDeployment'." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.TestAzureSubscriptionDeploymentCmdlet","Test-AzDeployment","0","1050","The parameter set 'ByTemplateUriAndParameterObject' for cmdlet 'Test-AzDeployment' has been removed.","Add parameter set 'ByTemplateUriAndParameterObject' back to cmdlet 'Test-AzDeployment'." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.TestAzureSubscriptionDeploymentCmdlet","Test-AzDeployment","0","1050","The parameter set 'ByTemplateObjectAndParameterFile' for cmdlet 'Test-AzDeployment' has been removed.","Add parameter set 'ByTemplateObjectAndParameterFile' back to cmdlet 'Test-AzDeployment'." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.TestAzureSubscriptionDeploymentCmdlet","Test-AzDeployment","0","1050","The parameter set 'ByTemplateFileAndParameterFile' for cmdlet 'Test-AzDeployment' has been removed.","Add parameter set 'ByTemplateFileAndParameterFile' back to cmdlet 'Test-AzDeployment'." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.TestAzureSubscriptionDeploymentCmdlet","Test-AzDeployment","0","1050","The parameter set 'ByTemplateUriAndParameterFile' for cmdlet 'Test-AzDeployment' has been removed.","Add parameter set 'ByTemplateUriAndParameterFile' back to cmdlet 'Test-AzDeployment'." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.TestAzureSubscriptionDeploymentCmdlet","Test-AzDeployment","0","1050","The parameter set 'ByTemplateObjectAndParameterUri' for cmdlet 'Test-AzDeployment' has been removed.","Add parameter set 'ByTemplateObjectAndParameterUri' back to cmdlet 'Test-AzDeployment'." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.TestAzureSubscriptionDeploymentCmdlet","Test-AzDeployment","0","1050","The parameter set 'ByTemplateFileAndParameterUri' for cmdlet 'Test-AzDeployment' has been removed.","Add parameter set 'ByTemplateFileAndParameterUri' back to cmdlet 'Test-AzDeployment'." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.TestAzureSubscriptionDeploymentCmdlet","Test-AzDeployment","0","1050","The parameter set 'ByTemplateUriAndParameterUri' for cmdlet 'Test-AzDeployment' has been removed.","Add parameter set 'ByTemplateUriAndParameterUri' back to cmdlet 'Test-AzDeployment'." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.TestAzureSubscriptionDeploymentCmdlet","Test-AzDeployment","0","1050","The parameter set 'ByTemplateObjectWithNoParameters' for cmdlet 'Test-AzDeployment' has been removed.","Add parameter set 'ByTemplateObjectWithNoParameters' back to cmdlet 'Test-AzDeployment'." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.TestAzureSubscriptionDeploymentCmdlet","Test-AzDeployment","0","1050","The parameter set 'ByTemplateFileWithNoParameters' for cmdlet 'Test-AzDeployment' has been removed.","Add parameter set 'ByTemplateFileWithNoParameters' back to cmdlet 'Test-AzDeployment'." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.TestAzureSubscriptionDeploymentCmdlet","Test-AzDeployment","0","1050","The parameter set 'ByTemplateUriWithNoParameters' for cmdlet 'Test-AzDeployment' has been removed.","Add parameter set 'ByTemplateUriWithNoParameters' back to cmdlet 'Test-AzDeployment'." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.TestAzureTenantDeploymentCmdlet","Test-AzTenantDeployment","0","1050","The parameter set '__AllParameterSets' for cmdlet 'Test-AzTenantDeployment' has been removed.","Add parameter set '__AllParameterSets' back to cmdlet 'Test-AzTenantDeployment'." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.TestAzureTenantDeploymentCmdlet","Test-AzTenantDeployment","0","1050","The parameter set 'ByTemplateObjectAndParameterObject' for cmdlet 'Test-AzTenantDeployment' has been removed.","Add parameter set 'ByTemplateObjectAndParameterObject' back to cmdlet 'Test-AzTenantDeployment'." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.TestAzureTenantDeploymentCmdlet","Test-AzTenantDeployment","0","1050","The parameter set 'ByTemplateFileAndParameterObject' for cmdlet 'Test-AzTenantDeployment' has been removed.","Add parameter set 'ByTemplateFileAndParameterObject' back to cmdlet 'Test-AzTenantDeployment'." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.TestAzureTenantDeploymentCmdlet","Test-AzTenantDeployment","0","1050","The parameter set 'ByTemplateUriAndParameterObject' for cmdlet 'Test-AzTenantDeployment' has been removed.","Add parameter set 'ByTemplateUriAndParameterObject' back to cmdlet 'Test-AzTenantDeployment'." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.TestAzureTenantDeploymentCmdlet","Test-AzTenantDeployment","0","1050","The parameter set 'ByTemplateObjectAndParameterFile' for cmdlet 'Test-AzTenantDeployment' has been removed.","Add parameter set 'ByTemplateObjectAndParameterFile' back to cmdlet 'Test-AzTenantDeployment'." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.TestAzureTenantDeploymentCmdlet","Test-AzTenantDeployment","0","1050","The parameter set 'ByTemplateFileAndParameterFile' for cmdlet 'Test-AzTenantDeployment' has been removed.","Add parameter set 'ByTemplateFileAndParameterFile' back to cmdlet 'Test-AzTenantDeployment'." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.TestAzureTenantDeploymentCmdlet","Test-AzTenantDeployment","0","1050","The parameter set 'ByTemplateUriAndParameterFile' for cmdlet 'Test-AzTenantDeployment' has been removed.","Add parameter set 'ByTemplateUriAndParameterFile' back to cmdlet 'Test-AzTenantDeployment'." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.TestAzureTenantDeploymentCmdlet","Test-AzTenantDeployment","0","1050","The parameter set 'ByTemplateObjectAndParameterUri' for cmdlet 'Test-AzTenantDeployment' has been removed.","Add parameter set 'ByTemplateObjectAndParameterUri' back to cmdlet 'Test-AzTenantDeployment'." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.TestAzureTenantDeploymentCmdlet","Test-AzTenantDeployment","0","1050","The parameter set 'ByTemplateFileAndParameterUri' for cmdlet 'Test-AzTenantDeployment' has been removed.","Add parameter set 'ByTemplateFileAndParameterUri' back to cmdlet 'Test-AzTenantDeployment'." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.TestAzureTenantDeploymentCmdlet","Test-AzTenantDeployment","0","1050","The parameter set 'ByTemplateUriAndParameterUri' for cmdlet 'Test-AzTenantDeployment' has been removed.","Add parameter set 'ByTemplateUriAndParameterUri' back to cmdlet 'Test-AzTenantDeployment'." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.TestAzureTenantDeploymentCmdlet","Test-AzTenantDeployment","0","1050","The parameter set 'ByTemplateObjectWithNoParameters' for cmdlet 'Test-AzTenantDeployment' has been removed.","Add parameter set 'ByTemplateObjectWithNoParameters' back to cmdlet 'Test-AzTenantDeployment'." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.TestAzureTenantDeploymentCmdlet","Test-AzTenantDeployment","0","1050","The parameter set 'ByTemplateFileWithNoParameters' for cmdlet 'Test-AzTenantDeployment' has been removed.","Add parameter set 'ByTemplateFileWithNoParameters' back to cmdlet 'Test-AzTenantDeployment'." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.TestAzureTenantDeploymentCmdlet","Test-AzTenantDeployment","0","1050","The parameter set 'ByTemplateUriWithNoParameters' for cmdlet 'Test-AzTenantDeployment' has been removed.","Add parameter set 'ByTemplateUriWithNoParameters' back to cmdlet 'Test-AzTenantDeployment'." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.GetAzureResourceGroupDeploymentCmdlet","Get-AzResourceGroupDeployment","0","1050","The parameter set 'GetByResourceGroupDeploymentName' for cmdlet 'Get-AzResourceGroupDeployment' has been removed.","Add parameter set 'GetByResourceGroupDeploymentName' back to cmdlet 'Get-AzResourceGroupDeployment'." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.GetAzureResourceGroupDeploymentCmdlet","Get-AzResourceGroupDeployment","0","1050","The parameter set 'GetByResourceGroupDeploymentId' for cmdlet 'Get-AzResourceGroupDeployment' has been removed.","Add parameter set 'GetByResourceGroupDeploymentId' back to cmdlet 'Get-AzResourceGroupDeployment'." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.GetAzureResourceGroupDeploymentCmdlet","Get-AzResourceGroupDeployment","0","1050","The parameter set '__AllParameterSets' for cmdlet 'Get-AzResourceGroupDeployment' has been removed.","Add parameter set '__AllParameterSets' back to cmdlet 'Get-AzResourceGroupDeployment'." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.GetAzureResourceGroupDeploymentOperationCmdlet","Get-AzResourceGroupDeploymentOperation","0","1050","The parameter set '__AllParameterSets' for cmdlet 'Get-AzResourceGroupDeploymentOperation' has been removed.","Add parameter set '__AllParameterSets' back to cmdlet 'Get-AzResourceGroupDeploymentOperation'." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.GetAzureResourceGroupDeploymentWhatIfResultCmdlet","Get-AzResourceGroupDeploymentWhatIfResult","0","1050","The parameter set '__AllParameterSets' for cmdlet 'Get-AzResourceGroupDeploymentWhatIfResult' has been removed.","Add parameter set '__AllParameterSets' back to cmdlet 'Get-AzResourceGroupDeploymentWhatIfResult'." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.GetAzureResourceGroupDeploymentWhatIfResultCmdlet","Get-AzResourceGroupDeploymentWhatIfResult","0","1050","The parameter set 'ByTemplateObjectAndParameterObject' for cmdlet 'Get-AzResourceGroupDeploymentWhatIfResult' has been removed.","Add parameter set 'ByTemplateObjectAndParameterObject' back to cmdlet 'Get-AzResourceGroupDeploymentWhatIfResult'." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.GetAzureResourceGroupDeploymentWhatIfResultCmdlet","Get-AzResourceGroupDeploymentWhatIfResult","0","1050","The parameter set 'ByTemplateFileAndParameterObject' for cmdlet 'Get-AzResourceGroupDeploymentWhatIfResult' has been removed.","Add parameter set 'ByTemplateFileAndParameterObject' back to cmdlet 'Get-AzResourceGroupDeploymentWhatIfResult'." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.GetAzureResourceGroupDeploymentWhatIfResultCmdlet","Get-AzResourceGroupDeploymentWhatIfResult","0","1050","The parameter set 'ByTemplateUriAndParameterObject' for cmdlet 'Get-AzResourceGroupDeploymentWhatIfResult' has been removed.","Add parameter set 'ByTemplateUriAndParameterObject' back to cmdlet 'Get-AzResourceGroupDeploymentWhatIfResult'." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.GetAzureResourceGroupDeploymentWhatIfResultCmdlet","Get-AzResourceGroupDeploymentWhatIfResult","0","1050","The parameter set 'ByTemplateObjectAndParameterFile' for cmdlet 'Get-AzResourceGroupDeploymentWhatIfResult' has been removed.","Add parameter set 'ByTemplateObjectAndParameterFile' back to cmdlet 'Get-AzResourceGroupDeploymentWhatIfResult'." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.GetAzureResourceGroupDeploymentWhatIfResultCmdlet","Get-AzResourceGroupDeploymentWhatIfResult","0","1050","The parameter set 'ByTemplateFileAndParameterFile' for cmdlet 'Get-AzResourceGroupDeploymentWhatIfResult' has been removed.","Add parameter set 'ByTemplateFileAndParameterFile' back to cmdlet 'Get-AzResourceGroupDeploymentWhatIfResult'." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.GetAzureResourceGroupDeploymentWhatIfResultCmdlet","Get-AzResourceGroupDeploymentWhatIfResult","0","1050","The parameter set 'ByTemplateUriAndParameterFile' for cmdlet 'Get-AzResourceGroupDeploymentWhatIfResult' has been removed.","Add parameter set 'ByTemplateUriAndParameterFile' back to cmdlet 'Get-AzResourceGroupDeploymentWhatIfResult'." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.GetAzureResourceGroupDeploymentWhatIfResultCmdlet","Get-AzResourceGroupDeploymentWhatIfResult","0","1050","The parameter set 'ByTemplateObjectAndParameterUri' for cmdlet 'Get-AzResourceGroupDeploymentWhatIfResult' has been removed.","Add parameter set 'ByTemplateObjectAndParameterUri' back to cmdlet 'Get-AzResourceGroupDeploymentWhatIfResult'." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.GetAzureResourceGroupDeploymentWhatIfResultCmdlet","Get-AzResourceGroupDeploymentWhatIfResult","0","1050","The parameter set 'ByTemplateFileAndParameterUri' for cmdlet 'Get-AzResourceGroupDeploymentWhatIfResult' has been removed.","Add parameter set 'ByTemplateFileAndParameterUri' back to cmdlet 'Get-AzResourceGroupDeploymentWhatIfResult'." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.GetAzureResourceGroupDeploymentWhatIfResultCmdlet","Get-AzResourceGroupDeploymentWhatIfResult","0","1050","The parameter set 'ByTemplateUriAndParameterUri' for cmdlet 'Get-AzResourceGroupDeploymentWhatIfResult' has been removed.","Add parameter set 'ByTemplateUriAndParameterUri' back to cmdlet 'Get-AzResourceGroupDeploymentWhatIfResult'." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.GetAzureResourceGroupDeploymentWhatIfResultCmdlet","Get-AzResourceGroupDeploymentWhatIfResult","0","1050","The parameter set 'ByTemplateObjectWithNoParameters' for cmdlet 'Get-AzResourceGroupDeploymentWhatIfResult' has been removed.","Add parameter set 'ByTemplateObjectWithNoParameters' back to cmdlet 'Get-AzResourceGroupDeploymentWhatIfResult'." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.GetAzureResourceGroupDeploymentWhatIfResultCmdlet","Get-AzResourceGroupDeploymentWhatIfResult","0","1050","The parameter set 'ByTemplateFileWithNoParameters' for cmdlet 'Get-AzResourceGroupDeploymentWhatIfResult' has been removed.","Add parameter set 'ByTemplateFileWithNoParameters' back to cmdlet 'Get-AzResourceGroupDeploymentWhatIfResult'." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.GetAzureResourceGroupDeploymentWhatIfResultCmdlet","Get-AzResourceGroupDeploymentWhatIfResult","0","1050","The parameter set 'ByTemplateUriWithNoParameters' for cmdlet 'Get-AzResourceGroupDeploymentWhatIfResult' has been removed.","Add parameter set 'ByTemplateUriWithNoParameters' back to cmdlet 'Get-AzResourceGroupDeploymentWhatIfResult'." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.NewAzureResourceGroupDeploymentCmdlet","New-AzResourceGroupDeployment","0","1050","The parameter set '__AllParameterSets' for cmdlet 'New-AzResourceGroupDeployment' has been removed.","Add parameter set '__AllParameterSets' back to cmdlet 'New-AzResourceGroupDeployment'." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.NewAzureResourceGroupDeploymentCmdlet","New-AzResourceGroupDeployment","0","1050","The parameter set 'ByTemplateObjectAndParameterObject' for cmdlet 'New-AzResourceGroupDeployment' has been removed.","Add parameter set 'ByTemplateObjectAndParameterObject' back to cmdlet 'New-AzResourceGroupDeployment'." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.NewAzureResourceGroupDeploymentCmdlet","New-AzResourceGroupDeployment","0","1050","The parameter set 'ByTemplateFileAndParameterObject' for cmdlet 'New-AzResourceGroupDeployment' has been removed.","Add parameter set 'ByTemplateFileAndParameterObject' back to cmdlet 'New-AzResourceGroupDeployment'." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.NewAzureResourceGroupDeploymentCmdlet","New-AzResourceGroupDeployment","0","1050","The parameter set 'ByTemplateUriAndParameterObject' for cmdlet 'New-AzResourceGroupDeployment' has been removed.","Add parameter set 'ByTemplateUriAndParameterObject' back to cmdlet 'New-AzResourceGroupDeployment'." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.NewAzureResourceGroupDeploymentCmdlet","New-AzResourceGroupDeployment","0","1050","The parameter set 'ByTemplateObjectAndParameterFile' for cmdlet 'New-AzResourceGroupDeployment' has been removed.","Add parameter set 'ByTemplateObjectAndParameterFile' back to cmdlet 'New-AzResourceGroupDeployment'." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.NewAzureResourceGroupDeploymentCmdlet","New-AzResourceGroupDeployment","0","1050","The parameter set 'ByTemplateFileAndParameterFile' for cmdlet 'New-AzResourceGroupDeployment' has been removed.","Add parameter set 'ByTemplateFileAndParameterFile' back to cmdlet 'New-AzResourceGroupDeployment'." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.NewAzureResourceGroupDeploymentCmdlet","New-AzResourceGroupDeployment","0","1050","The parameter set 'ByTemplateUriAndParameterFile' for cmdlet 'New-AzResourceGroupDeployment' has been removed.","Add parameter set 'ByTemplateUriAndParameterFile' back to cmdlet 'New-AzResourceGroupDeployment'." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.NewAzureResourceGroupDeploymentCmdlet","New-AzResourceGroupDeployment","0","1050","The parameter set 'ByTemplateObjectAndParameterUri' for cmdlet 'New-AzResourceGroupDeployment' has been removed.","Add parameter set 'ByTemplateObjectAndParameterUri' back to cmdlet 'New-AzResourceGroupDeployment'." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.NewAzureResourceGroupDeploymentCmdlet","New-AzResourceGroupDeployment","0","1050","The parameter set 'ByTemplateFileAndParameterUri' for cmdlet 'New-AzResourceGroupDeployment' has been removed.","Add parameter set 'ByTemplateFileAndParameterUri' back to cmdlet 'New-AzResourceGroupDeployment'." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.NewAzureResourceGroupDeploymentCmdlet","New-AzResourceGroupDeployment","0","1050","The parameter set 'ByTemplateUriAndParameterUri' for cmdlet 'New-AzResourceGroupDeployment' has been removed.","Add parameter set 'ByTemplateUriAndParameterUri' back to cmdlet 'New-AzResourceGroupDeployment'." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.NewAzureResourceGroupDeploymentCmdlet","New-AzResourceGroupDeployment","0","1050","The parameter set 'ByTemplateObjectWithNoParameters' for cmdlet 'New-AzResourceGroupDeployment' has been removed.","Add parameter set 'ByTemplateObjectWithNoParameters' back to cmdlet 'New-AzResourceGroupDeployment'." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.NewAzureResourceGroupDeploymentCmdlet","New-AzResourceGroupDeployment","0","1050","The parameter set 'ByTemplateFileWithNoParameters' for cmdlet 'New-AzResourceGroupDeployment' has been removed.","Add parameter set 'ByTemplateFileWithNoParameters' back to cmdlet 'New-AzResourceGroupDeployment'." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.NewAzureResourceGroupDeploymentCmdlet","New-AzResourceGroupDeployment","0","1050","The parameter set 'ByTemplateUriWithNoParameters' for cmdlet 'New-AzResourceGroupDeployment' has been removed.","Add parameter set 'ByTemplateUriWithNoParameters' back to cmdlet 'New-AzResourceGroupDeployment'." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.RemoveAzureResourceGroupDeploymentCmdlet","Remove-AzResourceGroupDeployment","0","1050","The parameter set 'RemoveByResourceGroupName' for cmdlet 'Remove-AzResourceGroupDeployment' has been removed.","Add parameter set 'RemoveByResourceGroupName' back to cmdlet 'Remove-AzResourceGroupDeployment'." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.RemoveAzureResourceGroupDeploymentCmdlet","Remove-AzResourceGroupDeployment","0","1050","The parameter set 'RemoveByResourceGroupDeploymentId' for cmdlet 'Remove-AzResourceGroupDeployment' has been removed.","Add parameter set 'RemoveByResourceGroupDeploymentId' back to cmdlet 'Remove-AzResourceGroupDeployment'." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.RemoveAzureResourceGroupDeploymentCmdlet","Remove-AzResourceGroupDeployment","0","1050","The parameter set '__AllParameterSets' for cmdlet 'Remove-AzResourceGroupDeployment' has been removed.","Add parameter set '__AllParameterSets' back to cmdlet 'Remove-AzResourceGroupDeployment'." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.SaveAzureResourceGroupDeploymentTemplateCmdlet","Save-AzResourceGroupDeploymentTemplate","0","1050","The parameter set '__AllParameterSets' for cmdlet 'Save-AzResourceGroupDeploymentTemplate' has been removed.","Add parameter set '__AllParameterSets' back to cmdlet 'Save-AzResourceGroupDeploymentTemplate'." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.StopAzureResourceGroupDeploymentCmdlet","Stop-AzResourceGroupDeployment","0","1050","The parameter set 'StopByResourceGroupDeploymentName' for cmdlet 'Stop-AzResourceGroupDeployment' has been removed.","Add parameter set 'StopByResourceGroupDeploymentName' back to cmdlet 'Stop-AzResourceGroupDeployment'." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.StopAzureResourceGroupDeploymentCmdlet","Stop-AzResourceGroupDeployment","0","1050","The parameter set 'StopByResourceGroupDeploymentId' for cmdlet 'Stop-AzResourceGroupDeployment' has been removed.","Add parameter set 'StopByResourceGroupDeploymentId' back to cmdlet 'Stop-AzResourceGroupDeployment'." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.StopAzureResourceGroupDeploymentCmdlet","Stop-AzResourceGroupDeployment","0","1050","The parameter set '__AllParameterSets' for cmdlet 'Stop-AzResourceGroupDeployment' has been removed.","Add parameter set '__AllParameterSets' back to cmdlet 'Stop-AzResourceGroupDeployment'." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.TestAzureResourceGroupDeploymentCmdlet","Test-AzResourceGroupDeployment","0","1050","The parameter set '__AllParameterSets' for cmdlet 'Test-AzResourceGroupDeployment' has been removed.","Add parameter set '__AllParameterSets' back to cmdlet 'Test-AzResourceGroupDeployment'." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.TestAzureResourceGroupDeploymentCmdlet","Test-AzResourceGroupDeployment","0","1050","The parameter set 'ByTemplateObjectAndParameterObject' for cmdlet 'Test-AzResourceGroupDeployment' has been removed.","Add parameter set 'ByTemplateObjectAndParameterObject' back to cmdlet 'Test-AzResourceGroupDeployment'." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.TestAzureResourceGroupDeploymentCmdlet","Test-AzResourceGroupDeployment","0","1050","The parameter set 'ByTemplateFileAndParameterObject' for cmdlet 'Test-AzResourceGroupDeployment' has been removed.","Add parameter set 'ByTemplateFileAndParameterObject' back to cmdlet 'Test-AzResourceGroupDeployment'." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.TestAzureResourceGroupDeploymentCmdlet","Test-AzResourceGroupDeployment","0","1050","The parameter set 'ByTemplateUriAndParameterObject' for cmdlet 'Test-AzResourceGroupDeployment' has been removed.","Add parameter set 'ByTemplateUriAndParameterObject' back to cmdlet 'Test-AzResourceGroupDeployment'." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.TestAzureResourceGroupDeploymentCmdlet","Test-AzResourceGroupDeployment","0","1050","The parameter set 'ByTemplateObjectAndParameterFile' for cmdlet 'Test-AzResourceGroupDeployment' has been removed.","Add parameter set 'ByTemplateObjectAndParameterFile' back to cmdlet 'Test-AzResourceGroupDeployment'." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.TestAzureResourceGroupDeploymentCmdlet","Test-AzResourceGroupDeployment","0","1050","The parameter set 'ByTemplateFileAndParameterFile' for cmdlet 'Test-AzResourceGroupDeployment' has been removed.","Add parameter set 'ByTemplateFileAndParameterFile' back to cmdlet 'Test-AzResourceGroupDeployment'." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.TestAzureResourceGroupDeploymentCmdlet","Test-AzResourceGroupDeployment","0","1050","The parameter set 'ByTemplateUriAndParameterFile' for cmdlet 'Test-AzResourceGroupDeployment' has been removed.","Add parameter set 'ByTemplateUriAndParameterFile' back to cmdlet 'Test-AzResourceGroupDeployment'." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.TestAzureResourceGroupDeploymentCmdlet","Test-AzResourceGroupDeployment","0","1050","The parameter set 'ByTemplateObjectAndParameterUri' for cmdlet 'Test-AzResourceGroupDeployment' has been removed.","Add parameter set 'ByTemplateObjectAndParameterUri' back to cmdlet 'Test-AzResourceGroupDeployment'." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.TestAzureResourceGroupDeploymentCmdlet","Test-AzResourceGroupDeployment","0","1050","The parameter set 'ByTemplateFileAndParameterUri' for cmdlet 'Test-AzResourceGroupDeployment' has been removed.","Add parameter set 'ByTemplateFileAndParameterUri' back to cmdlet 'Test-AzResourceGroupDeployment'." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.TestAzureResourceGroupDeploymentCmdlet","Test-AzResourceGroupDeployment","0","1050","The parameter set 'ByTemplateUriAndParameterUri' for cmdlet 'Test-AzResourceGroupDeployment' has been removed.","Add parameter set 'ByTemplateUriAndParameterUri' back to cmdlet 'Test-AzResourceGroupDeployment'." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.TestAzureResourceGroupDeploymentCmdlet","Test-AzResourceGroupDeployment","0","1050","The parameter set 'ByTemplateObjectWithNoParameters' for cmdlet 'Test-AzResourceGroupDeployment' has been removed.","Add parameter set 'ByTemplateObjectWithNoParameters' back to cmdlet 'Test-AzResourceGroupDeployment'." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.TestAzureResourceGroupDeploymentCmdlet","Test-AzResourceGroupDeployment","0","1050","The parameter set 'ByTemplateFileWithNoParameters' for cmdlet 'Test-AzResourceGroupDeployment' has been removed.","Add parameter set 'ByTemplateFileWithNoParameters' back to cmdlet 'Test-AzResourceGroupDeployment'." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.TestAzureResourceGroupDeploymentCmdlet","Test-AzResourceGroupDeployment","0","1050","The parameter set 'ByTemplateUriWithNoParameters' for cmdlet 'Test-AzResourceGroupDeployment' has been removed.","Add parameter set 'ByTemplateUriWithNoParameters' back to cmdlet 'Test-AzResourceGroupDeployment'." From 92221e6ff636c576f2477f5e4eb94985a719577d Mon Sep 17 00:00:00 2001 From: Gokul Premraj Date: Wed, 30 Sep 2020 12:57:56 -0400 Subject: [PATCH 15/17] Review fixes + breaking change suppression --- ...ResourceManagerCmdletBaseWithAPiVersion.cs | 2 +- .../ResourceManipulationCmdletBase.cs | 2 +- .../Locations/GetAzureLocationCmdlet.cs | 2 +- .../Lock/ResourceLockManagementCmdletBase.cs | 2 +- .../ManagedApplicationCmdletBase.cs | 2 +- .../Policy/GetAzurePolicyAliasCmdlet.cs | 2 +- .../Implementation/Policy/PolicyCmdletBase.cs | 2 +- .../Providers/GetAzureProviderCmdlet.cs | 2 +- .../Providers/RegisterAzureProviderCmdlet.cs | 2 +- .../UnregisterAzureProviderCmdlet.cs | 2 +- .../Resource/GetAzureResourceCmdlet.cs | 2 +- .../Resource/MoveAzureResourceCmdlet.cs | 2 +- .../ExportAzureResourceGroupCmdlet.cs | 2 +- .../GetAzureResourceGroupCmdlet.cs | 2 +- .../NewAzureResourceGroupCmdlet.cs | 2 +- .../RemoveAzureResourceGroupCmdlet.cs | 2 +- .../SetAzureResourceGroupCmdlet.cs | 2 +- src/Resources/Resources/ChangeLog.md | 2 +- .../Az.Resources/BreakingChangeIssues.csv | 25 +++++++++++++++++++ 19 files changed, 43 insertions(+), 18 deletions(-) diff --git a/src/Resources/ResourceManager/Implementation/CmdletBase/ResourceManagerCmdletBaseWithAPiVersion.cs b/src/Resources/ResourceManager/Implementation/CmdletBase/ResourceManagerCmdletBaseWithAPiVersion.cs index 235cbe538fe3..47cbc01a05b8 100644 --- a/src/Resources/ResourceManager/Implementation/CmdletBase/ResourceManagerCmdletBaseWithAPiVersion.cs +++ b/src/Resources/ResourceManager/Implementation/CmdletBase/ResourceManagerCmdletBaseWithAPiVersion.cs @@ -18,7 +18,7 @@ namespace Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation { - public abstract class ResourceManagerCmdletBaseWithAPiVersion : ResourceManagerCmdletBase + public abstract class ResourceManagerCmdletBaseWithApiVersion : ResourceManagerCmdletBase { /// /// Gets or sets the API version. diff --git a/src/Resources/ResourceManager/Implementation/CmdletBase/ResourceManipulationCmdletBase.cs b/src/Resources/ResourceManager/Implementation/CmdletBase/ResourceManipulationCmdletBase.cs index 5813b06e8091..8f15b5905984 100644 --- a/src/Resources/ResourceManager/Implementation/CmdletBase/ResourceManipulationCmdletBase.cs +++ b/src/Resources/ResourceManager/Implementation/CmdletBase/ResourceManipulationCmdletBase.cs @@ -23,7 +23,7 @@ namespace Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation /// /// The base class for manipulating resources. /// - public abstract class ResourceManipulationCmdletBase : ResourceManagerCmdletBaseWithAPiVersion + public abstract class ResourceManipulationCmdletBase : ResourceManagerCmdletBaseWithApiVersion { /// /// The subscription level parameter set. diff --git a/src/Resources/ResourceManager/Implementation/Locations/GetAzureLocationCmdlet.cs b/src/Resources/ResourceManager/Implementation/Locations/GetAzureLocationCmdlet.cs index f175ae610b57..8fbedb1f3c8b 100644 --- a/src/Resources/ResourceManager/Implementation/Locations/GetAzureLocationCmdlet.cs +++ b/src/Resources/ResourceManager/Implementation/Locations/GetAzureLocationCmdlet.cs @@ -28,7 +28,7 @@ namespace Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation /// Get all locations with the supported providers. /// [Cmdlet(VerbsCommon.Get, ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "Location"), OutputType(typeof(PSResourceProviderLocation))] - public class GetAzureLocationCmdlet : ResourceManagerCmdletBaseWithAPiVersion + public class GetAzureLocationCmdlet : ResourceManagerCmdletBaseWithApiVersion { /// /// Executes the cmdlet diff --git a/src/Resources/ResourceManager/Implementation/Lock/ResourceLockManagementCmdletBase.cs b/src/Resources/ResourceManager/Implementation/Lock/ResourceLockManagementCmdletBase.cs index 354227c71133..6090060a2e9f 100644 --- a/src/Resources/ResourceManager/Implementation/Lock/ResourceLockManagementCmdletBase.cs +++ b/src/Resources/ResourceManager/Implementation/Lock/ResourceLockManagementCmdletBase.cs @@ -26,7 +26,7 @@ namespace Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation /// /// Base class for resource lock management cmdlets. /// - public abstract class ResourceLockManagementCmdletBase : ResourceManagerCmdletBaseWithAPiVersion + public abstract class ResourceLockManagementCmdletBase : ResourceManagerCmdletBaseWithApiVersion { /// /// The Id parameter set. diff --git a/src/Resources/ResourceManager/Implementation/ManagedApplications/ManagedApplicationCmdletBase.cs b/src/Resources/ResourceManager/Implementation/ManagedApplications/ManagedApplicationCmdletBase.cs index 8363707b2f78..cfc26dfa6885 100644 --- a/src/Resources/ResourceManager/Implementation/ManagedApplications/ManagedApplicationCmdletBase.cs +++ b/src/Resources/ResourceManager/Implementation/ManagedApplications/ManagedApplicationCmdletBase.cs @@ -32,7 +32,7 @@ namespace Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation /// /// Base class for policy assignment cmdlets. /// - public abstract class ManagedApplicationCmdletBase : ResourceManagerCmdletBaseWithAPiVersion + public abstract class ManagedApplicationCmdletBase : ResourceManagerCmdletBaseWithApiVersion { /// /// Gets the next set of resources using the diff --git a/src/Resources/ResourceManager/Implementation/Policy/GetAzurePolicyAliasCmdlet.cs b/src/Resources/ResourceManager/Implementation/Policy/GetAzurePolicyAliasCmdlet.cs index 51a7d2480f06..46f8191b3433 100644 --- a/src/Resources/ResourceManager/Implementation/Policy/GetAzurePolicyAliasCmdlet.cs +++ b/src/Resources/ResourceManager/Implementation/Policy/GetAzurePolicyAliasCmdlet.cs @@ -27,7 +27,7 @@ namespace Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation /// Get an existing resource. /// [Cmdlet(VerbsCommon.Get, AzureRMConstants.AzureRMPrefix + "PolicyAlias"), OutputType(typeof(PsResourceProviderAlias))] - public class GetAzurePolicyAlias : ResourceManagerCmdletBaseWithAPiVersion + public class GetAzurePolicyAlias : ResourceManagerCmdletBaseWithApiVersion { /// /// Gets or sets the provider namespace match string diff --git a/src/Resources/ResourceManager/Implementation/Policy/PolicyCmdletBase.cs b/src/Resources/ResourceManager/Implementation/Policy/PolicyCmdletBase.cs index 8a24e07af8ab..1a9cef163239 100644 --- a/src/Resources/ResourceManager/Implementation/Policy/PolicyCmdletBase.cs +++ b/src/Resources/ResourceManager/Implementation/Policy/PolicyCmdletBase.cs @@ -32,7 +32,7 @@ namespace Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation /// /// Base class for policy cmdlets. /// - public abstract class PolicyCmdletBase : ResourceManagerCmdletBaseWithAPiVersion + public abstract class PolicyCmdletBase : ResourceManagerCmdletBaseWithApiVersion { public enum ListFilter { diff --git a/src/Resources/ResourceManager/Implementation/Providers/GetAzureProviderCmdlet.cs b/src/Resources/ResourceManager/Implementation/Providers/GetAzureProviderCmdlet.cs index 9f4e727da315..62104f7f48bb 100644 --- a/src/Resources/ResourceManager/Implementation/Providers/GetAzureProviderCmdlet.cs +++ b/src/Resources/ResourceManager/Implementation/Providers/GetAzureProviderCmdlet.cs @@ -29,7 +29,7 @@ namespace Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation /// Get an existing resource. /// [Cmdlet("Get", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "ResourceProvider", DefaultParameterSetName = GetAzureProviderCmdlet.ListAvailableParameterSet), OutputType(typeof(PSResourceProvider))] - public class GetAzureProviderCmdlet : ResourceManagerCmdletBaseWithAPiVersion + public class GetAzureProviderCmdlet : ResourceManagerCmdletBaseWithApiVersion { /// /// The individual provider parameter set name diff --git a/src/Resources/ResourceManager/Implementation/Providers/RegisterAzureProviderCmdlet.cs b/src/Resources/ResourceManager/Implementation/Providers/RegisterAzureProviderCmdlet.cs index 77efcc5f2298..dc81c634a0c4 100644 --- a/src/Resources/ResourceManager/Implementation/Providers/RegisterAzureProviderCmdlet.cs +++ b/src/Resources/ResourceManager/Implementation/Providers/RegisterAzureProviderCmdlet.cs @@ -24,7 +24,7 @@ namespace Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation /// Register the previewed features of a certain azure resource provider. /// [Cmdlet("Register", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "ResourceProvider", SupportsShouldProcess = true), OutputType(typeof(PSResourceProvider))] - public class RegisterAzureProviderCmdlet : ResourceManagerCmdletBaseWithAPiVersion + public class RegisterAzureProviderCmdlet : ResourceManagerCmdletBaseWithApiVersion { /// /// Gets or sets the provider namespace diff --git a/src/Resources/ResourceManager/Implementation/Providers/UnregisterAzureProviderCmdlet.cs b/src/Resources/ResourceManager/Implementation/Providers/UnregisterAzureProviderCmdlet.cs index dea49a64413e..2bc96ff325b6 100644 --- a/src/Resources/ResourceManager/Implementation/Providers/UnregisterAzureProviderCmdlet.cs +++ b/src/Resources/ResourceManager/Implementation/Providers/UnregisterAzureProviderCmdlet.cs @@ -25,7 +25,7 @@ namespace Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation /// Un-registers the resource provider from the current subscription. /// [Cmdlet("Unregister", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "ResourceProvider", SupportsShouldProcess = true), OutputType(typeof(PSResourceProvider))] - public class UnregisterAzureProviderCmdlet : ResourceManagerCmdletBaseWithAPiVersion + public class UnregisterAzureProviderCmdlet : ResourceManagerCmdletBaseWithApiVersion { /// /// Gets or sets the provider namespace diff --git a/src/Resources/ResourceManager/Implementation/Resource/GetAzureResourceCmdlet.cs b/src/Resources/ResourceManager/Implementation/Resource/GetAzureResourceCmdlet.cs index 31388d2d9518..976fcc8426b8 100644 --- a/src/Resources/ResourceManager/Implementation/Resource/GetAzureResourceCmdlet.cs +++ b/src/Resources/ResourceManager/Implementation/Resource/GetAzureResourceCmdlet.cs @@ -36,7 +36,7 @@ namespace Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation /// Cmdlet to get existing resources. /// [Cmdlet("Get", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "Resource", DefaultParameterSetName = ByTagNameValueParameterSet), OutputType(typeof(PSResource))] - public sealed class GetAzureResourceCmdlet : ResourceManagerCmdletBaseWithAPiVersion + public sealed class GetAzureResourceCmdlet : ResourceManagerCmdletBaseWithApiVersion { public const string ByResourceIdParameterSet = "ByResourceId"; public const string ByTagObjectParameterSet = "ByTagObjectParameterSet"; diff --git a/src/Resources/ResourceManager/Implementation/Resource/MoveAzureResourceCmdlet.cs b/src/Resources/ResourceManager/Implementation/Resource/MoveAzureResourceCmdlet.cs index 2baf0ac03a3b..3b04eea05aa2 100644 --- a/src/Resources/ResourceManager/Implementation/Resource/MoveAzureResourceCmdlet.cs +++ b/src/Resources/ResourceManager/Implementation/Resource/MoveAzureResourceCmdlet.cs @@ -28,7 +28,7 @@ namespace Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation /// Moves existing resources to a new resource group or subscription. /// [Cmdlet("Move", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "Resource", SupportsShouldProcess = true), OutputType(typeof(bool))] - public class MoveAzureResourceCommand : ResourceManagerCmdletBaseWithAPiVersion + public class MoveAzureResourceCommand : ResourceManagerCmdletBaseWithApiVersion { /// /// Caches the current resource ids to get all resource ids in the pipeline diff --git a/src/Resources/ResourceManager/Implementation/ResourceGroups/ExportAzureResourceGroupCmdlet.cs b/src/Resources/ResourceManager/Implementation/ResourceGroups/ExportAzureResourceGroupCmdlet.cs index 78ed639db321..c6d1a0c7ade3 100644 --- a/src/Resources/ResourceManager/Implementation/ResourceGroups/ExportAzureResourceGroupCmdlet.cs +++ b/src/Resources/ResourceManager/Implementation/ResourceGroups/ExportAzureResourceGroupCmdlet.cs @@ -33,7 +33,7 @@ namespace Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation /// Captures the specifies resource group as a template and saves it to a file on disk. /// [Cmdlet("Export", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "ResourceGroup", SupportsShouldProcess = true), OutputType(typeof(PSObject))] - public class ExportAzureResourceGroupCmdlet : ResourceManagerCmdletBaseWithAPiVersion + public class ExportAzureResourceGroupCmdlet : ResourceManagerCmdletBaseWithApiVersion { /// /// Gets or sets the resource group name parameter. diff --git a/src/Resources/ResourceManager/Implementation/ResourceGroups/GetAzureResourceGroupCmdlet.cs b/src/Resources/ResourceManager/Implementation/ResourceGroups/GetAzureResourceGroupCmdlet.cs index f8bdb9ab9c3e..914097da985b 100644 --- a/src/Resources/ResourceManager/Implementation/ResourceGroups/GetAzureResourceGroupCmdlet.cs +++ b/src/Resources/ResourceManager/Implementation/ResourceGroups/GetAzureResourceGroupCmdlet.cs @@ -30,7 +30,7 @@ namespace Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation /// Filters resource groups. /// [Cmdlet("Get", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "ResourceGroup", DefaultParameterSetName = ResourceGroupNameParameterSet), OutputType(typeof(PSResourceGroup))] - public class GetAzureResourceGroupCmdlet : ResourceManagerCmdletBaseWithAPiVersion + public class GetAzureResourceGroupCmdlet : ResourceManagerCmdletBaseWithApiVersion { /// /// List resources group by name parameter set. diff --git a/src/Resources/ResourceManager/Implementation/ResourceGroups/NewAzureResourceGroupCmdlet.cs b/src/Resources/ResourceManager/Implementation/ResourceGroups/NewAzureResourceGroupCmdlet.cs index bcaff3e1fb41..7715b133fa69 100644 --- a/src/Resources/ResourceManager/Implementation/ResourceGroups/NewAzureResourceGroupCmdlet.cs +++ b/src/Resources/ResourceManager/Implementation/ResourceGroups/NewAzureResourceGroupCmdlet.cs @@ -24,7 +24,7 @@ namespace Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation /// Filters resource groups. /// [Cmdlet("New", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "ResourceGroup", SupportsShouldProcess = true), OutputType(typeof(PSResourceGroup))] - public class NewAzureResourceGroupCmdlet : ResourceManagerCmdletBaseWithAPiVersion + public class NewAzureResourceGroupCmdlet : ResourceManagerCmdletBaseWithApiVersion { [Alias("ResourceGroupName")] [Parameter(Position = 0, Mandatory = true, ValueFromPipelineByPropertyName = true, HelpMessage = "The resource group name.")] diff --git a/src/Resources/ResourceManager/Implementation/ResourceGroups/RemoveAzureResourceGroupCmdlet.cs b/src/Resources/ResourceManager/Implementation/ResourceGroups/RemoveAzureResourceGroupCmdlet.cs index 781a91bebcf6..a17e9545e5c8 100644 --- a/src/Resources/ResourceManager/Implementation/ResourceGroups/RemoveAzureResourceGroupCmdlet.cs +++ b/src/Resources/ResourceManager/Implementation/ResourceGroups/RemoveAzureResourceGroupCmdlet.cs @@ -25,7 +25,7 @@ namespace Microsoft.Azure.Commands.Resources /// Removes a resource group. /// [Cmdlet("Remove", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "ResourceGroup", SupportsShouldProcess = true, DefaultParameterSetName = ResourceGroupNameParameterSet), OutputType(typeof(bool))] - public class RemoveAzureResourceGroupCmdlet : ResourceManagerCmdletBaseWithAPiVersion + public class RemoveAzureResourceGroupCmdlet : ResourceManagerCmdletBaseWithApiVersion { /// /// List resources group by name parameter set. diff --git a/src/Resources/ResourceManager/Implementation/ResourceGroups/SetAzureResourceGroupCmdlet.cs b/src/Resources/ResourceManager/Implementation/ResourceGroups/SetAzureResourceGroupCmdlet.cs index e4928be2ba15..c1f51c653911 100644 --- a/src/Resources/ResourceManager/Implementation/ResourceGroups/SetAzureResourceGroupCmdlet.cs +++ b/src/Resources/ResourceManager/Implementation/ResourceGroups/SetAzureResourceGroupCmdlet.cs @@ -24,7 +24,7 @@ namespace Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation /// Updates an existing resource group. /// [Cmdlet("Set", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "ResourceGroup", DefaultParameterSetName = ResourceGroupNameParameterSet), OutputType(typeof(PSResourceGroup))] - public class SetAzureResourceGroupCmdlet : ResourceManagerCmdletBaseWithAPiVersion + public class SetAzureResourceGroupCmdlet : ResourceManagerCmdletBaseWithApiVersion { /// /// List resources group by name parameter set. diff --git a/src/Resources/Resources/ChangeLog.md b/src/Resources/Resources/ChangeLog.md index a46a0c4c2f58..7aec8f618acc 100644 --- a/src/Resources/Resources/ChangeLog.md +++ b/src/Resources/Resources/ChangeLog.md @@ -19,7 +19,7 @@ --> ## Upcoming Release * Updated `Get-AzResourceGroupDeploymentOperation`to use the SDK. -* Remove ApiVersion parameter +* Remove ApiVersion parameter from AzDeployment cmdlets. ## Version 2.5.1 * Added missing check for Set-AzRoleAssignment diff --git a/tools/StaticAnalysis/Exceptions/Az.Resources/BreakingChangeIssues.csv b/tools/StaticAnalysis/Exceptions/Az.Resources/BreakingChangeIssues.csv index f93a8f3b012c..93980117b781 100644 --- a/tools/StaticAnalysis/Exceptions/Az.Resources/BreakingChangeIssues.csv +++ b/tools/StaticAnalysis/Exceptions/Az.Resources/BreakingChangeIssues.csv @@ -221,3 +221,28 @@ "Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.TestAzureResourceGroupDeploymentCmdlet","Test-AzResourceGroupDeployment","0","1050","The parameter set 'ByTemplateObjectWithNoParameters' for cmdlet 'Test-AzResourceGroupDeployment' has been removed.","Add parameter set 'ByTemplateObjectWithNoParameters' back to cmdlet 'Test-AzResourceGroupDeployment'." "Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.TestAzureResourceGroupDeploymentCmdlet","Test-AzResourceGroupDeployment","0","1050","The parameter set 'ByTemplateFileWithNoParameters' for cmdlet 'Test-AzResourceGroupDeployment' has been removed.","Add parameter set 'ByTemplateFileWithNoParameters' back to cmdlet 'Test-AzResourceGroupDeployment'." "Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.TestAzureResourceGroupDeploymentCmdlet","Test-AzResourceGroupDeployment","0","1050","The parameter set 'ByTemplateUriWithNoParameters' for cmdlet 'Test-AzResourceGroupDeployment' has been removed.","Add parameter set 'ByTemplateUriWithNoParameters' back to cmdlet 'Test-AzResourceGroupDeployment'." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.GetAzureManagementGroupDeploymentWhatIfResultCmdlet","Get-AzManagementGroupDeploymentWhatIfResult","0","1050","The parameter set 'ByTemplateFileAndParameterObject' for cmdlet 'Get-AzManagementGroupDeploymentWhatIfResult' has been removed.","Add parameter set 'ByTemplateFileAndParameterObject' back to cmdlet 'Get-AzManagementGroupDeploymentWhatIfResult'." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.GetAzureManagementGroupDeploymentWhatIfResultCmdlet","Get-AzManagementGroupDeploymentWhatIfResult","0","1050","The parameter set 'ByTemplateUriAndParameterObject' for cmdlet 'Get-AzManagementGroupDeploymentWhatIfResult' has been removed.","Add parameter set 'ByTemplateUriAndParameterObject' back to cmdlet 'Get-AzManagementGroupDeploymentWhatIfResult'." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.GetAzureManagementGroupDeploymentWhatIfResultCmdlet","Get-AzManagementGroupDeploymentWhatIfResult","0","1050","The parameter set 'ByTemplateObjectAndParameterFile' for cmdlet 'Get-AzManagementGroupDeploymentWhatIfResult' has been removed.","Add parameter set 'ByTemplateObjectAndParameterFile' back to cmdlet 'Get-AzManagementGroupDeploymentWhatIfResult'." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.GetAzureManagementGroupDeploymentWhatIfResultCmdlet","Get-AzManagementGroupDeploymentWhatIfResult","0","1050","The parameter set 'ByTemplateFileAndParameterFile' for cmdlet 'Get-AzManagementGroupDeploymentWhatIfResult' has been removed.","Add parameter set 'ByTemplateFileAndParameterFile' back to cmdlet 'Get-AzManagementGroupDeploymentWhatIfResult'." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.GetAzureManagementGroupDeploymentWhatIfResultCmdlet","Get-AzManagementGroupDeploymentWhatIfResult","0","1050","The parameter set 'ByTemplateUriAndParameterFile' for cmdlet 'Get-AzManagementGroupDeploymentWhatIfResult' has been removed.","Add parameter set 'ByTemplateUriAndParameterFile' back to cmdlet 'Get-AzManagementGroupDeploymentWhatIfResult'." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.GetAzureManagementGroupDeploymentWhatIfResultCmdlet","Get-AzManagementGroupDeploymentWhatIfResult","0","1050","The parameter set 'ByTemplateObjectAndParameterUri' for cmdlet 'Get-AzManagementGroupDeploymentWhatIfResult' has been removed.","Add parameter set 'ByTemplateObjectAndParameterUri' back to cmdlet 'Get-AzManagementGroupDeploymentWhatIfResult'." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.GetAzureManagementGroupDeploymentWhatIfResultCmdlet","Get-AzManagementGroupDeploymentWhatIfResult","0","1050","The parameter set 'ByTemplateFileAndParameterUri' for cmdlet 'Get-AzManagementGroupDeploymentWhatIfResult' has been removed.","Add parameter set 'ByTemplateFileAndParameterUri' back to cmdlet 'Get-AzManagementGroupDeploymentWhatIfResult'." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.GetAzureManagementGroupDeploymentWhatIfResultCmdlet","Get-AzManagementGroupDeploymentWhatIfResult","0","1050","The parameter set 'ByTemplateUriAndParameterUri' for cmdlet 'Get-AzManagementGroupDeploymentWhatIfResult' has been removed.","Add parameter set 'ByTemplateUriAndParameterUri' back to cmdlet 'Get-AzManagementGroupDeploymentWhatIfResult'." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.GetAzureManagementGroupDeploymentWhatIfResultCmdlet","Get-AzManagementGroupDeploymentWhatIfResult","0","1050","The parameter set 'ByTemplateObjectWithNoParameters' for cmdlet 'Get-AzManagementGroupDeploymentWhatIfResult' has been removed.","Add parameter set 'ByTemplateObjectWithNoParameters' back to cmdlet 'Get-AzManagementGroupDeploymentWhatIfResult'." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.GetAzureManagementGroupDeploymentWhatIfResultCmdlet","Get-AzManagementGroupDeploymentWhatIfResult","0","1050","The parameter set 'ByTemplateFileWithNoParameters' for cmdlet 'Get-AzManagementGroupDeploymentWhatIfResult' has been removed.","Add parameter set 'ByTemplateFileWithNoParameters' back to cmdlet 'Get-AzManagementGroupDeploymentWhatIfResult'." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.GetAzureManagementGroupDeploymentWhatIfResultCmdlet","Get-AzManagementGroupDeploymentWhatIfResult","0","1050","The parameter set 'ByTemplateUriWithNoParameters' for cmdlet 'Get-AzManagementGroupDeploymentWhatIfResult' has been removed.","Add parameter set 'ByTemplateUriWithNoParameters' back to cmdlet 'Get-AzManagementGroupDeploymentWhatIfResult'." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.GetAzureTenantDeploymentWhatIfResultCmdlet","Get-AzTenantDeploymentWhatIfResult","0","2000","The cmdlet 'Get-AzTenantDeploymentWhatIfResult' no longer supports the parameter 'ApiVersion' and no alias was found for the original parameter name.","Add the parameter 'ApiVersion' back to the cmdlet 'Get-AzTenantDeploymentWhatIfResult', or add an alias to the original parameter name." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.GetAzureTenantDeploymentWhatIfResultCmdlet","Get-AzTenantDeploymentWhatIfResult","0","1050","The parameter set '__AllParameterSets' for cmdlet 'Get-AzTenantDeploymentWhatIfResult' has been removed.","Add parameter set '__AllParameterSets' back to cmdlet 'Get-AzTenantDeploymentWhatIfResult'." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.GetAzureTenantDeploymentWhatIfResultCmdlet","Get-AzTenantDeploymentWhatIfResult","0","1050","The parameter set 'ByTemplateObjectAndParameterObject' for cmdlet 'Get-AzTenantDeploymentWhatIfResult' has been removed.","Add parameter set 'ByTemplateObjectAndParameterObject' back to cmdlet 'Get-AzTenantDeploymentWhatIfResult'." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.GetAzureTenantDeploymentWhatIfResultCmdlet","Get-AzTenantDeploymentWhatIfResult","0","1050","The parameter set 'ByTemplateFileAndParameterObject' for cmdlet 'Get-AzTenantDeploymentWhatIfResult' has been removed.","Add parameter set 'ByTemplateFileAndParameterObject' back to cmdlet 'Get-AzTenantDeploymentWhatIfResult'." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.GetAzureTenantDeploymentWhatIfResultCmdlet","Get-AzTenantDeploymentWhatIfResult","0","1050","The parameter set 'ByTemplateUriAndParameterObject' for cmdlet 'Get-AzTenantDeploymentWhatIfResult' has been removed.","Add parameter set 'ByTemplateUriAndParameterObject' back to cmdlet 'Get-AzTenantDeploymentWhatIfResult'." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.GetAzureTenantDeploymentWhatIfResultCmdlet","Get-AzTenantDeploymentWhatIfResult","0","1050","The parameter set 'ByTemplateObjectAndParameterFile' for cmdlet 'Get-AzTenantDeploymentWhatIfResult' has been removed.","Add parameter set 'ByTemplateObjectAndParameterFile' back to cmdlet 'Get-AzTenantDeploymentWhatIfResult'." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.GetAzureTenantDeploymentWhatIfResultCmdlet","Get-AzTenantDeploymentWhatIfResult","0","1050","The parameter set 'ByTemplateFileAndParameterFile' for cmdlet 'Get-AzTenantDeploymentWhatIfResult' has been removed.","Add parameter set 'ByTemplateFileAndParameterFile' back to cmdlet 'Get-AzTenantDeploymentWhatIfResult'." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.GetAzureTenantDeploymentWhatIfResultCmdlet","Get-AzTenantDeploymentWhatIfResult","0","1050","The parameter set 'ByTemplateUriAndParameterFile' for cmdlet 'Get-AzTenantDeploymentWhatIfResult' has been removed.","Add parameter set 'ByTemplateUriAndParameterFile' back to cmdlet 'Get-AzTenantDeploymentWhatIfResult'." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.GetAzureTenantDeploymentWhatIfResultCmdlet","Get-AzTenantDeploymentWhatIfResult","0","1050","The parameter set 'ByTemplateObjectAndParameterUri' for cmdlet 'Get-AzTenantDeploymentWhatIfResult' has been removed.","Add parameter set 'ByTemplateObjectAndParameterUri' back to cmdlet 'Get-AzTenantDeploymentWhatIfResult'." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.GetAzureTenantDeploymentWhatIfResultCmdlet","Get-AzTenantDeploymentWhatIfResult","0","1050","The parameter set 'ByTemplateFileAndParameterUri' for cmdlet 'Get-AzTenantDeploymentWhatIfResult' has been removed.","Add parameter set 'ByTemplateFileAndParameterUri' back to cmdlet 'Get-AzTenantDeploymentWhatIfResult'." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.GetAzureTenantDeploymentWhatIfResultCmdlet","Get-AzTenantDeploymentWhatIfResult","0","1050","The parameter set 'ByTemplateUriAndParameterUri' for cmdlet 'Get-AzTenantDeploymentWhatIfResult' has been removed.","Add parameter set 'ByTemplateUriAndParameterUri' back to cmdlet 'Get-AzTenantDeploymentWhatIfResult'." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.GetAzureTenantDeploymentWhatIfResultCmdlet","Get-AzTenantDeploymentWhatIfResult","0","1050","The parameter set 'ByTemplateObjectWithNoParameters' for cmdlet 'Get-AzTenantDeploymentWhatIfResult' has been removed.","Add parameter set 'ByTemplateObjectWithNoParameters' back to cmdlet 'Get-AzTenantDeploymentWhatIfResult'." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.GetAzureTenantDeploymentWhatIfResultCmdlet","Get-AzTenantDeploymentWhatIfResult","0","1050","The parameter set 'ByTemplateFileWithNoParameters' for cmdlet 'Get-AzTenantDeploymentWhatIfResult' has been removed.","Add parameter set 'ByTemplateFileWithNoParameters' back to cmdlet 'Get-AzTenantDeploymentWhatIfResult'." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.GetAzureTenantDeploymentWhatIfResultCmdlet","Get-AzTenantDeploymentWhatIfResult","0","1050","The parameter set 'ByTemplateUriWithNoParameters' for cmdlet 'Get-AzTenantDeploymentWhatIfResult' has been removed.","Add parameter set 'ByTemplateUriWithNoParameters' back to cmdlet 'Get-AzTenantDeploymentWhatIfResult'." \ No newline at end of file From 70fe182813cd563f28d0329799dd272da8c1d222 Mon Sep 17 00:00:00 2001 From: Gokul Premraj Date: Wed, 30 Sep 2020 14:34:36 -0400 Subject: [PATCH 16/17] Add missed breaking change issue to fix static analysis failure --- .../Exceptions/Az.Resources/BreakingChangeIssues.csv | 1 + 1 file changed, 1 insertion(+) diff --git a/tools/StaticAnalysis/Exceptions/Az.Resources/BreakingChangeIssues.csv b/tools/StaticAnalysis/Exceptions/Az.Resources/BreakingChangeIssues.csv index 93980117b781..01cee92b15d3 100644 --- a/tools/StaticAnalysis/Exceptions/Az.Resources/BreakingChangeIssues.csv +++ b/tools/StaticAnalysis/Exceptions/Az.Resources/BreakingChangeIssues.csv @@ -221,6 +221,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.TestAzureResourceGroupDeploymentCmdlet","Test-AzResourceGroupDeployment","0","1050","The parameter set 'ByTemplateObjectWithNoParameters' for cmdlet 'Test-AzResourceGroupDeployment' has been removed.","Add parameter set 'ByTemplateObjectWithNoParameters' back to cmdlet 'Test-AzResourceGroupDeployment'." "Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.TestAzureResourceGroupDeploymentCmdlet","Test-AzResourceGroupDeployment","0","1050","The parameter set 'ByTemplateFileWithNoParameters' for cmdlet 'Test-AzResourceGroupDeployment' has been removed.","Add parameter set 'ByTemplateFileWithNoParameters' back to cmdlet 'Test-AzResourceGroupDeployment'." "Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.TestAzureResourceGroupDeploymentCmdlet","Test-AzResourceGroupDeployment","0","1050","The parameter set 'ByTemplateUriWithNoParameters' for cmdlet 'Test-AzResourceGroupDeployment' has been removed.","Add parameter set 'ByTemplateUriWithNoParameters' back to cmdlet 'Test-AzResourceGroupDeployment'." +"Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.GetAzureManagementGroupDeploymentWhatIfResultCmdlet","Get-AzManagementGroupDeploymentWhatIfResult","0","2000","The cmdlet 'Get-AzManagementGroupDeploymentWhatIfResult' no longer supports the parameter 'ApiVersion' and no alias was found for the original parameter name.","Add the parameter 'ApiVersion' back to the cmdlet 'Get-AzManagementGroupDeploymentWhatIfResult', or add an alias to the original parameter name." "Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.GetAzureManagementGroupDeploymentWhatIfResultCmdlet","Get-AzManagementGroupDeploymentWhatIfResult","0","1050","The parameter set 'ByTemplateFileAndParameterObject' for cmdlet 'Get-AzManagementGroupDeploymentWhatIfResult' has been removed.","Add parameter set 'ByTemplateFileAndParameterObject' back to cmdlet 'Get-AzManagementGroupDeploymentWhatIfResult'." "Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.GetAzureManagementGroupDeploymentWhatIfResultCmdlet","Get-AzManagementGroupDeploymentWhatIfResult","0","1050","The parameter set 'ByTemplateUriAndParameterObject' for cmdlet 'Get-AzManagementGroupDeploymentWhatIfResult' has been removed.","Add parameter set 'ByTemplateUriAndParameterObject' back to cmdlet 'Get-AzManagementGroupDeploymentWhatIfResult'." "Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll","Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.GetAzureManagementGroupDeploymentWhatIfResultCmdlet","Get-AzManagementGroupDeploymentWhatIfResult","0","1050","The parameter set 'ByTemplateObjectAndParameterFile' for cmdlet 'Get-AzManagementGroupDeploymentWhatIfResult' has been removed.","Add parameter set 'ByTemplateObjectAndParameterFile' back to cmdlet 'Get-AzManagementGroupDeploymentWhatIfResult'." From 8e6d2c37a004f1399318e2189b225d35e030663d Mon Sep 17 00:00:00 2001 From: Yeming Liu Date: Fri, 9 Oct 2020 10:20:08 +0800 Subject: [PATCH 17/17] Update ChangeLog.md --- src/Resources/Resources/ChangeLog.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Resources/Resources/ChangeLog.md b/src/Resources/Resources/ChangeLog.md index 7aec8f618acc..4d97e04d159f 100644 --- a/src/Resources/Resources/ChangeLog.md +++ b/src/Resources/Resources/ChangeLog.md @@ -19,7 +19,7 @@ --> ## Upcoming Release * Updated `Get-AzResourceGroupDeploymentOperation`to use the SDK. -* Remove ApiVersion parameter from AzDeployment cmdlets. +* Removed `-ApiVersion` parameter from `*-AzDeployment` cmdlets. ## Version 2.5.1 * Added missing check for Set-AzRoleAssignment