diff --git a/src/Resources/ResourceManager/Implementation/CmdletBase/ResourceManagerCmdletBase.cs b/src/Resources/ResourceManager/Implementation/CmdletBase/ResourceManagerCmdletBase.cs index d5ffdfe6b514..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. @@ -66,14 +64,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. /// @@ -223,42 +213,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 . /// diff --git a/src/Resources/ResourceManager/Implementation/CmdletBase/ResourceManagerCmdletBaseWithAPiVersion.cs b/src/Resources/ResourceManager/Implementation/CmdletBase/ResourceManagerCmdletBaseWithAPiVersion.cs index ebd8a0e8d06d..47cbc01a05b8 100644 --- a/src/Resources/ResourceManager/Implementation/CmdletBase/ResourceManagerCmdletBaseWithAPiVersion.cs +++ b/src/Resources/ResourceManager/Implementation/CmdletBase/ResourceManagerCmdletBaseWithAPiVersion.cs @@ -13,16 +13,63 @@ // ---------------------------------------------------------------------------------- using System.Management.Automation; +using System.Threading.Tasks; +using System.Collections.Generic; namespace Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation { - public abstract class ResourceManagerCmdletBaseWithAPiVersion : ResourceManagerCmdletBase + public abstract class ResourceManagerCmdletBaseWithApiVersion : ResourceManagerCmdletBase { /// /// Gets or sets the API version. /// [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; } + + private Dictionary GetCmdletHeaders() + { + return new Dictionary + { + {"ParameterSetName", this.ParameterSetName }, + {"CommandName", this.CommandRuntime.ToString() } + }; + } + + /// + /// 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/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/ResourceGroupDeployments/GetAzureResourceGroupDeploymentOperationCmdlet.cs b/src/Resources/ResourceManager/Implementation/ResourceGroupDeployments/GetAzureResourceGroupDeploymentOperationCmdlet.cs index 85fad488e22b..e13f080f9092 100644 --- a/src/Resources/ResourceManager/Implementation/ResourceGroupDeployments/GetAzureResourceGroupDeploymentOperationCmdlet.cs +++ b/src/Resources/ResourceManager/Implementation/ResourceGroupDeployments/GetAzureResourceGroupDeploymentOperationCmdlet.cs @@ -14,22 +14,14 @@ 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 Microsoft.WindowsAzure.Commands.Common.CustomAttributes; - using Newtonsoft.Json.Linq; - using System; using System.Management.Automation; - using System.Threading.Tasks; + using Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels; /// /// Gets the deployment operation. /// - [CmdletOutputBreakingChange(typeof(PSObject), ReplacementCmdletOutputTypeName = "PSDeploymentOperation")] - [Cmdlet("Get", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "ResourceGroupDeploymentOperation"), OutputType(typeof(PSObject))] + [Cmdlet("Get", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "ResourceGroupDeploymentOperation"), OutputType(typeof(PSDeploymentOperation))] public class GetAzureResourceGroupDeploymentOperationCmdlet : ResourceManagerCmdletBase { /// @@ -40,14 +32,6 @@ public class GetAzureResourceGroupDeploymentOperationCmdlet : ResourceManagerCmd [ValidateNotNullOrEmpty] public string DeploymentName { get; set; } - /// - /// Gets or sets the subscription id parameter. - /// - [CmdletParameterBreakingChange("SubscriptionId", ChangeDescription = "Parameter is being deprecated without being replaced")] - [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. /// @@ -61,68 +45,12 @@ 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 = 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); - } } -} \ No newline at end of file +} diff --git a/src/Resources/ResourceManager/Implementation/ResourceGroups/ExportAzureResourceGroupCmdlet.cs b/src/Resources/ResourceManager/Implementation/ResourceGroups/ExportAzureResourceGroupCmdlet.cs index 64a213cc037f..66cb833b9a12 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 { /// /// Adding a hard-coded API version to be used when there is no value provided for 'ApiVersion' 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.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 9addecfa2217..6faeb8efcd8a 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/ps8115?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODExNT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3809?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzgwOT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6f367d0d-6eb6-4dc9-a360-2de748617410" + "4789d534-4261-484d-b87d-965cbd63c61a" ], "Accept-Language": [ "en-US" @@ -15,8 +15,8 @@ "User-Agent": [ "FxVersion/4.6.28207.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.8.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.10.0.0" ] }, "ResponseHeaders": { @@ -33,13 +33,13 @@ "11999" ], "x-ms-request-id": [ - "dbe5ae57-a499-47ff-b5b4-6dcae5036d9a" + "8463f620-a1da-4c4a-bc23-1d517f1c6a7d" ], "x-ms-correlation-request-id": [ - "dbe5ae57-a499-47ff-b5b4-6dcae5036d9a" + "8463f620-a1da-4c4a-bc23-1d517f1c6a7d" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20200714T221154Z:dbe5ae57-a499-47ff-b5b4-6dcae5036d9a" + "CANADACENTRAL:20201015T161330Z:8463f620-a1da-4c4a-bc23-1d517f1c6a7d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -48,7 +48,7 @@ "nosniff" ], "Date": [ - "Tue, 14 Jul 2020 22:11:53 GMT" + "Thu, 15 Oct 2020 16:13:30 GMT" ], "Content-Length": [ "98" @@ -67,13 +67,13 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8115?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODExNT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3809?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzgwOT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e5502276-3993-40b8-8988-36006a35ac94" + "04c9041e-5aaf-42e3-9eac-55d26629f8c1" ], "Accept-Language": [ "en-US" @@ -81,8 +81,8 @@ "User-Agent": [ "FxVersion/4.6.28207.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.8.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.10.0.0" ] }, "ResponseHeaders": { @@ -93,16 +93,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11886" + "11913" ], "x-ms-request-id": [ - "4eec8878-4729-4300-a6bd-5cc8e89d813b" + "a962b473-4a43-46d6-a5f9-797b1841e909" ], "x-ms-correlation-request-id": [ - "4eec8878-4729-4300-a6bd-5cc8e89d813b" + "a962b473-4a43-46d6-a5f9-797b1841e909" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20200714T221244Z:4eec8878-4729-4300-a6bd-5cc8e89d813b" + "CANADACENTRAL:20201015T161427Z:a962b473-4a43-46d6-a5f9-797b1841e909" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -111,7 +111,7 @@ "nosniff" ], "Date": [ - "Tue, 14 Jul 2020 22:12:44 GMT" + "Thu, 15 Oct 2020 16:14:26 GMT" ], "Content-Length": [ "0" @@ -127,13 +127,13 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8115?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODExNT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3809?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzgwOT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"WestUS\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "5cebca6a-88e7-4c63-8f90-fd9285dda4f9" + "59fe95cd-6ee9-4985-bad7-5df569fab753" ], "Accept-Language": [ "en-US" @@ -141,8 +141,8 @@ "User-Agent": [ "FxVersion/4.6.28207.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.8.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.10.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -162,13 +162,13 @@ "1199" ], "x-ms-request-id": [ - "780c11fc-60ca-4a53-b54a-42ce0701ddd8" + "540f4c8e-e542-4407-844f-3c4b7a82ddd4" ], "x-ms-correlation-request-id": [ - "780c11fc-60ca-4a53-b54a-42ce0701ddd8" + "540f4c8e-e542-4407-844f-3c4b7a82ddd4" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20200714T221155Z:780c11fc-60ca-4a53-b54a-42ce0701ddd8" + "CANADACENTRAL:20201015T161332Z:540f4c8e-e542-4407-844f-3c4b7a82ddd4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -177,7 +177,7 @@ "nosniff" ], "Date": [ - "Tue, 14 Jul 2020 22:11:54 GMT" + "Thu, 15 Oct 2020 16:13:31 GMT" ], "Content-Length": [ "209" @@ -192,17 +192,17 @@ "0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8115\",\r\n \"name\": \"ps8115\",\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/ps3809\",\r\n \"name\": \"ps3809\",\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/ps8115/providers/Microsoft.Resources/deployments/ps7875/validate?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODExNS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczc4NzUvdmFsaWRhdGU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3809/providers/Microsoft.Resources/deployments/ps8901/validate?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzgwOS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczg5MDEvdmFsaWRhdGU/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\": \"ps8461\"\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\": \"ps4618\"\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": [ - "db613aa8-5959-4354-ad0d-f99ebb47ae73" + "6da19978-53d5-4917-b3b0-4fbecae52b89" ], "Accept-Language": [ "en-US" @@ -210,8 +210,8 @@ "User-Agent": [ "FxVersion/4.6.28207.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.8.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.10.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -231,13 +231,13 @@ "1199" ], "x-ms-request-id": [ - "8a193322-f078-4958-82a5-1f8394d3cd98" + "9d7fc3ca-41e7-4a68-9172-f47d9318f7d8" ], "x-ms-correlation-request-id": [ - "8a193322-f078-4958-82a5-1f8394d3cd98" + "9d7fc3ca-41e7-4a68-9172-f47d9318f7d8" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20200714T221157Z:8a193322-f078-4958-82a5-1f8394d3cd98" + "CANADACENTRAL:20201015T161333Z:9d7fc3ca-41e7-4a68-9172-f47d9318f7d8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -246,10 +246,10 @@ "nosniff" ], "Date": [ - "Tue, 14 Jul 2020 22:11:56 GMT" + "Thu, 15 Oct 2020 16:13:33 GMT" ], "Content-Length": [ - "930" + "929" ], "Content-Type": [ "application/json; charset=utf-8" @@ -261,17 +261,17 @@ "0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8115/providers/Microsoft.Resources/deployments/ps7875\",\r\n \"name\": \"ps7875\",\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\": \"ps8461\"\r\n },\r\n \"storageAccountType\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\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-14T22:11:56.2634409Z\",\r\n \"duration\": \"PT0S\",\r\n \"correlationId\": \"8a193322-f078-4958-82a5-1f8394d3cd98\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\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/ps8115/providers/Microsoft.Storage/storageAccounts/ps8461\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3809/providers/Microsoft.Resources/deployments/ps8901\",\r\n \"name\": \"ps8901\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps4618\"\r\n },\r\n \"storageAccountType\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\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-10-15T16:13:33.221279Z\",\r\n \"duration\": \"PT0S\",\r\n \"correlationId\": \"9d7fc3ca-41e7-4a68-9172-f47d9318f7d8\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\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/ps3809/providers/Microsoft.Storage/storageAccounts/ps4618\"\r\n }\r\n ]\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8115/providers/Microsoft.Resources/deployments/ps7875?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODExNS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczc4NzU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3809/providers/Microsoft.Resources/deployments/ps8901?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzgwOS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczg5MDE/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\": \"ps8461\"\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\": \"ps4618\"\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": [ - "36bdcdbd-c6f5-49e8-80b0-4babcc55e17f" + "cf408d8a-f993-4979-8e8d-544c8657a554" ], "Accept-Language": [ "en-US" @@ -279,8 +279,8 @@ "User-Agent": [ "FxVersion/4.6.28207.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.8.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.10.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -297,19 +297,19 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8115/providers/Microsoft.Resources/deployments/ps7875/operationStatuses/08586068421668684198?api-version=2020-06-01" + "https://management.azure.com/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3809/providers/Microsoft.Resources/deployments/ps8901/operationStatuses/08585988284706182927?api-version=2020-06-01" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1198" ], "x-ms-request-id": [ - "a79ca781-d53f-4882-a208-ee83584a195c" + "b015308f-0eb6-4ec6-8041-a9c029f88faf" ], "x-ms-correlation-request-id": [ - "a79ca781-d53f-4882-a208-ee83584a195c" + "b015308f-0eb6-4ec6-8041-a9c029f88faf" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20200714T221200Z:a79ca781-d53f-4882-a208-ee83584a195c" + "CANADACENTRAL:20201015T161337Z:b015308f-0eb6-4ec6-8041-a9c029f88faf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -318,7 +318,7 @@ "nosniff" ], "Date": [ - "Tue, 14 Jul 2020 22:11:59 GMT" + "Thu, 15 Oct 2020 16:13:37 GMT" ], "Content-Length": [ "780" @@ -333,17 +333,17 @@ "0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8115/providers/Microsoft.Resources/deployments/ps7875\",\r\n \"name\": \"ps7875\",\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\": \"ps8461\"\r\n },\r\n \"storageAccountType\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\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-14T22:11:59.5812846Z\",\r\n \"duration\": \"PT0.9720908S\",\r\n \"correlationId\": \"a79ca781-d53f-4882-a208-ee83584a195c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"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/ps3809/providers/Microsoft.Resources/deployments/ps8901\",\r\n \"name\": \"ps8901\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps4618\"\r\n },\r\n \"storageAccountType\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\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-10-15T16:13:36.1029026Z\",\r\n \"duration\": \"PT1.2435758S\",\r\n \"correlationId\": \"b015308f-0eb6-4ec6-8041-a9c029f88faf\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\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/ps8115/deployments/ps7875/operations?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODExNS9kZXBsb3ltZW50cy9wczc4NzUvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3809/deployments/ps8901/operations?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzgwOS9kZXBsb3ltZW50cy9wczg5MDEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9f165f7d-b645-4bc7-b38f-2397e08a059e" + "dc0a97cf-6ea0-48f1-9ff5-0df71e8eceea" ], "Accept-Language": [ "en-US" @@ -351,8 +351,8 @@ "User-Agent": [ "FxVersion/4.6.28207.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.8.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.10.0.0" ] }, "ResponseHeaders": { @@ -366,13 +366,13 @@ "11998" ], "x-ms-request-id": [ - "0ec38a53-673a-45ac-9dd4-da3efd621b4f" + "fea4086c-582e-4584-8f84-b8e6f2db6d53" ], "x-ms-correlation-request-id": [ - "0ec38a53-673a-45ac-9dd4-da3efd621b4f" + "fea4086c-582e-4584-8f84-b8e6f2db6d53" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20200714T221200Z:0ec38a53-673a-45ac-9dd4-da3efd621b4f" + "CANADACENTRAL:20201015T161338Z:fea4086c-582e-4584-8f84-b8e6f2db6d53" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -381,7 +381,7 @@ "nosniff" ], "Date": [ - "Tue, 14 Jul 2020 22:12:00 GMT" + "Thu, 15 Oct 2020 16:13:37 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -400,13 +400,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8115/deployments/ps7875/operations?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODExNS9kZXBsb3ltZW50cy9wczc4NzUvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3809/deployments/ps8901/operations?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzgwOS9kZXBsb3ltZW50cy9wczg5MDEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6b4db7d6-179c-4249-abba-b30771505b9d" + "7638000a-275d-4ad4-a96e-5baf513b85fa" ], "Accept-Language": [ "en-US" @@ -414,8 +414,8 @@ "User-Agent": [ "FxVersion/4.6.28207.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.8.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.10.0.0" ] }, "ResponseHeaders": { @@ -429,13 +429,13 @@ "11996" ], "x-ms-request-id": [ - "a7c12ec9-7a75-4e21-bc06-6374a1d216df" + "bfac8cad-8c51-40ea-a8cc-ba50b445411e" ], "x-ms-correlation-request-id": [ - "a7c12ec9-7a75-4e21-bc06-6374a1d216df" + "bfac8cad-8c51-40ea-a8cc-ba50b445411e" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20200714T221201Z:a7c12ec9-7a75-4e21-bc06-6374a1d216df" + "CANADACENTRAL:20201015T161339Z:bfac8cad-8c51-40ea-a8cc-ba50b445411e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -444,7 +444,7 @@ "nosniff" ], "Date": [ - "Tue, 14 Jul 2020 22:12:00 GMT" + "Thu, 15 Oct 2020 16:13:38 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -463,13 +463,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8115/deployments/ps7875/operations?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODExNS9kZXBsb3ltZW50cy9wczc4NzUvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3809/deployments/ps8901/operations?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzgwOS9kZXBsb3ltZW50cy9wczg5MDEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1e03fff1-197b-45a1-bca2-9acb261e5929" + "d6ad6463-f146-47d1-8b2d-63cf94dff3a7" ], "Accept-Language": [ "en-US" @@ -477,8 +477,8 @@ "User-Agent": [ "FxVersion/4.6.28207.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.8.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.10.0.0" ] }, "ResponseHeaders": { @@ -492,13 +492,13 @@ "11994" ], "x-ms-request-id": [ - "da710d2a-1a13-44d7-a0ba-dcbf57f6ff65" + "efd469ca-b89d-47b7-86d9-2e813506d6f3" ], "x-ms-correlation-request-id": [ - "da710d2a-1a13-44d7-a0ba-dcbf57f6ff65" + "efd469ca-b89d-47b7-86d9-2e813506d6f3" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20200714T221201Z:da710d2a-1a13-44d7-a0ba-dcbf57f6ff65" + "CANADACENTRAL:20201015T161339Z:efd469ca-b89d-47b7-86d9-2e813506d6f3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -507,7 +507,7 @@ "nosniff" ], "Date": [ - "Tue, 14 Jul 2020 22:12:01 GMT" + "Thu, 15 Oct 2020 16:13:39 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -526,13 +526,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8115/deployments/ps7875/operations?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODExNS9kZXBsb3ltZW50cy9wczc4NzUvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3809/deployments/ps8901/operations?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzgwOS9kZXBsb3ltZW50cy9wczg5MDEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0aaa1a27-5da6-4955-ab02-206ad9715d3f" + "f7878a32-0026-40d6-b08d-37917945ea26" ], "Accept-Language": [ "en-US" @@ -540,8 +540,8 @@ "User-Agent": [ "FxVersion/4.6.28207.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.8.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.10.0.0" ] }, "ResponseHeaders": { @@ -555,13 +555,13 @@ "11992" ], "x-ms-request-id": [ - "16172df9-f50a-458b-abe0-8612b9b6b4e3" + "d8e87b58-e745-4079-85d5-15a2672cb299" ], "x-ms-correlation-request-id": [ - "16172df9-f50a-458b-abe0-8612b9b6b4e3" + "d8e87b58-e745-4079-85d5-15a2672cb299" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20200714T221202Z:16172df9-f50a-458b-abe0-8612b9b6b4e3" + "CANADACENTRAL:20201015T161340Z:d8e87b58-e745-4079-85d5-15a2672cb299" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -570,7 +570,7 @@ "nosniff" ], "Date": [ - "Tue, 14 Jul 2020 22:12:01 GMT" + "Thu, 15 Oct 2020 16:13:39 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -589,13 +589,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8115/deployments/ps7875/operations?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODExNS9kZXBsb3ltZW50cy9wczc4NzUvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3809/deployments/ps8901/operations?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzgwOS9kZXBsb3ltZW50cy9wczg5MDEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9eb31c17-5744-4770-8120-e82aba490082" + "791e573c-451e-4d71-964b-0ae725608eba" ], "Accept-Language": [ "en-US" @@ -603,8 +603,8 @@ "User-Agent": [ "FxVersion/4.6.28207.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.8.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.10.0.0" ] }, "ResponseHeaders": { @@ -618,13 +618,13 @@ "11990" ], "x-ms-request-id": [ - "21bd3c73-786e-4b9c-ba2c-a03d9a016bac" + "a0b8ee7b-a9c6-4dbb-88e3-4a71076c584d" ], "x-ms-correlation-request-id": [ - "21bd3c73-786e-4b9c-ba2c-a03d9a016bac" + "a0b8ee7b-a9c6-4dbb-88e3-4a71076c584d" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20200714T221202Z:21bd3c73-786e-4b9c-ba2c-a03d9a016bac" + "CANADACENTRAL:20201015T161340Z:a0b8ee7b-a9c6-4dbb-88e3-4a71076c584d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -633,7 +633,7 @@ "nosniff" ], "Date": [ - "Tue, 14 Jul 2020 22:12:02 GMT" + "Thu, 15 Oct 2020 16:13:40 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -652,13 +652,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8115/deployments/ps7875/operations?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODExNS9kZXBsb3ltZW50cy9wczc4NzUvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3809/deployments/ps8901/operations?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzgwOS9kZXBsb3ltZW50cy9wczg5MDEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b155998e-4e0f-4eaf-971b-3a5a6c2344fd" + "693f80ee-aa8c-4924-94b3-41b9e923070b" ], "Accept-Language": [ "en-US" @@ -666,8 +666,8 @@ "User-Agent": [ "FxVersion/4.6.28207.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.8.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.10.0.0" ] }, "ResponseHeaders": { @@ -681,13 +681,13 @@ "11988" ], "x-ms-request-id": [ - "f4a839e2-3980-4ec0-a0dc-4a819378b1a0" + "d2dc4c8e-c6f6-494d-8cdb-5ce440dd05c3" ], "x-ms-correlation-request-id": [ - "f4a839e2-3980-4ec0-a0dc-4a819378b1a0" + "d2dc4c8e-c6f6-494d-8cdb-5ce440dd05c3" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20200714T221203Z:f4a839e2-3980-4ec0-a0dc-4a819378b1a0" + "CANADACENTRAL:20201015T161341Z:d2dc4c8e-c6f6-494d-8cdb-5ce440dd05c3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -696,7 +696,7 @@ "nosniff" ], "Date": [ - "Tue, 14 Jul 2020 22:12:02 GMT" + "Thu, 15 Oct 2020 16:13:40 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -715,13 +715,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8115/deployments/ps7875/operations?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODExNS9kZXBsb3ltZW50cy9wczc4NzUvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3809/deployments/ps8901/operations?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzgwOS9kZXBsb3ltZW50cy9wczg5MDEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1ede7330-6c7d-4a24-9a79-a5949fdfb7f9" + "3a22e86b-ca1d-407d-8e64-275213e6e8e7" ], "Accept-Language": [ "en-US" @@ -729,8 +729,8 @@ "User-Agent": [ "FxVersion/4.6.28207.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.8.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.10.0.0" ] }, "ResponseHeaders": { @@ -744,13 +744,13 @@ "11986" ], "x-ms-request-id": [ - "5e1732fd-131d-448b-9174-d7de1dacf5f4" + "7100b483-8dd5-435c-b125-55c4bed9fd84" ], "x-ms-correlation-request-id": [ - "5e1732fd-131d-448b-9174-d7de1dacf5f4" + "7100b483-8dd5-435c-b125-55c4bed9fd84" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20200714T221203Z:5e1732fd-131d-448b-9174-d7de1dacf5f4" + "CANADACENTRAL:20201015T161341Z:7100b483-8dd5-435c-b125-55c4bed9fd84" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -759,7 +759,7 @@ "nosniff" ], "Date": [ - "Tue, 14 Jul 2020 22:12:03 GMT" + "Thu, 15 Oct 2020 16:13:41 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -778,13 +778,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8115/deployments/ps7875/operations?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODExNS9kZXBsb3ltZW50cy9wczc4NzUvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3809/deployments/ps8901/operations?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzgwOS9kZXBsb3ltZW50cy9wczg5MDEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8a455e29-083b-4462-92dd-be18a953d15a" + "e5eced44-acd5-4ae8-8335-bdd0edf2293d" ], "Accept-Language": [ "en-US" @@ -792,8 +792,8 @@ "User-Agent": [ "FxVersion/4.6.28207.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.8.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.10.0.0" ] }, "ResponseHeaders": { @@ -807,13 +807,13 @@ "11984" ], "x-ms-request-id": [ - "fb7d2fd0-fdd1-4c4e-a9ea-9d27c2494e80" + "8234548f-d470-46a9-b12e-8e82ea39eb26" ], "x-ms-correlation-request-id": [ - "fb7d2fd0-fdd1-4c4e-a9ea-9d27c2494e80" + "8234548f-d470-46a9-b12e-8e82ea39eb26" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20200714T221204Z:fb7d2fd0-fdd1-4c4e-a9ea-9d27c2494e80" + "CANADACENTRAL:20201015T161342Z:8234548f-d470-46a9-b12e-8e82ea39eb26" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -822,7 +822,7 @@ "nosniff" ], "Date": [ - "Tue, 14 Jul 2020 22:12:03 GMT" + "Thu, 15 Oct 2020 16:13:41 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -837,17 +837,17 @@ "0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8115/providers/Microsoft.Resources/deployments/ps7875/operations/1E8ECD20217625B9\",\r\n \"operationId\": \"1E8ECD20217625B9\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-07-14T22:12:03.8923041Z\",\r\n \"duration\": \"PT3.2448776S\",\r\n \"trackingId\": \"4827f3fc-4abb-4029-83c5-d21f9393560f\",\r\n \"serviceRequestId\": \"dd864564-58db-4946-b42d-8bf443addba2\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8115/providers/Microsoft.Storage/storageAccounts/ps8461\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps8461\"\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/ps3809/providers/Microsoft.Resources/deployments/ps8901/operations/5500FCAC030799E2\",\r\n \"operationId\": \"5500FCAC030799E2\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-10-15T16:13:41.9522242Z\",\r\n \"duration\": \"PT3.6037161S\",\r\n \"trackingId\": \"c749ba6a-e27d-4533-9c42-d357296bd596\",\r\n \"serviceRequestId\": \"3e802184-9fd1-46aa-94d9-187fdfe0403d\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3809/providers/Microsoft.Storage/storageAccounts/ps4618\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps4618\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8115/deployments/ps7875/operations?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODExNS9kZXBsb3ltZW50cy9wczc4NzUvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3809/deployments/ps8901/operations?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzgwOS9kZXBsb3ltZW50cy9wczg5MDEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c800e531-265f-4471-9e9f-bb6b150d1a8d" + "7cb114da-20ad-4745-8912-5444812ac2f8" ], "Accept-Language": [ "en-US" @@ -855,8 +855,8 @@ "User-Agent": [ "FxVersion/4.6.28207.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.8.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.10.0.0" ] }, "ResponseHeaders": { @@ -870,13 +870,13 @@ "11982" ], "x-ms-request-id": [ - "ebc44db2-cf8f-4d67-8cd2-a2efb72a1146" + "dcfb8125-c360-4ad7-b253-5f294d9ad83f" ], "x-ms-correlation-request-id": [ - "ebc44db2-cf8f-4d67-8cd2-a2efb72a1146" + "dcfb8125-c360-4ad7-b253-5f294d9ad83f" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20200714T221204Z:ebc44db2-cf8f-4d67-8cd2-a2efb72a1146" + "CANADACENTRAL:20201015T161342Z:dcfb8125-c360-4ad7-b253-5f294d9ad83f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -885,7 +885,7 @@ "nosniff" ], "Date": [ - "Tue, 14 Jul 2020 22:12:04 GMT" + "Thu, 15 Oct 2020 16:13:42 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -900,17 +900,17 @@ "0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8115/providers/Microsoft.Resources/deployments/ps7875/operations/1E8ECD20217625B9\",\r\n \"operationId\": \"1E8ECD20217625B9\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-07-14T22:12:03.8923041Z\",\r\n \"duration\": \"PT3.2448776S\",\r\n \"trackingId\": \"4827f3fc-4abb-4029-83c5-d21f9393560f\",\r\n \"serviceRequestId\": \"dd864564-58db-4946-b42d-8bf443addba2\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8115/providers/Microsoft.Storage/storageAccounts/ps8461\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps8461\"\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/ps3809/providers/Microsoft.Resources/deployments/ps8901/operations/5500FCAC030799E2\",\r\n \"operationId\": \"5500FCAC030799E2\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-10-15T16:13:41.9522242Z\",\r\n \"duration\": \"PT3.6037161S\",\r\n \"trackingId\": \"c749ba6a-e27d-4533-9c42-d357296bd596\",\r\n \"serviceRequestId\": \"3e802184-9fd1-46aa-94d9-187fdfe0403d\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3809/providers/Microsoft.Storage/storageAccounts/ps4618\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps4618\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8115/deployments/ps7875/operations?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODExNS9kZXBsb3ltZW50cy9wczc4NzUvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3809/deployments/ps8901/operations?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzgwOS9kZXBsb3ltZW50cy9wczg5MDEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a62a62af-ca55-48b8-abf9-3e64a01935a5" + "485cee84-f065-43c7-8043-83a8e8d90052" ], "Accept-Language": [ "en-US" @@ -918,8 +918,8 @@ "User-Agent": [ "FxVersion/4.6.28207.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.8.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.10.0.0" ] }, "ResponseHeaders": { @@ -933,13 +933,13 @@ "11980" ], "x-ms-request-id": [ - "e071b1d4-67e6-4e06-9c10-f359e183f9e4" + "941c0444-6032-4cc5-8e4b-6cf27c295c92" ], "x-ms-correlation-request-id": [ - "e071b1d4-67e6-4e06-9c10-f359e183f9e4" + "941c0444-6032-4cc5-8e4b-6cf27c295c92" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20200714T221205Z:e071b1d4-67e6-4e06-9c10-f359e183f9e4" + "CANADACENTRAL:20201015T161343Z:941c0444-6032-4cc5-8e4b-6cf27c295c92" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -948,7 +948,7 @@ "nosniff" ], "Date": [ - "Tue, 14 Jul 2020 22:12:04 GMT" + "Thu, 15 Oct 2020 16:13:42 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -963,17 +963,17 @@ "0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8115/providers/Microsoft.Resources/deployments/ps7875/operations/1E8ECD20217625B9\",\r\n \"operationId\": \"1E8ECD20217625B9\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-07-14T22:12:03.8923041Z\",\r\n \"duration\": \"PT3.2448776S\",\r\n \"trackingId\": \"4827f3fc-4abb-4029-83c5-d21f9393560f\",\r\n \"serviceRequestId\": \"dd864564-58db-4946-b42d-8bf443addba2\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8115/providers/Microsoft.Storage/storageAccounts/ps8461\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps8461\"\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/ps3809/providers/Microsoft.Resources/deployments/ps8901/operations/5500FCAC030799E2\",\r\n \"operationId\": \"5500FCAC030799E2\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-10-15T16:13:41.9522242Z\",\r\n \"duration\": \"PT3.6037161S\",\r\n \"trackingId\": \"c749ba6a-e27d-4533-9c42-d357296bd596\",\r\n \"serviceRequestId\": \"3e802184-9fd1-46aa-94d9-187fdfe0403d\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3809/providers/Microsoft.Storage/storageAccounts/ps4618\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps4618\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8115/deployments/ps7875/operations?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODExNS9kZXBsb3ltZW50cy9wczc4NzUvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3809/deployments/ps8901/operations?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzgwOS9kZXBsb3ltZW50cy9wczg5MDEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f9300816-2eb2-4e6f-819e-90d9e9a06e0b" + "5fd34e29-dd9f-41b8-8042-5be14b55961f" ], "Accept-Language": [ "en-US" @@ -981,8 +981,8 @@ "User-Agent": [ "FxVersion/4.6.28207.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.8.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.10.0.0" ] }, "ResponseHeaders": { @@ -996,13 +996,13 @@ "11978" ], "x-ms-request-id": [ - "ad815c46-528f-4f13-bd14-e16f48e83835" + "e8cd645f-8487-4750-8542-b8228f7decea" ], "x-ms-correlation-request-id": [ - "ad815c46-528f-4f13-bd14-e16f48e83835" + "e8cd645f-8487-4750-8542-b8228f7decea" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20200714T221205Z:ad815c46-528f-4f13-bd14-e16f48e83835" + "CANADACENTRAL:20201015T161343Z:e8cd645f-8487-4750-8542-b8228f7decea" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1011,7 +1011,7 @@ "nosniff" ], "Date": [ - "Tue, 14 Jul 2020 22:12:05 GMT" + "Thu, 15 Oct 2020 16:13:43 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1026,17 +1026,17 @@ "0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8115/providers/Microsoft.Resources/deployments/ps7875/operations/1E8ECD20217625B9\",\r\n \"operationId\": \"1E8ECD20217625B9\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-07-14T22:12:03.8923041Z\",\r\n \"duration\": \"PT3.2448776S\",\r\n \"trackingId\": \"4827f3fc-4abb-4029-83c5-d21f9393560f\",\r\n \"serviceRequestId\": \"dd864564-58db-4946-b42d-8bf443addba2\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8115/providers/Microsoft.Storage/storageAccounts/ps8461\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps8461\"\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/ps3809/providers/Microsoft.Resources/deployments/ps8901/operations/5500FCAC030799E2\",\r\n \"operationId\": \"5500FCAC030799E2\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-10-15T16:13:41.9522242Z\",\r\n \"duration\": \"PT3.6037161S\",\r\n \"trackingId\": \"c749ba6a-e27d-4533-9c42-d357296bd596\",\r\n \"serviceRequestId\": \"3e802184-9fd1-46aa-94d9-187fdfe0403d\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3809/providers/Microsoft.Storage/storageAccounts/ps4618\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps4618\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8115/deployments/ps7875/operations?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODExNS9kZXBsb3ltZW50cy9wczc4NzUvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3809/deployments/ps8901/operations?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzgwOS9kZXBsb3ltZW50cy9wczg5MDEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "df8a03fc-3abd-4ef3-988f-d873e01d17e1" + "7acce23c-77dd-440a-a924-2e93667774ad" ], "Accept-Language": [ "en-US" @@ -1044,8 +1044,8 @@ "User-Agent": [ "FxVersion/4.6.28207.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.8.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.10.0.0" ] }, "ResponseHeaders": { @@ -1059,13 +1059,13 @@ "11976" ], "x-ms-request-id": [ - "a20c8cca-912f-4bc5-a1a4-690391fbb26f" + "3d01bcf6-0a4b-43ad-bb72-a3bbd1326900" ], "x-ms-correlation-request-id": [ - "a20c8cca-912f-4bc5-a1a4-690391fbb26f" + "3d01bcf6-0a4b-43ad-bb72-a3bbd1326900" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20200714T221206Z:a20c8cca-912f-4bc5-a1a4-690391fbb26f" + "CANADACENTRAL:20201015T161344Z:3d01bcf6-0a4b-43ad-bb72-a3bbd1326900" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1074,7 +1074,7 @@ "nosniff" ], "Date": [ - "Tue, 14 Jul 2020 22:12:05 GMT" + "Thu, 15 Oct 2020 16:13:44 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1089,17 +1089,17 @@ "0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8115/providers/Microsoft.Resources/deployments/ps7875/operations/1E8ECD20217625B9\",\r\n \"operationId\": \"1E8ECD20217625B9\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-07-14T22:12:03.8923041Z\",\r\n \"duration\": \"PT3.2448776S\",\r\n \"trackingId\": \"4827f3fc-4abb-4029-83c5-d21f9393560f\",\r\n \"serviceRequestId\": \"dd864564-58db-4946-b42d-8bf443addba2\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8115/providers/Microsoft.Storage/storageAccounts/ps8461\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps8461\"\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/ps3809/providers/Microsoft.Resources/deployments/ps8901/operations/5500FCAC030799E2\",\r\n \"operationId\": \"5500FCAC030799E2\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-10-15T16:13:41.9522242Z\",\r\n \"duration\": \"PT3.6037161S\",\r\n \"trackingId\": \"c749ba6a-e27d-4533-9c42-d357296bd596\",\r\n \"serviceRequestId\": \"3e802184-9fd1-46aa-94d9-187fdfe0403d\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3809/providers/Microsoft.Storage/storageAccounts/ps4618\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps4618\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8115/deployments/ps7875/operations?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODExNS9kZXBsb3ltZW50cy9wczc4NzUvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3809/deployments/ps8901/operations?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzgwOS9kZXBsb3ltZW50cy9wczg5MDEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "77935ea8-354a-402c-920f-9720d39c5fcf" + "11e33abe-ff1f-4173-a4fb-e756a432e8ad" ], "Accept-Language": [ "en-US" @@ -1107,8 +1107,8 @@ "User-Agent": [ "FxVersion/4.6.28207.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.8.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.10.0.0" ] }, "ResponseHeaders": { @@ -1122,13 +1122,13 @@ "11974" ], "x-ms-request-id": [ - "9008ad53-079e-4071-9e49-f14323a6ca97" + "c0abc23f-1ac5-44a6-9e9f-a4165b3b8645" ], "x-ms-correlation-request-id": [ - "9008ad53-079e-4071-9e49-f14323a6ca97" + "c0abc23f-1ac5-44a6-9e9f-a4165b3b8645" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20200714T221206Z:9008ad53-079e-4071-9e49-f14323a6ca97" + "CANADACENTRAL:20201015T161345Z:c0abc23f-1ac5-44a6-9e9f-a4165b3b8645" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1137,7 +1137,7 @@ "nosniff" ], "Date": [ - "Tue, 14 Jul 2020 22:12:06 GMT" + "Thu, 15 Oct 2020 16:13:44 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1152,17 +1152,17 @@ "0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8115/providers/Microsoft.Resources/deployments/ps7875/operations/1E8ECD20217625B9\",\r\n \"operationId\": \"1E8ECD20217625B9\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-07-14T22:12:03.8923041Z\",\r\n \"duration\": \"PT3.2448776S\",\r\n \"trackingId\": \"4827f3fc-4abb-4029-83c5-d21f9393560f\",\r\n \"serviceRequestId\": \"dd864564-58db-4946-b42d-8bf443addba2\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8115/providers/Microsoft.Storage/storageAccounts/ps8461\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps8461\"\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/ps3809/providers/Microsoft.Resources/deployments/ps8901/operations/5500FCAC030799E2\",\r\n \"operationId\": \"5500FCAC030799E2\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-10-15T16:13:41.9522242Z\",\r\n \"duration\": \"PT3.6037161S\",\r\n \"trackingId\": \"c749ba6a-e27d-4533-9c42-d357296bd596\",\r\n \"serviceRequestId\": \"3e802184-9fd1-46aa-94d9-187fdfe0403d\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3809/providers/Microsoft.Storage/storageAccounts/ps4618\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps4618\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8115/deployments/ps7875/operations?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODExNS9kZXBsb3ltZW50cy9wczc4NzUvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3809/deployments/ps8901/operations?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzgwOS9kZXBsb3ltZW50cy9wczg5MDEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "35d2d5a0-546e-40ab-bfa2-3913a364cee5" + "be704b61-6fd9-42f1-a609-b1771c2e5c02" ], "Accept-Language": [ "en-US" @@ -1170,8 +1170,8 @@ "User-Agent": [ "FxVersion/4.6.28207.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.8.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.10.0.0" ] }, "ResponseHeaders": { @@ -1185,13 +1185,13 @@ "11972" ], "x-ms-request-id": [ - "8a63a6dc-924c-4be5-8844-93f774a50a99" + "2ce412e3-71d6-4154-8c55-6b78ba480b86" ], "x-ms-correlation-request-id": [ - "8a63a6dc-924c-4be5-8844-93f774a50a99" + "2ce412e3-71d6-4154-8c55-6b78ba480b86" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20200714T221207Z:8a63a6dc-924c-4be5-8844-93f774a50a99" + "CANADACENTRAL:20201015T161345Z:2ce412e3-71d6-4154-8c55-6b78ba480b86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1200,7 +1200,7 @@ "nosniff" ], "Date": [ - "Tue, 14 Jul 2020 22:12:06 GMT" + "Thu, 15 Oct 2020 16:13:45 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1215,17 +1215,17 @@ "0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8115/providers/Microsoft.Resources/deployments/ps7875/operations/1E8ECD20217625B9\",\r\n \"operationId\": \"1E8ECD20217625B9\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-07-14T22:12:03.8923041Z\",\r\n \"duration\": \"PT3.2448776S\",\r\n \"trackingId\": \"4827f3fc-4abb-4029-83c5-d21f9393560f\",\r\n \"serviceRequestId\": \"dd864564-58db-4946-b42d-8bf443addba2\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8115/providers/Microsoft.Storage/storageAccounts/ps8461\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps8461\"\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/ps3809/providers/Microsoft.Resources/deployments/ps8901/operations/5500FCAC030799E2\",\r\n \"operationId\": \"5500FCAC030799E2\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-10-15T16:13:41.9522242Z\",\r\n \"duration\": \"PT3.6037161S\",\r\n \"trackingId\": \"c749ba6a-e27d-4533-9c42-d357296bd596\",\r\n \"serviceRequestId\": \"3e802184-9fd1-46aa-94d9-187fdfe0403d\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3809/providers/Microsoft.Storage/storageAccounts/ps4618\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps4618\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8115/deployments/ps7875/operations?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODExNS9kZXBsb3ltZW50cy9wczc4NzUvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3809/deployments/ps8901/operations?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzgwOS9kZXBsb3ltZW50cy9wczg5MDEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4738618a-2edd-4b6c-aa22-bd3f92f95c5f" + "4f3dd0a1-6b24-463a-87f9-3d9c191906ba" ], "Accept-Language": [ "en-US" @@ -1233,8 +1233,8 @@ "User-Agent": [ "FxVersion/4.6.28207.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.8.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.10.0.0" ] }, "ResponseHeaders": { @@ -1248,13 +1248,13 @@ "11970" ], "x-ms-request-id": [ - "590af283-0737-4495-8931-f09624bad76a" + "e6dad0de-ca11-43a7-b11c-711c717a70d5" ], "x-ms-correlation-request-id": [ - "590af283-0737-4495-8931-f09624bad76a" + "e6dad0de-ca11-43a7-b11c-711c717a70d5" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20200714T221207Z:590af283-0737-4495-8931-f09624bad76a" + "CANADACENTRAL:20201015T161346Z:e6dad0de-ca11-43a7-b11c-711c717a70d5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1263,7 +1263,7 @@ "nosniff" ], "Date": [ - "Tue, 14 Jul 2020 22:12:06 GMT" + "Thu, 15 Oct 2020 16:13:45 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1278,17 +1278,17 @@ "0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8115/providers/Microsoft.Resources/deployments/ps7875/operations/1E8ECD20217625B9\",\r\n \"operationId\": \"1E8ECD20217625B9\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-07-14T22:12:03.8923041Z\",\r\n \"duration\": \"PT3.2448776S\",\r\n \"trackingId\": \"4827f3fc-4abb-4029-83c5-d21f9393560f\",\r\n \"serviceRequestId\": \"dd864564-58db-4946-b42d-8bf443addba2\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8115/providers/Microsoft.Storage/storageAccounts/ps8461\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps8461\"\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/ps3809/providers/Microsoft.Resources/deployments/ps8901/operations/5500FCAC030799E2\",\r\n \"operationId\": \"5500FCAC030799E2\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-10-15T16:13:41.9522242Z\",\r\n \"duration\": \"PT3.6037161S\",\r\n \"trackingId\": \"c749ba6a-e27d-4533-9c42-d357296bd596\",\r\n \"serviceRequestId\": \"3e802184-9fd1-46aa-94d9-187fdfe0403d\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3809/providers/Microsoft.Storage/storageAccounts/ps4618\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps4618\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8115/deployments/ps7875/operations?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODExNS9kZXBsb3ltZW50cy9wczc4NzUvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3809/deployments/ps8901/operations?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzgwOS9kZXBsb3ltZW50cy9wczg5MDEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "55da1461-988c-41c3-a230-793fdaa4a15a" + "e1a5b3d4-239b-447a-a482-5d3741795f05" ], "Accept-Language": [ "en-US" @@ -1296,8 +1296,8 @@ "User-Agent": [ "FxVersion/4.6.28207.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.8.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.10.0.0" ] }, "ResponseHeaders": { @@ -1311,13 +1311,13 @@ "11968" ], "x-ms-request-id": [ - "4b0b1e48-f570-4325-9f7c-70924e2494e4" + "e0c6c5ad-f22e-40e2-b396-dbadb316b3d5" ], "x-ms-correlation-request-id": [ - "4b0b1e48-f570-4325-9f7c-70924e2494e4" + "e0c6c5ad-f22e-40e2-b396-dbadb316b3d5" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20200714T221208Z:4b0b1e48-f570-4325-9f7c-70924e2494e4" + "CANADACENTRAL:20201015T161346Z:e0c6c5ad-f22e-40e2-b396-dbadb316b3d5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1326,7 +1326,7 @@ "nosniff" ], "Date": [ - "Tue, 14 Jul 2020 22:12:07 GMT" + "Thu, 15 Oct 2020 16:13:46 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1341,17 +1341,17 @@ "0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8115/providers/Microsoft.Resources/deployments/ps7875/operations/1E8ECD20217625B9\",\r\n \"operationId\": \"1E8ECD20217625B9\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-07-14T22:12:03.8923041Z\",\r\n \"duration\": \"PT3.2448776S\",\r\n \"trackingId\": \"4827f3fc-4abb-4029-83c5-d21f9393560f\",\r\n \"serviceRequestId\": \"dd864564-58db-4946-b42d-8bf443addba2\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8115/providers/Microsoft.Storage/storageAccounts/ps8461\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps8461\"\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/ps3809/providers/Microsoft.Resources/deployments/ps8901/operations/5500FCAC030799E2\",\r\n \"operationId\": \"5500FCAC030799E2\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-10-15T16:13:41.9522242Z\",\r\n \"duration\": \"PT3.6037161S\",\r\n \"trackingId\": \"c749ba6a-e27d-4533-9c42-d357296bd596\",\r\n \"serviceRequestId\": \"3e802184-9fd1-46aa-94d9-187fdfe0403d\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3809/providers/Microsoft.Storage/storageAccounts/ps4618\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps4618\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8115/deployments/ps7875/operations?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODExNS9kZXBsb3ltZW50cy9wczc4NzUvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3809/deployments/ps8901/operations?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzgwOS9kZXBsb3ltZW50cy9wczg5MDEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5540eb99-d371-4818-85d8-3d1d62e97efc" + "cf1680f4-7e1a-44f5-85f6-28224f059035" ], "Accept-Language": [ "en-US" @@ -1359,8 +1359,8 @@ "User-Agent": [ "FxVersion/4.6.28207.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.8.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.10.0.0" ] }, "ResponseHeaders": { @@ -1374,13 +1374,13 @@ "11966" ], "x-ms-request-id": [ - "c4641d61-4b1a-4c66-bcab-46f43c78d093" + "e4a6ec59-4e39-41c7-85c6-e3aef36db05b" ], "x-ms-correlation-request-id": [ - "c4641d61-4b1a-4c66-bcab-46f43c78d093" + "e4a6ec59-4e39-41c7-85c6-e3aef36db05b" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20200714T221208Z:c4641d61-4b1a-4c66-bcab-46f43c78d093" + "CANADACENTRAL:20201015T161347Z:e4a6ec59-4e39-41c7-85c6-e3aef36db05b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1389,7 +1389,7 @@ "nosniff" ], "Date": [ - "Tue, 14 Jul 2020 22:12:07 GMT" + "Thu, 15 Oct 2020 16:13:46 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1404,17 +1404,17 @@ "0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8115/providers/Microsoft.Resources/deployments/ps7875/operations/1E8ECD20217625B9\",\r\n \"operationId\": \"1E8ECD20217625B9\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-07-14T22:12:03.8923041Z\",\r\n \"duration\": \"PT3.2448776S\",\r\n \"trackingId\": \"4827f3fc-4abb-4029-83c5-d21f9393560f\",\r\n \"serviceRequestId\": \"dd864564-58db-4946-b42d-8bf443addba2\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8115/providers/Microsoft.Storage/storageAccounts/ps8461\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps8461\"\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/ps3809/providers/Microsoft.Resources/deployments/ps8901/operations/5500FCAC030799E2\",\r\n \"operationId\": \"5500FCAC030799E2\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-10-15T16:13:41.9522242Z\",\r\n \"duration\": \"PT3.6037161S\",\r\n \"trackingId\": \"c749ba6a-e27d-4533-9c42-d357296bd596\",\r\n \"serviceRequestId\": \"3e802184-9fd1-46aa-94d9-187fdfe0403d\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3809/providers/Microsoft.Storage/storageAccounts/ps4618\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps4618\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8115/deployments/ps7875/operations?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODExNS9kZXBsb3ltZW50cy9wczc4NzUvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3809/deployments/ps8901/operations?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzgwOS9kZXBsb3ltZW50cy9wczg5MDEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "61e17e0d-438b-4667-85dc-ae49a32d1400" + "fdacdce0-ea79-4ca5-b0c9-76bb96e4ca0f" ], "Accept-Language": [ "en-US" @@ -1422,8 +1422,8 @@ "User-Agent": [ "FxVersion/4.6.28207.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.8.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.10.0.0" ] }, "ResponseHeaders": { @@ -1437,13 +1437,13 @@ "11964" ], "x-ms-request-id": [ - "4a977ce0-e1d0-4a2c-aa2a-68b9e17d5824" + "a4311402-c1ab-46cd-b3a7-f3f83fe3f03d" ], "x-ms-correlation-request-id": [ - "4a977ce0-e1d0-4a2c-aa2a-68b9e17d5824" + "a4311402-c1ab-46cd-b3a7-f3f83fe3f03d" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20200714T221208Z:4a977ce0-e1d0-4a2c-aa2a-68b9e17d5824" + "CANADACENTRAL:20201015T161347Z:a4311402-c1ab-46cd-b3a7-f3f83fe3f03d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1452,7 +1452,7 @@ "nosniff" ], "Date": [ - "Tue, 14 Jul 2020 22:12:08 GMT" + "Thu, 15 Oct 2020 16:13:47 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1467,17 +1467,17 @@ "0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8115/providers/Microsoft.Resources/deployments/ps7875/operations/1E8ECD20217625B9\",\r\n \"operationId\": \"1E8ECD20217625B9\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-07-14T22:12:03.8923041Z\",\r\n \"duration\": \"PT3.2448776S\",\r\n \"trackingId\": \"4827f3fc-4abb-4029-83c5-d21f9393560f\",\r\n \"serviceRequestId\": \"dd864564-58db-4946-b42d-8bf443addba2\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8115/providers/Microsoft.Storage/storageAccounts/ps8461\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps8461\"\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/ps3809/providers/Microsoft.Resources/deployments/ps8901/operations/5500FCAC030799E2\",\r\n \"operationId\": \"5500FCAC030799E2\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-10-15T16:13:41.9522242Z\",\r\n \"duration\": \"PT3.6037161S\",\r\n \"trackingId\": \"c749ba6a-e27d-4533-9c42-d357296bd596\",\r\n \"serviceRequestId\": \"3e802184-9fd1-46aa-94d9-187fdfe0403d\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3809/providers/Microsoft.Storage/storageAccounts/ps4618\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps4618\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8115/deployments/ps7875/operations?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODExNS9kZXBsb3ltZW50cy9wczc4NzUvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3809/deployments/ps8901/operations?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzgwOS9kZXBsb3ltZW50cy9wczg5MDEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7f6ca796-6943-459a-b24a-0e3647623168" + "55227bdc-351f-47a5-a188-b6224e46cd2e" ], "Accept-Language": [ "en-US" @@ -1485,8 +1485,8 @@ "User-Agent": [ "FxVersion/4.6.28207.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.8.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.10.0.0" ] }, "ResponseHeaders": { @@ -1500,13 +1500,13 @@ "11962" ], "x-ms-request-id": [ - "43871c20-a3f9-4b0d-acb4-f78ef0114dd8" + "3ef2f6d4-6f9c-47a4-ab14-c3e552cb8bf4" ], "x-ms-correlation-request-id": [ - "43871c20-a3f9-4b0d-acb4-f78ef0114dd8" + "3ef2f6d4-6f9c-47a4-ab14-c3e552cb8bf4" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20200714T221209Z:43871c20-a3f9-4b0d-acb4-f78ef0114dd8" + "CANADACENTRAL:20201015T161348Z:3ef2f6d4-6f9c-47a4-ab14-c3e552cb8bf4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1515,7 +1515,7 @@ "nosniff" ], "Date": [ - "Tue, 14 Jul 2020 22:12:08 GMT" + "Thu, 15 Oct 2020 16:13:47 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1530,17 +1530,17 @@ "0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8115/providers/Microsoft.Resources/deployments/ps7875/operations/1E8ECD20217625B9\",\r\n \"operationId\": \"1E8ECD20217625B9\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-07-14T22:12:03.8923041Z\",\r\n \"duration\": \"PT3.2448776S\",\r\n \"trackingId\": \"4827f3fc-4abb-4029-83c5-d21f9393560f\",\r\n \"serviceRequestId\": \"dd864564-58db-4946-b42d-8bf443addba2\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8115/providers/Microsoft.Storage/storageAccounts/ps8461\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps8461\"\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/ps3809/providers/Microsoft.Resources/deployments/ps8901/operations/5500FCAC030799E2\",\r\n \"operationId\": \"5500FCAC030799E2\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-10-15T16:13:41.9522242Z\",\r\n \"duration\": \"PT3.6037161S\",\r\n \"trackingId\": \"c749ba6a-e27d-4533-9c42-d357296bd596\",\r\n \"serviceRequestId\": \"3e802184-9fd1-46aa-94d9-187fdfe0403d\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3809/providers/Microsoft.Storage/storageAccounts/ps4618\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps4618\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8115/deployments/ps7875/operations?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODExNS9kZXBsb3ltZW50cy9wczc4NzUvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3809/deployments/ps8901/operations?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzgwOS9kZXBsb3ltZW50cy9wczg5MDEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ed498805-a9fc-4add-a6c0-f0dcb0e4fc9e" + "2534dca5-2a19-46df-aafd-89c225716157" ], "Accept-Language": [ "en-US" @@ -1548,8 +1548,8 @@ "User-Agent": [ "FxVersion/4.6.28207.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.8.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.10.0.0" ] }, "ResponseHeaders": { @@ -1563,13 +1563,13 @@ "11960" ], "x-ms-request-id": [ - "91c1d5d9-2d36-43a1-a6a9-498e2ae4a99f" + "38a4c15a-446e-40e2-9dd5-d13ccb10e995" ], "x-ms-correlation-request-id": [ - "91c1d5d9-2d36-43a1-a6a9-498e2ae4a99f" + "38a4c15a-446e-40e2-9dd5-d13ccb10e995" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20200714T221209Z:91c1d5d9-2d36-43a1-a6a9-498e2ae4a99f" + "CANADACENTRAL:20201015T161348Z:38a4c15a-446e-40e2-9dd5-d13ccb10e995" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1578,7 +1578,7 @@ "nosniff" ], "Date": [ - "Tue, 14 Jul 2020 22:12:09 GMT" + "Thu, 15 Oct 2020 16:13:48 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1593,17 +1593,17 @@ "0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8115/providers/Microsoft.Resources/deployments/ps7875/operations/1E8ECD20217625B9\",\r\n \"operationId\": \"1E8ECD20217625B9\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-07-14T22:12:03.8923041Z\",\r\n \"duration\": \"PT3.2448776S\",\r\n \"trackingId\": \"4827f3fc-4abb-4029-83c5-d21f9393560f\",\r\n \"serviceRequestId\": \"dd864564-58db-4946-b42d-8bf443addba2\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8115/providers/Microsoft.Storage/storageAccounts/ps8461\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps8461\"\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/ps3809/providers/Microsoft.Resources/deployments/ps8901/operations/5500FCAC030799E2\",\r\n \"operationId\": \"5500FCAC030799E2\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-10-15T16:13:41.9522242Z\",\r\n \"duration\": \"PT3.6037161S\",\r\n \"trackingId\": \"c749ba6a-e27d-4533-9c42-d357296bd596\",\r\n \"serviceRequestId\": \"3e802184-9fd1-46aa-94d9-187fdfe0403d\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3809/providers/Microsoft.Storage/storageAccounts/ps4618\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps4618\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8115/deployments/ps7875/operations?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODExNS9kZXBsb3ltZW50cy9wczc4NzUvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3809/deployments/ps8901/operations?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzgwOS9kZXBsb3ltZW50cy9wczg5MDEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3c378399-ec19-44f2-bb69-77eb5f35134f" + "5d8b6cc8-75fb-4e8d-b691-7a9a2d8bfa12" ], "Accept-Language": [ "en-US" @@ -1611,8 +1611,8 @@ "User-Agent": [ "FxVersion/4.6.28207.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.8.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.10.0.0" ] }, "ResponseHeaders": { @@ -1626,13 +1626,13 @@ "11958" ], "x-ms-request-id": [ - "dd33643f-3296-40d3-862b-41be435b35dd" + "6a112a6c-e1ae-4cb9-9d05-8aeef0d823eb" ], "x-ms-correlation-request-id": [ - "dd33643f-3296-40d3-862b-41be435b35dd" + "6a112a6c-e1ae-4cb9-9d05-8aeef0d823eb" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20200714T221210Z:dd33643f-3296-40d3-862b-41be435b35dd" + "CANADACENTRAL:20201015T161349Z:6a112a6c-e1ae-4cb9-9d05-8aeef0d823eb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1641,7 +1641,7 @@ "nosniff" ], "Date": [ - "Tue, 14 Jul 2020 22:12:09 GMT" + "Thu, 15 Oct 2020 16:13:48 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1656,17 +1656,17 @@ "0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8115/providers/Microsoft.Resources/deployments/ps7875/operations/1E8ECD20217625B9\",\r\n \"operationId\": \"1E8ECD20217625B9\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-07-14T22:12:03.8923041Z\",\r\n \"duration\": \"PT3.2448776S\",\r\n \"trackingId\": \"4827f3fc-4abb-4029-83c5-d21f9393560f\",\r\n \"serviceRequestId\": \"dd864564-58db-4946-b42d-8bf443addba2\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8115/providers/Microsoft.Storage/storageAccounts/ps8461\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps8461\"\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/ps3809/providers/Microsoft.Resources/deployments/ps8901/operations/5500FCAC030799E2\",\r\n \"operationId\": \"5500FCAC030799E2\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-10-15T16:13:41.9522242Z\",\r\n \"duration\": \"PT3.6037161S\",\r\n \"trackingId\": \"c749ba6a-e27d-4533-9c42-d357296bd596\",\r\n \"serviceRequestId\": \"3e802184-9fd1-46aa-94d9-187fdfe0403d\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3809/providers/Microsoft.Storage/storageAccounts/ps4618\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps4618\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8115/deployments/ps7875/operations?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODExNS9kZXBsb3ltZW50cy9wczc4NzUvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3809/deployments/ps8901/operations?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzgwOS9kZXBsb3ltZW50cy9wczg5MDEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7dc5ab20-7150-427c-a801-d87f8f7d0921" + "983df262-727c-4088-8951-cfd578eec4b0" ], "Accept-Language": [ "en-US" @@ -1674,8 +1674,8 @@ "User-Agent": [ "FxVersion/4.6.28207.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.8.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.10.0.0" ] }, "ResponseHeaders": { @@ -1689,13 +1689,13 @@ "11956" ], "x-ms-request-id": [ - "7313b334-b4ce-41d7-9f9c-c4dca201032c" + "29aadc91-c020-4b74-85b4-af8de764697b" ], "x-ms-correlation-request-id": [ - "7313b334-b4ce-41d7-9f9c-c4dca201032c" + "29aadc91-c020-4b74-85b4-af8de764697b" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20200714T221210Z:7313b334-b4ce-41d7-9f9c-c4dca201032c" + "CANADACENTRAL:20201015T161350Z:29aadc91-c020-4b74-85b4-af8de764697b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1704,7 +1704,7 @@ "nosniff" ], "Date": [ - "Tue, 14 Jul 2020 22:12:10 GMT" + "Thu, 15 Oct 2020 16:13:49 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1719,17 +1719,17 @@ "0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8115/providers/Microsoft.Resources/deployments/ps7875/operations/1E8ECD20217625B9\",\r\n \"operationId\": \"1E8ECD20217625B9\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-07-14T22:12:03.8923041Z\",\r\n \"duration\": \"PT3.2448776S\",\r\n \"trackingId\": \"4827f3fc-4abb-4029-83c5-d21f9393560f\",\r\n \"serviceRequestId\": \"dd864564-58db-4946-b42d-8bf443addba2\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8115/providers/Microsoft.Storage/storageAccounts/ps8461\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps8461\"\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/ps3809/providers/Microsoft.Resources/deployments/ps8901/operations/5500FCAC030799E2\",\r\n \"operationId\": \"5500FCAC030799E2\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-10-15T16:13:41.9522242Z\",\r\n \"duration\": \"PT3.6037161S\",\r\n \"trackingId\": \"c749ba6a-e27d-4533-9c42-d357296bd596\",\r\n \"serviceRequestId\": \"3e802184-9fd1-46aa-94d9-187fdfe0403d\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3809/providers/Microsoft.Storage/storageAccounts/ps4618\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps4618\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8115/deployments/ps7875/operations?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODExNS9kZXBsb3ltZW50cy9wczc4NzUvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3809/deployments/ps8901/operations?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzgwOS9kZXBsb3ltZW50cy9wczg5MDEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d79d9593-bf63-44ce-8399-93c1e969f61c" + "f3760b31-f625-459a-80be-22e715464cab" ], "Accept-Language": [ "en-US" @@ -1737,8 +1737,8 @@ "User-Agent": [ "FxVersion/4.6.28207.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.8.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.10.0.0" ] }, "ResponseHeaders": { @@ -1752,13 +1752,13 @@ "11954" ], "x-ms-request-id": [ - "6e49a763-6a02-47cf-89b3-07185dd2e554" + "af66301c-03ae-486a-803d-cc2d7192770f" ], "x-ms-correlation-request-id": [ - "6e49a763-6a02-47cf-89b3-07185dd2e554" + "af66301c-03ae-486a-803d-cc2d7192770f" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20200714T221211Z:6e49a763-6a02-47cf-89b3-07185dd2e554" + "CANADACENTRAL:20201015T161350Z:af66301c-03ae-486a-803d-cc2d7192770f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1767,7 +1767,7 @@ "nosniff" ], "Date": [ - "Tue, 14 Jul 2020 22:12:10 GMT" + "Thu, 15 Oct 2020 16:13:50 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1782,17 +1782,17 @@ "0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8115/providers/Microsoft.Resources/deployments/ps7875/operations/1E8ECD20217625B9\",\r\n \"operationId\": \"1E8ECD20217625B9\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-07-14T22:12:03.8923041Z\",\r\n \"duration\": \"PT3.2448776S\",\r\n \"trackingId\": \"4827f3fc-4abb-4029-83c5-d21f9393560f\",\r\n \"serviceRequestId\": \"dd864564-58db-4946-b42d-8bf443addba2\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8115/providers/Microsoft.Storage/storageAccounts/ps8461\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps8461\"\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/ps3809/providers/Microsoft.Resources/deployments/ps8901/operations/5500FCAC030799E2\",\r\n \"operationId\": \"5500FCAC030799E2\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-10-15T16:13:41.9522242Z\",\r\n \"duration\": \"PT3.6037161S\",\r\n \"trackingId\": \"c749ba6a-e27d-4533-9c42-d357296bd596\",\r\n \"serviceRequestId\": \"3e802184-9fd1-46aa-94d9-187fdfe0403d\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3809/providers/Microsoft.Storage/storageAccounts/ps4618\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps4618\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8115/deployments/ps7875/operations?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODExNS9kZXBsb3ltZW50cy9wczc4NzUvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3809/deployments/ps8901/operations?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzgwOS9kZXBsb3ltZW50cy9wczg5MDEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2f16f901-3b11-4e01-9b15-8582c59fa168" + "75f5a2c0-3b65-42e3-a656-00e57ba0118f" ], "Accept-Language": [ "en-US" @@ -1800,8 +1800,8 @@ "User-Agent": [ "FxVersion/4.6.28207.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.8.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.10.0.0" ] }, "ResponseHeaders": { @@ -1815,13 +1815,13 @@ "11952" ], "x-ms-request-id": [ - "1560c9da-0383-4d63-8984-d9fbda218c64" + "b0176977-8be2-4fc2-a900-e37b5fe1ffb4" ], "x-ms-correlation-request-id": [ - "1560c9da-0383-4d63-8984-d9fbda218c64" + "b0176977-8be2-4fc2-a900-e37b5fe1ffb4" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20200714T221211Z:1560c9da-0383-4d63-8984-d9fbda218c64" + "CANADACENTRAL:20201015T161351Z:b0176977-8be2-4fc2-a900-e37b5fe1ffb4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1830,7 +1830,7 @@ "nosniff" ], "Date": [ - "Tue, 14 Jul 2020 22:12:11 GMT" + "Thu, 15 Oct 2020 16:13:50 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1845,17 +1845,17 @@ "0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8115/providers/Microsoft.Resources/deployments/ps7875/operations/1E8ECD20217625B9\",\r\n \"operationId\": \"1E8ECD20217625B9\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-07-14T22:12:03.8923041Z\",\r\n \"duration\": \"PT3.2448776S\",\r\n \"trackingId\": \"4827f3fc-4abb-4029-83c5-d21f9393560f\",\r\n \"serviceRequestId\": \"dd864564-58db-4946-b42d-8bf443addba2\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8115/providers/Microsoft.Storage/storageAccounts/ps8461\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps8461\"\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/ps3809/providers/Microsoft.Resources/deployments/ps8901/operations/5500FCAC030799E2\",\r\n \"operationId\": \"5500FCAC030799E2\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-10-15T16:13:41.9522242Z\",\r\n \"duration\": \"PT3.6037161S\",\r\n \"trackingId\": \"c749ba6a-e27d-4533-9c42-d357296bd596\",\r\n \"serviceRequestId\": \"3e802184-9fd1-46aa-94d9-187fdfe0403d\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3809/providers/Microsoft.Storage/storageAccounts/ps4618\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps4618\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8115/deployments/ps7875/operations?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODExNS9kZXBsb3ltZW50cy9wczc4NzUvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3809/deployments/ps8901/operations?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzgwOS9kZXBsb3ltZW50cy9wczg5MDEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a0982eba-c083-4c72-8507-76e245cb6612" + "3811193f-4936-4cb9-b9eb-589ed4c89c32" ], "Accept-Language": [ "en-US" @@ -1863,8 +1863,8 @@ "User-Agent": [ "FxVersion/4.6.28207.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.8.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.10.0.0" ] }, "ResponseHeaders": { @@ -1878,13 +1878,13 @@ "11950" ], "x-ms-request-id": [ - "f1c34ef4-8ca3-46a1-bc74-ffeb601b5e89" + "b6a3398d-7abc-4d3b-9fb1-9eda3f28f980" ], "x-ms-correlation-request-id": [ - "f1c34ef4-8ca3-46a1-bc74-ffeb601b5e89" + "b6a3398d-7abc-4d3b-9fb1-9eda3f28f980" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20200714T221212Z:f1c34ef4-8ca3-46a1-bc74-ffeb601b5e89" + "CANADACENTRAL:20201015T161351Z:b6a3398d-7abc-4d3b-9fb1-9eda3f28f980" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1893,7 +1893,7 @@ "nosniff" ], "Date": [ - "Tue, 14 Jul 2020 22:12:11 GMT" + "Thu, 15 Oct 2020 16:13:51 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1908,17 +1908,17 @@ "0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8115/providers/Microsoft.Resources/deployments/ps7875/operations/1E8ECD20217625B9\",\r\n \"operationId\": \"1E8ECD20217625B9\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-07-14T22:12:03.8923041Z\",\r\n \"duration\": \"PT3.2448776S\",\r\n \"trackingId\": \"4827f3fc-4abb-4029-83c5-d21f9393560f\",\r\n \"serviceRequestId\": \"dd864564-58db-4946-b42d-8bf443addba2\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8115/providers/Microsoft.Storage/storageAccounts/ps8461\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps8461\"\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/ps3809/providers/Microsoft.Resources/deployments/ps8901/operations/5500FCAC030799E2\",\r\n \"operationId\": \"5500FCAC030799E2\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-10-15T16:13:41.9522242Z\",\r\n \"duration\": \"PT3.6037161S\",\r\n \"trackingId\": \"c749ba6a-e27d-4533-9c42-d357296bd596\",\r\n \"serviceRequestId\": \"3e802184-9fd1-46aa-94d9-187fdfe0403d\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3809/providers/Microsoft.Storage/storageAccounts/ps4618\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps4618\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8115/deployments/ps7875/operations?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODExNS9kZXBsb3ltZW50cy9wczc4NzUvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3809/deployments/ps8901/operations?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzgwOS9kZXBsb3ltZW50cy9wczg5MDEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "585d679b-eac1-417c-9a52-bdff37e68f34" + "cd743451-1bfc-411f-b3b4-ac56f77cccc7" ], "Accept-Language": [ "en-US" @@ -1926,8 +1926,8 @@ "User-Agent": [ "FxVersion/4.6.28207.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.8.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.10.0.0" ] }, "ResponseHeaders": { @@ -1941,13 +1941,13 @@ "11948" ], "x-ms-request-id": [ - "e62cb828-03a9-44ef-b8d0-28aad91128c3" + "5da841f6-b9df-49ae-8dea-8b6e6a7d7e9c" ], "x-ms-correlation-request-id": [ - "e62cb828-03a9-44ef-b8d0-28aad91128c3" + "5da841f6-b9df-49ae-8dea-8b6e6a7d7e9c" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20200714T221212Z:e62cb828-03a9-44ef-b8d0-28aad91128c3" + "CANADACENTRAL:20201015T161352Z:5da841f6-b9df-49ae-8dea-8b6e6a7d7e9c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1956,7 +1956,7 @@ "nosniff" ], "Date": [ - "Tue, 14 Jul 2020 22:12:12 GMT" + "Thu, 15 Oct 2020 16:13:51 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1971,17 +1971,17 @@ "0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8115/providers/Microsoft.Resources/deployments/ps7875/operations/1E8ECD20217625B9\",\r\n \"operationId\": \"1E8ECD20217625B9\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-07-14T22:12:03.8923041Z\",\r\n \"duration\": \"PT3.2448776S\",\r\n \"trackingId\": \"4827f3fc-4abb-4029-83c5-d21f9393560f\",\r\n \"serviceRequestId\": \"dd864564-58db-4946-b42d-8bf443addba2\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8115/providers/Microsoft.Storage/storageAccounts/ps8461\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps8461\"\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/ps3809/providers/Microsoft.Resources/deployments/ps8901/operations/5500FCAC030799E2\",\r\n \"operationId\": \"5500FCAC030799E2\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-10-15T16:13:41.9522242Z\",\r\n \"duration\": \"PT3.6037161S\",\r\n \"trackingId\": \"c749ba6a-e27d-4533-9c42-d357296bd596\",\r\n \"serviceRequestId\": \"3e802184-9fd1-46aa-94d9-187fdfe0403d\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3809/providers/Microsoft.Storage/storageAccounts/ps4618\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps4618\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8115/deployments/ps7875/operations?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODExNS9kZXBsb3ltZW50cy9wczc4NzUvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3809/deployments/ps8901/operations?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzgwOS9kZXBsb3ltZW50cy9wczg5MDEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7e96eb10-83d4-43c7-99c5-d6d4c9671c62" + "985ff86d-1360-4f0f-807d-843160b1810a" ], "Accept-Language": [ "en-US" @@ -1989,8 +1989,8 @@ "User-Agent": [ "FxVersion/4.6.28207.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.8.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.10.0.0" ] }, "ResponseHeaders": { @@ -2004,13 +2004,13 @@ "11946" ], "x-ms-request-id": [ - "83b2517e-ea08-40f2-8f60-f43ef1a31124" + "f271a4ed-db63-4c6e-b056-c471bef92ce5" ], "x-ms-correlation-request-id": [ - "83b2517e-ea08-40f2-8f60-f43ef1a31124" + "f271a4ed-db63-4c6e-b056-c471bef92ce5" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20200714T221213Z:83b2517e-ea08-40f2-8f60-f43ef1a31124" + "CANADACENTRAL:20201015T161352Z:f271a4ed-db63-4c6e-b056-c471bef92ce5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2019,7 +2019,7 @@ "nosniff" ], "Date": [ - "Tue, 14 Jul 2020 22:12:12 GMT" + "Thu, 15 Oct 2020 16:13:52 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2034,17 +2034,17 @@ "0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8115/providers/Microsoft.Resources/deployments/ps7875/operations/1E8ECD20217625B9\",\r\n \"operationId\": \"1E8ECD20217625B9\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-07-14T22:12:03.8923041Z\",\r\n \"duration\": \"PT3.2448776S\",\r\n \"trackingId\": \"4827f3fc-4abb-4029-83c5-d21f9393560f\",\r\n \"serviceRequestId\": \"dd864564-58db-4946-b42d-8bf443addba2\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8115/providers/Microsoft.Storage/storageAccounts/ps8461\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps8461\"\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/ps3809/providers/Microsoft.Resources/deployments/ps8901/operations/5500FCAC030799E2\",\r\n \"operationId\": \"5500FCAC030799E2\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-10-15T16:13:41.9522242Z\",\r\n \"duration\": \"PT3.6037161S\",\r\n \"trackingId\": \"c749ba6a-e27d-4533-9c42-d357296bd596\",\r\n \"serviceRequestId\": \"3e802184-9fd1-46aa-94d9-187fdfe0403d\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3809/providers/Microsoft.Storage/storageAccounts/ps4618\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps4618\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8115/deployments/ps7875/operations?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODExNS9kZXBsb3ltZW50cy9wczc4NzUvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3809/deployments/ps8901/operations?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzgwOS9kZXBsb3ltZW50cy9wczg5MDEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c1675dbf-f5ac-400c-8b53-d7e02958ec95" + "2545ee64-9288-4ada-8764-54d908c73b20" ], "Accept-Language": [ "en-US" @@ -2052,8 +2052,8 @@ "User-Agent": [ "FxVersion/4.6.28207.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.8.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.10.0.0" ] }, "ResponseHeaders": { @@ -2067,13 +2067,13 @@ "11944" ], "x-ms-request-id": [ - "e41288db-170f-40a3-9ed7-7cf1379302da" + "4c4ad93c-3862-4703-b028-abe9dbe69af2" ], "x-ms-correlation-request-id": [ - "e41288db-170f-40a3-9ed7-7cf1379302da" + "4c4ad93c-3862-4703-b028-abe9dbe69af2" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20200714T221213Z:e41288db-170f-40a3-9ed7-7cf1379302da" + "CANADACENTRAL:20201015T161353Z:4c4ad93c-3862-4703-b028-abe9dbe69af2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2082,7 +2082,7 @@ "nosniff" ], "Date": [ - "Tue, 14 Jul 2020 22:12:12 GMT" + "Thu, 15 Oct 2020 16:13:52 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2097,17 +2097,17 @@ "0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8115/providers/Microsoft.Resources/deployments/ps7875/operations/1E8ECD20217625B9\",\r\n \"operationId\": \"1E8ECD20217625B9\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-07-14T22:12:03.8923041Z\",\r\n \"duration\": \"PT3.2448776S\",\r\n \"trackingId\": \"4827f3fc-4abb-4029-83c5-d21f9393560f\",\r\n \"serviceRequestId\": \"dd864564-58db-4946-b42d-8bf443addba2\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8115/providers/Microsoft.Storage/storageAccounts/ps8461\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps8461\"\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/ps3809/providers/Microsoft.Resources/deployments/ps8901/operations/5500FCAC030799E2\",\r\n \"operationId\": \"5500FCAC030799E2\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-10-15T16:13:41.9522242Z\",\r\n \"duration\": \"PT3.6037161S\",\r\n \"trackingId\": \"c749ba6a-e27d-4533-9c42-d357296bd596\",\r\n \"serviceRequestId\": \"3e802184-9fd1-46aa-94d9-187fdfe0403d\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3809/providers/Microsoft.Storage/storageAccounts/ps4618\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps4618\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8115/deployments/ps7875/operations?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODExNS9kZXBsb3ltZW50cy9wczc4NzUvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3809/deployments/ps8901/operations?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzgwOS9kZXBsb3ltZW50cy9wczg5MDEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f6725e7c-7b8a-4ce6-8a83-e6f12c4ef33b" + "08779c54-094c-4a65-ac24-f39d0b6dfbd2" ], "Accept-Language": [ "en-US" @@ -2115,8 +2115,8 @@ "User-Agent": [ "FxVersion/4.6.28207.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.8.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.10.0.0" ] }, "ResponseHeaders": { @@ -2130,13 +2130,13 @@ "11942" ], "x-ms-request-id": [ - "8a29c6a4-ba68-488a-be2e-31cddf0f5776" + "a025f093-3cbe-4b02-8059-1fb885280f4e" ], "x-ms-correlation-request-id": [ - "8a29c6a4-ba68-488a-be2e-31cddf0f5776" + "a025f093-3cbe-4b02-8059-1fb885280f4e" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20200714T221214Z:8a29c6a4-ba68-488a-be2e-31cddf0f5776" + "CANADACENTRAL:20201015T161353Z:a025f093-3cbe-4b02-8059-1fb885280f4e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2145,7 +2145,7 @@ "nosniff" ], "Date": [ - "Tue, 14 Jul 2020 22:12:13 GMT" + "Thu, 15 Oct 2020 16:13:53 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2160,17 +2160,17 @@ "0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8115/providers/Microsoft.Resources/deployments/ps7875/operations/1E8ECD20217625B9\",\r\n \"operationId\": \"1E8ECD20217625B9\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-07-14T22:12:03.8923041Z\",\r\n \"duration\": \"PT3.2448776S\",\r\n \"trackingId\": \"4827f3fc-4abb-4029-83c5-d21f9393560f\",\r\n \"serviceRequestId\": \"dd864564-58db-4946-b42d-8bf443addba2\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8115/providers/Microsoft.Storage/storageAccounts/ps8461\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps8461\"\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/ps3809/providers/Microsoft.Resources/deployments/ps8901/operations/5500FCAC030799E2\",\r\n \"operationId\": \"5500FCAC030799E2\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-10-15T16:13:41.9522242Z\",\r\n \"duration\": \"PT3.6037161S\",\r\n \"trackingId\": \"c749ba6a-e27d-4533-9c42-d357296bd596\",\r\n \"serviceRequestId\": \"3e802184-9fd1-46aa-94d9-187fdfe0403d\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3809/providers/Microsoft.Storage/storageAccounts/ps4618\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps4618\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8115/deployments/ps7875/operations?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODExNS9kZXBsb3ltZW50cy9wczc4NzUvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3809/deployments/ps8901/operations?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzgwOS9kZXBsb3ltZW50cy9wczg5MDEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6e6e9bc5-912b-4e33-ba2d-73ad3dd15c36" + "d917450e-653f-4d15-b3ff-9318774a4221" ], "Accept-Language": [ "en-US" @@ -2178,8 +2178,8 @@ "User-Agent": [ "FxVersion/4.6.28207.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.8.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.10.0.0" ] }, "ResponseHeaders": { @@ -2193,13 +2193,13 @@ "11940" ], "x-ms-request-id": [ - "1934d211-6a2b-405b-a268-36ea3752f4e1" + "17773c79-26b4-4e13-84ad-0978cabb11b4" ], "x-ms-correlation-request-id": [ - "1934d211-6a2b-405b-a268-36ea3752f4e1" + "17773c79-26b4-4e13-84ad-0978cabb11b4" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20200714T221214Z:1934d211-6a2b-405b-a268-36ea3752f4e1" + "CANADACENTRAL:20201015T161354Z:17773c79-26b4-4e13-84ad-0978cabb11b4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2208,7 +2208,7 @@ "nosniff" ], "Date": [ - "Tue, 14 Jul 2020 22:12:13 GMT" + "Thu, 15 Oct 2020 16:13:53 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2223,17 +2223,17 @@ "0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8115/providers/Microsoft.Resources/deployments/ps7875/operations/1E8ECD20217625B9\",\r\n \"operationId\": \"1E8ECD20217625B9\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-07-14T22:12:03.8923041Z\",\r\n \"duration\": \"PT3.2448776S\",\r\n \"trackingId\": \"4827f3fc-4abb-4029-83c5-d21f9393560f\",\r\n \"serviceRequestId\": \"dd864564-58db-4946-b42d-8bf443addba2\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8115/providers/Microsoft.Storage/storageAccounts/ps8461\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps8461\"\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/ps3809/providers/Microsoft.Resources/deployments/ps8901/operations/5500FCAC030799E2\",\r\n \"operationId\": \"5500FCAC030799E2\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-10-15T16:13:41.9522242Z\",\r\n \"duration\": \"PT3.6037161S\",\r\n \"trackingId\": \"c749ba6a-e27d-4533-9c42-d357296bd596\",\r\n \"serviceRequestId\": \"3e802184-9fd1-46aa-94d9-187fdfe0403d\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3809/providers/Microsoft.Storage/storageAccounts/ps4618\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps4618\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8115/deployments/ps7875/operations?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODExNS9kZXBsb3ltZW50cy9wczc4NzUvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3809/deployments/ps8901/operations?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzgwOS9kZXBsb3ltZW50cy9wczg5MDEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1a287c77-d161-485f-adef-6f24ef55e62f" + "98b8dacf-418c-4331-855c-c8c27daace26" ], "Accept-Language": [ "en-US" @@ -2241,8 +2241,8 @@ "User-Agent": [ "FxVersion/4.6.28207.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.8.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.10.0.0" ] }, "ResponseHeaders": { @@ -2256,13 +2256,13 @@ "11938" ], "x-ms-request-id": [ - "fc45cfcb-e3d1-4fe3-8726-af19b350677f" + "c59ba3e5-947c-480f-9e33-51c5a3546c05" ], "x-ms-correlation-request-id": [ - "fc45cfcb-e3d1-4fe3-8726-af19b350677f" + "c59ba3e5-947c-480f-9e33-51c5a3546c05" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20200714T221214Z:fc45cfcb-e3d1-4fe3-8726-af19b350677f" + "CANADACENTRAL:20201015T161355Z:c59ba3e5-947c-480f-9e33-51c5a3546c05" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2271,7 +2271,7 @@ "nosniff" ], "Date": [ - "Tue, 14 Jul 2020 22:12:14 GMT" + "Thu, 15 Oct 2020 16:13:54 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2286,17 +2286,17 @@ "0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8115/providers/Microsoft.Resources/deployments/ps7875/operations/1E8ECD20217625B9\",\r\n \"operationId\": \"1E8ECD20217625B9\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-07-14T22:12:03.8923041Z\",\r\n \"duration\": \"PT3.2448776S\",\r\n \"trackingId\": \"4827f3fc-4abb-4029-83c5-d21f9393560f\",\r\n \"serviceRequestId\": \"dd864564-58db-4946-b42d-8bf443addba2\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8115/providers/Microsoft.Storage/storageAccounts/ps8461\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps8461\"\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/ps3809/providers/Microsoft.Resources/deployments/ps8901/operations/5500FCAC030799E2\",\r\n \"operationId\": \"5500FCAC030799E2\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-10-15T16:13:41.9522242Z\",\r\n \"duration\": \"PT3.6037161S\",\r\n \"trackingId\": \"c749ba6a-e27d-4533-9c42-d357296bd596\",\r\n \"serviceRequestId\": \"3e802184-9fd1-46aa-94d9-187fdfe0403d\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3809/providers/Microsoft.Storage/storageAccounts/ps4618\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps4618\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8115/deployments/ps7875/operations?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODExNS9kZXBsb3ltZW50cy9wczc4NzUvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3809/deployments/ps8901/operations?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzgwOS9kZXBsb3ltZW50cy9wczg5MDEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0012198f-8d1c-4a95-8463-977f83d0516f" + "81cf4433-61d9-48b0-8376-a89ae06e50f1" ], "Accept-Language": [ "en-US" @@ -2304,8 +2304,8 @@ "User-Agent": [ "FxVersion/4.6.28207.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.8.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.10.0.0" ] }, "ResponseHeaders": { @@ -2319,13 +2319,13 @@ "11936" ], "x-ms-request-id": [ - "6248651b-8292-41bc-8670-49346ceb80b5" + "46d85753-f97c-4577-8b9d-f54f2e3e0b78" ], "x-ms-correlation-request-id": [ - "6248651b-8292-41bc-8670-49346ceb80b5" + "46d85753-f97c-4577-8b9d-f54f2e3e0b78" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20200714T221215Z:6248651b-8292-41bc-8670-49346ceb80b5" + "CANADACENTRAL:20201015T161356Z:46d85753-f97c-4577-8b9d-f54f2e3e0b78" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2334,7 +2334,7 @@ "nosniff" ], "Date": [ - "Tue, 14 Jul 2020 22:12:14 GMT" + "Thu, 15 Oct 2020 16:13:55 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2349,17 +2349,17 @@ "0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8115/providers/Microsoft.Resources/deployments/ps7875/operations/1E8ECD20217625B9\",\r\n \"operationId\": \"1E8ECD20217625B9\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-07-14T22:12:03.8923041Z\",\r\n \"duration\": \"PT3.2448776S\",\r\n \"trackingId\": \"4827f3fc-4abb-4029-83c5-d21f9393560f\",\r\n \"serviceRequestId\": \"dd864564-58db-4946-b42d-8bf443addba2\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8115/providers/Microsoft.Storage/storageAccounts/ps8461\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps8461\"\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/ps3809/providers/Microsoft.Resources/deployments/ps8901/operations/5500FCAC030799E2\",\r\n \"operationId\": \"5500FCAC030799E2\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-10-15T16:13:41.9522242Z\",\r\n \"duration\": \"PT3.6037161S\",\r\n \"trackingId\": \"c749ba6a-e27d-4533-9c42-d357296bd596\",\r\n \"serviceRequestId\": \"3e802184-9fd1-46aa-94d9-187fdfe0403d\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3809/providers/Microsoft.Storage/storageAccounts/ps4618\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps4618\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8115/deployments/ps7875/operations?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODExNS9kZXBsb3ltZW50cy9wczc4NzUvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3809/deployments/ps8901/operations?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzgwOS9kZXBsb3ltZW50cy9wczg5MDEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9eb10f65-76f0-4075-acff-7668f2e15dbd" + "82ee1e59-f653-4b64-9368-b3f70ab1ff33" ], "Accept-Language": [ "en-US" @@ -2367,8 +2367,8 @@ "User-Agent": [ "FxVersion/4.6.28207.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.8.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.10.0.0" ] }, "ResponseHeaders": { @@ -2382,13 +2382,13 @@ "11934" ], "x-ms-request-id": [ - "a566b5a6-4348-47c5-80df-cb8cf9f09e7a" + "78407981-8862-4351-a56f-b20af357ddea" ], "x-ms-correlation-request-id": [ - "a566b5a6-4348-47c5-80df-cb8cf9f09e7a" + "78407981-8862-4351-a56f-b20af357ddea" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20200714T221215Z:a566b5a6-4348-47c5-80df-cb8cf9f09e7a" + "CANADACENTRAL:20201015T161357Z:78407981-8862-4351-a56f-b20af357ddea" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2397,7 +2397,7 @@ "nosniff" ], "Date": [ - "Tue, 14 Jul 2020 22:12:15 GMT" + "Thu, 15 Oct 2020 16:13:56 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2412,17 +2412,17 @@ "0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8115/providers/Microsoft.Resources/deployments/ps7875/operations/1E8ECD20217625B9\",\r\n \"operationId\": \"1E8ECD20217625B9\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-07-14T22:12:03.8923041Z\",\r\n \"duration\": \"PT3.2448776S\",\r\n \"trackingId\": \"4827f3fc-4abb-4029-83c5-d21f9393560f\",\r\n \"serviceRequestId\": \"dd864564-58db-4946-b42d-8bf443addba2\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8115/providers/Microsoft.Storage/storageAccounts/ps8461\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps8461\"\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/ps3809/providers/Microsoft.Resources/deployments/ps8901/operations/5500FCAC030799E2\",\r\n \"operationId\": \"5500FCAC030799E2\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-10-15T16:13:41.9522242Z\",\r\n \"duration\": \"PT3.6037161S\",\r\n \"trackingId\": \"c749ba6a-e27d-4533-9c42-d357296bd596\",\r\n \"serviceRequestId\": \"3e802184-9fd1-46aa-94d9-187fdfe0403d\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3809/providers/Microsoft.Storage/storageAccounts/ps4618\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps4618\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8115/deployments/ps7875/operations?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODExNS9kZXBsb3ltZW50cy9wczc4NzUvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3809/deployments/ps8901/operations?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzgwOS9kZXBsb3ltZW50cy9wczg5MDEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "432fbb57-e78c-4968-a466-d874a8f21f52" + "e67a42a5-f703-4689-860f-95c58090c774" ], "Accept-Language": [ "en-US" @@ -2430,8 +2430,8 @@ "User-Agent": [ "FxVersion/4.6.28207.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.8.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.10.0.0" ] }, "ResponseHeaders": { @@ -2445,13 +2445,13 @@ "11932" ], "x-ms-request-id": [ - "90feb5e2-a55b-400f-8d28-119321d4c680" + "da4fb2f4-c548-4603-8b82-32263dce9070" ], "x-ms-correlation-request-id": [ - "90feb5e2-a55b-400f-8d28-119321d4c680" + "da4fb2f4-c548-4603-8b82-32263dce9070" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20200714T221216Z:90feb5e2-a55b-400f-8d28-119321d4c680" + "CANADACENTRAL:20201015T161358Z:da4fb2f4-c548-4603-8b82-32263dce9070" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2460,7 +2460,7 @@ "nosniff" ], "Date": [ - "Tue, 14 Jul 2020 22:12:15 GMT" + "Thu, 15 Oct 2020 16:13:57 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2475,17 +2475,17 @@ "0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8115/providers/Microsoft.Resources/deployments/ps7875/operations/1E8ECD20217625B9\",\r\n \"operationId\": \"1E8ECD20217625B9\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-07-14T22:12:03.8923041Z\",\r\n \"duration\": \"PT3.2448776S\",\r\n \"trackingId\": \"4827f3fc-4abb-4029-83c5-d21f9393560f\",\r\n \"serviceRequestId\": \"dd864564-58db-4946-b42d-8bf443addba2\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8115/providers/Microsoft.Storage/storageAccounts/ps8461\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps8461\"\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/ps3809/providers/Microsoft.Resources/deployments/ps8901/operations/5500FCAC030799E2\",\r\n \"operationId\": \"5500FCAC030799E2\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-10-15T16:13:41.9522242Z\",\r\n \"duration\": \"PT3.6037161S\",\r\n \"trackingId\": \"c749ba6a-e27d-4533-9c42-d357296bd596\",\r\n \"serviceRequestId\": \"3e802184-9fd1-46aa-94d9-187fdfe0403d\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3809/providers/Microsoft.Storage/storageAccounts/ps4618\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps4618\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8115/deployments/ps7875/operations?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODExNS9kZXBsb3ltZW50cy9wczc4NzUvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3809/deployments/ps8901/operations?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzgwOS9kZXBsb3ltZW50cy9wczg5MDEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d2360b78-a6e1-407a-b5fe-8b4c5ea077b1" + "e0b3ffa7-1ff9-43a5-ba62-9d6290902ffc" ], "Accept-Language": [ "en-US" @@ -2493,8 +2493,8 @@ "User-Agent": [ "FxVersion/4.6.28207.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.8.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.10.0.0" ] }, "ResponseHeaders": { @@ -2508,13 +2508,13 @@ "11930" ], "x-ms-request-id": [ - "a9e7e474-b73a-45d6-b2a5-9e73baef6246" + "62f960ab-0243-4e8a-b899-1d400c56b713" ], "x-ms-correlation-request-id": [ - "a9e7e474-b73a-45d6-b2a5-9e73baef6246" + "62f960ab-0243-4e8a-b899-1d400c56b713" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20200714T221216Z:a9e7e474-b73a-45d6-b2a5-9e73baef6246" + "CANADACENTRAL:20201015T161358Z:62f960ab-0243-4e8a-b899-1d400c56b713" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2523,7 +2523,7 @@ "nosniff" ], "Date": [ - "Tue, 14 Jul 2020 22:12:15 GMT" + "Thu, 15 Oct 2020 16:13:58 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2538,17 +2538,17 @@ "0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8115/providers/Microsoft.Resources/deployments/ps7875/operations/1E8ECD20217625B9\",\r\n \"operationId\": \"1E8ECD20217625B9\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-07-14T22:12:03.8923041Z\",\r\n \"duration\": \"PT3.2448776S\",\r\n \"trackingId\": \"4827f3fc-4abb-4029-83c5-d21f9393560f\",\r\n \"serviceRequestId\": \"dd864564-58db-4946-b42d-8bf443addba2\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8115/providers/Microsoft.Storage/storageAccounts/ps8461\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps8461\"\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/ps3809/providers/Microsoft.Resources/deployments/ps8901/operations/5500FCAC030799E2\",\r\n \"operationId\": \"5500FCAC030799E2\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-10-15T16:13:41.9522242Z\",\r\n \"duration\": \"PT3.6037161S\",\r\n \"trackingId\": \"c749ba6a-e27d-4533-9c42-d357296bd596\",\r\n \"serviceRequestId\": \"3e802184-9fd1-46aa-94d9-187fdfe0403d\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3809/providers/Microsoft.Storage/storageAccounts/ps4618\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps4618\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8115/deployments/ps7875/operations?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODExNS9kZXBsb3ltZW50cy9wczc4NzUvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3809/deployments/ps8901/operations?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzgwOS9kZXBsb3ltZW50cy9wczg5MDEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6ed221fb-6c14-4764-b18a-423c9d9c99a8" + "0f896b17-4061-4e0c-a823-f6e47665b925" ], "Accept-Language": [ "en-US" @@ -2556,8 +2556,8 @@ "User-Agent": [ "FxVersion/4.6.28207.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.8.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.10.0.0" ] }, "ResponseHeaders": { @@ -2571,13 +2571,13 @@ "11928" ], "x-ms-request-id": [ - "106d12c0-5957-4142-977f-d03b7d8ac5ee" + "d5971c20-6524-4ac5-8f39-aab3baf88d5c" ], "x-ms-correlation-request-id": [ - "106d12c0-5957-4142-977f-d03b7d8ac5ee" + "d5971c20-6524-4ac5-8f39-aab3baf88d5c" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20200714T221217Z:106d12c0-5957-4142-977f-d03b7d8ac5ee" + "CANADACENTRAL:20201015T161359Z:d5971c20-6524-4ac5-8f39-aab3baf88d5c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2586,7 +2586,7 @@ "nosniff" ], "Date": [ - "Tue, 14 Jul 2020 22:12:16 GMT" + "Thu, 15 Oct 2020 16:13:58 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2601,17 +2601,17 @@ "0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8115/providers/Microsoft.Resources/deployments/ps7875/operations/1E8ECD20217625B9\",\r\n \"operationId\": \"1E8ECD20217625B9\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-07-14T22:12:03.8923041Z\",\r\n \"duration\": \"PT3.2448776S\",\r\n \"trackingId\": \"4827f3fc-4abb-4029-83c5-d21f9393560f\",\r\n \"serviceRequestId\": \"dd864564-58db-4946-b42d-8bf443addba2\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8115/providers/Microsoft.Storage/storageAccounts/ps8461\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps8461\"\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/ps3809/providers/Microsoft.Resources/deployments/ps8901/operations/5500FCAC030799E2\",\r\n \"operationId\": \"5500FCAC030799E2\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-10-15T16:13:41.9522242Z\",\r\n \"duration\": \"PT3.6037161S\",\r\n \"trackingId\": \"c749ba6a-e27d-4533-9c42-d357296bd596\",\r\n \"serviceRequestId\": \"3e802184-9fd1-46aa-94d9-187fdfe0403d\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3809/providers/Microsoft.Storage/storageAccounts/ps4618\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps4618\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8115/deployments/ps7875/operations?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODExNS9kZXBsb3ltZW50cy9wczc4NzUvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3809/deployments/ps8901/operations?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzgwOS9kZXBsb3ltZW50cy9wczg5MDEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "782de68f-92e5-42ef-bee2-b3df3274b3eb" + "c98d6653-ea9a-4dcf-9ff7-a058ef7ef80d" ], "Accept-Language": [ "en-US" @@ -2619,8 +2619,8 @@ "User-Agent": [ "FxVersion/4.6.28207.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.8.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.10.0.0" ] }, "ResponseHeaders": { @@ -2634,13 +2634,13 @@ "11926" ], "x-ms-request-id": [ - "11755db5-f09a-4fe3-a516-5d5fdf3d1996" + "165d8bf9-8305-4e60-adf5-26b0c319ab77" ], "x-ms-correlation-request-id": [ - "11755db5-f09a-4fe3-a516-5d5fdf3d1996" + "165d8bf9-8305-4e60-adf5-26b0c319ab77" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20200714T221217Z:11755db5-f09a-4fe3-a516-5d5fdf3d1996" + "CANADACENTRAL:20201015T161359Z:165d8bf9-8305-4e60-adf5-26b0c319ab77" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2649,7 +2649,7 @@ "nosniff" ], "Date": [ - "Tue, 14 Jul 2020 22:12:16 GMT" + "Thu, 15 Oct 2020 16:13:59 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2664,17 +2664,17 @@ "0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8115/providers/Microsoft.Resources/deployments/ps7875/operations/1E8ECD20217625B9\",\r\n \"operationId\": \"1E8ECD20217625B9\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-07-14T22:12:03.8923041Z\",\r\n \"duration\": \"PT3.2448776S\",\r\n \"trackingId\": \"4827f3fc-4abb-4029-83c5-d21f9393560f\",\r\n \"serviceRequestId\": \"dd864564-58db-4946-b42d-8bf443addba2\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8115/providers/Microsoft.Storage/storageAccounts/ps8461\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps8461\"\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/ps3809/providers/Microsoft.Resources/deployments/ps8901/operations/5500FCAC030799E2\",\r\n \"operationId\": \"5500FCAC030799E2\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-10-15T16:13:41.9522242Z\",\r\n \"duration\": \"PT3.6037161S\",\r\n \"trackingId\": \"c749ba6a-e27d-4533-9c42-d357296bd596\",\r\n \"serviceRequestId\": \"3e802184-9fd1-46aa-94d9-187fdfe0403d\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3809/providers/Microsoft.Storage/storageAccounts/ps4618\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps4618\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8115/deployments/ps7875/operations?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODExNS9kZXBsb3ltZW50cy9wczc4NzUvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3809/deployments/ps8901/operations?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzgwOS9kZXBsb3ltZW50cy9wczg5MDEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bf456f29-7c6e-4e62-97cf-a409c1ddc7b1" + "02ccf449-10eb-4c2e-9d59-36eaf0c96007" ], "Accept-Language": [ "en-US" @@ -2682,8 +2682,8 @@ "User-Agent": [ "FxVersion/4.6.28207.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.8.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.10.0.0" ] }, "ResponseHeaders": { @@ -2697,13 +2697,13 @@ "11924" ], "x-ms-request-id": [ - "18b36ed9-1060-439b-b26f-15448e71f0f9" + "3c76d257-7f30-45ec-ba57-ffc87172fb0a" ], "x-ms-correlation-request-id": [ - "18b36ed9-1060-439b-b26f-15448e71f0f9" + "3c76d257-7f30-45ec-ba57-ffc87172fb0a" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20200714T221218Z:18b36ed9-1060-439b-b26f-15448e71f0f9" + "CANADACENTRAL:20201015T161400Z:3c76d257-7f30-45ec-ba57-ffc87172fb0a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2712,7 +2712,7 @@ "nosniff" ], "Date": [ - "Tue, 14 Jul 2020 22:12:17 GMT" + "Thu, 15 Oct 2020 16:13:59 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2727,17 +2727,17 @@ "0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8115/providers/Microsoft.Resources/deployments/ps7875/operations/1E8ECD20217625B9\",\r\n \"operationId\": \"1E8ECD20217625B9\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-07-14T22:12:03.8923041Z\",\r\n \"duration\": \"PT3.2448776S\",\r\n \"trackingId\": \"4827f3fc-4abb-4029-83c5-d21f9393560f\",\r\n \"serviceRequestId\": \"dd864564-58db-4946-b42d-8bf443addba2\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8115/providers/Microsoft.Storage/storageAccounts/ps8461\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps8461\"\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/ps3809/providers/Microsoft.Resources/deployments/ps8901/operations/5500FCAC030799E2\",\r\n \"operationId\": \"5500FCAC030799E2\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-10-15T16:13:41.9522242Z\",\r\n \"duration\": \"PT3.6037161S\",\r\n \"trackingId\": \"c749ba6a-e27d-4533-9c42-d357296bd596\",\r\n \"serviceRequestId\": \"3e802184-9fd1-46aa-94d9-187fdfe0403d\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3809/providers/Microsoft.Storage/storageAccounts/ps4618\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps4618\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8115/deployments/ps7875/operations?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODExNS9kZXBsb3ltZW50cy9wczc4NzUvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3809/deployments/ps8901/operations?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzgwOS9kZXBsb3ltZW50cy9wczg5MDEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "af68c985-e187-440b-aaac-1bbef9059b1d" + "e1688577-7641-4c36-ab3e-30f4e4de3bc0" ], "Accept-Language": [ "en-US" @@ -2745,8 +2745,8 @@ "User-Agent": [ "FxVersion/4.6.28207.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.8.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.10.0.0" ] }, "ResponseHeaders": { @@ -2760,13 +2760,13 @@ "11922" ], "x-ms-request-id": [ - "3095939d-7a13-4663-ab5d-c58d4391ebda" + "774f0999-5c62-4d8b-ba7c-296de16544ad" ], "x-ms-correlation-request-id": [ - "3095939d-7a13-4663-ab5d-c58d4391ebda" + "774f0999-5c62-4d8b-ba7c-296de16544ad" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20200714T221218Z:3095939d-7a13-4663-ab5d-c58d4391ebda" + "CANADACENTRAL:20201015T161402Z:774f0999-5c62-4d8b-ba7c-296de16544ad" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2775,7 +2775,7 @@ "nosniff" ], "Date": [ - "Tue, 14 Jul 2020 22:12:17 GMT" + "Thu, 15 Oct 2020 16:14:01 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2784,23 +2784,23 @@ "-1" ], "Content-Length": [ - "711" + "706" ], "Retry-After": [ "0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8115/providers/Microsoft.Resources/deployments/ps7875/operations/1E8ECD20217625B9\",\r\n \"operationId\": \"1E8ECD20217625B9\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-07-14T22:12:03.8923041Z\",\r\n \"duration\": \"PT3.2448776S\",\r\n \"trackingId\": \"4827f3fc-4abb-4029-83c5-d21f9393560f\",\r\n \"serviceRequestId\": \"dd864564-58db-4946-b42d-8bf443addba2\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8115/providers/Microsoft.Storage/storageAccounts/ps8461\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps8461\"\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/ps3809/providers/Microsoft.Resources/deployments/ps8901/operations/5500FCAC030799E2\",\r\n \"operationId\": \"5500FCAC030799E2\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-10-15T16:14:01.5779275Z\",\r\n \"duration\": \"PT23.2294194S\",\r\n \"trackingId\": \"5e4aa6ec-2b41-4358-82d0-7be697680075\",\r\n \"serviceRequestId\": \"3e802184-9fd1-46aa-94d9-187fdfe0403d\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3809/providers/Microsoft.Storage/storageAccounts/ps4618\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps4618\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8115/deployments/ps7875/operations?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODExNS9kZXBsb3ltZW50cy9wczc4NzUvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3809/deployments/ps8901/operations?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzgwOS9kZXBsb3ltZW50cy9wczg5MDEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6851342d-8731-4a6f-933f-cc390541e711" + "58b56746-a514-4acc-bc95-c488d9551bdc" ], "Accept-Language": [ "en-US" @@ -2808,8 +2808,8 @@ "User-Agent": [ "FxVersion/4.6.28207.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.8.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.10.0.0" ] }, "ResponseHeaders": { @@ -2823,13 +2823,13 @@ "11920" ], "x-ms-request-id": [ - "75618af4-e487-4ece-bf11-6ccbcf5539e6" + "62917a04-a981-445f-a63e-c1fa2c4cc04c" ], "x-ms-correlation-request-id": [ - "75618af4-e487-4ece-bf11-6ccbcf5539e6" + "62917a04-a981-445f-a63e-c1fa2c4cc04c" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20200714T221218Z:75618af4-e487-4ece-bf11-6ccbcf5539e6" + "CANADACENTRAL:20201015T161407Z:62917a04-a981-445f-a63e-c1fa2c4cc04c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2838,7 +2838,7 @@ "nosniff" ], "Date": [ - "Tue, 14 Jul 2020 22:12:18 GMT" + "Thu, 15 Oct 2020 16:14:06 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2847,23 +2847,23 @@ "-1" ], "Content-Length": [ - "711" + "1809" ], "Retry-After": [ "0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8115/providers/Microsoft.Resources/deployments/ps7875/operations/1E8ECD20217625B9\",\r\n \"operationId\": \"1E8ECD20217625B9\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-07-14T22:12:03.8923041Z\",\r\n \"duration\": \"PT3.2448776S\",\r\n \"trackingId\": \"4827f3fc-4abb-4029-83c5-d21f9393560f\",\r\n \"serviceRequestId\": \"dd864564-58db-4946-b42d-8bf443addba2\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8115/providers/Microsoft.Storage/storageAccounts/ps8461\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps8461\"\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/ps3809/providers/Microsoft.Resources/deployments/ps8901/operations/F043D6DCA78BF480\",\r\n \"operationId\": \"F043D6DCA78BF480\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Read\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2020-10-15T16:14:04.1386798Z\",\r\n \"duration\": \"PT25.7901717S\",\r\n \"trackingId\": \"2775ed79-962a-4ef9-83ae-efc52f4949a1\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3809/providers/Microsoft.Storage/storageAccounts/ps4618\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps4618\",\r\n \"apiVersion\": \"2019-06-01\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3809/providers/Microsoft.Resources/deployments/ps8901/operations/5500FCAC030799E2\",\r\n \"operationId\": \"5500FCAC030799E2\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2020-10-15T16:14:03.8801341Z\",\r\n \"duration\": \"PT25.531626S\",\r\n \"trackingId\": \"12f5fc1a-13fb-43ac-b10b-66cc252c3b51\",\r\n \"serviceRequestId\": \"3e802184-9fd1-46aa-94d9-187fdfe0403d\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3809/providers/Microsoft.Storage/storageAccounts/ps4618\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps4618\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3809/providers/Microsoft.Resources/deployments/ps8901/operations/08585988284706182927\",\r\n \"operationId\": \"08585988284706182927\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"EvaluateDeploymentOutput\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2020-10-15T16:14:04.3044877Z\",\r\n \"duration\": \"PT25.9559796S\",\r\n \"trackingId\": \"78fb5dc0-b93c-45f0-a5b4-e33948563eb1\",\r\n \"statusCode\": \"OK\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8115/deployments/ps7875/operations?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODExNS9kZXBsb3ltZW50cy9wczc4NzUvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3809/deployments/ps8901/operations?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzgwOS9kZXBsb3ltZW50cy9wczg5MDEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "efc2a561-6db3-4eea-926a-220fd303f4cb" + "05f7c267-d727-414d-bf96-38b1cb9ad374" ], "Accept-Language": [ "en-US" @@ -2871,8 +2871,8 @@ "User-Agent": [ "FxVersion/4.6.28207.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.8.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.10.0.0" ] }, "ResponseHeaders": { @@ -2883,16 +2883,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11918" + "11917" ], "x-ms-request-id": [ - "f015f8d3-d231-40ed-b37e-b8bd9cee7831" + "1dd306d2-4577-4f29-9083-01e09ea11058" ], "x-ms-correlation-request-id": [ - "f015f8d3-d231-40ed-b37e-b8bd9cee7831" + "1dd306d2-4577-4f29-9083-01e09ea11058" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20200714T221219Z:f015f8d3-d231-40ed-b37e-b8bd9cee7831" + "CANADACENTRAL:20201015T161409Z:1dd306d2-4577-4f29-9083-01e09ea11058" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2901,7 +2901,7 @@ "nosniff" ], "Date": [ - "Tue, 14 Jul 2020 22:12:18 GMT" + "Thu, 15 Oct 2020 16:14:09 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2910,23 +2910,23 @@ "-1" ], "Content-Length": [ - "711" + "1809" ], "Retry-After": [ "0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8115/providers/Microsoft.Resources/deployments/ps7875/operations/1E8ECD20217625B9\",\r\n \"operationId\": \"1E8ECD20217625B9\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-07-14T22:12:03.8923041Z\",\r\n \"duration\": \"PT3.2448776S\",\r\n \"trackingId\": \"4827f3fc-4abb-4029-83c5-d21f9393560f\",\r\n \"serviceRequestId\": \"dd864564-58db-4946-b42d-8bf443addba2\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8115/providers/Microsoft.Storage/storageAccounts/ps8461\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps8461\"\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/ps3809/providers/Microsoft.Resources/deployments/ps8901/operations/F043D6DCA78BF480\",\r\n \"operationId\": \"F043D6DCA78BF480\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Read\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2020-10-15T16:14:04.1386798Z\",\r\n \"duration\": \"PT25.7901717S\",\r\n \"trackingId\": \"2775ed79-962a-4ef9-83ae-efc52f4949a1\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3809/providers/Microsoft.Storage/storageAccounts/ps4618\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps4618\",\r\n \"apiVersion\": \"2019-06-01\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3809/providers/Microsoft.Resources/deployments/ps8901/operations/5500FCAC030799E2\",\r\n \"operationId\": \"5500FCAC030799E2\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2020-10-15T16:14:03.8801341Z\",\r\n \"duration\": \"PT25.531626S\",\r\n \"trackingId\": \"12f5fc1a-13fb-43ac-b10b-66cc252c3b51\",\r\n \"serviceRequestId\": \"3e802184-9fd1-46aa-94d9-187fdfe0403d\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3809/providers/Microsoft.Storage/storageAccounts/ps4618\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps4618\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3809/providers/Microsoft.Resources/deployments/ps8901/operations/08585988284706182927\",\r\n \"operationId\": \"08585988284706182927\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"EvaluateDeploymentOutput\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2020-10-15T16:14:04.3044877Z\",\r\n \"duration\": \"PT25.9559796S\",\r\n \"trackingId\": \"78fb5dc0-b93c-45f0-a5b4-e33948563eb1\",\r\n \"statusCode\": \"OK\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8115/deployments/ps7875/operations?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODExNS9kZXBsb3ltZW50cy9wczc4NzUvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3809/providers/Microsoft.Resources/deployments/ps8901?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzgwOS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczg5MDE/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "13b231c6-1784-4f27-bf52-afadc56b6144" + "ad88e432-6010-494f-a1b8-83694cfc4575" ], "Accept-Language": [ "en-US" @@ -2934,8 +2934,8 @@ "User-Agent": [ "FxVersion/4.6.28207.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.8.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.10.0.0" ] }, "ResponseHeaders": { @@ -2945,17 +2945,20 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11916" + "11997" ], "x-ms-request-id": [ - "f3099871-e71d-44f8-9564-5de4031d4929" + "cea96532-77fb-4572-9dcc-423ae2ee7799" ], "x-ms-correlation-request-id": [ - "f3099871-e71d-44f8-9564-5de4031d4929" + "cea96532-77fb-4572-9dcc-423ae2ee7799" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20200714T221219Z:f3099871-e71d-44f8-9564-5de4031d4929" + "CANADACENTRAL:20201015T161338Z:cea96532-77fb-4572-9dcc-423ae2ee7799" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2964,7 +2967,7 @@ "nosniff" ], "Date": [ - "Tue, 14 Jul 2020 22:12:19 GMT" + "Thu, 15 Oct 2020 16:13:38 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2973,23 +2976,20 @@ "-1" ], "Content-Length": [ - "711" - ], - "Retry-After": [ - "0" + "779" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8115/providers/Microsoft.Resources/deployments/ps7875/operations/1E8ECD20217625B9\",\r\n \"operationId\": \"1E8ECD20217625B9\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-07-14T22:12:03.8923041Z\",\r\n \"duration\": \"PT3.2448776S\",\r\n \"trackingId\": \"4827f3fc-4abb-4029-83c5-d21f9393560f\",\r\n \"serviceRequestId\": \"dd864564-58db-4946-b42d-8bf443addba2\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8115/providers/Microsoft.Storage/storageAccounts/ps8461\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps8461\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3809/providers/Microsoft.Resources/deployments/ps8901\",\r\n \"name\": \"ps8901\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps4618\"\r\n },\r\n \"storageAccountType\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n },\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"East US\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-10-15T16:13:38.1900597Z\",\r\n \"duration\": \"PT3.3307329S\",\r\n \"correlationId\": \"b015308f-0eb6-4ec6-8041-a9c029f88faf\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\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/ps8115/deployments/ps7875/operations?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODExNS9kZXBsb3ltZW50cy9wczc4NzUvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3809/providers/Microsoft.Resources/deployments/ps8901?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzgwOS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczg5MDE/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "14543034-beac-400e-9a38-5dda01d79143" + "8dad6191-efba-4871-be09-466f7d8fdb81" ], "Accept-Language": [ "en-US" @@ -2997,8 +2997,8 @@ "User-Agent": [ "FxVersion/4.6.28207.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.8.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.10.0.0" ] }, "ResponseHeaders": { @@ -3008,17 +3008,20 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11914" + "11995" ], "x-ms-request-id": [ - "f7d61a0f-6f05-4814-8006-63751bb1d936" + "2ad0706e-a0a8-4ade-ab67-a6a03ce35b9d" ], "x-ms-correlation-request-id": [ - "f7d61a0f-6f05-4814-8006-63751bb1d936" + "2ad0706e-a0a8-4ade-ab67-a6a03ce35b9d" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20200714T221220Z:f7d61a0f-6f05-4814-8006-63751bb1d936" + "CANADACENTRAL:20201015T161339Z:2ad0706e-a0a8-4ade-ab67-a6a03ce35b9d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3027,7 +3030,7 @@ "nosniff" ], "Date": [ - "Tue, 14 Jul 2020 22:12:19 GMT" + "Thu, 15 Oct 2020 16:13:38 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3036,23 +3039,20 @@ "-1" ], "Content-Length": [ - "711" - ], - "Retry-After": [ - "0" + "779" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8115/providers/Microsoft.Resources/deployments/ps7875/operations/1E8ECD20217625B9\",\r\n \"operationId\": \"1E8ECD20217625B9\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-07-14T22:12:03.8923041Z\",\r\n \"duration\": \"PT3.2448776S\",\r\n \"trackingId\": \"4827f3fc-4abb-4029-83c5-d21f9393560f\",\r\n \"serviceRequestId\": \"dd864564-58db-4946-b42d-8bf443addba2\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8115/providers/Microsoft.Storage/storageAccounts/ps8461\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps8461\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3809/providers/Microsoft.Resources/deployments/ps8901\",\r\n \"name\": \"ps8901\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps4618\"\r\n },\r\n \"storageAccountType\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n },\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"East US\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-10-15T16:13:38.1900597Z\",\r\n \"duration\": \"PT3.3307329S\",\r\n \"correlationId\": \"b015308f-0eb6-4ec6-8041-a9c029f88faf\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\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/ps8115/deployments/ps7875/operations?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODExNS9kZXBsb3ltZW50cy9wczc4NzUvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3809/providers/Microsoft.Resources/deployments/ps8901?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzgwOS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczg5MDE/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5ab1ae97-812a-4bcb-8c32-a172d27b7eaf" + "1716e8d6-09b9-422d-8432-7f3d2fb5de78" ], "Accept-Language": [ "en-US" @@ -3060,8 +3060,8 @@ "User-Agent": [ "FxVersion/4.6.28207.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.8.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.10.0.0" ] }, "ResponseHeaders": { @@ -3071,17 +3071,20 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11912" + "11993" ], "x-ms-request-id": [ - "f5810074-6098-4d36-a3fd-0f1f987f996d" + "e8df54db-2996-425b-a16c-3e2f36878c70" ], "x-ms-correlation-request-id": [ - "f5810074-6098-4d36-a3fd-0f1f987f996d" + "e8df54db-2996-425b-a16c-3e2f36878c70" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20200714T221220Z:f5810074-6098-4d36-a3fd-0f1f987f996d" + "CANADACENTRAL:20201015T161339Z:e8df54db-2996-425b-a16c-3e2f36878c70" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3090,7 +3093,7 @@ "nosniff" ], "Date": [ - "Tue, 14 Jul 2020 22:12:20 GMT" + "Thu, 15 Oct 2020 16:13:39 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3099,23 +3102,20 @@ "-1" ], "Content-Length": [ - "711" - ], - "Retry-After": [ - "0" + "779" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8115/providers/Microsoft.Resources/deployments/ps7875/operations/1E8ECD20217625B9\",\r\n \"operationId\": \"1E8ECD20217625B9\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-07-14T22:12:03.8923041Z\",\r\n \"duration\": \"PT3.2448776S\",\r\n \"trackingId\": \"4827f3fc-4abb-4029-83c5-d21f9393560f\",\r\n \"serviceRequestId\": \"dd864564-58db-4946-b42d-8bf443addba2\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8115/providers/Microsoft.Storage/storageAccounts/ps8461\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps8461\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3809/providers/Microsoft.Resources/deployments/ps8901\",\r\n \"name\": \"ps8901\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps4618\"\r\n },\r\n \"storageAccountType\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n },\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"East US\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-10-15T16:13:38.1900597Z\",\r\n \"duration\": \"PT3.3307329S\",\r\n \"correlationId\": \"b015308f-0eb6-4ec6-8041-a9c029f88faf\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\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/ps8115/deployments/ps7875/operations?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODExNS9kZXBsb3ltZW50cy9wczc4NzUvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3809/providers/Microsoft.Resources/deployments/ps8901?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzgwOS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczg5MDE/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6ddc27da-e0e2-474d-b20c-70fa7c645830" + "42269b9d-2e42-4f61-a80a-fafb162de0c7" ], "Accept-Language": [ "en-US" @@ -3123,8 +3123,8 @@ "User-Agent": [ "FxVersion/4.6.28207.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.8.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.10.0.0" ] }, "ResponseHeaders": { @@ -3134,17 +3134,20 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11910" + "11991" ], "x-ms-request-id": [ - "4c0a2464-f5a3-4610-bd18-253f9b36ea08" + "c0768a4a-1ff9-426e-8185-15a184eaecd0" ], "x-ms-correlation-request-id": [ - "4c0a2464-f5a3-4610-bd18-253f9b36ea08" + "c0768a4a-1ff9-426e-8185-15a184eaecd0" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20200714T221221Z:4c0a2464-f5a3-4610-bd18-253f9b36ea08" + "CANADACENTRAL:20201015T161340Z:c0768a4a-1ff9-426e-8185-15a184eaecd0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3153,7 +3156,7 @@ "nosniff" ], "Date": [ - "Tue, 14 Jul 2020 22:12:20 GMT" + "Thu, 15 Oct 2020 16:13:39 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3162,23 +3165,20 @@ "-1" ], "Content-Length": [ - "711" - ], - "Retry-After": [ - "0" + "779" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8115/providers/Microsoft.Resources/deployments/ps7875/operations/1E8ECD20217625B9\",\r\n \"operationId\": \"1E8ECD20217625B9\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-07-14T22:12:03.8923041Z\",\r\n \"duration\": \"PT3.2448776S\",\r\n \"trackingId\": \"4827f3fc-4abb-4029-83c5-d21f9393560f\",\r\n \"serviceRequestId\": \"dd864564-58db-4946-b42d-8bf443addba2\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8115/providers/Microsoft.Storage/storageAccounts/ps8461\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps8461\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3809/providers/Microsoft.Resources/deployments/ps8901\",\r\n \"name\": \"ps8901\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps4618\"\r\n },\r\n \"storageAccountType\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n },\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"East US\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-10-15T16:13:38.1900597Z\",\r\n \"duration\": \"PT3.3307329S\",\r\n \"correlationId\": \"b015308f-0eb6-4ec6-8041-a9c029f88faf\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\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/ps8115/deployments/ps7875/operations?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODExNS9kZXBsb3ltZW50cy9wczc4NzUvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3809/providers/Microsoft.Resources/deployments/ps8901?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzgwOS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczg5MDE/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b721a11b-02ff-46ad-941a-f196a450ff7d" + "68309185-5810-409c-b6af-dc7d9de62940" ], "Accept-Language": [ "en-US" @@ -3186,8 +3186,8 @@ "User-Agent": [ "FxVersion/4.6.28207.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.8.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.10.0.0" ] }, "ResponseHeaders": { @@ -3197,17 +3197,20 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11908" + "11989" ], "x-ms-request-id": [ - "3b843e81-c7fd-4b03-af77-a665d700da1c" + "24e5d9b8-9191-4f29-a052-c18a9bbe6afc" ], "x-ms-correlation-request-id": [ - "3b843e81-c7fd-4b03-af77-a665d700da1c" + "24e5d9b8-9191-4f29-a052-c18a9bbe6afc" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20200714T221221Z:3b843e81-c7fd-4b03-af77-a665d700da1c" + "CANADACENTRAL:20201015T161340Z:24e5d9b8-9191-4f29-a052-c18a9bbe6afc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3216,7 +3219,7 @@ "nosniff" ], "Date": [ - "Tue, 14 Jul 2020 22:12:20 GMT" + "Thu, 15 Oct 2020 16:13:40 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3225,23 +3228,20 @@ "-1" ], "Content-Length": [ - "711" - ], - "Retry-After": [ - "0" + "779" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8115/providers/Microsoft.Resources/deployments/ps7875/operations/1E8ECD20217625B9\",\r\n \"operationId\": \"1E8ECD20217625B9\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-07-14T22:12:03.8923041Z\",\r\n \"duration\": \"PT3.2448776S\",\r\n \"trackingId\": \"4827f3fc-4abb-4029-83c5-d21f9393560f\",\r\n \"serviceRequestId\": \"dd864564-58db-4946-b42d-8bf443addba2\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8115/providers/Microsoft.Storage/storageAccounts/ps8461\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps8461\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3809/providers/Microsoft.Resources/deployments/ps8901\",\r\n \"name\": \"ps8901\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps4618\"\r\n },\r\n \"storageAccountType\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n },\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"East US\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-10-15T16:13:38.1900597Z\",\r\n \"duration\": \"PT3.3307329S\",\r\n \"correlationId\": \"b015308f-0eb6-4ec6-8041-a9c029f88faf\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\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/ps8115/deployments/ps7875/operations?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODExNS9kZXBsb3ltZW50cy9wczc4NzUvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3809/providers/Microsoft.Resources/deployments/ps8901?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzgwOS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczg5MDE/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "26eb1f7d-906e-4967-9937-d76d90ad5aac" + "e1b542ee-4bb0-4c12-a776-bad1d845c9ab" ], "Accept-Language": [ "en-US" @@ -3249,8 +3249,8 @@ "User-Agent": [ "FxVersion/4.6.28207.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.8.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.10.0.0" ] }, "ResponseHeaders": { @@ -3260,17 +3260,20 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11906" + "11987" ], "x-ms-request-id": [ - "a418a474-ff40-4eed-8c46-05dc42efcda8" + "a679107d-63ac-4e3a-afc5-0ab1626cd66b" ], "x-ms-correlation-request-id": [ - "a418a474-ff40-4eed-8c46-05dc42efcda8" + "a679107d-63ac-4e3a-afc5-0ab1626cd66b" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20200714T221222Z:a418a474-ff40-4eed-8c46-05dc42efcda8" + "CANADACENTRAL:20201015T161341Z:a679107d-63ac-4e3a-afc5-0ab1626cd66b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3279,7 +3282,7 @@ "nosniff" ], "Date": [ - "Tue, 14 Jul 2020 22:12:21 GMT" + "Thu, 15 Oct 2020 16:13:40 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3288,23 +3291,20 @@ "-1" ], "Content-Length": [ - "711" - ], - "Retry-After": [ - "0" + "779" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8115/providers/Microsoft.Resources/deployments/ps7875/operations/1E8ECD20217625B9\",\r\n \"operationId\": \"1E8ECD20217625B9\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-07-14T22:12:03.8923041Z\",\r\n \"duration\": \"PT3.2448776S\",\r\n \"trackingId\": \"4827f3fc-4abb-4029-83c5-d21f9393560f\",\r\n \"serviceRequestId\": \"dd864564-58db-4946-b42d-8bf443addba2\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8115/providers/Microsoft.Storage/storageAccounts/ps8461\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps8461\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3809/providers/Microsoft.Resources/deployments/ps8901\",\r\n \"name\": \"ps8901\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps4618\"\r\n },\r\n \"storageAccountType\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n },\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"East US\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-10-15T16:13:38.1900597Z\",\r\n \"duration\": \"PT3.3307329S\",\r\n \"correlationId\": \"b015308f-0eb6-4ec6-8041-a9c029f88faf\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\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/ps8115/deployments/ps7875/operations?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODExNS9kZXBsb3ltZW50cy9wczc4NzUvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3809/providers/Microsoft.Resources/deployments/ps8901?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzgwOS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczg5MDE/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8be081b7-f456-448b-980f-fee15343bc18" + "05e84e51-2d85-487c-b19f-dda6f23db6cf" ], "Accept-Language": [ "en-US" @@ -3312,8 +3312,8 @@ "User-Agent": [ "FxVersion/4.6.28207.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.8.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.10.0.0" ] }, "ResponseHeaders": { @@ -3323,17 +3323,20 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11904" + "11985" ], "x-ms-request-id": [ - "f78a76a0-65ea-42b9-b444-114330392a9e" + "e0e5922f-89dc-4c28-909e-989920aaa031" ], "x-ms-correlation-request-id": [ - "f78a76a0-65ea-42b9-b444-114330392a9e" + "e0e5922f-89dc-4c28-909e-989920aaa031" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20200714T221222Z:f78a76a0-65ea-42b9-b444-114330392a9e" + "CANADACENTRAL:20201015T161341Z:e0e5922f-89dc-4c28-909e-989920aaa031" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3342,7 +3345,7 @@ "nosniff" ], "Date": [ - "Tue, 14 Jul 2020 22:12:21 GMT" + "Thu, 15 Oct 2020 16:13:41 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3351,23 +3354,20 @@ "-1" ], "Content-Length": [ - "711" - ], - "Retry-After": [ - "0" + "779" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8115/providers/Microsoft.Resources/deployments/ps7875/operations/1E8ECD20217625B9\",\r\n \"operationId\": \"1E8ECD20217625B9\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-07-14T22:12:03.8923041Z\",\r\n \"duration\": \"PT3.2448776S\",\r\n \"trackingId\": \"4827f3fc-4abb-4029-83c5-d21f9393560f\",\r\n \"serviceRequestId\": \"dd864564-58db-4946-b42d-8bf443addba2\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8115/providers/Microsoft.Storage/storageAccounts/ps8461\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps8461\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3809/providers/Microsoft.Resources/deployments/ps8901\",\r\n \"name\": \"ps8901\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps4618\"\r\n },\r\n \"storageAccountType\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n },\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"East US\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-10-15T16:13:38.1900597Z\",\r\n \"duration\": \"PT3.3307329S\",\r\n \"correlationId\": \"b015308f-0eb6-4ec6-8041-a9c029f88faf\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\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/ps8115/deployments/ps7875/operations?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODExNS9kZXBsb3ltZW50cy9wczc4NzUvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3809/providers/Microsoft.Resources/deployments/ps8901?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzgwOS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczg5MDE/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "acaf3f46-21b3-49b1-9efe-8dba345f9605" + "d8038d4f-21e8-4f0c-8398-8a4fac9cd15d" ], "Accept-Language": [ "en-US" @@ -3375,8 +3375,8 @@ "User-Agent": [ "FxVersion/4.6.28207.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.8.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.10.0.0" ] }, "ResponseHeaders": { @@ -3386,17 +3386,20 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11902" + "11983" ], "x-ms-request-id": [ - "d9ce3be1-5ad1-4b01-8a34-3443da297411" + "1427a813-adc3-40b7-a22c-b147183cc0d1" ], "x-ms-correlation-request-id": [ - "d9ce3be1-5ad1-4b01-8a34-3443da297411" + "1427a813-adc3-40b7-a22c-b147183cc0d1" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20200714T221223Z:d9ce3be1-5ad1-4b01-8a34-3443da297411" + "CANADACENTRAL:20201015T161342Z:1427a813-adc3-40b7-a22c-b147183cc0d1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3405,7 +3408,7 @@ "nosniff" ], "Date": [ - "Tue, 14 Jul 2020 22:12:22 GMT" + "Thu, 15 Oct 2020 16:13:42 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3414,23 +3417,20 @@ "-1" ], "Content-Length": [ - "711" - ], - "Retry-After": [ - "0" + "779" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8115/providers/Microsoft.Resources/deployments/ps7875/operations/1E8ECD20217625B9\",\r\n \"operationId\": \"1E8ECD20217625B9\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-07-14T22:12:03.8923041Z\",\r\n \"duration\": \"PT3.2448776S\",\r\n \"trackingId\": \"4827f3fc-4abb-4029-83c5-d21f9393560f\",\r\n \"serviceRequestId\": \"dd864564-58db-4946-b42d-8bf443addba2\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8115/providers/Microsoft.Storage/storageAccounts/ps8461\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps8461\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3809/providers/Microsoft.Resources/deployments/ps8901\",\r\n \"name\": \"ps8901\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps4618\"\r\n },\r\n \"storageAccountType\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n },\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"East US\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-10-15T16:13:41.8364429Z\",\r\n \"duration\": \"PT6.9771161S\",\r\n \"correlationId\": \"b015308f-0eb6-4ec6-8041-a9c029f88faf\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\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/ps8115/deployments/ps7875/operations?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODExNS9kZXBsb3ltZW50cy9wczc4NzUvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3809/providers/Microsoft.Resources/deployments/ps8901?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzgwOS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczg5MDE/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4835a2bd-8f89-4765-942e-61ddb838b5ac" + "33af5d3b-f406-4fce-8f58-f8147e5e4a23" ], "Accept-Language": [ "en-US" @@ -3438,8 +3438,8 @@ "User-Agent": [ "FxVersion/4.6.28207.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.8.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.10.0.0" ] }, "ResponseHeaders": { @@ -3449,17 +3449,20 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11900" + "11981" ], "x-ms-request-id": [ - "8de43bd1-5bf8-4921-926b-a2c67408be8e" + "92e051f3-bf34-4e10-880b-9d0c48425b5b" ], "x-ms-correlation-request-id": [ - "8de43bd1-5bf8-4921-926b-a2c67408be8e" + "92e051f3-bf34-4e10-880b-9d0c48425b5b" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20200714T221223Z:8de43bd1-5bf8-4921-926b-a2c67408be8e" + "CANADACENTRAL:20201015T161343Z:92e051f3-bf34-4e10-880b-9d0c48425b5b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3468,7 +3471,7 @@ "nosniff" ], "Date": [ - "Tue, 14 Jul 2020 22:12:22 GMT" + "Thu, 15 Oct 2020 16:13:42 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3477,23 +3480,20 @@ "-1" ], "Content-Length": [ - "711" - ], - "Retry-After": [ - "0" + "779" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8115/providers/Microsoft.Resources/deployments/ps7875/operations/1E8ECD20217625B9\",\r\n \"operationId\": \"1E8ECD20217625B9\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-07-14T22:12:03.8923041Z\",\r\n \"duration\": \"PT3.2448776S\",\r\n \"trackingId\": \"4827f3fc-4abb-4029-83c5-d21f9393560f\",\r\n \"serviceRequestId\": \"dd864564-58db-4946-b42d-8bf443addba2\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8115/providers/Microsoft.Storage/storageAccounts/ps8461\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps8461\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3809/providers/Microsoft.Resources/deployments/ps8901\",\r\n \"name\": \"ps8901\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps4618\"\r\n },\r\n \"storageAccountType\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n },\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"East US\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-10-15T16:13:41.8364429Z\",\r\n \"duration\": \"PT6.9771161S\",\r\n \"correlationId\": \"b015308f-0eb6-4ec6-8041-a9c029f88faf\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\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/ps8115/deployments/ps7875/operations?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODExNS9kZXBsb3ltZW50cy9wczc4NzUvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3809/providers/Microsoft.Resources/deployments/ps8901?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzgwOS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczg5MDE/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7878c8cf-e8bd-485b-ba0f-aeb98070440a" + "2e50399c-e6dc-4299-8161-0ca313a5ad25" ], "Accept-Language": [ "en-US" @@ -3501,8 +3501,8 @@ "User-Agent": [ "FxVersion/4.6.28207.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.8.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.10.0.0" ] }, "ResponseHeaders": { @@ -3512,17 +3512,20 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11898" + "11979" ], "x-ms-request-id": [ - "e2a4d829-b91e-401d-aec7-3da5d8b47022" + "d62ec34e-4fb8-4857-a368-b6301cca7ec9" ], "x-ms-correlation-request-id": [ - "e2a4d829-b91e-401d-aec7-3da5d8b47022" + "d62ec34e-4fb8-4857-a368-b6301cca7ec9" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20200714T221223Z:e2a4d829-b91e-401d-aec7-3da5d8b47022" + "CANADACENTRAL:20201015T161343Z:d62ec34e-4fb8-4857-a368-b6301cca7ec9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3531,7 +3534,7 @@ "nosniff" ], "Date": [ - "Tue, 14 Jul 2020 22:12:23 GMT" + "Thu, 15 Oct 2020 16:13:43 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3540,23 +3543,20 @@ "-1" ], "Content-Length": [ - "711" - ], - "Retry-After": [ - "0" + "779" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8115/providers/Microsoft.Resources/deployments/ps7875/operations/1E8ECD20217625B9\",\r\n \"operationId\": \"1E8ECD20217625B9\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-07-14T22:12:03.8923041Z\",\r\n \"duration\": \"PT3.2448776S\",\r\n \"trackingId\": \"4827f3fc-4abb-4029-83c5-d21f9393560f\",\r\n \"serviceRequestId\": \"dd864564-58db-4946-b42d-8bf443addba2\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8115/providers/Microsoft.Storage/storageAccounts/ps8461\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps8461\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3809/providers/Microsoft.Resources/deployments/ps8901\",\r\n \"name\": \"ps8901\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps4618\"\r\n },\r\n \"storageAccountType\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n },\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"East US\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-10-15T16:13:41.8364429Z\",\r\n \"duration\": \"PT6.9771161S\",\r\n \"correlationId\": \"b015308f-0eb6-4ec6-8041-a9c029f88faf\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\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/ps8115/deployments/ps7875/operations?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODExNS9kZXBsb3ltZW50cy9wczc4NzUvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3809/providers/Microsoft.Resources/deployments/ps8901?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzgwOS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczg5MDE/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6c5feba0-24e0-4c57-a9ef-c804b08d454b" + "a6a5a99b-14f5-4fc9-857a-7273c03b4957" ], "Accept-Language": [ "en-US" @@ -3564,8 +3564,8 @@ "User-Agent": [ "FxVersion/4.6.28207.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.8.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.10.0.0" ] }, "ResponseHeaders": { @@ -3575,17 +3575,20 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11896" + "11977" ], "x-ms-request-id": [ - "601f0f6e-6dcc-4b40-ab2a-75af0e558840" + "562355d3-c55f-4f69-8b23-c827ae95eb0d" ], "x-ms-correlation-request-id": [ - "601f0f6e-6dcc-4b40-ab2a-75af0e558840" + "562355d3-c55f-4f69-8b23-c827ae95eb0d" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20200714T221224Z:601f0f6e-6dcc-4b40-ab2a-75af0e558840" + "CANADACENTRAL:20201015T161344Z:562355d3-c55f-4f69-8b23-c827ae95eb0d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3594,7 +3597,7 @@ "nosniff" ], "Date": [ - "Tue, 14 Jul 2020 22:12:23 GMT" + "Thu, 15 Oct 2020 16:13:43 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3603,23 +3606,20 @@ "-1" ], "Content-Length": [ - "707" - ], - "Retry-After": [ - "0" + "779" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8115/providers/Microsoft.Resources/deployments/ps7875/operations/1E8ECD20217625B9\",\r\n \"operationId\": \"1E8ECD20217625B9\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2020-07-14T22:12:24.348561Z\",\r\n \"duration\": \"PT23.7011345S\",\r\n \"trackingId\": \"3bba5d96-3f25-446c-8c00-07994a06050a\",\r\n \"serviceRequestId\": \"dd864564-58db-4946-b42d-8bf443addba2\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8115/providers/Microsoft.Storage/storageAccounts/ps8461\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps8461\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3809/providers/Microsoft.Resources/deployments/ps8901\",\r\n \"name\": \"ps8901\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps4618\"\r\n },\r\n \"storageAccountType\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n },\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"East US\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-10-15T16:13:41.8364429Z\",\r\n \"duration\": \"PT6.9771161S\",\r\n \"correlationId\": \"b015308f-0eb6-4ec6-8041-a9c029f88faf\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\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/ps8115/deployments/ps7875/operations?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODExNS9kZXBsb3ltZW50cy9wczc4NzUvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3809/providers/Microsoft.Resources/deployments/ps8901?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzgwOS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczg5MDE/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c47918c1-c06c-4e0d-9686-a92ccb7bcd0b" + "9830d794-7aad-4847-b413-9ae95ce7b19e" ], "Accept-Language": [ "en-US" @@ -3627,8 +3627,8 @@ "User-Agent": [ "FxVersion/4.6.28207.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.8.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.10.0.0" ] }, "ResponseHeaders": { @@ -3638,17 +3638,20 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11894" + "11975" ], "x-ms-request-id": [ - "6fa884fe-3b81-45f9-9fed-ec43be850c64" + "3267e81d-e5c9-4550-838f-a802b2285dab" ], "x-ms-correlation-request-id": [ - "6fa884fe-3b81-45f9-9fed-ec43be850c64" + "3267e81d-e5c9-4550-838f-a802b2285dab" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20200714T221224Z:6fa884fe-3b81-45f9-9fed-ec43be850c64" + "CANADACENTRAL:20201015T161344Z:3267e81d-e5c9-4550-838f-a802b2285dab" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3657,7 +3660,7 @@ "nosniff" ], "Date": [ - "Tue, 14 Jul 2020 22:12:24 GMT" + "Thu, 15 Oct 2020 16:13:44 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3666,23 +3669,20 @@ "-1" ], "Content-Length": [ - "1369" - ], - "Retry-After": [ - "0" + "779" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8115/providers/Microsoft.Resources/deployments/ps7875/operations/2D00889557D22D75\",\r\n \"operationId\": \"2D00889557D22D75\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Read\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2020-07-14T22:12:24.8185732Z\",\r\n \"duration\": \"PT0.1697563S\",\r\n \"trackingId\": \"83d21eaa-1f54-4d55-8e3f-a19594fb88d9\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8115/providers/Microsoft.Storage/storageAccounts/ps8461\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps8461\",\r\n \"apiVersion\": \"2019-06-01\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8115/providers/Microsoft.Resources/deployments/ps7875/operations/1E8ECD20217625B9\",\r\n \"operationId\": \"1E8ECD20217625B9\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2020-07-14T22:12:24.348561Z\",\r\n \"duration\": \"PT23.7011345S\",\r\n \"trackingId\": \"3bba5d96-3f25-446c-8c00-07994a06050a\",\r\n \"serviceRequestId\": \"dd864564-58db-4946-b42d-8bf443addba2\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8115/providers/Microsoft.Storage/storageAccounts/ps8461\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps8461\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3809/providers/Microsoft.Resources/deployments/ps8901\",\r\n \"name\": \"ps8901\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps4618\"\r\n },\r\n \"storageAccountType\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n },\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"East US\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-10-15T16:13:41.8364429Z\",\r\n \"duration\": \"PT6.9771161S\",\r\n \"correlationId\": \"b015308f-0eb6-4ec6-8041-a9c029f88faf\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\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/ps8115/deployments/ps7875/operations?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODExNS9kZXBsb3ltZW50cy9wczc4NzUvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3809/providers/Microsoft.Resources/deployments/ps8901?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzgwOS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczg5MDE/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "beb6401b-3319-4d16-beb3-6272d833b410" + "d26b5a22-7cd1-4860-95e1-cbc6a474ba18" ], "Accept-Language": [ "en-US" @@ -3690,8 +3690,8 @@ "User-Agent": [ "FxVersion/4.6.28207.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.8.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.10.0.0" ] }, "ResponseHeaders": { @@ -3701,17 +3701,20 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11892" + "11973" ], "x-ms-request-id": [ - "d8284af7-869f-4719-ad8d-44bae57f5d04" + "2a5e16d4-40b8-4c6d-995e-52a867fcf199" ], "x-ms-correlation-request-id": [ - "d8284af7-869f-4719-ad8d-44bae57f5d04" + "2a5e16d4-40b8-4c6d-995e-52a867fcf199" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20200714T221225Z:d8284af7-869f-4719-ad8d-44bae57f5d04" + "CANADACENTRAL:20201015T161345Z:2a5e16d4-40b8-4c6d-995e-52a867fcf199" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3720,7 +3723,7 @@ "nosniff" ], "Date": [ - "Tue, 14 Jul 2020 22:12:24 GMT" + "Thu, 15 Oct 2020 16:13:44 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3729,23 +3732,20 @@ "-1" ], "Content-Length": [ - "1807" - ], - "Retry-After": [ - "0" + "779" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8115/providers/Microsoft.Resources/deployments/ps7875/operations/2D00889557D22D75\",\r\n \"operationId\": \"2D00889557D22D75\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Read\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2020-07-14T22:12:24.8185732Z\",\r\n \"duration\": \"PT0.1697563S\",\r\n \"trackingId\": \"83d21eaa-1f54-4d55-8e3f-a19594fb88d9\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8115/providers/Microsoft.Storage/storageAccounts/ps8461\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps8461\",\r\n \"apiVersion\": \"2019-06-01\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8115/providers/Microsoft.Resources/deployments/ps7875/operations/1E8ECD20217625B9\",\r\n \"operationId\": \"1E8ECD20217625B9\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2020-07-14T22:12:24.348561Z\",\r\n \"duration\": \"PT23.7011345S\",\r\n \"trackingId\": \"3bba5d96-3f25-446c-8c00-07994a06050a\",\r\n \"serviceRequestId\": \"dd864564-58db-4946-b42d-8bf443addba2\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8115/providers/Microsoft.Storage/storageAccounts/ps8461\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps8461\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8115/providers/Microsoft.Resources/deployments/ps7875/operations/08586068421668684198\",\r\n \"operationId\": \"08586068421668684198\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"EvaluateDeploymentOutput\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2020-07-14T22:12:25.1667837Z\",\r\n \"duration\": \"PT0.0855407S\",\r\n \"trackingId\": \"8911c97e-55a2-4c8a-a57d-0c84dd33b9fd\",\r\n \"statusCode\": \"OK\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3809/providers/Microsoft.Resources/deployments/ps8901\",\r\n \"name\": \"ps8901\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps4618\"\r\n },\r\n \"storageAccountType\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n },\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"East US\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-10-15T16:13:41.8364429Z\",\r\n \"duration\": \"PT6.9771161S\",\r\n \"correlationId\": \"b015308f-0eb6-4ec6-8041-a9c029f88faf\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\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/ps8115/providers/Microsoft.Resources/deployments/ps7875?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODExNS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczc4NzU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3809/providers/Microsoft.Resources/deployments/ps8901?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzgwOS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczg5MDE/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ab56e197-592c-41ed-8912-3e74f16f52c7" + "7d7982df-a288-4113-84ce-0079ccfa07fa" ], "Accept-Language": [ "en-US" @@ -3753,8 +3753,8 @@ "User-Agent": [ "FxVersion/4.6.28207.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.8.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.10.0.0" ] }, "ResponseHeaders": { @@ -3768,16 +3768,16 @@ "0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11971" ], "x-ms-request-id": [ - "81b80d8a-f557-41a0-928a-d1cfcddce407" + "85497c1f-a614-4c14-9bc6-a635d167a07c" ], "x-ms-correlation-request-id": [ - "81b80d8a-f557-41a0-928a-d1cfcddce407" + "85497c1f-a614-4c14-9bc6-a635d167a07c" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20200714T221201Z:81b80d8a-f557-41a0-928a-d1cfcddce407" + "CANADACENTRAL:20201015T161345Z:85497c1f-a614-4c14-9bc6-a635d167a07c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3786,7 +3786,7 @@ "nosniff" ], "Date": [ - "Tue, 14 Jul 2020 22:12:00 GMT" + "Thu, 15 Oct 2020 16:13:45 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3798,17 +3798,17 @@ "779" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8115/providers/Microsoft.Resources/deployments/ps7875\",\r\n \"name\": \"ps7875\",\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\": \"ps8461\"\r\n },\r\n \"storageAccountType\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n },\r\n \"location\": {\r\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-14T22:12:00.5420741Z\",\r\n \"duration\": \"PT1.9328803S\",\r\n \"correlationId\": \"a79ca781-d53f-4882-a208-ee83584a195c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"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/ps3809/providers/Microsoft.Resources/deployments/ps8901\",\r\n \"name\": \"ps8901\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps4618\"\r\n },\r\n \"storageAccountType\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n },\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"East US\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-10-15T16:13:41.8364429Z\",\r\n \"duration\": \"PT6.9771161S\",\r\n \"correlationId\": \"b015308f-0eb6-4ec6-8041-a9c029f88faf\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\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/ps8115/providers/Microsoft.Resources/deployments/ps7875?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODExNS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczc4NzU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3809/providers/Microsoft.Resources/deployments/ps8901?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzgwOS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczg5MDE/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "055594ef-f543-4fb1-a90c-c22863221e7a" + "5cfbdd0c-dafa-4214-99e9-291ca94f711c" ], "Accept-Language": [ "en-US" @@ -3816,8 +3816,8 @@ "User-Agent": [ "FxVersion/4.6.28207.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.8.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.10.0.0" ] }, "ResponseHeaders": { @@ -3831,16 +3831,16 @@ "0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11969" ], "x-ms-request-id": [ - "5797eb78-3bab-46ea-9d0a-394b43c2bf3a" + "c21ad9c0-8a00-4440-96e0-768dac6574b2" ], "x-ms-correlation-request-id": [ - "5797eb78-3bab-46ea-9d0a-394b43c2bf3a" + "c21ad9c0-8a00-4440-96e0-768dac6574b2" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20200714T221201Z:5797eb78-3bab-46ea-9d0a-394b43c2bf3a" + "CANADACENTRAL:20201015T161346Z:c21ad9c0-8a00-4440-96e0-768dac6574b2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3849,7 +3849,7 @@ "nosniff" ], "Date": [ - "Tue, 14 Jul 2020 22:12:01 GMT" + "Thu, 15 Oct 2020 16:13:45 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3861,17 +3861,17 @@ "779" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8115/providers/Microsoft.Resources/deployments/ps7875\",\r\n \"name\": \"ps7875\",\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\": \"ps8461\"\r\n },\r\n \"storageAccountType\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n },\r\n \"location\": {\r\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-14T22:12:00.5420741Z\",\r\n \"duration\": \"PT1.9328803S\",\r\n \"correlationId\": \"a79ca781-d53f-4882-a208-ee83584a195c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"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/ps3809/providers/Microsoft.Resources/deployments/ps8901\",\r\n \"name\": \"ps8901\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps4618\"\r\n },\r\n \"storageAccountType\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n },\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"East US\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-10-15T16:13:41.8364429Z\",\r\n \"duration\": \"PT6.9771161S\",\r\n \"correlationId\": \"b015308f-0eb6-4ec6-8041-a9c029f88faf\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\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/ps8115/providers/Microsoft.Resources/deployments/ps7875?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODExNS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczc4NzU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3809/providers/Microsoft.Resources/deployments/ps8901?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzgwOS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczg5MDE/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "40b4f416-9b6c-462e-b2cd-bb68d9f128cc" + "c06e9f10-ca9f-42a9-a077-2275f68005b4" ], "Accept-Language": [ "en-US" @@ -3879,8 +3879,8 @@ "User-Agent": [ "FxVersion/4.6.28207.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.8.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.10.0.0" ] }, "ResponseHeaders": { @@ -3894,16 +3894,16 @@ "0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11967" ], "x-ms-request-id": [ - "d0096ce1-f851-4a7c-9dd9-b1c15c463680" + "62df5116-0a46-40c9-baab-b16272485351" ], "x-ms-correlation-request-id": [ - "d0096ce1-f851-4a7c-9dd9-b1c15c463680" + "62df5116-0a46-40c9-baab-b16272485351" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20200714T221201Z:d0096ce1-f851-4a7c-9dd9-b1c15c463680" + "CANADACENTRAL:20201015T161347Z:62df5116-0a46-40c9-baab-b16272485351" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3912,7 +3912,7 @@ "nosniff" ], "Date": [ - "Tue, 14 Jul 2020 22:12:01 GMT" + "Thu, 15 Oct 2020 16:13:46 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3924,17 +3924,17 @@ "779" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8115/providers/Microsoft.Resources/deployments/ps7875\",\r\n \"name\": \"ps7875\",\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\": \"ps8461\"\r\n },\r\n \"storageAccountType\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n },\r\n \"location\": {\r\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-14T22:12:00.5420741Z\",\r\n \"duration\": \"PT1.9328803S\",\r\n \"correlationId\": \"a79ca781-d53f-4882-a208-ee83584a195c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"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/ps3809/providers/Microsoft.Resources/deployments/ps8901\",\r\n \"name\": \"ps8901\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps4618\"\r\n },\r\n \"storageAccountType\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n },\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"East US\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-10-15T16:13:41.8364429Z\",\r\n \"duration\": \"PT6.9771161S\",\r\n \"correlationId\": \"b015308f-0eb6-4ec6-8041-a9c029f88faf\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\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/ps8115/providers/Microsoft.Resources/deployments/ps7875?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODExNS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczc4NzU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3809/providers/Microsoft.Resources/deployments/ps8901?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzgwOS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczg5MDE/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "357d0be7-3d04-4928-88ef-65dd0a6f83a9" + "f5bf8a15-03d5-4215-9c7f-e78894f5d8dc" ], "Accept-Language": [ "en-US" @@ -3942,8 +3942,8 @@ "User-Agent": [ "FxVersion/4.6.28207.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.8.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.10.0.0" ] }, "ResponseHeaders": { @@ -3957,16 +3957,16 @@ "0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11965" ], "x-ms-request-id": [ - "12467576-52e0-4a33-a0d7-ea6dc534e5c6" + "b8c4199b-ff7a-4fa1-9db5-fc70a35e13d5" ], "x-ms-correlation-request-id": [ - "12467576-52e0-4a33-a0d7-ea6dc534e5c6" + "b8c4199b-ff7a-4fa1-9db5-fc70a35e13d5" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20200714T221202Z:12467576-52e0-4a33-a0d7-ea6dc534e5c6" + "CANADACENTRAL:20201015T161347Z:b8c4199b-ff7a-4fa1-9db5-fc70a35e13d5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3975,7 +3975,7 @@ "nosniff" ], "Date": [ - "Tue, 14 Jul 2020 22:12:02 GMT" + "Thu, 15 Oct 2020 16:13:47 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3987,17 +3987,17 @@ "779" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8115/providers/Microsoft.Resources/deployments/ps7875\",\r\n \"name\": \"ps7875\",\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\": \"ps8461\"\r\n },\r\n \"storageAccountType\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n },\r\n \"location\": {\r\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-14T22:12:00.5420741Z\",\r\n \"duration\": \"PT1.9328803S\",\r\n \"correlationId\": \"a79ca781-d53f-4882-a208-ee83584a195c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"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/ps3809/providers/Microsoft.Resources/deployments/ps8901\",\r\n \"name\": \"ps8901\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps4618\"\r\n },\r\n \"storageAccountType\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n },\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"East US\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-10-15T16:13:41.8364429Z\",\r\n \"duration\": \"PT6.9771161S\",\r\n \"correlationId\": \"b015308f-0eb6-4ec6-8041-a9c029f88faf\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\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/ps8115/providers/Microsoft.Resources/deployments/ps7875?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODExNS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczc4NzU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3809/providers/Microsoft.Resources/deployments/ps8901?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzgwOS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczg5MDE/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "02dd5ea6-0672-4f73-bdd5-47416f4a7054" + "3351c93d-895c-44c3-876a-7fe9d89f3691" ], "Accept-Language": [ "en-US" @@ -4005,8 +4005,8 @@ "User-Agent": [ "FxVersion/4.6.28207.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.8.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.10.0.0" ] }, "ResponseHeaders": { @@ -4020,16 +4020,16 @@ "0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11963" ], "x-ms-request-id": [ - "0aa6ef8d-77ab-49c0-8b50-923baf8ee41a" + "ba1622f3-6c77-45fb-98b2-e185136f5364" ], "x-ms-correlation-request-id": [ - "0aa6ef8d-77ab-49c0-8b50-923baf8ee41a" + "ba1622f3-6c77-45fb-98b2-e185136f5364" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20200714T221203Z:0aa6ef8d-77ab-49c0-8b50-923baf8ee41a" + "CANADACENTRAL:20201015T161348Z:ba1622f3-6c77-45fb-98b2-e185136f5364" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4038,7 +4038,7 @@ "nosniff" ], "Date": [ - "Tue, 14 Jul 2020 22:12:02 GMT" + "Thu, 15 Oct 2020 16:13:47 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4050,17 +4050,17 @@ "779" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8115/providers/Microsoft.Resources/deployments/ps7875\",\r\n \"name\": \"ps7875\",\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\": \"ps8461\"\r\n },\r\n \"storageAccountType\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n },\r\n \"location\": {\r\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-14T22:12:00.5420741Z\",\r\n \"duration\": \"PT1.9328803S\",\r\n \"correlationId\": \"a79ca781-d53f-4882-a208-ee83584a195c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"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/ps3809/providers/Microsoft.Resources/deployments/ps8901\",\r\n \"name\": \"ps8901\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps4618\"\r\n },\r\n \"storageAccountType\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n },\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"East US\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-10-15T16:13:41.8364429Z\",\r\n \"duration\": \"PT6.9771161S\",\r\n \"correlationId\": \"b015308f-0eb6-4ec6-8041-a9c029f88faf\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\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/ps8115/providers/Microsoft.Resources/deployments/ps7875?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODExNS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczc4NzU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3809/providers/Microsoft.Resources/deployments/ps8901?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzgwOS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczg5MDE/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2b6d1d5b-86c6-4a67-88a1-a2ac849b4cba" + "5fa49f01-12db-458d-bd58-0b30c1ec6834" ], "Accept-Language": [ "en-US" @@ -4068,8 +4068,8 @@ "User-Agent": [ "FxVersion/4.6.28207.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.8.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.10.0.0" ] }, "ResponseHeaders": { @@ -4083,16 +4083,16 @@ "0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "11961" ], "x-ms-request-id": [ - "b67367ff-092c-4a87-88ed-a389db8d997e" + "7ebe17c1-9a2d-41bf-965a-b71692571e38" ], "x-ms-correlation-request-id": [ - "b67367ff-092c-4a87-88ed-a389db8d997e" + "7ebe17c1-9a2d-41bf-965a-b71692571e38" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20200714T221203Z:b67367ff-092c-4a87-88ed-a389db8d997e" + "CANADACENTRAL:20201015T161348Z:7ebe17c1-9a2d-41bf-965a-b71692571e38" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4101,7 +4101,7 @@ "nosniff" ], "Date": [ - "Tue, 14 Jul 2020 22:12:03 GMT" + "Thu, 15 Oct 2020 16:13:48 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4113,17 +4113,17 @@ "779" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8115/providers/Microsoft.Resources/deployments/ps7875\",\r\n \"name\": \"ps7875\",\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\": \"ps8461\"\r\n },\r\n \"storageAccountType\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n },\r\n \"location\": {\r\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-14T22:12:00.5420741Z\",\r\n \"duration\": \"PT1.9328803S\",\r\n \"correlationId\": \"a79ca781-d53f-4882-a208-ee83584a195c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"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/ps3809/providers/Microsoft.Resources/deployments/ps8901\",\r\n \"name\": \"ps8901\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps4618\"\r\n },\r\n \"storageAccountType\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n },\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"East US\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-10-15T16:13:41.8364429Z\",\r\n \"duration\": \"PT6.9771161S\",\r\n \"correlationId\": \"b015308f-0eb6-4ec6-8041-a9c029f88faf\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\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/ps8115/providers/Microsoft.Resources/deployments/ps7875?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODExNS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczc4NzU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3809/providers/Microsoft.Resources/deployments/ps8901?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzgwOS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczg5MDE/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b98500c9-8ca3-4c19-924e-e492ce0ec97f" + "ca7e012a-8cec-4545-bffb-f874ee7ec7e6" ], "Accept-Language": [ "en-US" @@ -4131,8 +4131,8 @@ "User-Agent": [ "FxVersion/4.6.28207.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.8.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.10.0.0" ] }, "ResponseHeaders": { @@ -4146,16 +4146,16 @@ "0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" + "11959" ], "x-ms-request-id": [ - "653c9d65-8283-4303-a616-66fb6f2fcce7" + "2b5ffb1f-2538-47af-af38-5027b5015f22" ], "x-ms-correlation-request-id": [ - "653c9d65-8283-4303-a616-66fb6f2fcce7" + "2b5ffb1f-2538-47af-af38-5027b5015f22" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20200714T221204Z:653c9d65-8283-4303-a616-66fb6f2fcce7" + "CANADACENTRAL:20201015T161349Z:2b5ffb1f-2538-47af-af38-5027b5015f22" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4164,7 +4164,7 @@ "nosniff" ], "Date": [ - "Tue, 14 Jul 2020 22:12:03 GMT" + "Thu, 15 Oct 2020 16:13:48 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4176,17 +4176,17 @@ "779" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8115/providers/Microsoft.Resources/deployments/ps7875\",\r\n \"name\": \"ps7875\",\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\": \"ps8461\"\r\n },\r\n \"storageAccountType\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n },\r\n \"location\": {\r\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-14T22:12:03.7774505Z\",\r\n \"duration\": \"PT5.1682567S\",\r\n \"correlationId\": \"a79ca781-d53f-4882-a208-ee83584a195c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"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/ps3809/providers/Microsoft.Resources/deployments/ps8901\",\r\n \"name\": \"ps8901\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps4618\"\r\n },\r\n \"storageAccountType\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n },\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"East US\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-10-15T16:13:41.8364429Z\",\r\n \"duration\": \"PT6.9771161S\",\r\n \"correlationId\": \"b015308f-0eb6-4ec6-8041-a9c029f88faf\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\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/ps8115/providers/Microsoft.Resources/deployments/ps7875?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODExNS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczc4NzU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3809/providers/Microsoft.Resources/deployments/ps8901?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzgwOS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczg5MDE/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2940a1c9-30d5-4e3a-acd5-b8b64da9d7ee" + "73813d72-9331-4f40-ba9c-825d68facb6c" ], "Accept-Language": [ "en-US" @@ -4194,8 +4194,8 @@ "User-Agent": [ "FxVersion/4.6.28207.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.8.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.10.0.0" ] }, "ResponseHeaders": { @@ -4209,16 +4209,16 @@ "0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11983" + "11957" ], "x-ms-request-id": [ - "9decc30d-3cad-48bb-a444-444bf9df5918" + "6f4644c5-0b8d-4945-a0b1-c74038dca987" ], "x-ms-correlation-request-id": [ - "9decc30d-3cad-48bb-a444-444bf9df5918" + "6f4644c5-0b8d-4945-a0b1-c74038dca987" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20200714T221204Z:9decc30d-3cad-48bb-a444-444bf9df5918" + "CANADACENTRAL:20201015T161349Z:6f4644c5-0b8d-4945-a0b1-c74038dca987" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4227,7 +4227,7 @@ "nosniff" ], "Date": [ - "Tue, 14 Jul 2020 22:12:04 GMT" + "Thu, 15 Oct 2020 16:13:49 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4239,17 +4239,17 @@ "779" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8115/providers/Microsoft.Resources/deployments/ps7875\",\r\n \"name\": \"ps7875\",\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\": \"ps8461\"\r\n },\r\n \"storageAccountType\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n },\r\n \"location\": {\r\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-14T22:12:03.7774505Z\",\r\n \"duration\": \"PT5.1682567S\",\r\n \"correlationId\": \"a79ca781-d53f-4882-a208-ee83584a195c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"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/ps3809/providers/Microsoft.Resources/deployments/ps8901\",\r\n \"name\": \"ps8901\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps4618\"\r\n },\r\n \"storageAccountType\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n },\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"East US\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-10-15T16:13:41.8364429Z\",\r\n \"duration\": \"PT6.9771161S\",\r\n \"correlationId\": \"b015308f-0eb6-4ec6-8041-a9c029f88faf\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\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/ps8115/providers/Microsoft.Resources/deployments/ps7875?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODExNS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczc4NzU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3809/providers/Microsoft.Resources/deployments/ps8901?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzgwOS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczg5MDE/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f797a24f-3002-4889-b899-dcba31d2f8dd" + "fdd4855c-6239-455a-839c-9eb1a9ad2dbe" ], "Accept-Language": [ "en-US" @@ -4257,8 +4257,8 @@ "User-Agent": [ "FxVersion/4.6.28207.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.8.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.10.0.0" ] }, "ResponseHeaders": { @@ -4272,16 +4272,16 @@ "0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11981" + "11955" ], "x-ms-request-id": [ - "32a92506-8555-4fbb-bef3-dd88f76d0d86" + "361d9e9a-a94d-43db-b701-5be873e8664d" ], "x-ms-correlation-request-id": [ - "32a92506-8555-4fbb-bef3-dd88f76d0d86" + "361d9e9a-a94d-43db-b701-5be873e8664d" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20200714T221204Z:32a92506-8555-4fbb-bef3-dd88f76d0d86" + "CANADACENTRAL:20201015T161350Z:361d9e9a-a94d-43db-b701-5be873e8664d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4290,7 +4290,7 @@ "nosniff" ], "Date": [ - "Tue, 14 Jul 2020 22:12:04 GMT" + "Thu, 15 Oct 2020 16:13:49 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4302,17 +4302,17 @@ "779" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8115/providers/Microsoft.Resources/deployments/ps7875\",\r\n \"name\": \"ps7875\",\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\": \"ps8461\"\r\n },\r\n \"storageAccountType\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n },\r\n \"location\": {\r\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-14T22:12:03.7774505Z\",\r\n \"duration\": \"PT5.1682567S\",\r\n \"correlationId\": \"a79ca781-d53f-4882-a208-ee83584a195c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"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/ps3809/providers/Microsoft.Resources/deployments/ps8901\",\r\n \"name\": \"ps8901\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps4618\"\r\n },\r\n \"storageAccountType\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n },\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"East US\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-10-15T16:13:41.8364429Z\",\r\n \"duration\": \"PT6.9771161S\",\r\n \"correlationId\": \"b015308f-0eb6-4ec6-8041-a9c029f88faf\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\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/ps8115/providers/Microsoft.Resources/deployments/ps7875?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODExNS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczc4NzU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3809/providers/Microsoft.Resources/deployments/ps8901?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzgwOS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczg5MDE/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9d7841b3-aba0-4d60-8eb1-a83cb81d239a" + "1939ad09-ace6-43d0-9ec6-8831ebd0e1be" ], "Accept-Language": [ "en-US" @@ -4320,8 +4320,8 @@ "User-Agent": [ "FxVersion/4.6.28207.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.8.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.10.0.0" ] }, "ResponseHeaders": { @@ -4335,16 +4335,16 @@ "0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11979" + "11953" ], "x-ms-request-id": [ - "a954ab1e-53e3-4ea4-97d7-dfd51f7e6b13" + "16ad65b0-433f-4c7c-a213-edf6e0dc2ebc" ], "x-ms-correlation-request-id": [ - "a954ab1e-53e3-4ea4-97d7-dfd51f7e6b13" + "16ad65b0-433f-4c7c-a213-edf6e0dc2ebc" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20200714T221205Z:a954ab1e-53e3-4ea4-97d7-dfd51f7e6b13" + "CANADACENTRAL:20201015T161350Z:16ad65b0-433f-4c7c-a213-edf6e0dc2ebc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4353,7 +4353,7 @@ "nosniff" ], "Date": [ - "Tue, 14 Jul 2020 22:12:04 GMT" + "Thu, 15 Oct 2020 16:13:50 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4365,17 +4365,17 @@ "779" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8115/providers/Microsoft.Resources/deployments/ps7875\",\r\n \"name\": \"ps7875\",\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\": \"ps8461\"\r\n },\r\n \"storageAccountType\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n },\r\n \"location\": {\r\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-14T22:12:03.7774505Z\",\r\n \"duration\": \"PT5.1682567S\",\r\n \"correlationId\": \"a79ca781-d53f-4882-a208-ee83584a195c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"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/ps3809/providers/Microsoft.Resources/deployments/ps8901\",\r\n \"name\": \"ps8901\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps4618\"\r\n },\r\n \"storageAccountType\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n },\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"East US\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-10-15T16:13:41.8364429Z\",\r\n \"duration\": \"PT6.9771161S\",\r\n \"correlationId\": \"b015308f-0eb6-4ec6-8041-a9c029f88faf\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\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/ps8115/providers/Microsoft.Resources/deployments/ps7875?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODExNS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczc4NzU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3809/providers/Microsoft.Resources/deployments/ps8901?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzgwOS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczg5MDE/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "22aa3b0b-ca62-4003-aa19-ba4be847305b" + "e929c68b-3c45-484a-bda5-e26a9358ce51" ], "Accept-Language": [ "en-US" @@ -4383,8 +4383,8 @@ "User-Agent": [ "FxVersion/4.6.28207.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.8.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.10.0.0" ] }, "ResponseHeaders": { @@ -4398,16 +4398,16 @@ "0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11977" + "11951" ], "x-ms-request-id": [ - "300f4bc3-3794-4f52-88c4-9ae0abc9660c" + "7db0efc5-92b0-402b-98c9-92f45f9ea073" ], "x-ms-correlation-request-id": [ - "300f4bc3-3794-4f52-88c4-9ae0abc9660c" + "7db0efc5-92b0-402b-98c9-92f45f9ea073" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20200714T221205Z:300f4bc3-3794-4f52-88c4-9ae0abc9660c" + "CANADACENTRAL:20201015T161351Z:7db0efc5-92b0-402b-98c9-92f45f9ea073" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4416,7 +4416,7 @@ "nosniff" ], "Date": [ - "Tue, 14 Jul 2020 22:12:05 GMT" + "Thu, 15 Oct 2020 16:13:50 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4428,17 +4428,17 @@ "779" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8115/providers/Microsoft.Resources/deployments/ps7875\",\r\n \"name\": \"ps7875\",\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\": \"ps8461\"\r\n },\r\n \"storageAccountType\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n },\r\n \"location\": {\r\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-14T22:12:03.7774505Z\",\r\n \"duration\": \"PT5.1682567S\",\r\n \"correlationId\": \"a79ca781-d53f-4882-a208-ee83584a195c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"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/ps3809/providers/Microsoft.Resources/deployments/ps8901\",\r\n \"name\": \"ps8901\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps4618\"\r\n },\r\n \"storageAccountType\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n },\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"East US\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-10-15T16:13:41.8364429Z\",\r\n \"duration\": \"PT6.9771161S\",\r\n \"correlationId\": \"b015308f-0eb6-4ec6-8041-a9c029f88faf\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\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/ps8115/providers/Microsoft.Resources/deployments/ps7875?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODExNS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczc4NzU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3809/providers/Microsoft.Resources/deployments/ps8901?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzgwOS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczg5MDE/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ad251641-da36-48a5-b178-1951c7fa5b69" + "7992043f-eefb-436b-b1ef-c11169842bbf" ], "Accept-Language": [ "en-US" @@ -4446,8 +4446,8 @@ "User-Agent": [ "FxVersion/4.6.28207.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.8.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.10.0.0" ] }, "ResponseHeaders": { @@ -4461,16 +4461,16 @@ "0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11975" + "11949" ], "x-ms-request-id": [ - "1875adc5-3bba-4595-a1b1-e97194590025" + "9c1aed6e-e231-44ba-970f-a65e0807df2b" ], "x-ms-correlation-request-id": [ - "1875adc5-3bba-4595-a1b1-e97194590025" + "9c1aed6e-e231-44ba-970f-a65e0807df2b" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20200714T221206Z:1875adc5-3bba-4595-a1b1-e97194590025" + "CANADACENTRAL:20201015T161351Z:9c1aed6e-e231-44ba-970f-a65e0807df2b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4479,7 +4479,7 @@ "nosniff" ], "Date": [ - "Tue, 14 Jul 2020 22:12:05 GMT" + "Thu, 15 Oct 2020 16:13:51 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4491,17 +4491,17 @@ "779" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8115/providers/Microsoft.Resources/deployments/ps7875\",\r\n \"name\": \"ps7875\",\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\": \"ps8461\"\r\n },\r\n \"storageAccountType\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n },\r\n \"location\": {\r\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-14T22:12:03.7774505Z\",\r\n \"duration\": \"PT5.1682567S\",\r\n \"correlationId\": \"a79ca781-d53f-4882-a208-ee83584a195c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"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/ps3809/providers/Microsoft.Resources/deployments/ps8901\",\r\n \"name\": \"ps8901\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps4618\"\r\n },\r\n \"storageAccountType\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n },\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"East US\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-10-15T16:13:41.8364429Z\",\r\n \"duration\": \"PT6.9771161S\",\r\n \"correlationId\": \"b015308f-0eb6-4ec6-8041-a9c029f88faf\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\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/ps8115/providers/Microsoft.Resources/deployments/ps7875?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODExNS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczc4NzU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3809/providers/Microsoft.Resources/deployments/ps8901?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzgwOS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczg5MDE/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1b60d54c-6ee5-412a-8493-b96d79bfccf4" + "37acf585-fc98-4745-ab39-88af8ca790e0" ], "Accept-Language": [ "en-US" @@ -4509,8 +4509,8 @@ "User-Agent": [ "FxVersion/4.6.28207.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.8.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.10.0.0" ] }, "ResponseHeaders": { @@ -4524,16 +4524,16 @@ "0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11973" + "11947" ], "x-ms-request-id": [ - "6bf1f597-99e0-4e51-8460-955e41c44a45" + "1b15e5b3-126c-4da4-a5a6-d3d5cc27d7c3" ], "x-ms-correlation-request-id": [ - "6bf1f597-99e0-4e51-8460-955e41c44a45" + "1b15e5b3-126c-4da4-a5a6-d3d5cc27d7c3" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20200714T221206Z:6bf1f597-99e0-4e51-8460-955e41c44a45" + "CANADACENTRAL:20201015T161352Z:1b15e5b3-126c-4da4-a5a6-d3d5cc27d7c3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4542,7 +4542,7 @@ "nosniff" ], "Date": [ - "Tue, 14 Jul 2020 22:12:06 GMT" + "Thu, 15 Oct 2020 16:13:51 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4554,17 +4554,17 @@ "779" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8115/providers/Microsoft.Resources/deployments/ps7875\",\r\n \"name\": \"ps7875\",\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\": \"ps8461\"\r\n },\r\n \"storageAccountType\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n },\r\n \"location\": {\r\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-14T22:12:03.7774505Z\",\r\n \"duration\": \"PT5.1682567S\",\r\n \"correlationId\": \"a79ca781-d53f-4882-a208-ee83584a195c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"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/ps3809/providers/Microsoft.Resources/deployments/ps8901\",\r\n \"name\": \"ps8901\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps4618\"\r\n },\r\n \"storageAccountType\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n },\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"East US\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-10-15T16:13:41.8364429Z\",\r\n \"duration\": \"PT6.9771161S\",\r\n \"correlationId\": \"b015308f-0eb6-4ec6-8041-a9c029f88faf\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\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/ps8115/providers/Microsoft.Resources/deployments/ps7875?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODExNS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczc4NzU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3809/providers/Microsoft.Resources/deployments/ps8901?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzgwOS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczg5MDE/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "855b4a9a-71d4-41cb-a7d7-0a0fd47edeed" + "162427df-81ff-4fae-b186-33340610364a" ], "Accept-Language": [ "en-US" @@ -4572,8 +4572,8 @@ "User-Agent": [ "FxVersion/4.6.28207.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.8.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.10.0.0" ] }, "ResponseHeaders": { @@ -4587,16 +4587,16 @@ "0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11971" + "11945" ], "x-ms-request-id": [ - "7c428794-d78b-44d1-9e11-6aef9e00c494" + "abd6a6b3-5d33-49ae-af7c-5622ca1f8349" ], "x-ms-correlation-request-id": [ - "7c428794-d78b-44d1-9e11-6aef9e00c494" + "abd6a6b3-5d33-49ae-af7c-5622ca1f8349" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20200714T221207Z:7c428794-d78b-44d1-9e11-6aef9e00c494" + "CANADACENTRAL:20201015T161352Z:abd6a6b3-5d33-49ae-af7c-5622ca1f8349" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4605,7 +4605,7 @@ "nosniff" ], "Date": [ - "Tue, 14 Jul 2020 22:12:06 GMT" + "Thu, 15 Oct 2020 16:13:52 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4617,17 +4617,17 @@ "779" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8115/providers/Microsoft.Resources/deployments/ps7875\",\r\n \"name\": \"ps7875\",\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\": \"ps8461\"\r\n },\r\n \"storageAccountType\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n },\r\n \"location\": {\r\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-14T22:12:03.7774505Z\",\r\n \"duration\": \"PT5.1682567S\",\r\n \"correlationId\": \"a79ca781-d53f-4882-a208-ee83584a195c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"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/ps3809/providers/Microsoft.Resources/deployments/ps8901\",\r\n \"name\": \"ps8901\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps4618\"\r\n },\r\n \"storageAccountType\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n },\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"East US\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-10-15T16:13:41.8364429Z\",\r\n \"duration\": \"PT6.9771161S\",\r\n \"correlationId\": \"b015308f-0eb6-4ec6-8041-a9c029f88faf\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\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/ps8115/providers/Microsoft.Resources/deployments/ps7875?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODExNS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczc4NzU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3809/providers/Microsoft.Resources/deployments/ps8901?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzgwOS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczg5MDE/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e8f80a48-8125-4263-a34a-b14c2c00af14" + "cfea7666-dc30-44dc-b0ab-c6f084fd8dbf" ], "Accept-Language": [ "en-US" @@ -4635,8 +4635,8 @@ "User-Agent": [ "FxVersion/4.6.28207.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.8.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.10.0.0" ] }, "ResponseHeaders": { @@ -4650,16 +4650,16 @@ "0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11969" + "11943" ], "x-ms-request-id": [ - "365a5eb9-79af-4d3b-9e86-783f29482acc" + "9aa6d65b-4235-47e4-a146-200761b3daba" ], "x-ms-correlation-request-id": [ - "365a5eb9-79af-4d3b-9e86-783f29482acc" + "9aa6d65b-4235-47e4-a146-200761b3daba" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20200714T221207Z:365a5eb9-79af-4d3b-9e86-783f29482acc" + "CANADACENTRAL:20201015T161353Z:9aa6d65b-4235-47e4-a146-200761b3daba" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4668,7 +4668,7 @@ "nosniff" ], "Date": [ - "Tue, 14 Jul 2020 22:12:07 GMT" + "Thu, 15 Oct 2020 16:13:52 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4680,17 +4680,17 @@ "779" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8115/providers/Microsoft.Resources/deployments/ps7875\",\r\n \"name\": \"ps7875\",\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\": \"ps8461\"\r\n },\r\n \"storageAccountType\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n },\r\n \"location\": {\r\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-14T22:12:03.7774505Z\",\r\n \"duration\": \"PT5.1682567S\",\r\n \"correlationId\": \"a79ca781-d53f-4882-a208-ee83584a195c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"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/ps3809/providers/Microsoft.Resources/deployments/ps8901\",\r\n \"name\": \"ps8901\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps4618\"\r\n },\r\n \"storageAccountType\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n },\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"East US\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-10-15T16:13:41.8364429Z\",\r\n \"duration\": \"PT6.9771161S\",\r\n \"correlationId\": \"b015308f-0eb6-4ec6-8041-a9c029f88faf\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\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/ps8115/providers/Microsoft.Resources/deployments/ps7875?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODExNS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczc4NzU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3809/providers/Microsoft.Resources/deployments/ps8901?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzgwOS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczg5MDE/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "93ecb7ba-b9fe-4183-8bf0-f1c89585f9b2" + "bdcf70b1-b9ae-42fb-bb9d-748269aed3d1" ], "Accept-Language": [ "en-US" @@ -4698,8 +4698,8 @@ "User-Agent": [ "FxVersion/4.6.28207.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.8.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.10.0.0" ] }, "ResponseHeaders": { @@ -4713,16 +4713,16 @@ "0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11967" + "11941" ], "x-ms-request-id": [ - "5ff31c47-6d5c-403b-8322-ac50880e0154" + "53e2b8a8-bb38-47ce-8ef8-69a3293bd2be" ], "x-ms-correlation-request-id": [ - "5ff31c47-6d5c-403b-8322-ac50880e0154" + "53e2b8a8-bb38-47ce-8ef8-69a3293bd2be" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20200714T221208Z:5ff31c47-6d5c-403b-8322-ac50880e0154" + "CANADACENTRAL:20201015T161353Z:53e2b8a8-bb38-47ce-8ef8-69a3293bd2be" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4731,7 +4731,7 @@ "nosniff" ], "Date": [ - "Tue, 14 Jul 2020 22:12:07 GMT" + "Thu, 15 Oct 2020 16:13:53 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4743,17 +4743,17 @@ "779" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8115/providers/Microsoft.Resources/deployments/ps7875\",\r\n \"name\": \"ps7875\",\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\": \"ps8461\"\r\n },\r\n \"storageAccountType\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n },\r\n \"location\": {\r\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-14T22:12:03.7774505Z\",\r\n \"duration\": \"PT5.1682567S\",\r\n \"correlationId\": \"a79ca781-d53f-4882-a208-ee83584a195c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"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/ps3809/providers/Microsoft.Resources/deployments/ps8901\",\r\n \"name\": \"ps8901\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps4618\"\r\n },\r\n \"storageAccountType\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n },\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"East US\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-10-15T16:13:41.8364429Z\",\r\n \"duration\": \"PT6.9771161S\",\r\n \"correlationId\": \"b015308f-0eb6-4ec6-8041-a9c029f88faf\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\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/ps8115/providers/Microsoft.Resources/deployments/ps7875?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODExNS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczc4NzU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3809/providers/Microsoft.Resources/deployments/ps8901?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzgwOS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczg5MDE/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "dc1cb348-d2d7-4d58-a1de-27fb45c4987a" + "b90a8d6f-4f52-4714-a375-8a5f124e96b2" ], "Accept-Language": [ "en-US" @@ -4761,8 +4761,8 @@ "User-Agent": [ "FxVersion/4.6.28207.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.8.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.10.0.0" ] }, "ResponseHeaders": { @@ -4776,16 +4776,16 @@ "0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11965" + "11939" ], "x-ms-request-id": [ - "b862902b-608a-4465-a5dc-10093ecfd864" + "11ecb57e-8708-4f16-af91-b45cec66ab89" ], "x-ms-correlation-request-id": [ - "b862902b-608a-4465-a5dc-10093ecfd864" + "11ecb57e-8708-4f16-af91-b45cec66ab89" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20200714T221208Z:b862902b-608a-4465-a5dc-10093ecfd864" + "CANADACENTRAL:20201015T161354Z:11ecb57e-8708-4f16-af91-b45cec66ab89" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4794,7 +4794,7 @@ "nosniff" ], "Date": [ - "Tue, 14 Jul 2020 22:12:08 GMT" + "Thu, 15 Oct 2020 16:13:53 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4806,17 +4806,17 @@ "779" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8115/providers/Microsoft.Resources/deployments/ps7875\",\r\n \"name\": \"ps7875\",\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\": \"ps8461\"\r\n },\r\n \"storageAccountType\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n },\r\n \"location\": {\r\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-14T22:12:03.7774505Z\",\r\n \"duration\": \"PT5.1682567S\",\r\n \"correlationId\": \"a79ca781-d53f-4882-a208-ee83584a195c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"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/ps3809/providers/Microsoft.Resources/deployments/ps8901\",\r\n \"name\": \"ps8901\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps4618\"\r\n },\r\n \"storageAccountType\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n },\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"East US\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-10-15T16:13:41.8364429Z\",\r\n \"duration\": \"PT6.9771161S\",\r\n \"correlationId\": \"b015308f-0eb6-4ec6-8041-a9c029f88faf\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\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/ps8115/providers/Microsoft.Resources/deployments/ps7875?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODExNS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczc4NzU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3809/providers/Microsoft.Resources/deployments/ps8901?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzgwOS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczg5MDE/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0ecb22f7-1db8-4c19-89ec-16d8dd6c3a13" + "97784de8-9d3b-4806-9979-12fb2c822da1" ], "Accept-Language": [ "en-US" @@ -4824,8 +4824,8 @@ "User-Agent": [ "FxVersion/4.6.28207.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.8.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.10.0.0" ] }, "ResponseHeaders": { @@ -4839,16 +4839,16 @@ "0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11963" + "11937" ], "x-ms-request-id": [ - "ee895408-db71-42fc-85a2-c178d75212d2" + "fdf9b8b6-de2e-4324-bf00-cc42c63662e2" ], "x-ms-correlation-request-id": [ - "ee895408-db71-42fc-85a2-c178d75212d2" + "fdf9b8b6-de2e-4324-bf00-cc42c63662e2" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20200714T221209Z:ee895408-db71-42fc-85a2-c178d75212d2" + "CANADACENTRAL:20201015T161355Z:fdf9b8b6-de2e-4324-bf00-cc42c63662e2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4857,7 +4857,7 @@ "nosniff" ], "Date": [ - "Tue, 14 Jul 2020 22:12:08 GMT" + "Thu, 15 Oct 2020 16:13:55 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4869,17 +4869,17 @@ "779" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8115/providers/Microsoft.Resources/deployments/ps7875\",\r\n \"name\": \"ps7875\",\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\": \"ps8461\"\r\n },\r\n \"storageAccountType\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n },\r\n \"location\": {\r\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-14T22:12:03.7774505Z\",\r\n \"duration\": \"PT5.1682567S\",\r\n \"correlationId\": \"a79ca781-d53f-4882-a208-ee83584a195c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"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/ps3809/providers/Microsoft.Resources/deployments/ps8901\",\r\n \"name\": \"ps8901\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps4618\"\r\n },\r\n \"storageAccountType\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n },\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"East US\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-10-15T16:13:41.8364429Z\",\r\n \"duration\": \"PT6.9771161S\",\r\n \"correlationId\": \"b015308f-0eb6-4ec6-8041-a9c029f88faf\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\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/ps8115/providers/Microsoft.Resources/deployments/ps7875?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODExNS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczc4NzU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3809/providers/Microsoft.Resources/deployments/ps8901?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzgwOS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczg5MDE/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "aaa056e3-7208-465c-8c41-5be73a893c39" + "61d98cfd-d536-403f-94d6-33ca1ea1f641" ], "Accept-Language": [ "en-US" @@ -4887,8 +4887,8 @@ "User-Agent": [ "FxVersion/4.6.28207.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.8.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.10.0.0" ] }, "ResponseHeaders": { @@ -4902,16 +4902,16 @@ "0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11961" + "11935" ], "x-ms-request-id": [ - "682dd77b-343e-4d1e-981c-b08e5e4b63bd" + "2ee84797-a41f-45e6-9fb2-a8e8f5d86423" ], "x-ms-correlation-request-id": [ - "682dd77b-343e-4d1e-981c-b08e5e4b63bd" + "2ee84797-a41f-45e6-9fb2-a8e8f5d86423" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20200714T221209Z:682dd77b-343e-4d1e-981c-b08e5e4b63bd" + "CANADACENTRAL:20201015T161356Z:2ee84797-a41f-45e6-9fb2-a8e8f5d86423" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4920,7 +4920,7 @@ "nosniff" ], "Date": [ - "Tue, 14 Jul 2020 22:12:08 GMT" + "Thu, 15 Oct 2020 16:13:56 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4932,17 +4932,17 @@ "779" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8115/providers/Microsoft.Resources/deployments/ps7875\",\r\n \"name\": \"ps7875\",\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\": \"ps8461\"\r\n },\r\n \"storageAccountType\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n },\r\n \"location\": {\r\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-14T22:12:03.7774505Z\",\r\n \"duration\": \"PT5.1682567S\",\r\n \"correlationId\": \"a79ca781-d53f-4882-a208-ee83584a195c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"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/ps3809/providers/Microsoft.Resources/deployments/ps8901\",\r\n \"name\": \"ps8901\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps4618\"\r\n },\r\n \"storageAccountType\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n },\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"East US\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-10-15T16:13:41.8364429Z\",\r\n \"duration\": \"PT6.9771161S\",\r\n \"correlationId\": \"b015308f-0eb6-4ec6-8041-a9c029f88faf\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\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/ps8115/providers/Microsoft.Resources/deployments/ps7875?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODExNS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczc4NzU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3809/providers/Microsoft.Resources/deployments/ps8901?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzgwOS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczg5MDE/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "57190372-52f3-482e-87af-b31d09f9a290" + "51befe7d-5875-4c4b-b376-c227701a5a45" ], "Accept-Language": [ "en-US" @@ -4950,8 +4950,8 @@ "User-Agent": [ "FxVersion/4.6.28207.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.8.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.10.0.0" ] }, "ResponseHeaders": { @@ -4965,16 +4965,16 @@ "0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11959" + "11933" ], "x-ms-request-id": [ - "8ff3b4ba-a0a3-467c-8b12-3b1fdd19e282" + "e28a5d76-f4a2-49a2-a354-9970cf483b64" ], "x-ms-correlation-request-id": [ - "8ff3b4ba-a0a3-467c-8b12-3b1fdd19e282" + "e28a5d76-f4a2-49a2-a354-9970cf483b64" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20200714T221210Z:8ff3b4ba-a0a3-467c-8b12-3b1fdd19e282" + "CANADACENTRAL:20201015T161358Z:e28a5d76-f4a2-49a2-a354-9970cf483b64" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4983,7 +4983,7 @@ "nosniff" ], "Date": [ - "Tue, 14 Jul 2020 22:12:09 GMT" + "Thu, 15 Oct 2020 16:13:57 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4995,17 +4995,17 @@ "779" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8115/providers/Microsoft.Resources/deployments/ps7875\",\r\n \"name\": \"ps7875\",\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\": \"ps8461\"\r\n },\r\n \"storageAccountType\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n },\r\n \"location\": {\r\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-14T22:12:03.7774505Z\",\r\n \"duration\": \"PT5.1682567S\",\r\n \"correlationId\": \"a79ca781-d53f-4882-a208-ee83584a195c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"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/ps3809/providers/Microsoft.Resources/deployments/ps8901\",\r\n \"name\": \"ps8901\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps4618\"\r\n },\r\n \"storageAccountType\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n },\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"East US\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-10-15T16:13:41.8364429Z\",\r\n \"duration\": \"PT6.9771161S\",\r\n \"correlationId\": \"b015308f-0eb6-4ec6-8041-a9c029f88faf\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\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/ps8115/providers/Microsoft.Resources/deployments/ps7875?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODExNS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczc4NzU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3809/providers/Microsoft.Resources/deployments/ps8901?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzgwOS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczg5MDE/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3a3624df-c604-4ea4-92f5-ba41ee537eb9" + "4581610f-1a94-412d-bb96-7792bf174b2c" ], "Accept-Language": [ "en-US" @@ -5013,8 +5013,8 @@ "User-Agent": [ "FxVersion/4.6.28207.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.8.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.10.0.0" ] }, "ResponseHeaders": { @@ -5028,16 +5028,16 @@ "0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11957" + "11931" ], "x-ms-request-id": [ - "01819dde-ff1c-42b5-8663-7865e99c1794" + "a9adffcd-ef55-4c3c-96de-6cc3d48d2ab6" ], "x-ms-correlation-request-id": [ - "01819dde-ff1c-42b5-8663-7865e99c1794" + "a9adffcd-ef55-4c3c-96de-6cc3d48d2ab6" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20200714T221210Z:01819dde-ff1c-42b5-8663-7865e99c1794" + "CANADACENTRAL:20201015T161358Z:a9adffcd-ef55-4c3c-96de-6cc3d48d2ab6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5046,7 +5046,7 @@ "nosniff" ], "Date": [ - "Tue, 14 Jul 2020 22:12:09 GMT" + "Thu, 15 Oct 2020 16:13:57 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -5058,17 +5058,17 @@ "779" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8115/providers/Microsoft.Resources/deployments/ps7875\",\r\n \"name\": \"ps7875\",\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\": \"ps8461\"\r\n },\r\n \"storageAccountType\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n },\r\n \"location\": {\r\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-14T22:12:03.7774505Z\",\r\n \"duration\": \"PT5.1682567S\",\r\n \"correlationId\": \"a79ca781-d53f-4882-a208-ee83584a195c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"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/ps3809/providers/Microsoft.Resources/deployments/ps8901\",\r\n \"name\": \"ps8901\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps4618\"\r\n },\r\n \"storageAccountType\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n },\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"East US\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-10-15T16:13:41.8364429Z\",\r\n \"duration\": \"PT6.9771161S\",\r\n \"correlationId\": \"b015308f-0eb6-4ec6-8041-a9c029f88faf\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\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/ps8115/providers/Microsoft.Resources/deployments/ps7875?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODExNS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczc4NzU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3809/providers/Microsoft.Resources/deployments/ps8901?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzgwOS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczg5MDE/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "42925de0-4bf4-4328-b1d8-b71b7f3d3c71" + "84026f35-acbc-4a57-a153-ea00b76a4ce5" ], "Accept-Language": [ "en-US" @@ -5076,8 +5076,8 @@ "User-Agent": [ "FxVersion/4.6.28207.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.8.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.10.0.0" ] }, "ResponseHeaders": { @@ -5091,16 +5091,16 @@ "0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11955" + "11929" ], "x-ms-request-id": [ - "737eeb17-6f6f-4859-8625-86a1a0c47168" + "bce7b77a-0ee4-4f57-bec7-4a3ff7c91898" ], "x-ms-correlation-request-id": [ - "737eeb17-6f6f-4859-8625-86a1a0c47168" + "bce7b77a-0ee4-4f57-bec7-4a3ff7c91898" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20200714T221210Z:737eeb17-6f6f-4859-8625-86a1a0c47168" + "CANADACENTRAL:20201015T161359Z:bce7b77a-0ee4-4f57-bec7-4a3ff7c91898" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5109,7 +5109,7 @@ "nosniff" ], "Date": [ - "Tue, 14 Jul 2020 22:12:10 GMT" + "Thu, 15 Oct 2020 16:13:58 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -5121,17 +5121,17 @@ "779" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8115/providers/Microsoft.Resources/deployments/ps7875\",\r\n \"name\": \"ps7875\",\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\": \"ps8461\"\r\n },\r\n \"storageAccountType\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n },\r\n \"location\": {\r\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-14T22:12:03.7774505Z\",\r\n \"duration\": \"PT5.1682567S\",\r\n \"correlationId\": \"a79ca781-d53f-4882-a208-ee83584a195c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"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/ps3809/providers/Microsoft.Resources/deployments/ps8901\",\r\n \"name\": \"ps8901\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps4618\"\r\n },\r\n \"storageAccountType\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n },\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"East US\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-10-15T16:13:41.8364429Z\",\r\n \"duration\": \"PT6.9771161S\",\r\n \"correlationId\": \"b015308f-0eb6-4ec6-8041-a9c029f88faf\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\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/ps8115/providers/Microsoft.Resources/deployments/ps7875?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODExNS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczc4NzU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3809/providers/Microsoft.Resources/deployments/ps8901?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzgwOS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczg5MDE/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f19d71dc-3998-4cfb-b4aa-defcc7cd4b61" + "31423738-afe4-491c-b634-13dfaf33244a" ], "Accept-Language": [ "en-US" @@ -5139,8 +5139,8 @@ "User-Agent": [ "FxVersion/4.6.28207.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.8.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.10.0.0" ] }, "ResponseHeaders": { @@ -5154,16 +5154,16 @@ "0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11953" + "11927" ], "x-ms-request-id": [ - "40290c5c-c67a-4c24-8aae-2c79e50f0ce6" + "ed2e4578-c62a-4b16-bbc4-de1ae6474cf1" ], "x-ms-correlation-request-id": [ - "40290c5c-c67a-4c24-8aae-2c79e50f0ce6" + "ed2e4578-c62a-4b16-bbc4-de1ae6474cf1" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20200714T221211Z:40290c5c-c67a-4c24-8aae-2c79e50f0ce6" + "CANADACENTRAL:20201015T161359Z:ed2e4578-c62a-4b16-bbc4-de1ae6474cf1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5172,7 +5172,7 @@ "nosniff" ], "Date": [ - "Tue, 14 Jul 2020 22:12:10 GMT" + "Thu, 15 Oct 2020 16:13:58 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -5184,17 +5184,17 @@ "779" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8115/providers/Microsoft.Resources/deployments/ps7875\",\r\n \"name\": \"ps7875\",\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\": \"ps8461\"\r\n },\r\n \"storageAccountType\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n },\r\n \"location\": {\r\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-14T22:12:03.7774505Z\",\r\n \"duration\": \"PT5.1682567S\",\r\n \"correlationId\": \"a79ca781-d53f-4882-a208-ee83584a195c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"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/ps3809/providers/Microsoft.Resources/deployments/ps8901\",\r\n \"name\": \"ps8901\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps4618\"\r\n },\r\n \"storageAccountType\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n },\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"East US\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-10-15T16:13:41.8364429Z\",\r\n \"duration\": \"PT6.9771161S\",\r\n \"correlationId\": \"b015308f-0eb6-4ec6-8041-a9c029f88faf\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\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/ps8115/providers/Microsoft.Resources/deployments/ps7875?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODExNS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczc4NzU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3809/providers/Microsoft.Resources/deployments/ps8901?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzgwOS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczg5MDE/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "99f9adff-f631-449a-be71-7b8726af26fa" + "ef77a1ff-f692-48d0-9844-429c2d2f311c" ], "Accept-Language": [ "en-US" @@ -5202,8 +5202,8 @@ "User-Agent": [ "FxVersion/4.6.28207.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.8.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.10.0.0" ] }, "ResponseHeaders": { @@ -5217,16 +5217,16 @@ "0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11951" + "11925" ], "x-ms-request-id": [ - "b37cefa9-5edd-414f-930b-b403421ace40" + "7cc94a76-3c05-4c31-b71b-5e9ffd696f8c" ], "x-ms-correlation-request-id": [ - "b37cefa9-5edd-414f-930b-b403421ace40" + "7cc94a76-3c05-4c31-b71b-5e9ffd696f8c" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20200714T221211Z:b37cefa9-5edd-414f-930b-b403421ace40" + "CANADACENTRAL:20201015T161400Z:7cc94a76-3c05-4c31-b71b-5e9ffd696f8c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5235,7 +5235,7 @@ "nosniff" ], "Date": [ - "Tue, 14 Jul 2020 22:12:11 GMT" + "Thu, 15 Oct 2020 16:13:59 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -5247,17 +5247,17 @@ "779" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8115/providers/Microsoft.Resources/deployments/ps7875\",\r\n \"name\": \"ps7875\",\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\": \"ps8461\"\r\n },\r\n \"storageAccountType\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n },\r\n \"location\": {\r\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-14T22:12:03.7774505Z\",\r\n \"duration\": \"PT5.1682567S\",\r\n \"correlationId\": \"a79ca781-d53f-4882-a208-ee83584a195c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"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/ps3809/providers/Microsoft.Resources/deployments/ps8901\",\r\n \"name\": \"ps8901\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps4618\"\r\n },\r\n \"storageAccountType\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n },\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"East US\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-10-15T16:13:41.8364429Z\",\r\n \"duration\": \"PT6.9771161S\",\r\n \"correlationId\": \"b015308f-0eb6-4ec6-8041-a9c029f88faf\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\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/ps8115/providers/Microsoft.Resources/deployments/ps7875?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODExNS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczc4NzU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3809/providers/Microsoft.Resources/deployments/ps8901?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzgwOS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczg5MDE/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "40d6b53e-d93f-4ffc-9bc4-07df01de1663" + "1c12d6b0-46c4-4df9-8145-8cff1921b548" ], "Accept-Language": [ "en-US" @@ -5265,8 +5265,8 @@ "User-Agent": [ "FxVersion/4.6.28207.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.8.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.10.0.0" ] }, "ResponseHeaders": { @@ -5280,16 +5280,16 @@ "0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11949" + "11923" ], "x-ms-request-id": [ - "28b2e546-86da-4446-8ff6-31a0b3d3428d" + "bb721218-e4c3-492f-9ad8-90e6855c4ebd" ], "x-ms-correlation-request-id": [ - "28b2e546-86da-4446-8ff6-31a0b3d3428d" + "bb721218-e4c3-492f-9ad8-90e6855c4ebd" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20200714T221212Z:28b2e546-86da-4446-8ff6-31a0b3d3428d" + "CANADACENTRAL:20201015T161402Z:bb721218-e4c3-492f-9ad8-90e6855c4ebd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5298,7 +5298,7 @@ "nosniff" ], "Date": [ - "Tue, 14 Jul 2020 22:12:11 GMT" + "Thu, 15 Oct 2020 16:14:01 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -5310,17 +5310,17 @@ "779" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8115/providers/Microsoft.Resources/deployments/ps7875\",\r\n \"name\": \"ps7875\",\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\": \"ps8461\"\r\n },\r\n \"storageAccountType\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n },\r\n \"location\": {\r\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-14T22:12:03.7774505Z\",\r\n \"duration\": \"PT5.1682567S\",\r\n \"correlationId\": \"a79ca781-d53f-4882-a208-ee83584a195c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"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/ps3809/providers/Microsoft.Resources/deployments/ps8901\",\r\n \"name\": \"ps8901\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps4618\"\r\n },\r\n \"storageAccountType\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n },\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"East US\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-10-15T16:13:41.8364429Z\",\r\n \"duration\": \"PT6.9771161S\",\r\n \"correlationId\": \"b015308f-0eb6-4ec6-8041-a9c029f88faf\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\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/ps8115/providers/Microsoft.Resources/deployments/ps7875?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODExNS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczc4NzU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3809/providers/Microsoft.Resources/deployments/ps8901?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzgwOS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczg5MDE/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b3e146eb-af9c-4d23-9187-8d84189ade05" + "337886f3-f050-4ea4-a7a7-df0b02e9b405" ], "Accept-Language": [ "en-US" @@ -5328,8 +5328,8 @@ "User-Agent": [ "FxVersion/4.6.28207.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.8.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.10.0.0" ] }, "ResponseHeaders": { @@ -5343,16 +5343,16 @@ "0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11947" + "11921" ], "x-ms-request-id": [ - "84dc897f-cef4-409c-95ac-26c055ae712d" + "b0a155e0-0915-486c-980c-09eb6543b053" ], "x-ms-correlation-request-id": [ - "84dc897f-cef4-409c-95ac-26c055ae712d" + "b0a155e0-0915-486c-980c-09eb6543b053" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20200714T221212Z:84dc897f-cef4-409c-95ac-26c055ae712d" + "CANADACENTRAL:20201015T161402Z:b0a155e0-0915-486c-980c-09eb6543b053" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5361,7 +5361,7 @@ "nosniff" ], "Date": [ - "Tue, 14 Jul 2020 22:12:12 GMT" + "Thu, 15 Oct 2020 16:14:02 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -5373,17 +5373,17 @@ "779" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8115/providers/Microsoft.Resources/deployments/ps7875\",\r\n \"name\": \"ps7875\",\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\": \"ps8461\"\r\n },\r\n \"storageAccountType\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n },\r\n \"location\": {\r\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-14T22:12:03.7774505Z\",\r\n \"duration\": \"PT5.1682567S\",\r\n \"correlationId\": \"a79ca781-d53f-4882-a208-ee83584a195c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"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/ps3809/providers/Microsoft.Resources/deployments/ps8901\",\r\n \"name\": \"ps8901\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps4618\"\r\n },\r\n \"storageAccountType\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n },\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"East US\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-10-15T16:13:41.8364429Z\",\r\n \"duration\": \"PT6.9771161S\",\r\n \"correlationId\": \"b015308f-0eb6-4ec6-8041-a9c029f88faf\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\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/ps8115/providers/Microsoft.Resources/deployments/ps7875?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODExNS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczc4NzU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3809/providers/Microsoft.Resources/deployments/ps8901?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzgwOS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczg5MDE/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c4ec86d2-1e97-4ced-8258-20532d7ec38a" + "ba53dcbb-9682-4c22-a4c5-828cb833c7e0" ], "Accept-Language": [ "en-US" @@ -5391,8 +5391,8 @@ "User-Agent": [ "FxVersion/4.6.28207.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.8.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.10.0.0" ] }, "ResponseHeaders": { @@ -5402,20 +5402,17 @@ "Pragma": [ "no-cache" ], - "Retry-After": [ - "0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11945" + "11919" ], "x-ms-request-id": [ - "367fc81a-d781-40cc-bcc1-326644b72ba7" + "b2c5e8b9-c925-4ccd-a40f-980d4b052f9d" ], "x-ms-correlation-request-id": [ - "367fc81a-d781-40cc-bcc1-326644b72ba7" + "b2c5e8b9-c925-4ccd-a40f-980d4b052f9d" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20200714T221213Z:367fc81a-d781-40cc-bcc1-326644b72ba7" + "CANADACENTRAL:20201015T161408Z:b2c5e8b9-c925-4ccd-a40f-980d4b052f9d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5424,7 +5421,7 @@ "nosniff" ], "Date": [ - "Tue, 14 Jul 2020 22:12:12 GMT" + "Thu, 15 Oct 2020 16:14:07 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -5433,20 +5430,23 @@ "-1" ], "Content-Length": [ - "779" + "1759" + ], + "Retry-After": [ + "0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8115/providers/Microsoft.Resources/deployments/ps7875\",\r\n \"name\": \"ps7875\",\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\": \"ps8461\"\r\n },\r\n \"storageAccountType\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n },\r\n \"location\": {\r\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-14T22:12:03.7774505Z\",\r\n \"duration\": \"PT5.1682567S\",\r\n \"correlationId\": \"a79ca781-d53f-4882-a208-ee83584a195c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"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/ps3809/providers/Microsoft.Resources/deployments/ps8901\",\r\n \"name\": \"ps8901\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps4618\"\r\n },\r\n \"storageAccountType\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\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-10-15T16:14:04.3300871Z\",\r\n \"duration\": \"PT29.4707603S\",\r\n \"correlationId\": \"b015308f-0eb6-4ec6-8041-a9c029f88faf\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\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-10-15T16:13:41.3046048Z\"\r\n },\r\n \"blob\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-10-15T16:13:41.3046048Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2020-10-15T16:13:41.1796137Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://ps4618.blob.core.windows.net/\",\r\n \"queue\": \"https://ps4618.queue.core.windows.net/\",\r\n \"table\": \"https://ps4618.table.core.windows.net/\",\r\n \"file\": \"https://ps4618.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/ps3809/providers/Microsoft.Storage/storageAccounts/ps4618\"\r\n }\r\n ]\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8115/providers/Microsoft.Resources/deployments/ps7875?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODExNS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczc4NzU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3809/providers/Microsoft.Resources/deployments/ps8901?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzgwOS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczg5MDE/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bd111282-6f6c-44da-a6e4-7173a46c56ff" + "10279258-5698-4e91-80f7-7576a698b1ec" ], "Accept-Language": [ "en-US" @@ -5454,8 +5454,8 @@ "User-Agent": [ "FxVersion/4.6.28207.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.8.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.10.0.0" ] }, "ResponseHeaders": { @@ -5465,20 +5465,17 @@ "Pragma": [ "no-cache" ], - "Retry-After": [ - "0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11943" + "11918" ], "x-ms-request-id": [ - "7ea8c756-0e28-41c3-a7ff-75c7b04db5b2" + "c8c1eb9d-054c-405d-8c49-89c79c55827a" ], "x-ms-correlation-request-id": [ - "7ea8c756-0e28-41c3-a7ff-75c7b04db5b2" + "c8c1eb9d-054c-405d-8c49-89c79c55827a" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20200714T221213Z:7ea8c756-0e28-41c3-a7ff-75c7b04db5b2" + "CANADACENTRAL:20201015T161409Z:c8c1eb9d-054c-405d-8c49-89c79c55827a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5487,7 +5484,7 @@ "nosniff" ], "Date": [ - "Tue, 14 Jul 2020 22:12:13 GMT" + "Thu, 15 Oct 2020 16:14:08 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -5496,20 +5493,23 @@ "-1" ], "Content-Length": [ - "779" + "1759" + ], + "Retry-After": [ + "0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8115/providers/Microsoft.Resources/deployments/ps7875\",\r\n \"name\": \"ps7875\",\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\": \"ps8461\"\r\n },\r\n \"storageAccountType\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n },\r\n \"location\": {\r\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-14T22:12:03.7774505Z\",\r\n \"duration\": \"PT5.1682567S\",\r\n \"correlationId\": \"a79ca781-d53f-4882-a208-ee83584a195c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"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/ps3809/providers/Microsoft.Resources/deployments/ps8901\",\r\n \"name\": \"ps8901\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"11821504941859434205\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps4618\"\r\n },\r\n \"storageAccountType\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\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-10-15T16:14:04.3300871Z\",\r\n \"duration\": \"PT29.4707603S\",\r\n \"correlationId\": \"b015308f-0eb6-4ec6-8041-a9c029f88faf\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\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-10-15T16:13:41.3046048Z\"\r\n },\r\n \"blob\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-10-15T16:13:41.3046048Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2020-10-15T16:13:41.1796137Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://ps4618.blob.core.windows.net/\",\r\n \"queue\": \"https://ps4618.queue.core.windows.net/\",\r\n \"table\": \"https://ps4618.table.core.windows.net/\",\r\n \"file\": \"https://ps4618.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/ps3809/providers/Microsoft.Storage/storageAccounts/ps4618\"\r\n }\r\n ]\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8115/providers/Microsoft.Resources/deployments/ps7875?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODExNS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczc4NzU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", - "RequestMethod": "GET", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3809/providers/Microsoft.Resources/deployments/ps8901/exportTemplate?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzgwOS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczg5MDEvZXhwb3J0VGVtcGxhdGU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "aa6f75ce-bda1-4a68-a20e-ef98d08aaf27" + "5f632e32-4c6a-4640-8a59-de7ef10bbf64" ], "Accept-Language": [ "en-US" @@ -5517,8 +5517,8 @@ "User-Agent": [ "FxVersion/4.6.28207.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.8.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.10.0.0" ] }, "ResponseHeaders": { @@ -5528,20 +5528,17 @@ "Pragma": [ "no-cache" ], - "Retry-After": [ - "0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11941" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" ], "x-ms-request-id": [ - "88682922-aadd-44a0-b2aa-d97f12bef4a2" + "5cc47123-ddee-4b5f-8fb0-c8cbc30f3c1b" ], "x-ms-correlation-request-id": [ - "88682922-aadd-44a0-b2aa-d97f12bef4a2" + "5cc47123-ddee-4b5f-8fb0-c8cbc30f3c1b" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20200714T221214Z:88682922-aadd-44a0-b2aa-d97f12bef4a2" + "CANADACENTRAL:20201015T161409Z:5cc47123-ddee-4b5f-8fb0-c8cbc30f3c1b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5550,7 +5547,10 @@ "nosniff" ], "Date": [ - "Tue, 14 Jul 2020 22:12:13 GMT" + "Thu, 15 Oct 2020 16:14:08 GMT" + ], + "Content-Length": [ + "862" ], "Content-Type": [ "application/json; charset=utf-8" @@ -5558,21 +5558,21 @@ "Expires": [ "-1" ], - "Content-Length": [ - "779" + "Retry-After": [ + "0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8115/providers/Microsoft.Resources/deployments/ps7875\",\r\n \"name\": \"ps7875\",\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\": \"ps8461\"\r\n },\r\n \"storageAccountType\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n },\r\n \"location\": {\r\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-14T22:12:03.7774505Z\",\r\n \"duration\": \"PT5.1682567S\",\r\n \"correlationId\": \"a79ca781-d53f-4882-a208-ee83584a195c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"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 \"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/ps8115/providers/Microsoft.Resources/deployments/ps7875?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODExNS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczc4NzU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", - "RequestMethod": "GET", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3809/providers/Microsoft.Resources/deployments/ps8901?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzgwOS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczg5MDE/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "03ecff21-3bd7-4110-b8a3-01a474328893" + "a09636e2-c78e-4ab2-99cc-66048c2a8849" ], "Accept-Language": [ "en-US" @@ -5580,8 +5580,8 @@ "User-Agent": [ "FxVersion/4.6.28207.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.8.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.10.0.0" ] }, "ResponseHeaders": { @@ -5591,20 +5591,17 @@ "Pragma": [ "no-cache" ], - "Retry-After": [ - "0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11939" + "11916" ], "x-ms-request-id": [ - "3fe62b30-7f1a-4d57-8112-8f090930433f" + "c4ee0f02-ffe8-40ea-9b75-54aef832b2e9" ], "x-ms-correlation-request-id": [ - "3fe62b30-7f1a-4d57-8112-8f090930433f" + "c4ee0f02-ffe8-40ea-9b75-54aef832b2e9" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20200714T221214Z:3fe62b30-7f1a-4d57-8112-8f090930433f" + "CANADACENTRAL:20201015T161410Z:c4ee0f02-ffe8-40ea-9b75-54aef832b2e9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5613,29 +5610,29 @@ "nosniff" ], "Date": [ - "Tue, 14 Jul 2020 22:12:14 GMT" + "Thu, 15 Oct 2020 16:14:09 GMT" ], - "Content-Type": [ - "application/json; charset=utf-8" + "Content-Length": [ + "0" ], "Expires": [ "-1" ], - "Content-Length": [ - "779" + "Retry-After": [ + "0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8115/providers/Microsoft.Resources/deployments/ps7875\",\r\n \"name\": \"ps7875\",\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\": \"ps8461\"\r\n },\r\n \"storageAccountType\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n },\r\n \"location\": {\r\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-14T22:12:03.7774505Z\",\r\n \"duration\": \"PT5.1682567S\",\r\n \"correlationId\": \"a79ca781-d53f-4882-a208-ee83584a195c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", - "StatusCode": 200 + "ResponseBody": "", + "StatusCode": 204 }, { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8115/providers/Microsoft.Resources/deployments/ps7875?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODExNS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczc4NzU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", - "RequestMethod": "GET", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3809/providers/Microsoft.Resources/deployments/ps8901?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzgwOS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczg5MDE/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e2331a47-50b8-47b8-85dd-36f3aa651026" + "5e2316b5-5a6e-417f-991d-a6eb64f1219d" ], "Accept-Language": [ "en-US" @@ -5643,8 +5640,8 @@ "User-Agent": [ "FxVersion/4.6.28207.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.8.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.10.0.0" ] }, "ResponseHeaders": { @@ -5654,20 +5651,23 @@ "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IkRlcGxveW1lbnREZWxldGlvbkpvYi1HTlMtUFMzODA5LVBTODkwMS0iLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2020-06-01" + ], "Retry-After": [ "0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11937" + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" ], "x-ms-request-id": [ - "cb20f0b9-acf4-48c1-a966-d5f9317a7c5a" + "84b114c4-e4d6-4504-a300-45cc44b3258e" ], "x-ms-correlation-request-id": [ - "cb20f0b9-acf4-48c1-a966-d5f9317a7c5a" + "84b114c4-e4d6-4504-a300-45cc44b3258e" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20200714T221215Z:cb20f0b9-acf4-48c1-a966-d5f9317a7c5a" + "CANADACENTRAL:20201015T161411Z:84b114c4-e4d6-4504-a300-45cc44b3258e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5676,38 +5676,29 @@ "nosniff" ], "Date": [ - "Tue, 14 Jul 2020 22:12:14 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "Thu, 15 Oct 2020 16:14:10 GMT" ], "Expires": [ "-1" ], "Content-Length": [ - "779" + "0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8115/providers/Microsoft.Resources/deployments/ps7875\",\r\n \"name\": \"ps7875\",\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\": \"ps8461\"\r\n },\r\n \"storageAccountType\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n },\r\n \"location\": {\r\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-14T22:12:03.7774505Z\",\r\n \"duration\": \"PT5.1682567S\",\r\n \"correlationId\": \"a79ca781-d53f-4882-a208-ee83584a195c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"eastus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", - "StatusCode": 200 + "ResponseBody": "", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8115/providers/Microsoft.Resources/deployments/ps7875?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODExNS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczc4NzU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IkRlcGxveW1lbnREZWxldGlvbkpvYi1HTlMtUFMzODA5LVBTODkwMS0iLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWtSbGNHeHZlVzFsYm5SRVpXeGxkR2x2YmtwdllpMUhUbE10VUZNek9EQTVMVkJUT0Rrd01TMGlMQ0pxYjJKTWIyTmhkR2x2YmlJNkluZGxjM1IxY3lKOT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "9748435a-2e49-4b5b-a6ee-bd8cdd229373" - ], - "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.8.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.10.0.0" ] }, "ResponseHeaders": { @@ -5717,1529 +5708,17 @@ "Pragma": [ "no-cache" ], - "Retry-After": [ - "0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11935" - ], - "x-ms-request-id": [ - "a25f0b1a-3ba7-4249-a79b-bd51d8189802" - ], - "x-ms-correlation-request-id": [ - "a25f0b1a-3ba7-4249-a79b-bd51d8189802" - ], - "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20200714T221215Z:a25f0b1a-3ba7-4249-a79b-bd51d8189802" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 14 Jul 2020 22:12:14 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "779" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8115/providers/Microsoft.Resources/deployments/ps7875\",\r\n \"name\": \"ps7875\",\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\": \"ps8461\"\r\n },\r\n \"storageAccountType\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n },\r\n \"location\": {\r\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-14T22:12:03.7774505Z\",\r\n \"duration\": \"PT5.1682567S\",\r\n \"correlationId\": \"a79ca781-d53f-4882-a208-ee83584a195c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\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/ps8115/providers/Microsoft.Resources/deployments/ps7875?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODExNS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczc4NzU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "2b23de1a-ddc6-4b85-b4f2-f365d21d2ff6" - ], - "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.8.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11933" - ], - "x-ms-request-id": [ - "67db733e-9102-4dde-90d2-372f8238dc21" - ], - "x-ms-correlation-request-id": [ - "67db733e-9102-4dde-90d2-372f8238dc21" - ], - "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20200714T221215Z:67db733e-9102-4dde-90d2-372f8238dc21" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 14 Jul 2020 22:12:15 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "779" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8115/providers/Microsoft.Resources/deployments/ps7875\",\r\n \"name\": \"ps7875\",\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\": \"ps8461\"\r\n },\r\n \"storageAccountType\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n },\r\n \"location\": {\r\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-14T22:12:03.7774505Z\",\r\n \"duration\": \"PT5.1682567S\",\r\n \"correlationId\": \"a79ca781-d53f-4882-a208-ee83584a195c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\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/ps8115/providers/Microsoft.Resources/deployments/ps7875?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODExNS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczc4NzU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "94f9dd66-130a-4727-8e3c-dd94f6d363bb" - ], - "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.8.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11931" - ], - "x-ms-request-id": [ - "ada5dafb-d7c9-4f3e-8271-f9b29a9be8e0" - ], - "x-ms-correlation-request-id": [ - "ada5dafb-d7c9-4f3e-8271-f9b29a9be8e0" - ], - "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20200714T221216Z:ada5dafb-d7c9-4f3e-8271-f9b29a9be8e0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 14 Jul 2020 22:12:15 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "779" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8115/providers/Microsoft.Resources/deployments/ps7875\",\r\n \"name\": \"ps7875\",\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\": \"ps8461\"\r\n },\r\n \"storageAccountType\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n },\r\n \"location\": {\r\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-14T22:12:03.7774505Z\",\r\n \"duration\": \"PT5.1682567S\",\r\n \"correlationId\": \"a79ca781-d53f-4882-a208-ee83584a195c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\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/ps8115/providers/Microsoft.Resources/deployments/ps7875?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODExNS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczc4NzU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "cb3ca790-2bc6-4bd8-8620-ef3236592187" - ], - "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.8.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11929" - ], - "x-ms-request-id": [ - "6f893ef3-385c-4c39-8f85-da58d559f4d4" - ], - "x-ms-correlation-request-id": [ - "6f893ef3-385c-4c39-8f85-da58d559f4d4" - ], - "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20200714T221216Z:6f893ef3-385c-4c39-8f85-da58d559f4d4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 14 Jul 2020 22:12:16 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "779" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8115/providers/Microsoft.Resources/deployments/ps7875\",\r\n \"name\": \"ps7875\",\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\": \"ps8461\"\r\n },\r\n \"storageAccountType\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n },\r\n \"location\": {\r\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-14T22:12:03.7774505Z\",\r\n \"duration\": \"PT5.1682567S\",\r\n \"correlationId\": \"a79ca781-d53f-4882-a208-ee83584a195c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\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/ps8115/providers/Microsoft.Resources/deployments/ps7875?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODExNS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczc4NzU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "8ac63834-6711-4013-b823-8211121d6e31" - ], - "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.8.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11927" - ], - "x-ms-request-id": [ - "dfce9cfc-7591-4af3-a46b-5be54782f35e" - ], - "x-ms-correlation-request-id": [ - "dfce9cfc-7591-4af3-a46b-5be54782f35e" - ], - "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20200714T221217Z:dfce9cfc-7591-4af3-a46b-5be54782f35e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 14 Jul 2020 22:12:16 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "779" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8115/providers/Microsoft.Resources/deployments/ps7875\",\r\n \"name\": \"ps7875\",\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\": \"ps8461\"\r\n },\r\n \"storageAccountType\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n },\r\n \"location\": {\r\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-14T22:12:03.7774505Z\",\r\n \"duration\": \"PT5.1682567S\",\r\n \"correlationId\": \"a79ca781-d53f-4882-a208-ee83584a195c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\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/ps8115/providers/Microsoft.Resources/deployments/ps7875?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODExNS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczc4NzU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "3b4c11e9-2d15-419a-8610-e70b86830373" - ], - "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.8.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11925" - ], - "x-ms-request-id": [ - "bc757814-5e11-4ed4-9e9d-1648a1c5d9cd" - ], - "x-ms-correlation-request-id": [ - "bc757814-5e11-4ed4-9e9d-1648a1c5d9cd" - ], - "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20200714T221217Z:bc757814-5e11-4ed4-9e9d-1648a1c5d9cd" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 14 Jul 2020 22:12:17 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "779" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8115/providers/Microsoft.Resources/deployments/ps7875\",\r\n \"name\": \"ps7875\",\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\": \"ps8461\"\r\n },\r\n \"storageAccountType\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n },\r\n \"location\": {\r\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-14T22:12:03.7774505Z\",\r\n \"duration\": \"PT5.1682567S\",\r\n \"correlationId\": \"a79ca781-d53f-4882-a208-ee83584a195c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\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/ps8115/providers/Microsoft.Resources/deployments/ps7875?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODExNS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczc4NzU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "1a9cf91b-ba6d-404b-933d-65451c22babc" - ], - "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.8.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11923" - ], - "x-ms-request-id": [ - "e0bf9d99-76c9-466d-a082-57da8fa2cbfd" - ], - "x-ms-correlation-request-id": [ - "e0bf9d99-76c9-466d-a082-57da8fa2cbfd" - ], - "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20200714T221218Z:e0bf9d99-76c9-466d-a082-57da8fa2cbfd" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 14 Jul 2020 22:12:17 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "779" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8115/providers/Microsoft.Resources/deployments/ps7875\",\r\n \"name\": \"ps7875\",\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\": \"ps8461\"\r\n },\r\n \"storageAccountType\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n },\r\n \"location\": {\r\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-14T22:12:03.7774505Z\",\r\n \"duration\": \"PT5.1682567S\",\r\n \"correlationId\": \"a79ca781-d53f-4882-a208-ee83584a195c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\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/ps8115/providers/Microsoft.Resources/deployments/ps7875?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODExNS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczc4NzU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "e9d44377-b8c3-4a7b-820f-669ea7be70b2" - ], - "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.8.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11921" - ], - "x-ms-request-id": [ - "c0875d92-4aa4-46fd-b0bb-848a2dd9f35d" - ], - "x-ms-correlation-request-id": [ - "c0875d92-4aa4-46fd-b0bb-848a2dd9f35d" - ], - "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20200714T221218Z:c0875d92-4aa4-46fd-b0bb-848a2dd9f35d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 14 Jul 2020 22:12:17 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "779" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8115/providers/Microsoft.Resources/deployments/ps7875\",\r\n \"name\": \"ps7875\",\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\": \"ps8461\"\r\n },\r\n \"storageAccountType\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n },\r\n \"location\": {\r\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-14T22:12:03.7774505Z\",\r\n \"duration\": \"PT5.1682567S\",\r\n \"correlationId\": \"a79ca781-d53f-4882-a208-ee83584a195c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\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/ps8115/providers/Microsoft.Resources/deployments/ps7875?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODExNS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczc4NzU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "72746377-5620-4240-a210-b27ae824c5fb" - ], - "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.8.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11919" - ], - "x-ms-request-id": [ - "ea05f861-b503-4496-9a2e-5fd943e1ef93" - ], - "x-ms-correlation-request-id": [ - "ea05f861-b503-4496-9a2e-5fd943e1ef93" - ], - "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20200714T221219Z:ea05f861-b503-4496-9a2e-5fd943e1ef93" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 14 Jul 2020 22:12:18 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "779" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8115/providers/Microsoft.Resources/deployments/ps7875\",\r\n \"name\": \"ps7875\",\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\": \"ps8461\"\r\n },\r\n \"storageAccountType\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n },\r\n \"location\": {\r\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-14T22:12:03.7774505Z\",\r\n \"duration\": \"PT5.1682567S\",\r\n \"correlationId\": \"a79ca781-d53f-4882-a208-ee83584a195c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\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/ps8115/providers/Microsoft.Resources/deployments/ps7875?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODExNS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczc4NzU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "23fc826c-d75c-4b19-abb6-dd43e5ac794a" - ], - "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.8.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11917" - ], - "x-ms-request-id": [ - "1a981945-5c35-4ce8-bdc3-5c868b342d54" - ], - "x-ms-correlation-request-id": [ - "1a981945-5c35-4ce8-bdc3-5c868b342d54" - ], - "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20200714T221219Z:1a981945-5c35-4ce8-bdc3-5c868b342d54" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 14 Jul 2020 22:12:18 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "779" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8115/providers/Microsoft.Resources/deployments/ps7875\",\r\n \"name\": \"ps7875\",\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\": \"ps8461\"\r\n },\r\n \"storageAccountType\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n },\r\n \"location\": {\r\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-14T22:12:03.7774505Z\",\r\n \"duration\": \"PT5.1682567S\",\r\n \"correlationId\": \"a79ca781-d53f-4882-a208-ee83584a195c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\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/ps8115/providers/Microsoft.Resources/deployments/ps7875?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODExNS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczc4NzU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "cb82de65-0369-45e3-8e1d-3ab4ee8826d4" - ], - "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.8.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11915" - ], - "x-ms-request-id": [ - "48a0c6d9-bdd3-4563-b35e-c0a507971006" - ], - "x-ms-correlation-request-id": [ - "48a0c6d9-bdd3-4563-b35e-c0a507971006" - ], - "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20200714T221220Z:48a0c6d9-bdd3-4563-b35e-c0a507971006" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 14 Jul 2020 22:12:19 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "779" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8115/providers/Microsoft.Resources/deployments/ps7875\",\r\n \"name\": \"ps7875\",\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\": \"ps8461\"\r\n },\r\n \"storageAccountType\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n },\r\n \"location\": {\r\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-14T22:12:03.7774505Z\",\r\n \"duration\": \"PT5.1682567S\",\r\n \"correlationId\": \"a79ca781-d53f-4882-a208-ee83584a195c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\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/ps8115/providers/Microsoft.Resources/deployments/ps7875?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODExNS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczc4NzU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "b38f4526-a95a-4dc7-83e0-cb53926ba133" - ], - "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.8.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11913" - ], - "x-ms-request-id": [ - "6a513014-efe0-404c-bf61-4549ae071d79" - ], - "x-ms-correlation-request-id": [ - "6a513014-efe0-404c-bf61-4549ae071d79" - ], - "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20200714T221220Z:6a513014-efe0-404c-bf61-4549ae071d79" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 14 Jul 2020 22:12:19 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "779" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8115/providers/Microsoft.Resources/deployments/ps7875\",\r\n \"name\": \"ps7875\",\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\": \"ps8461\"\r\n },\r\n \"storageAccountType\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n },\r\n \"location\": {\r\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-14T22:12:03.7774505Z\",\r\n \"duration\": \"PT5.1682567S\",\r\n \"correlationId\": \"a79ca781-d53f-4882-a208-ee83584a195c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\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/ps8115/providers/Microsoft.Resources/deployments/ps7875?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODExNS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczc4NzU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "17d64b0c-b608-4679-ab4f-66f881502082" - ], - "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.8.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11911" - ], - "x-ms-request-id": [ - "69ad6480-3fc2-44cb-975f-8bf57d2fedd7" - ], - "x-ms-correlation-request-id": [ - "69ad6480-3fc2-44cb-975f-8bf57d2fedd7" - ], - "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20200714T221221Z:69ad6480-3fc2-44cb-975f-8bf57d2fedd7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 14 Jul 2020 22:12:20 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "779" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8115/providers/Microsoft.Resources/deployments/ps7875\",\r\n \"name\": \"ps7875\",\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\": \"ps8461\"\r\n },\r\n \"storageAccountType\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n },\r\n \"location\": {\r\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-14T22:12:03.7774505Z\",\r\n \"duration\": \"PT5.1682567S\",\r\n \"correlationId\": \"a79ca781-d53f-4882-a208-ee83584a195c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\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/ps8115/providers/Microsoft.Resources/deployments/ps7875?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODExNS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczc4NzU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "af5525a8-ecce-429d-901e-ea836e1be4a2" - ], - "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.8.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11909" - ], - "x-ms-request-id": [ - "dba2a9aa-30ae-4288-847c-9e62d0a11981" - ], - "x-ms-correlation-request-id": [ - "dba2a9aa-30ae-4288-847c-9e62d0a11981" - ], - "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20200714T221221Z:dba2a9aa-30ae-4288-847c-9e62d0a11981" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 14 Jul 2020 22:12:20 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "779" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8115/providers/Microsoft.Resources/deployments/ps7875\",\r\n \"name\": \"ps7875\",\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\": \"ps8461\"\r\n },\r\n \"storageAccountType\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n },\r\n \"location\": {\r\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-14T22:12:03.7774505Z\",\r\n \"duration\": \"PT5.1682567S\",\r\n \"correlationId\": \"a79ca781-d53f-4882-a208-ee83584a195c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\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/ps8115/providers/Microsoft.Resources/deployments/ps7875?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODExNS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczc4NzU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "ba1315eb-4bdd-4843-b1e9-7bc19df5509d" - ], - "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.8.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11907" - ], - "x-ms-request-id": [ - "b062f178-1215-4445-ac49-e17e59f8d763" - ], - "x-ms-correlation-request-id": [ - "b062f178-1215-4445-ac49-e17e59f8d763" - ], - "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20200714T221221Z:b062f178-1215-4445-ac49-e17e59f8d763" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 14 Jul 2020 22:12:21 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "779" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8115/providers/Microsoft.Resources/deployments/ps7875\",\r\n \"name\": \"ps7875\",\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\": \"ps8461\"\r\n },\r\n \"storageAccountType\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n },\r\n \"location\": {\r\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-14T22:12:03.7774505Z\",\r\n \"duration\": \"PT5.1682567S\",\r\n \"correlationId\": \"a79ca781-d53f-4882-a208-ee83584a195c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\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/ps8115/providers/Microsoft.Resources/deployments/ps7875?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODExNS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczc4NzU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "a2451296-2fcb-4969-8911-380e789016af" - ], - "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.8.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11905" - ], - "x-ms-request-id": [ - "d6f2544c-d6b7-45ef-9b49-fee56584859a" - ], - "x-ms-correlation-request-id": [ - "d6f2544c-d6b7-45ef-9b49-fee56584859a" - ], - "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20200714T221222Z:d6f2544c-d6b7-45ef-9b49-fee56584859a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 14 Jul 2020 22:12:21 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "779" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8115/providers/Microsoft.Resources/deployments/ps7875\",\r\n \"name\": \"ps7875\",\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\": \"ps8461\"\r\n },\r\n \"storageAccountType\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n },\r\n \"location\": {\r\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-14T22:12:03.7774505Z\",\r\n \"duration\": \"PT5.1682567S\",\r\n \"correlationId\": \"a79ca781-d53f-4882-a208-ee83584a195c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\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/ps8115/providers/Microsoft.Resources/deployments/ps7875?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODExNS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczc4NzU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "04396bce-66a1-44c9-a4a4-86dc7002349e" - ], - "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.8.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11903" - ], - "x-ms-request-id": [ - "76a56414-2e4c-42cd-acfa-dec5ac968923" - ], - "x-ms-correlation-request-id": [ - "76a56414-2e4c-42cd-acfa-dec5ac968923" - ], - "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20200714T221222Z:76a56414-2e4c-42cd-acfa-dec5ac968923" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 14 Jul 2020 22:12:22 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "779" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8115/providers/Microsoft.Resources/deployments/ps7875\",\r\n \"name\": \"ps7875\",\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\": \"ps8461\"\r\n },\r\n \"storageAccountType\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n },\r\n \"location\": {\r\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-14T22:12:03.7774505Z\",\r\n \"duration\": \"PT5.1682567S\",\r\n \"correlationId\": \"a79ca781-d53f-4882-a208-ee83584a195c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\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/ps8115/providers/Microsoft.Resources/deployments/ps7875?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODExNS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczc4NzU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "a64ccbe8-09c4-4d5f-9507-5bf003a20012" - ], - "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.8.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11901" - ], - "x-ms-request-id": [ - "a6a68189-b89e-4bb5-8c93-dc98a921867a" - ], - "x-ms-correlation-request-id": [ - "a6a68189-b89e-4bb5-8c93-dc98a921867a" - ], - "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20200714T221223Z:a6a68189-b89e-4bb5-8c93-dc98a921867a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 14 Jul 2020 22:12:22 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "779" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8115/providers/Microsoft.Resources/deployments/ps7875\",\r\n \"name\": \"ps7875\",\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\": \"ps8461\"\r\n },\r\n \"storageAccountType\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n },\r\n \"location\": {\r\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-14T22:12:03.7774505Z\",\r\n \"duration\": \"PT5.1682567S\",\r\n \"correlationId\": \"a79ca781-d53f-4882-a208-ee83584a195c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\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/ps8115/providers/Microsoft.Resources/deployments/ps7875?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODExNS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczc4NzU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "95f46c58-2660-4c81-8a67-089c6b8f21a8" - ], - "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.8.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11899" - ], - "x-ms-request-id": [ - "afb691bf-77bc-4877-b9e4-68458689962b" - ], - "x-ms-correlation-request-id": [ - "afb691bf-77bc-4877-b9e4-68458689962b" - ], - "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20200714T221223Z:afb691bf-77bc-4877-b9e4-68458689962b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 14 Jul 2020 22:12:22 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "779" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8115/providers/Microsoft.Resources/deployments/ps7875\",\r\n \"name\": \"ps7875\",\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\": \"ps8461\"\r\n },\r\n \"storageAccountType\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n },\r\n \"location\": {\r\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-14T22:12:03.7774505Z\",\r\n \"duration\": \"PT5.1682567S\",\r\n \"correlationId\": \"a79ca781-d53f-4882-a208-ee83584a195c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\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/ps8115/providers/Microsoft.Resources/deployments/ps7875?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODExNS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczc4NzU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "8fae592e-f7b6-4dbb-aebd-fb10859ceb2e" - ], - "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.8.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11897" - ], - "x-ms-request-id": [ - "5e5f03a8-b0df-42bf-92f7-64876ce88e7f" - ], - "x-ms-correlation-request-id": [ - "5e5f03a8-b0df-42bf-92f7-64876ce88e7f" - ], - "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20200714T221224Z:5e5f03a8-b0df-42bf-92f7-64876ce88e7f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 14 Jul 2020 22:12:23 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "779" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8115/providers/Microsoft.Resources/deployments/ps7875\",\r\n \"name\": \"ps7875\",\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\": \"ps8461\"\r\n },\r\n \"storageAccountType\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n },\r\n \"location\": {\r\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-14T22:12:03.7774505Z\",\r\n \"duration\": \"PT5.1682567S\",\r\n \"correlationId\": \"a79ca781-d53f-4882-a208-ee83584a195c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\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/ps8115/providers/Microsoft.Resources/deployments/ps7875?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODExNS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczc4NzU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "24ea393d-6bdf-414b-ab4d-99def03cfd5d" - ], - "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.8.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11895" - ], - "x-ms-request-id": [ - "ed7db263-50f3-40ec-bbfb-0cc7e6c9c62a" - ], - "x-ms-correlation-request-id": [ - "ed7db263-50f3-40ec-bbfb-0cc7e6c9c62a" - ], - "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20200714T221224Z:ed7db263-50f3-40ec-bbfb-0cc7e6c9c62a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 14 Jul 2020 22:12:23 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "779" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8115/providers/Microsoft.Resources/deployments/ps7875\",\r\n \"name\": \"ps7875\",\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\": \"ps8461\"\r\n },\r\n \"storageAccountType\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n },\r\n \"location\": {\r\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-14T22:12:03.7774505Z\",\r\n \"duration\": \"PT5.1682567S\",\r\n \"correlationId\": \"a79ca781-d53f-4882-a208-ee83584a195c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\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/ps8115/providers/Microsoft.Resources/deployments/ps7875?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODExNS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczc4NzU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "863b12d7-32b9-4315-89e1-5e65101b99c4" - ], - "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.8.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11893" - ], - "x-ms-request-id": [ - "54105164-c4fa-4d02-a7e7-f466c771bffb" - ], - "x-ms-correlation-request-id": [ - "54105164-c4fa-4d02-a7e7-f466c771bffb" - ], - "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20200714T221225Z:54105164-c4fa-4d02-a7e7-f466c771bffb" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 14 Jul 2020 22:12:24 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "779" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8115/providers/Microsoft.Resources/deployments/ps7875\",\r\n \"name\": \"ps7875\",\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\": \"ps8461\"\r\n },\r\n \"storageAccountType\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n },\r\n \"location\": {\r\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-14T22:12:03.7774505Z\",\r\n \"duration\": \"PT5.1682567S\",\r\n \"correlationId\": \"a79ca781-d53f-4882-a208-ee83584a195c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\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/ps8115/providers/Microsoft.Resources/deployments/ps7875?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODExNS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczc4NzU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "7ece5cb1-cf91-4c3c-a214-63a1159530a6" - ], - "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.8.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11891" - ], - "x-ms-request-id": [ - "6af7e1ad-8727-438b-869a-e6857191807b" - ], - "x-ms-correlation-request-id": [ - "6af7e1ad-8727-438b-869a-e6857191807b" - ], - "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20200714T221225Z:6af7e1ad-8727-438b-869a-e6857191807b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 14 Jul 2020 22:12:24 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "1759" - ], - "Retry-After": [ - "0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8115/providers/Microsoft.Resources/deployments/ps7875\",\r\n \"name\": \"ps7875\",\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\": \"ps8461\"\r\n },\r\n \"storageAccountType\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\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-14T22:12:25.1917535Z\",\r\n \"duration\": \"PT26.5825597S\",\r\n \"correlationId\": \"a79ca781-d53f-4882-a208-ee83584a195c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\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-14T22:12:03.2904559Z\"\r\n },\r\n \"blob\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-07-14T22:12:03.2904559Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2020-07-14T22:12:03.1967989Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://ps8461.blob.core.windows.net/\",\r\n \"queue\": \"https://ps8461.queue.core.windows.net/\",\r\n \"table\": \"https://ps8461.table.core.windows.net/\",\r\n \"file\": \"https://ps8461.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/ps8115/providers/Microsoft.Storage/storageAccounts/ps8461\"\r\n }\r\n ]\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8115/providers/Microsoft.Resources/deployments/ps7875?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODExNS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczc4NzU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "df8baaad-4041-4fd3-a152-5f7b2f109f15" - ], - "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.8.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11890" - ], - "x-ms-request-id": [ - "ce29370d-9b76-4d65-9436-9ddecb8833ac" - ], - "x-ms-correlation-request-id": [ - "ce29370d-9b76-4d65-9436-9ddecb8833ac" - ], - "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20200714T221225Z:ce29370d-9b76-4d65-9436-9ddecb8833ac" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 14 Jul 2020 22:12:25 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "1759" - ], - "Retry-After": [ - "0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8115/providers/Microsoft.Resources/deployments/ps7875\",\r\n \"name\": \"ps7875\",\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\": \"ps8461\"\r\n },\r\n \"storageAccountType\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\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-14T22:12:25.1917535Z\",\r\n \"duration\": \"PT26.5825597S\",\r\n \"correlationId\": \"a79ca781-d53f-4882-a208-ee83584a195c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\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-14T22:12:03.2904559Z\"\r\n },\r\n \"blob\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-07-14T22:12:03.2904559Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2020-07-14T22:12:03.1967989Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://ps8461.blob.core.windows.net/\",\r\n \"queue\": \"https://ps8461.queue.core.windows.net/\",\r\n \"table\": \"https://ps8461.table.core.windows.net/\",\r\n \"file\": \"https://ps8461.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/ps8115/providers/Microsoft.Storage/storageAccounts/ps8461\"\r\n }\r\n ]\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8115/providers/Microsoft.Resources/deployments/ps7875/exportTemplate?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODExNS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczc4NzUvZXhwb3J0VGVtcGxhdGU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", - "RequestMethod": "POST", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "7b308924-b676-4d64-b2f9-1d0d7a82c94d" - ], - "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.8.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "11915" ], "x-ms-request-id": [ - "ef3893ca-4c71-442c-b0bf-b8db15815e01" + "a6aeb793-8bc6-46f0-850d-c94b0f6fcce6" ], "x-ms-correlation-request-id": [ - "ef3893ca-4c71-442c-b0bf-b8db15815e01" + "a6aeb793-8bc6-46f0-850d-c94b0f6fcce6" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20200714T221226Z:ef3893ca-4c71-442c-b0bf-b8db15815e01" + "CANADACENTRAL:20201015T161426Z:a6aeb793-8bc6-46f0-850d-c94b0f6fcce6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -7248,13 +5727,7 @@ "nosniff" ], "Date": [ - "Tue, 14 Jul 2020 22:12:25 GMT" - ], - "Content-Length": [ - "862" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "Thu, 15 Oct 2020 16:14:25 GMT" ], "Expires": [ "-1" @@ -7263,87 +5736,20 @@ "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}", - "StatusCode": 200 + "ResponseBody": "", + "StatusCode": 204 }, { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8115/providers/Microsoft.Resources/deployments/ps7875/operations?api-version=2018-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlR3JvdXBzL3BzODExNS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczc4NzUvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IkRlcGxveW1lbnREZWxldGlvbkpvYi1HTlMtUFMzODA5LVBTODkwMS0iLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWtSbGNHeHZlVzFsYm5SRVpXeGxkR2x2YmtwdllpMUhUbE10VUZNek9EQTVMVkJUT0Rrd01TMGlMQ0pxYjJKTWIyTmhkR2x2YmlJNkluZGxjM1IxY3lKOT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", "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": [ - "11999" - ], - "x-ms-request-id": [ - "d44d3b72-5697-482d-b857-5bdacebe8053" - ], - "x-ms-correlation-request-id": [ - "d44d3b72-5697-482d-b857-5bdacebe8053" - ], - "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20200714T221227Z:d44d3b72-5697-482d-b857-5bdacebe8053" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 14 Jul 2020 22:12:26 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "1828" - ], - "Retry-After": [ - "0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8115/providers/Microsoft.Resources/deployments/ps7875/operations/2D00889557D22D75\",\r\n \"operationId\": \"2D00889557D22D75\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Read\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2020-07-14T22:12:24.8185732Z\",\r\n \"duration\": \"PT0.1697563S\",\r\n \"trackingId\": \"83d21eaa-1f54-4d55-8e3f-a19594fb88d9\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8115/providers/Microsoft.Storage/storageAccounts/ps8461\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps8461\",\r\n \"apiVersion\": \"2019-06-01\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8115/providers/Microsoft.Resources/deployments/ps7875/operations/1E8ECD20217625B9\",\r\n \"operationId\": \"1E8ECD20217625B9\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2020-07-14T22:12:24.348561Z\",\r\n \"duration\": \"PT23.7011345S\",\r\n \"trackingId\": \"3bba5d96-3f25-446c-8c00-07994a06050a\",\r\n \"serviceRequestId\": \"dd864564-58db-4946-b42d-8bf443addba2\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8115/providers/Microsoft.Storage/storageAccounts/ps8461\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"ps8461\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8115/providers/Microsoft.Resources/deployments/ps7875/operations/08586068421668684198\",\r\n \"operationId\": \"08586068421668684198\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"EvaluateDeploymentOutput\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2020-07-14T22:12:25.1667837Z\",\r\n \"duration\": \"PT0.0855407S\",\r\n \"trackingId\": \"8911c97e-55a2-4c8a-a57d-0c84dd33b9fd\",\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/ps8115/providers/Microsoft.Resources/deployments/ps7875?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODExNS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczc4NzU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", - "RequestMethod": "HEAD", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "4bbb8824-2f75-41ae-8e79-b6941b4ce2e5" - ], - "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.8.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.10.0.0" ] }, "ResponseHeaders": { @@ -7354,16 +5760,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11889" + "11914" ], "x-ms-request-id": [ - "4c3385e7-066f-48aa-9c8d-bad3f602b094" + "a620877a-b56a-4461-a5eb-be42b416af8e" ], "x-ms-correlation-request-id": [ - "4c3385e7-066f-48aa-9c8d-bad3f602b094" + "a620877a-b56a-4461-a5eb-be42b416af8e" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20200714T221227Z:4c3385e7-066f-48aa-9c8d-bad3f602b094" + "CANADACENTRAL:20201015T161426Z:a620877a-b56a-4461-a5eb-be42b416af8e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -7372,10 +5778,7 @@ "nosniff" ], "Date": [ - "Tue, 14 Jul 2020 22:12:26 GMT" - ], - "Content-Length": [ - "0" + "Thu, 15 Oct 2020 16:14:26 GMT" ], "Expires": [ "-1" @@ -7388,13 +5791,13 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8115/providers/Microsoft.Resources/deployments/ps7875?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODExNS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczc4NzU/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3809?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzgwOT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "85383e92-1ad7-4273-b844-2f3fb45b557c" + "8a6a3305-f76f-4b8d-85da-15919de78eb5" ], "Accept-Language": [ "en-US" @@ -7402,8 +5805,8 @@ "User-Agent": [ "FxVersion/4.6.28207.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.8.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.10.0.0" ] }, "ResponseHeaders": { @@ -7414,7 +5817,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IkRlcGxveW1lbnREZWxldGlvbkpvYi1HTlMtUFM4MTE1LVBTNzg3NS0iLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2020-06-01" + "https://management.azure.com/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4MDktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2020-06-01" ], "Retry-After": [ "0" @@ -7423,13 +5826,13 @@ "14998" ], "x-ms-request-id": [ - "18789114-7457-495d-a4ae-cf8fbbacf6fa" + "17f7817b-2a84-4421-ae59-17fa81bfabe4" ], "x-ms-correlation-request-id": [ - "18789114-7457-495d-a4ae-cf8fbbacf6fa" + "17f7817b-2a84-4421-ae59-17fa81bfabe4" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20200714T221228Z:18789114-7457-495d-a4ae-cf8fbbacf6fa" + "CANADACENTRAL:20201015T161428Z:17f7817b-2a84-4421-ae59-17fa81bfabe4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -7438,7 +5841,7 @@ "nosniff" ], "Date": [ - "Tue, 14 Jul 2020 22:12:27 GMT" + "Thu, 15 Oct 2020 16:14:27 GMT" ], "Expires": [ "-1" @@ -7451,124 +5854,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IkRlcGxveW1lbnREZWxldGlvbkpvYi1HTlMtUFM4MTE1LVBTNzg3NS0iLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWtSbGNHeHZlVzFsYm5SRVpXeGxkR2x2YmtwdllpMUhUbE10VUZNNE1URTFMVkJUTnpnM05TMGlMQ0pxYjJKTWIyTmhkR2x2YmlJNkluZGxjM1IxY3lKOT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.8.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11888" - ], - "x-ms-request-id": [ - "9f6b0d4e-84e4-4b98-af6b-40ecc1ed8682" - ], - "x-ms-correlation-request-id": [ - "9f6b0d4e-84e4-4b98-af6b-40ecc1ed8682" - ], - "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20200714T221244Z:9f6b0d4e-84e4-4b98-af6b-40ecc1ed8682" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 14 Jul 2020 22:12:43 GMT" - ], - "Expires": [ - "-1" - ], - "Retry-After": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 204 - }, - { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IkRlcGxveW1lbnREZWxldGlvbkpvYi1HTlMtUFM4MTE1LVBTNzg3NS0iLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWtSbGNHeHZlVzFsYm5SRVpXeGxkR2x2YmtwdllpMUhUbE10VUZNNE1URTFMVkJUTnpnM05TMGlMQ0pxYjJKTWIyTmhkR2x2YmlJNkluZGxjM1IxY3lKOT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4MDktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE1Ea3RWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.28207.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.8.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11887" - ], - "x-ms-request-id": [ - "e4582cf0-c765-47c1-b8dc-a4f27b7ead86" - ], - "x-ms-correlation-request-id": [ - "e4582cf0-c765-47c1-b8dc-a4f27b7ead86" - ], - "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20200714T221244Z:e4582cf0-c765-47c1-b8dc-a4f27b7ead86" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 14 Jul 2020 22:12:43 GMT" - ], - "Expires": [ - "-1" - ], - "Retry-After": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 204 - }, - { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8115?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODExNT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", - "RequestMethod": "DELETE", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "4d5cf984-88da-4269-8c71-4580d7ccf789" - ], - "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.8.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.10.0.0" ] }, "ResponseHeaders": { @@ -7579,22 +5874,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzgxMTUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2020-06-01" + "https://management.azure.com/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4MDktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2020-06-01" ], "Retry-After": [ "0" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ - "14997" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11912" ], "x-ms-request-id": [ - "8b3dd971-8627-46cd-a139-c2045187afaa" + "573fa07f-bdcd-44e7-b2b2-2064c910aa1f" ], "x-ms-correlation-request-id": [ - "8b3dd971-8627-46cd-a139-c2045187afaa" + "573fa07f-bdcd-44e7-b2b2-2064c910aa1f" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20200714T221245Z:8b3dd971-8627-46cd-a139-c2045187afaa" + "CANADACENTRAL:20201015T161443Z:573fa07f-bdcd-44e7-b2b2-2064c910aa1f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -7603,7 +5898,7 @@ "nosniff" ], "Date": [ - "Tue, 14 Jul 2020 22:12:45 GMT" + "Thu, 15 Oct 2020 16:14:42 GMT" ], "Expires": [ "-1" @@ -7616,16 +5911,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzgxMTUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpneE1UVXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4MDktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE1Ea3RWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.28207.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.8.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.10.0.0" ] }, "ResponseHeaders": { @@ -7636,22 +5931,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzgxMTUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2020-06-01" + "https://management.azure.com/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4MDktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2020-06-01" ], "Retry-After": [ "0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11885" + "11911" ], "x-ms-request-id": [ - "75361d91-0175-4c9a-baa8-724462e5c3fc" + "895eeba7-a8a3-4227-8604-a113e1abd63a" ], "x-ms-correlation-request-id": [ - "75361d91-0175-4c9a-baa8-724462e5c3fc" + "895eeba7-a8a3-4227-8604-a113e1abd63a" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20200714T221301Z:75361d91-0175-4c9a-baa8-724462e5c3fc" + "CANADACENTRAL:20201015T161459Z:895eeba7-a8a3-4227-8604-a113e1abd63a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -7660,7 +5955,7 @@ "nosniff" ], "Date": [ - "Tue, 14 Jul 2020 22:13:00 GMT" + "Thu, 15 Oct 2020 16:14:59 GMT" ], "Expires": [ "-1" @@ -7673,16 +5968,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzgxMTUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpneE1UVXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4MDktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE1Ea3RWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.28207.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.8.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.10.0.0" ] }, "ResponseHeaders": { @@ -7693,22 +5988,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzgxMTUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2020-06-01" + "https://management.azure.com/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4MDktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2020-06-01" ], "Retry-After": [ "0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11884" + "11910" ], "x-ms-request-id": [ - "1b060acb-c9a7-435f-a8a8-cfa482f0bcc6" + "c73f463f-b86e-45f6-a1ef-7a50b27efacc" ], "x-ms-correlation-request-id": [ - "1b060acb-c9a7-435f-a8a8-cfa482f0bcc6" + "c73f463f-b86e-45f6-a1ef-7a50b27efacc" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20200714T221316Z:1b060acb-c9a7-435f-a8a8-cfa482f0bcc6" + "CANADACENTRAL:20201015T161514Z:c73f463f-b86e-45f6-a1ef-7a50b27efacc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -7717,7 +6012,7 @@ "nosniff" ], "Date": [ - "Tue, 14 Jul 2020 22:13:16 GMT" + "Thu, 15 Oct 2020 16:15:14 GMT" ], "Expires": [ "-1" @@ -7730,16 +6025,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzgxMTUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpneE1UVXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4MDktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE1Ea3RWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.28207.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.8.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.10.0.0" ] }, "ResponseHeaders": { @@ -7750,22 +6045,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzgxMTUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2020-06-01" + "https://management.azure.com/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4MDktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2020-06-01" ], "Retry-After": [ "0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11883" + "11909" ], "x-ms-request-id": [ - "3b149071-51c3-49c4-9440-da6dd92e8da7" + "ab202e5e-4be9-403a-8916-fbe0d1cf11e9" ], "x-ms-correlation-request-id": [ - "3b149071-51c3-49c4-9440-da6dd92e8da7" + "ab202e5e-4be9-403a-8916-fbe0d1cf11e9" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20200714T221331Z:3b149071-51c3-49c4-9440-da6dd92e8da7" + "CANADACENTRAL:20201015T161529Z:ab202e5e-4be9-403a-8916-fbe0d1cf11e9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -7774,7 +6069,7 @@ "nosniff" ], "Date": [ - "Tue, 14 Jul 2020 22:13:30 GMT" + "Thu, 15 Oct 2020 16:15:29 GMT" ], "Expires": [ "-1" @@ -7787,16 +6082,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzgxMTUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpneE1UVXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4MDktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE1Ea3RWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.28207.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.8.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.10.0.0" ] }, "ResponseHeaders": { @@ -7807,22 +6102,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzgxMTUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2020-06-01" + "https://management.azure.com/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4MDktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2020-06-01" ], "Retry-After": [ "0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11882" + "11908" ], "x-ms-request-id": [ - "8b6d2b0c-76ad-4215-a86c-4965e48697bc" + "31d4b428-825e-4c73-83e7-73cbff4a7b67" ], "x-ms-correlation-request-id": [ - "8b6d2b0c-76ad-4215-a86c-4965e48697bc" + "31d4b428-825e-4c73-83e7-73cbff4a7b67" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20200714T221346Z:8b6d2b0c-76ad-4215-a86c-4965e48697bc" + "CANADACENTRAL:20201015T161545Z:31d4b428-825e-4c73-83e7-73cbff4a7b67" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -7831,7 +6126,7 @@ "nosniff" ], "Date": [ - "Tue, 14 Jul 2020 22:13:45 GMT" + "Thu, 15 Oct 2020 16:15:44 GMT" ], "Expires": [ "-1" @@ -7844,16 +6139,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzgxMTUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpneE1UVXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4MDktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE1Ea3RWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.28207.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.8.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.10.0.0" ] }, "ResponseHeaders": { @@ -7864,22 +6159,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzgxMTUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2020-06-01" + "https://management.azure.com/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4MDktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2020-06-01" ], "Retry-After": [ "0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11881" + "11907" ], "x-ms-request-id": [ - "a4b677f4-834d-4fa1-ad67-7f58971eb8d0" + "661fcab3-1507-46ca-a8ce-680d6750d873" ], "x-ms-correlation-request-id": [ - "a4b677f4-834d-4fa1-ad67-7f58971eb8d0" + "661fcab3-1507-46ca-a8ce-680d6750d873" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20200714T221401Z:a4b677f4-834d-4fa1-ad67-7f58971eb8d0" + "CANADACENTRAL:20201015T161600Z:661fcab3-1507-46ca-a8ce-680d6750d873" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -7888,7 +6183,7 @@ "nosniff" ], "Date": [ - "Tue, 14 Jul 2020 22:14:01 GMT" + "Thu, 15 Oct 2020 16:15:59 GMT" ], "Expires": [ "-1" @@ -7901,16 +6196,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzgxMTUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpneE1UVXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4MDktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE1Ea3RWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.28207.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.8.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.10.0.0" ] }, "ResponseHeaders": { @@ -7921,16 +6216,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11880" + "11906" ], "x-ms-request-id": [ - "9b4c8a62-bcb2-42d9-858b-2e512147ed31" + "0f3e04ec-a9f0-4a5c-ac9c-9115425fb4cf" ], "x-ms-correlation-request-id": [ - "9b4c8a62-bcb2-42d9-858b-2e512147ed31" + "0f3e04ec-a9f0-4a5c-ac9c-9115425fb4cf" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20200714T221416Z:9b4c8a62-bcb2-42d9-858b-2e512147ed31" + "CANADACENTRAL:20201015T161615Z:0f3e04ec-a9f0-4a5c-ac9c-9115425fb4cf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -7939,7 +6234,7 @@ "nosniff" ], "Date": [ - "Tue, 14 Jul 2020 22:14:16 GMT" + "Thu, 15 Oct 2020 16:16:15 GMT" ], "Expires": [ "-1" @@ -7955,16 +6250,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzgxMTUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpneE1UVXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4MDktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE1Ea3RWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.28207.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.8.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.10.0.0" ] }, "ResponseHeaders": { @@ -7975,16 +6270,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11879" + "11905" ], "x-ms-request-id": [ - "ecc8ebd6-ccf6-48ba-b61b-f554780379fc" + "06806f4c-9341-439e-b668-db28a48fc2e2" ], "x-ms-correlation-request-id": [ - "ecc8ebd6-ccf6-48ba-b61b-f554780379fc" + "06806f4c-9341-439e-b668-db28a48fc2e2" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20200714T221417Z:ecc8ebd6-ccf6-48ba-b61b-f554780379fc" + "CANADACENTRAL:20201015T161615Z:06806f4c-9341-439e-b668-db28a48fc2e2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -7993,7 +6288,7 @@ "nosniff" ], "Date": [ - "Tue, 14 Jul 2020 22:14:16 GMT" + "Thu, 15 Oct 2020 16:16:15 GMT" ], "Expires": [ "-1" @@ -8011,9 +6306,9 @@ ], "Names": { "Test-DeploymentEndToEnd-ResourceGroup": [ - "ps8115", - "ps7875", - "ps8461" + "ps3809", + "ps8901", + "ps4618" ] }, "Variables": { diff --git a/src/Resources/Resources/ChangeLog.md b/src/Resources/Resources/ChangeLog.md index 92c176ce9b3d..2873960f1e88 100644 --- a/src/Resources/Resources/ChangeLog.md +++ b/src/Resources/Resources/ChangeLog.md @@ -25,6 +25,8 @@ * Added a default API version to be used in `Export-AzResourceGroup` cmdlet * Added cmdlets for Template Specs (`Get-AzTemplateSpec`, `Set-AzTemplateSpec`, `New-AzTemplateSpec`, `Remove-AzTemplateSpec`, `Export-AzTemplateSpec`) * Added support for deploying Template Specs using existing deployment cmdlets (via the new -TemplateSpecId parameter) +* Updated `Get-AzResourceGroupDeploymentOperation`to use the SDK. +* Removed `-ApiVersion` parameter from `*-AzDeployment` cmdlets. ## Version 2.5.1 * Added missing check for Set-AzRoleAssignment @@ -40,7 +42,6 @@ * Overrode `-WhatIf` and `-Confirm` for `New-AzManagementGroupDeployment` and `New-AzTenantDeployment` to use ARM template What-If results * Fixed the behaviors of `-WhatIf` and `-Confirm` for new deployment cmdlets so they comply with $WhatIfPreference and $ConfrimPreference * Fixed serialization error for `-TemplateObject` and `TemplateParameterObject` [#1528] [#6292] -* Added breaking change attribute to `Get-AzResourceGroupDeploymentOperation` for the upcoming output type change ## Version 2.4.0 * Added properties "Condition", "ConditionVersion" and "Description" to `New-AzRoleAssignment` 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..6eaab5368f80 100644 --- a/src/Resources/Resources/help/Get-AzDeploymentScript.md +++ b/src/Resources/Resources/help/Get-AzDeploymentScript.md @@ -151,4 +151,4 @@ For more information, see about_CommonParameters (http://go.microsoft.com/fwlink ## NOTES -## RELATED LINKS +## RELATED LINKS \ No newline at end of file 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 9f995a94df01..60c816ad72e9 100644 --- a/src/Resources/Resources/help/Get-AzResource.md +++ b/src/Resources/Resources/help/Get-AzResource.md @@ -360,4 +360,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 535dc4a133ac..2c4a69622e18 100644 --- a/src/Resources/Resources/help/Get-AzResourceGroup.md +++ b/src/Resources/Resources/help/Get-AzResourceGroup.md @@ -203,4 +203,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable [Set-AzResourceGroup](./Set-AzResourceGroup.md) - 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 4177a372dae7..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. @@ -140,7 +123,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### System.Management.Automation.PSObject +### Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels.PSDeploymentOperation ## NOTES 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 ee8a5b36cb55..0d83c5b7cfeb 100644 --- a/src/Resources/Resources/help/New-AzADServicePrincipal.md +++ b/src/Resources/Resources/help/New-AzADServicePrincipal.md @@ -651,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-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..22ffbbd30cda 100644 --- a/src/Resources/Resources/help/New-AzTag.md +++ b/src/Resources/Resources/help/New-AzTag.md @@ -322,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/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..ed617bfb23bf 100644 --- a/src/Resources/Resources/help/Remove-AzADGroup.md +++ b/src/Resources/Resources/help/Remove-AzADGroup.md @@ -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-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 a8452c0fcd1e..5723d39b52f0 100644 --- a/src/Resources/Resources/help/Remove-AzDeploymentScript.md +++ b/src/Resources/Resources/help/Remove-AzDeploymentScript.md @@ -182,4 +182,4 @@ For more information, see about_CommonParameters (http://go.microsoft.com/fwlink ## NOTES -## RELATED LINKS +## RELATED LINKS \ No newline at end of file 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 5b9ff963bc7e..0a6e5b8bfbf8 100644 --- a/src/Resources/Resources/help/Remove-AzTag.md +++ b/src/Resources/Resources/help/Remove-AzTag.md @@ -230,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/Remove-AzTenantDeployment.md b/src/Resources/Resources/help/Remove-AzTenantDeployment.md index 8c9e9d7be4e3..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: @@ -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..0832c796f5b7 100644 --- a/src/Resources/Resources/help/Set-AzManagedApplicationDefinition.md +++ b/src/Resources/Resources/help/Set-AzManagedApplicationDefinition.md @@ -265,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/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 7b5c78f52542..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: @@ -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..be5e83d36145 100644 --- a/src/Resources/Resources/help/Unregister-AzProviderFeature.md +++ b/src/Resources/Resources/help/Unregister-AzProviderFeature.md @@ -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 3aeef92316b6..32ddf51ffbc9 100644 --- a/src/Resources/Resources/help/Update-AzADServicePrincipal.md +++ b/src/Resources/Resources/help/Update-AzADServicePrincipal.md @@ -284,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 f9b8590713ff..449727b513fd 100644 --- a/src/Resources/Resources/help/Update-AzTag.md +++ b/src/Resources/Resources/help/Update-AzTag.md @@ -205,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 diff --git a/tools/StaticAnalysis/Exceptions/Az.Resources/BreakingChangeIssues.csv b/tools/StaticAnalysis/Exceptions/Az.Resources/BreakingChangeIssues.csv new file mode 100644 index 000000000000..01cee92b15d3 --- /dev/null +++ b/tools/StaticAnalysis/Exceptions/Az.Resources/BreakingChangeIssues.csv @@ -0,0 +1,249 @@ +"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." +"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'." +"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'." +"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